├── README.md ├── agafi-rop.png ├── agafi.png └── src ├── agafi-rop.cpp ├── agafi.cpp ├── disassembler.c ├── fsnap.c ├── gisnap ├── dumpinfo │ ├── dumpinfo.py │ └── readme.txt ├── ollydbg_plugin │ ├── readme.txt │ └── src │ │ ├── MemorySnapshot.cpp │ │ ├── MemorySnapshot.h │ │ ├── gisnap.cpp │ │ ├── gisnap.sln │ │ ├── gisnap.v11.suo │ │ ├── gisnap.vcproj │ │ ├── gisnap.vcxproj │ │ ├── ollydbg.lib │ │ ├── plugin.h │ │ └── snapshotformat.h ├── standalone │ └── src │ │ ├── LogWindow.cpp │ │ ├── LogWindow.h │ │ ├── MemorySnapshot.cpp │ │ ├── MemorySnapshot.h │ │ ├── ProcessList.cpp │ │ ├── ProcessList.h │ │ ├── gisnap.cpp │ │ ├── gisnap.h │ │ ├── gisnap.rc │ │ ├── resource.h │ │ ├── resource1.h │ │ ├── snapshotformat.h │ │ ├── stand-alone.rc │ │ ├── stand-alone.sln │ │ ├── stand-alone.suo │ │ ├── stand-alone.v11.suo │ │ ├── stand-alone.vcxproj │ │ ├── stand-alone.vcxproj.filters │ │ ├── stand-alone.vcxproj.user │ │ ├── stdafx.cpp │ │ └── stdafx.h └── windbg_ext │ ├── readme.txt │ └── src │ ├── dllmain.cpp │ ├── gisnap.cpp │ ├── gisnap.h │ ├── snapshotformat.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── windbg_ext.cpp │ ├── windbg_ext.def │ ├── windbg_ext.opensdf │ ├── windbg_ext.sln │ ├── windbg_ext.v11.suo │ ├── windbg_ext.vcxproj │ ├── windbg_ext.vcxproj.filters │ └── windbg_ext.vcxproj.user ├── list.cpp ├── make.bat └── qemu.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/README.md -------------------------------------------------------------------------------- /agafi-rop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/agafi-rop.png -------------------------------------------------------------------------------- /agafi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/agafi.png -------------------------------------------------------------------------------- /src/agafi-rop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/agafi-rop.cpp -------------------------------------------------------------------------------- /src/agafi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/agafi.cpp -------------------------------------------------------------------------------- /src/disassembler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/disassembler.c -------------------------------------------------------------------------------- /src/fsnap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/fsnap.c -------------------------------------------------------------------------------- /src/gisnap/dumpinfo/dumpinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/dumpinfo/dumpinfo.py -------------------------------------------------------------------------------- /src/gisnap/dumpinfo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/dumpinfo/readme.txt -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/readme.txt -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/MemorySnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/MemorySnapshot.cpp -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/MemorySnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/MemorySnapshot.h -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/gisnap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/gisnap.cpp -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/gisnap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/gisnap.sln -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/gisnap.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/gisnap.v11.suo -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/gisnap.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/gisnap.vcproj -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/gisnap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/gisnap.vcxproj -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/ollydbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/ollydbg.lib -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/plugin.h -------------------------------------------------------------------------------- /src/gisnap/ollydbg_plugin/src/snapshotformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/ollydbg_plugin/src/snapshotformat.h -------------------------------------------------------------------------------- /src/gisnap/standalone/src/LogWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/LogWindow.cpp -------------------------------------------------------------------------------- /src/gisnap/standalone/src/LogWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/LogWindow.h -------------------------------------------------------------------------------- /src/gisnap/standalone/src/MemorySnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/MemorySnapshot.cpp -------------------------------------------------------------------------------- /src/gisnap/standalone/src/MemorySnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/MemorySnapshot.h -------------------------------------------------------------------------------- /src/gisnap/standalone/src/ProcessList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/ProcessList.cpp -------------------------------------------------------------------------------- /src/gisnap/standalone/src/ProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/ProcessList.h -------------------------------------------------------------------------------- /src/gisnap/standalone/src/gisnap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/gisnap.cpp -------------------------------------------------------------------------------- /src/gisnap/standalone/src/gisnap.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/gisnap/standalone/src/gisnap.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/gisnap.rc -------------------------------------------------------------------------------- /src/gisnap/standalone/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/resource.h -------------------------------------------------------------------------------- /src/gisnap/standalone/src/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/resource1.h -------------------------------------------------------------------------------- /src/gisnap/standalone/src/snapshotformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/snapshotformat.h -------------------------------------------------------------------------------- /src/gisnap/standalone/src/stand-alone.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/stand-alone.rc -------------------------------------------------------------------------------- /src/gisnap/standalone/src/stand-alone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/stand-alone.sln -------------------------------------------------------------------------------- /src/gisnap/standalone/src/stand-alone.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/stand-alone.suo -------------------------------------------------------------------------------- /src/gisnap/standalone/src/stand-alone.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/stand-alone.v11.suo -------------------------------------------------------------------------------- /src/gisnap/standalone/src/stand-alone.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/stand-alone.vcxproj -------------------------------------------------------------------------------- /src/gisnap/standalone/src/stand-alone.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/stand-alone.vcxproj.filters -------------------------------------------------------------------------------- /src/gisnap/standalone/src/stand-alone.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/stand-alone.vcxproj.user -------------------------------------------------------------------------------- /src/gisnap/standalone/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/stdafx.cpp -------------------------------------------------------------------------------- /src/gisnap/standalone/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/standalone/src/stdafx.h -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/readme.txt -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/dllmain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/gisnap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/gisnap.cpp -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/gisnap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/gisnap.h -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/snapshotformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/snapshotformat.h -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/stdafx.cpp -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/stdafx.h -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/targetver.h -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/windbg_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/windbg_ext.cpp -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/windbg_ext.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/windbg_ext.def -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/windbg_ext.opensdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/windbg_ext.opensdf -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/windbg_ext.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/windbg_ext.sln -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/windbg_ext.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/windbg_ext.v11.suo -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/windbg_ext.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/windbg_ext.vcxproj -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/windbg_ext.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/windbg_ext.vcxproj.filters -------------------------------------------------------------------------------- /src/gisnap/windbg_ext/src/windbg_ext.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/gisnap/windbg_ext/src/windbg_ext.vcxproj.user -------------------------------------------------------------------------------- /src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/list.cpp -------------------------------------------------------------------------------- /src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/make.bat -------------------------------------------------------------------------------- /src/qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpsystems/Agafi/HEAD/src/qemu.c --------------------------------------------------------------------------------