├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── Readme.md ├── appveyor.yml ├── src_ida ├── fakepdb.py └── fakepdb │ ├── __init__.py │ ├── dumpinfo.py │ ├── generation.py │ ├── offsets.py │ └── signatures.py └── src_pdbgen ├── CMakeLists.txt ├── guidhelper.h ├── hexhelper.h ├── idadb.cpp ├── idadb.h ├── include └── nlohmann │ └── json.hpp ├── main.cpp ├── pdbcreator.cpp ├── pdbcreator.h ├── pefile.cpp ├── pefile.h ├── test └── test_pefile_1.cpp └── test_assets ├── test_1.cpp ├── test_1_32.exe ├── test_1_32.pdb ├── test_1_64.exe └── test_1_64.pdb /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/Readme.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src_ida/fakepdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_ida/fakepdb.py -------------------------------------------------------------------------------- /src_ida/fakepdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_ida/fakepdb/__init__.py -------------------------------------------------------------------------------- /src_ida/fakepdb/dumpinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_ida/fakepdb/dumpinfo.py -------------------------------------------------------------------------------- /src_ida/fakepdb/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_ida/fakepdb/generation.py -------------------------------------------------------------------------------- /src_ida/fakepdb/offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_ida/fakepdb/offsets.py -------------------------------------------------------------------------------- /src_ida/fakepdb/signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_ida/fakepdb/signatures.py -------------------------------------------------------------------------------- /src_pdbgen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/CMakeLists.txt -------------------------------------------------------------------------------- /src_pdbgen/guidhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/guidhelper.h -------------------------------------------------------------------------------- /src_pdbgen/hexhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/hexhelper.h -------------------------------------------------------------------------------- /src_pdbgen/idadb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/idadb.cpp -------------------------------------------------------------------------------- /src_pdbgen/idadb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/idadb.h -------------------------------------------------------------------------------- /src_pdbgen/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /src_pdbgen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/main.cpp -------------------------------------------------------------------------------- /src_pdbgen/pdbcreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/pdbcreator.cpp -------------------------------------------------------------------------------- /src_pdbgen/pdbcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/pdbcreator.h -------------------------------------------------------------------------------- /src_pdbgen/pefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/pefile.cpp -------------------------------------------------------------------------------- /src_pdbgen/pefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/pefile.h -------------------------------------------------------------------------------- /src_pdbgen/test/test_pefile_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/test/test_pefile_1.cpp -------------------------------------------------------------------------------- /src_pdbgen/test_assets/test_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/test_assets/test_1.cpp -------------------------------------------------------------------------------- /src_pdbgen/test_assets/test_1_32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/test_assets/test_1_32.exe -------------------------------------------------------------------------------- /src_pdbgen/test_assets/test_1_32.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/test_assets/test_1_32.pdb -------------------------------------------------------------------------------- /src_pdbgen/test_assets/test_1_64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/test_assets/test_1_64.exe -------------------------------------------------------------------------------- /src_pdbgen/test_assets/test_1_64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thalium/FakePDB/HEAD/src_pdbgen/test_assets/test_1_64.pdb --------------------------------------------------------------------------------