New tools added to dump: XorSearch, Disasm/FindEP, ByteSwap, EndianSwap, Text Display.
DetectType option will auto-detect Java/Perl/ShellScripts and Flash SWF Files.
Beta Support for ActionScript format has been added
- this.code.writeUnsignedInt(0x41424344); -> 41 42 43 44
- this.code.writeUnsignedInt(0x4142); -> 00 00 41 42
- this.s.writeInt(2425393296) -> 90909090
- this.s.writeUnsignedInt(9002820); -> 00 89 5f 44
- this.s.endian = Endian.LITTLE_ENDIAN;
this.s.writeUnsignedInt(9002820); -> 44 5f 89 00
- Note: Default format is BIG_ENDIAN. writeBytes, writeObject etc unsupported.
|