Shellcode 2 EXE
help           Output:        
A video trainer is now available showing how to use this tool

Note: I highly recommend starting analysis with Bytes Only option and scdbg tool



DetectType option will auto-detect HTML,JS,Perl,Bash,MZ,SWF,Java & Low Entropy

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.writeInt(2.425393296E9); -> 90 90 90 90
  • this.s.endian = Endian.LITTLE_ENDIAN;
    this.s.writeUnsignedInt(9002820); -> 44 5f 89 00
  • Note: Default format is BIG_ENDIAN. writeBytes, writeObject etc unsupported.