Pages (2): 1 2   
sothatsit   05-10-2015, 09:28 PM
#1
Hey,

I am new to the Java Reverse Engineering scene and have started out using FernFlower.

I am currently working on a project which simply decompiles and refactors a jar. It is all going well except for one major issue: It doesnt rename the fields/methods when they are declared, it does when they are referenced but not when they are declared.

For example:
My renaming class will rename field "aa" to "String_1"
I will end up with this:
String aa;

class_13(String someString) {
String_1 = someString;
}

This is obviously not ideal.

I have tried looking through the source code of FernFlower but i cannot find the issue.

I have emailed fernflower.decompiler@gmail.com but have not recieved a reply as of yet and thought it would be worth looking for help elsewhere.

I hope you can help me out,

Thanks Smile
Bibl   05-10-2015, 09:59 PM
#2
are you using the orginal fernflower or the one jetbrains stole and claimed as their own?
edit: not changing this edit snip

[Image: 485bLTI]
sothatsit   05-10-2015, 10:21 PM
#3
(05-10-2015, 09:59 PM)Bibl Wrote: are you using the orginal fernflower or the one jetbrains stole and claimed as their own?

I am using the fernflower from https://github.com/fesh0r/fernflower. I have just cloned and built it.
Bibl   05-11-2015, 03:52 AM
#4
you could use proguard or retroguard to rename the fields or make your own field renamer (methods are a bit tricker).
sothatsit   05-11-2015, 09:43 AM
#5
(05-11-2015, 03:52 AM)Bibl Wrote: you could use proguard or retroguard to rename the fields or make your own field renamer (methods are a bit tricker).

Like, editing the bytecode?
sothatsit   05-11-2015, 10:37 AM
#6
Bibl   05-12-2015, 05:40 AM
#7
asm for java
and
https://github.com/TheBiblMan/Byte-Engineer-2

although its not really full/done
Bibl   05-15-2015, 06:51 AM
#8
just tried fernflower and the same thing is happening for me, guess you should rename with proguard or retroguard.
sothatsit   05-16-2015, 08:28 AM
#9
(05-15-2015, 06:51 AM)Bibl Wrote: just tried fernflower and the same thing is happening for me, guess you should rename with proguard or retroguard.

I think I'm actually going to use asm to edit the bytecode to rename the fields/methods/classes. This is good because then I don't have to recompile the source code afterwards. Thanks for your help Smile
Bibl   05-16-2015, 06:55 PM
#10
(05-16-2015, 08:28 AM)sothatsit Wrote:
(05-15-2015, 06:51 AM)Bibl Wrote: just tried fernflower and the same thing is happening for me, guess you should rename with proguard or retroguard.

I think I'm actually going to use asm to edit the bytecode to rename the fields/methods/classes. This is good because then I don't have to recompile the source code afterwards. Thanks for your help Smile

nono, you can run retroguard it and the classes are renamed (still in classfile form)
i'm working on one with asm at the moment that doesnt rely on the asm visitors
http://hastebin.com/aqocujidaj.java
Pages (2): 1 2   
  
Users browsing this thread: 1 Guest(s)
Konloch Software - Bytecode Viewer - Reverse Engineering Forum
Copyright © 2014-2025 The Bytecode Club. Powered By MyBB.
CC0 Unless Specified Otherwise.