GithubHelp home page GithubHelp logo

Recover full method path about cfr HOT 4 CLOSED

lab313ru avatar lab313ru commented on August 16, 2024
Recover full method path

from cfr.

Comments (4)

leibnitz27 avatar leibnitz27 commented on August 16, 2024

It's possible (with a little hacking) - out of interest what's the reason you want to do this?

You can get the behaviour you want by always returning type.getRawName() from

String res = displayName.get(type);

As an option ("don't explicitly import anything") it would lead to hideous code, so I'm not keen to do it unless I can think of a good reason! :)

from cfr.

lab313ru avatar lab313ru commented on August 16, 2024

The reason is:
jar-file is obfuscated, some classes in subfolders have the same names (it may remember the duplicate field names problem), and there are strings-deobfuscation methods, all of them have different variation for every class.

Then imagine situation like this:

  • MsgBox(o.decode("\xab\xcd")) (com.sub1.o)
  • MsgBox(o.decode("\xcc\xdd")) (com.sub2.o)

I want to write some deobfuscator (in Python), but to understand which deobfuscator was used I need to restore full type path.

from cfr.

leibnitz27 avatar leibnitz27 commented on August 16, 2024

Handled with a general 'don't import this' filter, using the same regex filter as elsewhere in options.

--importfilter "util" <-- only generate imports for classes that match 'util'.
--importfilter "!util" <-- only generate imports for classes that don't match 'util'.
--importfilter "!(util|lang|^com.sun)" <--- etc etc.

from cfr.

lab313ru avatar lab313ru commented on August 16, 2024

from cfr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.