ASM Save ArrayList ClassNode as Zip File - Printable Version +- The Bytecode Club - Reverse Engineering Forum (https://the.bytecode.club) +-- Forum: Lobby (https://the.bytecode.club/forumdisplay.php?fid=1) +--- Forum: Programming (https://the.bytecode.club/forumdisplay.php?fid=86) +--- Thread: ASM Save ArrayList ClassNode as Zip File (/showthread.php?tid=99) |
ASM Save ArrayList ClassNode as Zip File - Konloch - 10-11-2014 Code: public static void saveAsJar(ArrayList<ClassNode> nodeList, String fileName) { RE: ASM Save ArrayList ClassNode as Zip File - Bibl - 10-12-2014 https://bitbucket.org/0xJAVA/byte-engineer/src RE: ASM Save ArrayList ClassNode as Zip File - Konloch - 10-12-2014 (10-12-2014, 09:28 AM)Bibl Wrote: https://bitbucket.org/0xJAVA/byte-engineer/src Looks sexy, I'll have to take a better look at this later. Is there any documentation on it? RE: ASM Save ArrayList ClassNode as Zip File - Bibl - 10-12-2014 (10-12-2014, 09:55 AM)konloch Wrote:(10-12-2014, 09:28 AM)Bibl Wrote: https://bitbucket.org/0xJAVA/byte-engineer/src not really its not even done but when I need stuff I just add RE: ASM Save ArrayList ClassNode as Zip File - Konloch - 10-12-2014 (10-12-2014, 09:58 AM)Bibl Wrote:(10-12-2014, 09:55 AM)konloch Wrote:(10-12-2014, 09:28 AM)Bibl Wrote: https://bitbucket.org/0xJAVA/byte-engineer/src Interesting project non-the-less, favorited it for later. What tools does it feature atm? RE: ASM Save ArrayList ClassNode as Zip File - Bibl - 10-12-2014 load jars from file or url Code: JarDownloader dl = new JarDownloader(new JarInfo(new File("jar.jar"))); Code: JarDumper dumper = new JarDumper(contents); Add Analysers, store class, field and method data into HookMaps A lot of filters https://bitbucket.org/0xJAVA/byte-engineer/src/e18021ae51bd52f5ad742bcde4d8aac135f78b69/byteanalysis/src/main/java/eu/bibl/banalysis/asm/desc/?at=master Code: Refactorer refactorer = new Refactorer(hookMap, contents); Code: InstructionPrinter.consolePrint(methodName); Code: InstructionSearcher searcher = new InstructionSearcher(m.instructions, pattern); RE: ASM Save ArrayList ClassNode as Zip File - Konloch - 10-12-2014 (10-12-2014, 10:21 AM)Bibl Wrote: load jars from file or url Sexy as fuck, I might start contributing to this once I'm done with Bytecode Viewer. RE: ASM Save ArrayList ClassNode as Zip File - Explicit - 01-21-2015 Nice, mine differs slightly: Code: public static void dumpJar(List<ClassNode> classes, Manifest manifest, String absolutePath) { Gotta have a manifest to make it runnable xD RE: ASM Save ArrayList ClassNode as Zip File - Konloch - 01-21-2015 (01-21-2015, 12:31 AM)Swizzbeat Wrote: Nice, mine differs slightly: Very true! Haha |