Search code examples
flashapache-flexbytecode

How do I disassemble ABC bytecode?


If I have an abc file, either compiled through the flex SDK, or stripped from a .SWF file, are there any tools that will disassemble that file purely to see what it contains?


Solution

  • Download free Adobe Flex SDK. Use sdk/bin/swfdump.exe.

    Example for windows version:

    swfdump -abc -showbytecode test.swf > abcdump.txt
    

    This should get you what you want.