├── Bin ├── GraphViz │ ├── Conf.ini │ ├── cdt.dll │ ├── config6 │ ├── freetype6.dll │ ├── graph.dll │ ├── gvc.dll │ ├── gvplugin_core.dll │ ├── gvplugin_dot_layout.dll │ ├── gvplugin_pango.dll │ ├── iconv.dll │ ├── intl.dll │ ├── libcairo-2.dll │ ├── libexpat-1.dll │ ├── libexpat.dll │ ├── libfontconfig-1.dll │ ├── libfreetype-6.dll │ ├── libglib-2.0-0.dll │ ├── libgmodule-2.0-0.dll │ ├── libgobject-2.0-0.dll │ ├── libgthread-2.0-0.dll │ ├── libpango-1.0-0.dll │ ├── libpangocairo-1.0-0.dll │ ├── libpangoft2-1.0-0.dll │ ├── libpangowin32-1.0-0.dll │ ├── libpng12.dll │ ├── libpng14-14.dll │ ├── libxml2.dll │ ├── ltdl.dll │ ├── pathplan.dll │ └── zlib1.dll └── RABCDasm │ ├── abcexport.exe │ ├── abcreplace.exe │ ├── liblzma.dll │ ├── rabcasm.exe │ └── rabcdasm.exe ├── Environment └── mm.cfg ├── FlashHacker.py ├── FlashManipulation.py ├── FlowGrapher ├── Config │ └── config6 ├── DrawingInfo.h ├── FlowGrapher.cpp ├── FlowGrapher.h ├── FlowGrapher.i ├── FlowGrapher.py ├── FlowGrapher.vcxproj ├── FlowGrapher.vcxproj.filters ├── FlowGrapher_wrap.cxx ├── Test.py ├── _FlowGrapher.pyd ├── dllmain.cpp ├── swig.cmd └── targetver.h ├── Graphs.py ├── README.md └── Scripts ├── Compile.cmd ├── Util-0.abc ├── Util-0 ├── Util-0.main.asasm ├── Util.class.asasm └── Util.script.asasm ├── Util.as └── Util.swf /Bin/GraphViz/Conf.ini: -------------------------------------------------------------------------------- 1 | [Paths] 2 | IDA=C:\Program Files (x86)\IDA\idag.exe 3 | -------------------------------------------------------------------------------- /Bin/GraphViz/cdt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/cdt.dll -------------------------------------------------------------------------------- /Bin/GraphViz/config6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/config6 -------------------------------------------------------------------------------- /Bin/GraphViz/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/freetype6.dll -------------------------------------------------------------------------------- /Bin/GraphViz/graph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/graph.dll -------------------------------------------------------------------------------- /Bin/GraphViz/gvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/gvc.dll -------------------------------------------------------------------------------- /Bin/GraphViz/gvplugin_core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/gvplugin_core.dll -------------------------------------------------------------------------------- /Bin/GraphViz/gvplugin_dot_layout.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/gvplugin_dot_layout.dll -------------------------------------------------------------------------------- /Bin/GraphViz/gvplugin_pango.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/gvplugin_pango.dll -------------------------------------------------------------------------------- /Bin/GraphViz/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/iconv.dll -------------------------------------------------------------------------------- /Bin/GraphViz/intl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/intl.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libcairo-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libcairo-2.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libexpat-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libexpat-1.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libexpat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libexpat.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libfontconfig-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libfontconfig-1.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libfreetype-6.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libglib-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libglib-2.0-0.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libgmodule-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libgmodule-2.0-0.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libgobject-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libgobject-2.0-0.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libgthread-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libgthread-2.0-0.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libpango-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libpango-1.0-0.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libpangocairo-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libpangocairo-1.0-0.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libpangoft2-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libpangoft2-1.0-0.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libpangowin32-1.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libpangowin32-1.0-0.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libpng12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libpng12.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libpng14-14.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libpng14-14.dll -------------------------------------------------------------------------------- /Bin/GraphViz/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/libxml2.dll -------------------------------------------------------------------------------- /Bin/GraphViz/ltdl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/ltdl.dll -------------------------------------------------------------------------------- /Bin/GraphViz/pathplan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/pathplan.dll -------------------------------------------------------------------------------- /Bin/GraphViz/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/GraphViz/zlib1.dll -------------------------------------------------------------------------------- /Bin/RABCDasm/abcexport.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/RABCDasm/abcexport.exe -------------------------------------------------------------------------------- /Bin/RABCDasm/abcreplace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/RABCDasm/abcreplace.exe -------------------------------------------------------------------------------- /Bin/RABCDasm/liblzma.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/RABCDasm/liblzma.dll -------------------------------------------------------------------------------- /Bin/RABCDasm/rabcasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/RABCDasm/rabcasm.exe -------------------------------------------------------------------------------- /Bin/RABCDasm/rabcdasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Bin/RABCDasm/rabcdasm.exe -------------------------------------------------------------------------------- /Environment/mm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Environment/mm.cfg -------------------------------------------------------------------------------- /FlashHacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlashHacker.py -------------------------------------------------------------------------------- /FlashManipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlashManipulation.py -------------------------------------------------------------------------------- /FlowGrapher/Config/config6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/Config/config6 -------------------------------------------------------------------------------- /FlowGrapher/DrawingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/DrawingInfo.h -------------------------------------------------------------------------------- /FlowGrapher/FlowGrapher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/FlowGrapher.cpp -------------------------------------------------------------------------------- /FlowGrapher/FlowGrapher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/FlowGrapher.h -------------------------------------------------------------------------------- /FlowGrapher/FlowGrapher.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/FlowGrapher.i -------------------------------------------------------------------------------- /FlowGrapher/FlowGrapher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/FlowGrapher.py -------------------------------------------------------------------------------- /FlowGrapher/FlowGrapher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/FlowGrapher.vcxproj -------------------------------------------------------------------------------- /FlowGrapher/FlowGrapher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/FlowGrapher.vcxproj.filters -------------------------------------------------------------------------------- /FlowGrapher/FlowGrapher_wrap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/FlowGrapher_wrap.cxx -------------------------------------------------------------------------------- /FlowGrapher/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/Test.py -------------------------------------------------------------------------------- /FlowGrapher/_FlowGrapher.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/_FlowGrapher.pyd -------------------------------------------------------------------------------- /FlowGrapher/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/dllmain.cpp -------------------------------------------------------------------------------- /FlowGrapher/swig.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/swig.cmd -------------------------------------------------------------------------------- /FlowGrapher/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/FlowGrapher/targetver.h -------------------------------------------------------------------------------- /Graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Graphs.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Compile.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Scripts/Compile.cmd -------------------------------------------------------------------------------- /Scripts/Util-0.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Scripts/Util-0.abc -------------------------------------------------------------------------------- /Scripts/Util-0/Util-0.main.asasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Scripts/Util-0/Util-0.main.asasm -------------------------------------------------------------------------------- /Scripts/Util-0/Util.class.asasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Scripts/Util-0/Util.class.asasm -------------------------------------------------------------------------------- /Scripts/Util-0/Util.script.asasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Scripts/Util-0/Util.script.asasm -------------------------------------------------------------------------------- /Scripts/Util.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Scripts/Util.as -------------------------------------------------------------------------------- /Scripts/Util.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohjeongwook/FlashHacker/HEAD/Scripts/Util.swf --------------------------------------------------------------------------------