The bytecode-manipulation tag has no wiki summary.
-1
votes
0answers
19 views
Extract strings from inside ActionScript bytecode inside SWF file using Java?
I'm trying to extract text from a Flash movie, and I have successfully got Transform running. Unfortuantely the SWF file contains no DefineTag elements, so I figure the text must be inside the ...
1
vote
0answers
76 views
Instrumentation to add logging to Scala code
In Java we can use AspectJ to add logging transparently to Java classes (or probably use other byte code instrumentation tools). Now I wonder how to add logging transparently to Scala functions.
I ...
0
votes
1answer
36 views
Reading bytecode from unloaded classes in external jarfiles
In my Java application, I wish to read bytecode contents from class files that aren't actually loaded, in jar files which also aren't loaded. As in, I need to be able to take any given jarfile, and ...
0
votes
0answers
51 views
How to set verify:none flag on Websphere Application Server 8.5
I have a problem that I need send to WAS 8.5 server classes which contains modified byte-code which not have a correctly updated StackMapTable. Due to the fact that correctly updating of this map is ...
1
vote
1answer
110 views
ASM 4 (Java Library) tutorials? [closed]
I have recently been working with the Java library 'ASM', which is for modification of bytecode at runtime, in case people didn't know, and I have not been able to find a single tutorial on ASM 4. ...
0
votes
2answers
54 views
Modification of specific sections of bytecode
How do I modify specific sections of bytecode to add things in?
What I mean by this is that I know what class, and what method (or field), and what line number I want to modify, but I want to know ...
0
votes
1answer
43 views
Java “implibs” aka jars devoid of actual code, containing only method definitions with empty bodies? [closed]
Windows has concept of "import libraries" aka "implibs" - when you want to link you code against dynamic library, you don't link it against .dll itself, but rather against special static library which ...
6
votes
2answers
338 views
Overriding the default type() metaclass before Python runs
Here be dragons. You've been warned.
I'm thinking about creating a new library that will attempt to help write a better test suite.
In order to do that one of the features is a feature that ...
0
votes
1answer
65 views
Where does bytecode injection happen?
Motivation
I have a SomeObject.java file:
class SomeObject {
String name;
}
Compiling it creates a bytecode-containing SomeObject.class file.
0xCAFEBABE...
If we use SomeObject on the JVM, ...
0
votes
1answer
56 views
Annotation based JMX
How would you implement Spring like annotation based JMX feature. If class is marked by @ManagedResource methods of the class marked with @ManagedOperation are automatically exposed via JMX.
I would ...
0
votes
2answers
57 views
ASM Bytecode With HttpURLConnection
Using ASM ByteCode library , add a request header (UUID) when a HttpUrlConnection ic created
Below is my code - Also am getting the output === > This is Http CONNECT Method!. But dont know how to add ...
0
votes
1answer
49 views
Wrapping constructor call in the method to the static call using ASM bytecode manipulation
My query is related to bytecode manipulation using ASM.
I have one method as follows --
/*Original method code*/
String str ="abs";
// create object of SampleClass2 // constructor ...
2
votes
1answer
137 views
Recommended bytecode manipulation library for rewriting class files to change types e. g. of fields?
I'm looking for a way to generate a class file from an existing one, while allowing me to replace the type of a field by another type.
Consider this example snippet, in which I'd like to every usage ...
0
votes
1answer
59 views
Utility methods in ASM bytecode library for opcode nature determination?
Are there any utils classes in ASM that allows me to infer from the opcode whether the instruction is some kind of store, load, or whatever?
For instance, and considering the following code (from ...
4
votes
1answer
146 views
Incompatible argument to function with ASM bytecode instrumentation
I am having some troubles running a simple main program with Guava libraries.
I have instrumented the classes to get the methods parameters using my code from here : Java method parameters values in ...
2
votes
2answers
145 views
Renaming imports on pre-compiled class files (Java)
What is the issue?
I'm a Minecraft server admin/ server host / plugin developer, but find it an absolute annoyance to have to update my own personal plugins on every new release of the core game. It ...
11
votes
3answers
240 views
Injecting a Java method _before_ another method is called
I am using ASM and want to rewrite something like:
someMethod().targetMethod(args...)
to:
someMethod().injectedMethod(arg).targetMethod(args...)
The trouble is that I don't know what the method ...
2
votes
1answer
389 views
Java method parameters values in ASM
I am trying to get the values of a Java program's method's parameters.
I am using ASM to instrument the bytecode and getting these values.
However, I'm running into some troubles.
Here is the ...
1
vote
5answers
110 views
Programatic code modification (e.g. variable extraction) in Java
I know it's possible to do nice stuff with Reflection, such as invoking methods, or altering the values of fields. Is it possible to do heavier code modification, though, at runtime and ...
1
vote
1answer
146 views
How do I get the line number of the source code from a byte offset in java?
I am manipulating a .class file. I am using the InstrutionHandle package to get the instructions one at a time. I have the byte offset of the instruction via getPosition() method
, can i get the ...
0
votes
2answers
55 views
How to express Java Double Array type (fixing disassembled code)
I have some code that depends on jars that were compiled using Java 1.7. I am currently working on OSX, where I only have access to Java 1.6. I am currently attempting to recompile these jars locally. ...
1
vote
3answers
182 views
Can byte-code manipulation change the return type of a Java method at run-time?
I was wondering if it is possible to do something like this with byte-code manipulation:
public class Foo {
public int getBlah() {
return 1;
}
}
public void hi(int x) {
...
1
vote
1answer
332 views
java byte code editor [duplicate]
Possible Duplicate:
java bytecode editor?
I'm looking for a java Byte-code editor with following features minimum.
GUI - simple to load class files and view the byte code
Edit the java ...
0
votes
2answers
108 views
Java Bytecode manipulation - licensing issues?
If I was to release a utility that does byte-code manipulation on core Java classes (sun.*), should I worry about licensing issues?
To provide a bit more context: In order to have an automated ...
1
vote
1answer
122 views
Generate code that implements JSR 308 “instanceof @MyAnotations” runtime check
JSR 308 proposes to add type annotations to Java. After its ratification, programmers will be able to add an annotation wherever a Java type is currently allowed. That includes not only ...
0
votes
1answer
25 views
Instrumenting bytecode at method level
if(iHandles[f].getInstruction() instanceof IFEQ ) {
getFieldInstruction = iHandles[f+1].getInstruction();
System.out.println("found IF");
InstructionList iprint = ...
1
vote
1answer
321 views
Integrating javassist byte code manipulation with maven compilation
I have a maven project which compiles with javac / aspectj compiler.
I want to run on classes which were compiled a javassist program which manipulate the compiled classes and add stuff to them.
I ...
0
votes
2answers
92 views
Javassist : Bytecode.get() is not working
import javassist.bytecode.Bytecode;
import javassist.bytecode.ConstPool;
public class Coverage {
public static void main(String[] args) {
ConstPool cp = new ConstPool("Hello");
...
1
vote
1answer
161 views
Java ASM4: super(ASM4);?
Well I was reading the PDF tutorial/documentation/book(if you will) on the ASM4 Bytecode library. I was trying out the examples and learn as I went by, by reading, and actually typing out the code, ...
0
votes
1answer
110 views
Cannot pop operand off an empty stack
Using ASM 4. I'm generating bytecode on the fly from another language. It's generating the following, but I'm not clear on what's going on. My guess is that the try/catch block is interfering with the ...
4
votes
4answers
350 views
Adding programmatic annotations to a Java class
Usage example:
I want to put on class fields a custom annotation @MyContainer and then add automatically on all such fields relevant Hibernate annotations (depending on field type and properties).
In ...
0
votes
1answer
120 views
Is it possible to override a method from an existing class using Dexmaker?
Is it possible to change at runtime the behaviour of a method from a class already loaded using Dexmaker, by proxing or generating code?
UPDATE
Just a remark: I want to add a method/modify existing ...
0
votes
1answer
129 views
How can I copy opcodes from a method to another method in Java Class file using ASM?
Here are some code.
static synchronized void q(ua paramua, int paramInt) {
try {
if (d) { if (paramInt > -16711936);
return; }
if (q * 514194583 > 0) { if (paramInt > -16711936);
abf ...
1
vote
0answers
121 views
How can I remove some opcodes from Java class file?
Here are some code lines:
// 43: invokevirtual 10 test/main:a (I)test/sub1;
// 46: pop
// 47: goto +4 -> 51
// 50: athrow
// 51: aload_2
This is the byte code of a sample Java class ...
0
votes
1answer
199 views
adding extra codes at runtime in java
I am developing a library and I need to add extra codes to some of my methods of my objects at run time. there are two points here. first of all, the program I wanted to add extra code, is written ...
0
votes
0answers
142 views
Byte, Nibbles in Hex
I've got 2 tables say the first number in the 1st table is 7F0 and the first number in the 2nd table is 42B. I would like to extract one byte on the 1st table, F0 save in a file. Then extract one ...
5
votes
3answers
2k views
Change string constant in a compiled class
I need to change a string constant in a deployed Java program, i.e. the value inside the compiled .class-files. It can be restarted, but not easily recompiled (though it's an inconvenient option if ...
1
vote
1answer
58 views
Tracking ownership/ancestor-hierarchies/group-membership via annotations/bytecode-weaving?
In GUI frameworks it's common to track parent/child relationships explicitly - given an arbitrary GUI component one can navigate up through the hierarchy of components that "own" it.
The parent ...
2
votes
0answers
202 views
Byte Code off-card verifier for cap file
I need to verify a Java Card programme (a cap file) using an off-card byte code verifier.
I have manually modify the informations in the cap file and i want to verify if the new cap file is well type.
...
0
votes
2answers
166 views
Extracting and executing an arbitrary sequence of Java bytecodes
Given the .class file of Java Class A, is there a way (with BCEL, ASM, etc. for instance) to extract a given bytecode sequence (assuming it's a basic block), place it in a separate location, and then ...
6
votes
2answers
246 views
Replace java operators by methods in bytecode using javassist
My Goal
To be able to detect when, at runtime, a comparison is made (or any other operation like, *, - , /, >, < ,...
This should be achieved to edit the bytecode of a class using Javassist or ...
0
votes
1answer
484 views
Get operation data using javassist
I am trying to analyse byte code with javassist using simple class MyData:
class MyData {
private Collection<String> strings = new ArrayList<String>();
// ...
11
votes
3answers
331 views
Differences in java bytecode produced by Oracle's and Eclipse's compilers
Our project does some Java bytecode instrumentation. And we stumbled upon some strange behavior. Suppose the following code snippet:
public void a() {
new Integer(2);
}
Oracle's javac ...
7
votes
2answers
766 views
dynamic java bytecode manipulation framework comparisions
There are some frameworks out there for dynamic bytecode generation, manipulation and weavering (BCEL, CGLIB, javassist, ASM, MPS). I want to learn about them, but since I don't have much time to know ...
0
votes
1answer
112 views
Creating new type with Javassist
ClassPool classPool = ClassPool.getDefault();
CtClass person = classPool.get("main.Person");
CtClass pperson = classPool.makeClass("PPerson", classPool.get("main.Person")); //is ...
1
vote
3answers
811 views
native java bytecode instrumentation
for bytecode instrumentation in java, there is the asm framework and the bcel and javaassist libraries.
However I need to do instrumentation in native code, since some java classes are already loaded ...
1
vote
2answers
410 views
Trouble understanding method renaming with ASM Bytecode in Java
I am currently trying to understand how the ASM library works. I've decided to try to rename all the methods of a given class, so I wrote a mini MethodRenamer visitor:
class MethodRenamer extends ...
1
vote
1answer
744 views
Java Byte code Manipulation with ASM
I’m using ASM 3.3.1. I am trying to intercept a class and change one of it’s methods. I am using the org.objectweb.asm.util.ASMifierClassVisitor to get ASM code to make the new method. Everything ...
1
vote
2answers
451 views
How does Emma work?
For using Emma we'll first instrument the jar using Emma. During that time em metadata files will get generated and when you run the JUnit test cases over the instrumented jars ec files will get ...
2
votes
4answers
141 views
Executing a piece of bytecode
Think about this sample code:
...
try {
stm1
stm2
stm3
} catch(){
...
}
...
Suppose to run the code and within the try block an exception is raised. Execution flow goes into the ...
