├── .clang-format ├── .github └── workflows │ ├── codeql-analysis.yml │ └── docs.yml ├── .gitignore ├── .readthedocs.yml ├── .vscode └── settings.json ├── AUTHORS ├── CMakeLists.txt ├── LICENSE.txt ├── PE ├── COMMON.H ├── COMMON.cpp ├── CVInfoNew.H ├── CVSymbols.CPP ├── DBGDUMP.H ├── DBGDUMP.cpp ├── Debug │ └── pedump.exe ├── EULA.doc ├── EXEDUMP.H ├── EXEDUMP.cpp ├── EXTRNVAR.H ├── LIBDUMP.H ├── LIBDUMP.cpp ├── OBJDUMP.H ├── OBJDUMP.cpp ├── PEDUMP.cpp ├── RomImage.h ├── coffsymboltable.cpp ├── coffsymboltable.h ├── cv_dbg.h ├── cvexefmt.h ├── cvinfo.h ├── cvsymbols.h ├── pedump.dsp ├── pedump.sln ├── pedump.vcproj ├── resdump.cpp ├── resdump.h ├── romimage.cpp ├── symboltablesupport.cpp └── symboltablesupport.h ├── README.md ├── cmake └── coffiConfig.cmake.in ├── coffi ├── coffi.hpp ├── coffi_directory.hpp ├── coffi_headers.hpp ├── coffi_relocation.hpp ├── coffi_section.hpp ├── coffi_strings.hpp ├── coffi_symbols.hpp ├── coffi_types.hpp ├── coffi_utils.hpp └── coffi_version.hpp ├── docs ├── Doxyfile.in ├── Makefile ├── alias_access.doxyfile ├── api.md ├── conf.py ├── copying.m_o_d ├── copying.md ├── examples.md ├── extdoc.md ├── external │ ├── Tiny PE.html │ ├── pe_checksum_algorithm.pdf │ ├── pe_format_in_depth_look_part1.pdf │ ├── pe_format_in_depth_look_part2.pdf │ ├── pecoff_v11.pdf │ ├── peering_inside_pe.pdf │ └── spraao8.pdf ├── get_started.md ├── index_.rst ├── mainpage.m_o_d ├── mainpage.md ├── make.bat ├── requirements.txt ├── static │ ├── custom.css │ ├── footer.html │ ├── github.png │ ├── header.html │ ├── hello.png │ ├── readthedocs.png │ ├── sourceforge.png │ └── style_html.txt ├── thanks.txt └── version.doxyfile ├── examples ├── CMakeLists.txt ├── COFFDump │ ├── CMakeLists.txt │ ├── COFFDump.cpp │ ├── COFFDump.vcxproj │ └── COFFDump.vcxproj.filters ├── anonymizer │ ├── CMakeLists.txt │ └── anonymizer.cpp ├── tutorial │ ├── CMakeLists.txt │ └── tutorial.cpp ├── write_obj │ ├── CMakeLists.txt │ ├── answer.c │ ├── answer_test.c │ └── write_obj.cpp └── writer │ ├── CMakeLists.txt │ ├── hello.dump │ ├── hello │ ├── hello.asm │ ├── hello.sln │ └── hello.vcxproj │ └── writer.cpp ├── requirements.txt ├── tests ├── CMakeLists.txt ├── COFFDump_test.cpp ├── COFFI.sln ├── COFFI.vcxproj ├── COFFI.vcxproj.filters ├── coffi_test.cpp ├── coffio_test.hpp ├── coffo_test.cpp ├── configure.ac ├── data │ ├── NikPEViewer.exe │ ├── NikPEViewer.exe.dump │ ├── NikPEViewer.exe.dump.expected │ ├── anobj.o │ ├── anobj.o.dump │ ├── anobj.o.dump.expected │ ├── answer.o.expected │ ├── build_file_pe.expected │ ├── coffi_test.obj │ ├── coffi_test.obj.anonymizer.dump.expected │ ├── coffi_test.obj.append.expected │ ├── coffi_test.obj.dump │ ├── coffi_test.obj.dump.expected │ ├── demo.a │ ├── demo.a.dump │ ├── demo.a.dump.expected │ ├── demo.o │ ├── demo.o.append.expected │ ├── demo.o.dump.expected │ ├── espui.dll │ ├── espui.dll.append.expected │ ├── espui.dll.dump │ ├── espui.dll.dump.expected │ ├── hello.exe.expected │ ├── label.exe │ ├── label.exe.dump │ ├── label.exe.dump.expected │ ├── notepad-corrupted1.exe │ ├── notepad-corrupted2.exe │ ├── notepad-corrupted3.exe │ ├── notepad-corrupted4.exe │ ├── notepad.exe │ ├── notepad.exe.dump │ ├── notepad.exe.dump.expected │ ├── tclsh.dump │ ├── tclsh.exe │ ├── tclsh.exe.append.expected │ ├── tclsh.exe.dump │ ├── tclsh.exe.dump.expected │ ├── ti_c2000_1.c │ ├── ti_c2000_1.obj │ ├── ti_c2000_1.obj.append.expected │ ├── ti_c2000_1.obj.dump │ ├── ti_c2000_1.obj.dump.expected │ ├── ti_c2000_1.out │ ├── ti_c2000_1.out.dump │ ├── ti_c2000_1.out.dump.expected │ └── tiny.exe ├── examples_test.cpp └── pefile │ ├── LICENSE │ ├── ordlookup │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── oleaut32.cpython-36.pyc │ │ └── ws2_32.cpython-36.pyc │ ├── oleaut32.py │ └── ws2_32.py │ ├── pefile-2019.4.18.zip │ ├── pefile.py │ └── peutils.py └── version.doxyfile /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PE/COMMON.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/COMMON.H -------------------------------------------------------------------------------- /PE/COMMON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/COMMON.cpp -------------------------------------------------------------------------------- /PE/CVInfoNew.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/CVInfoNew.H -------------------------------------------------------------------------------- /PE/CVSymbols.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/CVSymbols.CPP -------------------------------------------------------------------------------- /PE/DBGDUMP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/DBGDUMP.H -------------------------------------------------------------------------------- /PE/DBGDUMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/DBGDUMP.cpp -------------------------------------------------------------------------------- /PE/Debug/pedump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/Debug/pedump.exe -------------------------------------------------------------------------------- /PE/EULA.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/EULA.doc -------------------------------------------------------------------------------- /PE/EXEDUMP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/EXEDUMP.H -------------------------------------------------------------------------------- /PE/EXEDUMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/EXEDUMP.cpp -------------------------------------------------------------------------------- /PE/EXTRNVAR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/EXTRNVAR.H -------------------------------------------------------------------------------- /PE/LIBDUMP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/LIBDUMP.H -------------------------------------------------------------------------------- /PE/LIBDUMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/LIBDUMP.cpp -------------------------------------------------------------------------------- /PE/OBJDUMP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/OBJDUMP.H -------------------------------------------------------------------------------- /PE/OBJDUMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/OBJDUMP.cpp -------------------------------------------------------------------------------- /PE/PEDUMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/PEDUMP.cpp -------------------------------------------------------------------------------- /PE/RomImage.h: -------------------------------------------------------------------------------- 1 | void DumpROMImage( PIMAGE_ROM_HEADERS ); 2 | -------------------------------------------------------------------------------- /PE/coffsymboltable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/coffsymboltable.cpp -------------------------------------------------------------------------------- /PE/coffsymboltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/coffsymboltable.h -------------------------------------------------------------------------------- /PE/cv_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/cv_dbg.h -------------------------------------------------------------------------------- /PE/cvexefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/cvexefmt.h -------------------------------------------------------------------------------- /PE/cvinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/cvinfo.h -------------------------------------------------------------------------------- /PE/cvsymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/cvsymbols.h -------------------------------------------------------------------------------- /PE/pedump.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/pedump.dsp -------------------------------------------------------------------------------- /PE/pedump.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/pedump.sln -------------------------------------------------------------------------------- /PE/pedump.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/pedump.vcproj -------------------------------------------------------------------------------- /PE/resdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/resdump.cpp -------------------------------------------------------------------------------- /PE/resdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/resdump.h -------------------------------------------------------------------------------- /PE/romimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/romimage.cpp -------------------------------------------------------------------------------- /PE/symboltablesupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/symboltablesupport.cpp -------------------------------------------------------------------------------- /PE/symboltablesupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/PE/symboltablesupport.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/README.md -------------------------------------------------------------------------------- /cmake/coffiConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/cmake/coffiConfig.cmake.in -------------------------------------------------------------------------------- /coffi/coffi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/coffi/coffi.hpp -------------------------------------------------------------------------------- /coffi/coffi_directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/coffi/coffi_directory.hpp -------------------------------------------------------------------------------- /coffi/coffi_headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/coffi/coffi_headers.hpp -------------------------------------------------------------------------------- /coffi/coffi_relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/coffi/coffi_relocation.hpp -------------------------------------------------------------------------------- /coffi/coffi_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/coffi/coffi_section.hpp -------------------------------------------------------------------------------- /coffi/coffi_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/coffi/coffi_strings.hpp -------------------------------------------------------------------------------- /coffi/coffi_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/coffi/coffi_symbols.hpp -------------------------------------------------------------------------------- /coffi/coffi_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/coffi/coffi_types.hpp -------------------------------------------------------------------------------- /coffi/coffi_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/coffi/coffi_utils.hpp -------------------------------------------------------------------------------- /coffi/coffi_version.hpp: -------------------------------------------------------------------------------- 1 | #define COFFI_VERSION "1.2" 2 | -------------------------------------------------------------------------------- /docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/Doxyfile.in -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/alias_access.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/alias_access.doxyfile -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/copying.m_o_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/copying.m_o_d -------------------------------------------------------------------------------- /docs/copying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/copying.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/extdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/extdoc.md -------------------------------------------------------------------------------- /docs/external/Tiny PE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/external/Tiny PE.html -------------------------------------------------------------------------------- /docs/external/pe_checksum_algorithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/external/pe_checksum_algorithm.pdf -------------------------------------------------------------------------------- /docs/external/pe_format_in_depth_look_part1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/external/pe_format_in_depth_look_part1.pdf -------------------------------------------------------------------------------- /docs/external/pe_format_in_depth_look_part2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/external/pe_format_in_depth_look_part2.pdf -------------------------------------------------------------------------------- /docs/external/pecoff_v11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/external/pecoff_v11.pdf -------------------------------------------------------------------------------- /docs/external/peering_inside_pe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/external/peering_inside_pe.pdf -------------------------------------------------------------------------------- /docs/external/spraao8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/external/spraao8.pdf -------------------------------------------------------------------------------- /docs/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/get_started.md -------------------------------------------------------------------------------- /docs/index_.rst: -------------------------------------------------------------------------------- 1 | 2 | .. toctree:: 3 | :maxdepth: 3 4 | -------------------------------------------------------------------------------- /docs/mainpage.m_o_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/mainpage.m_o_d -------------------------------------------------------------------------------- /docs/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/mainpage.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/static/custom.css -------------------------------------------------------------------------------- /docs/static/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/static/footer.html -------------------------------------------------------------------------------- /docs/static/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/static/github.png -------------------------------------------------------------------------------- /docs/static/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/static/header.html -------------------------------------------------------------------------------- /docs/static/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/static/hello.png -------------------------------------------------------------------------------- /docs/static/readthedocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/static/readthedocs.png -------------------------------------------------------------------------------- /docs/static/sourceforge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/static/sourceforge.png -------------------------------------------------------------------------------- /docs/static/style_html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/static/style_html.txt -------------------------------------------------------------------------------- /docs/thanks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/docs/thanks.txt -------------------------------------------------------------------------------- /docs/version.doxyfile: -------------------------------------------------------------------------------- 1 | PROJECT_NUMBER = "1.2" 2 | -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/COFFDump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/COFFDump/CMakeLists.txt -------------------------------------------------------------------------------- /examples/COFFDump/COFFDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/COFFDump/COFFDump.cpp -------------------------------------------------------------------------------- /examples/COFFDump/COFFDump.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/COFFDump/COFFDump.vcxproj -------------------------------------------------------------------------------- /examples/COFFDump/COFFDump.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/COFFDump/COFFDump.vcxproj.filters -------------------------------------------------------------------------------- /examples/anonymizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/anonymizer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/anonymizer/anonymizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/anonymizer/anonymizer.cpp -------------------------------------------------------------------------------- /examples/tutorial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/tutorial/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/tutorial/tutorial.cpp -------------------------------------------------------------------------------- /examples/write_obj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/write_obj/CMakeLists.txt -------------------------------------------------------------------------------- /examples/write_obj/answer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/write_obj/answer.c -------------------------------------------------------------------------------- /examples/write_obj/answer_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/write_obj/answer_test.c -------------------------------------------------------------------------------- /examples/write_obj/write_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/write_obj/write_obj.cpp -------------------------------------------------------------------------------- /examples/writer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/writer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/writer/hello.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/writer/hello.dump -------------------------------------------------------------------------------- /examples/writer/hello/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/writer/hello/hello.asm -------------------------------------------------------------------------------- /examples/writer/hello/hello.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/writer/hello/hello.sln -------------------------------------------------------------------------------- /examples/writer/hello/hello.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/writer/hello/hello.vcxproj -------------------------------------------------------------------------------- /examples/writer/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/examples/writer/writer.cpp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # No external dependencies required -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/COFFDump_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/COFFDump_test.cpp -------------------------------------------------------------------------------- /tests/COFFI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/COFFI.sln -------------------------------------------------------------------------------- /tests/COFFI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/COFFI.vcxproj -------------------------------------------------------------------------------- /tests/COFFI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/COFFI.vcxproj.filters -------------------------------------------------------------------------------- /tests/coffi_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/coffi_test.cpp -------------------------------------------------------------------------------- /tests/coffio_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/coffio_test.hpp -------------------------------------------------------------------------------- /tests/coffo_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/coffo_test.cpp -------------------------------------------------------------------------------- /tests/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/configure.ac -------------------------------------------------------------------------------- /tests/data/NikPEViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/NikPEViewer.exe -------------------------------------------------------------------------------- /tests/data/NikPEViewer.exe.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/NikPEViewer.exe.dump -------------------------------------------------------------------------------- /tests/data/NikPEViewer.exe.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/NikPEViewer.exe.dump.expected -------------------------------------------------------------------------------- /tests/data/anobj.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/anobj.o -------------------------------------------------------------------------------- /tests/data/anobj.o.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/anobj.o.dump -------------------------------------------------------------------------------- /tests/data/anobj.o.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/anobj.o.dump.expected -------------------------------------------------------------------------------- /tests/data/answer.o.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/answer.o.expected -------------------------------------------------------------------------------- /tests/data/build_file_pe.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/build_file_pe.expected -------------------------------------------------------------------------------- /tests/data/coffi_test.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/coffi_test.obj -------------------------------------------------------------------------------- /tests/data/coffi_test.obj.anonymizer.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/coffi_test.obj.anonymizer.dump.expected -------------------------------------------------------------------------------- /tests/data/coffi_test.obj.append.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/coffi_test.obj.append.expected -------------------------------------------------------------------------------- /tests/data/coffi_test.obj.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/coffi_test.obj.dump -------------------------------------------------------------------------------- /tests/data/coffi_test.obj.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/coffi_test.obj.dump.expected -------------------------------------------------------------------------------- /tests/data/demo.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/demo.a -------------------------------------------------------------------------------- /tests/data/demo.a.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/demo.a.dump -------------------------------------------------------------------------------- /tests/data/demo.a.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/demo.a.dump.expected -------------------------------------------------------------------------------- /tests/data/demo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/demo.o -------------------------------------------------------------------------------- /tests/data/demo.o.append.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/demo.o.append.expected -------------------------------------------------------------------------------- /tests/data/demo.o.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/demo.o.dump.expected -------------------------------------------------------------------------------- /tests/data/espui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/espui.dll -------------------------------------------------------------------------------- /tests/data/espui.dll.append.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/espui.dll.append.expected -------------------------------------------------------------------------------- /tests/data/espui.dll.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/espui.dll.dump -------------------------------------------------------------------------------- /tests/data/espui.dll.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/espui.dll.dump.expected -------------------------------------------------------------------------------- /tests/data/hello.exe.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/hello.exe.expected -------------------------------------------------------------------------------- /tests/data/label.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/label.exe -------------------------------------------------------------------------------- /tests/data/label.exe.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/label.exe.dump -------------------------------------------------------------------------------- /tests/data/label.exe.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/label.exe.dump.expected -------------------------------------------------------------------------------- /tests/data/notepad-corrupted1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/notepad-corrupted1.exe -------------------------------------------------------------------------------- /tests/data/notepad-corrupted2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/notepad-corrupted2.exe -------------------------------------------------------------------------------- /tests/data/notepad-corrupted3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/notepad-corrupted3.exe -------------------------------------------------------------------------------- /tests/data/notepad-corrupted4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/notepad-corrupted4.exe -------------------------------------------------------------------------------- /tests/data/notepad.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/notepad.exe -------------------------------------------------------------------------------- /tests/data/notepad.exe.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/notepad.exe.dump -------------------------------------------------------------------------------- /tests/data/notepad.exe.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/notepad.exe.dump.expected -------------------------------------------------------------------------------- /tests/data/tclsh.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/tclsh.dump -------------------------------------------------------------------------------- /tests/data/tclsh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/tclsh.exe -------------------------------------------------------------------------------- /tests/data/tclsh.exe.append.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/tclsh.exe.append.expected -------------------------------------------------------------------------------- /tests/data/tclsh.exe.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/tclsh.exe.dump -------------------------------------------------------------------------------- /tests/data/tclsh.exe.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/tclsh.exe.dump.expected -------------------------------------------------------------------------------- /tests/data/ti_c2000_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/ti_c2000_1.c -------------------------------------------------------------------------------- /tests/data/ti_c2000_1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/ti_c2000_1.obj -------------------------------------------------------------------------------- /tests/data/ti_c2000_1.obj.append.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/ti_c2000_1.obj.append.expected -------------------------------------------------------------------------------- /tests/data/ti_c2000_1.obj.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/ti_c2000_1.obj.dump -------------------------------------------------------------------------------- /tests/data/ti_c2000_1.obj.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/ti_c2000_1.obj.dump.expected -------------------------------------------------------------------------------- /tests/data/ti_c2000_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/ti_c2000_1.out -------------------------------------------------------------------------------- /tests/data/ti_c2000_1.out.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/ti_c2000_1.out.dump -------------------------------------------------------------------------------- /tests/data/ti_c2000_1.out.dump.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/ti_c2000_1.out.dump.expected -------------------------------------------------------------------------------- /tests/data/tiny.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/data/tiny.exe -------------------------------------------------------------------------------- /tests/examples_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/examples_test.cpp -------------------------------------------------------------------------------- /tests/pefile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/LICENSE -------------------------------------------------------------------------------- /tests/pefile/ordlookup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/ordlookup/__init__.py -------------------------------------------------------------------------------- /tests/pefile/ordlookup/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/ordlookup/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /tests/pefile/ordlookup/__pycache__/oleaut32.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/ordlookup/__pycache__/oleaut32.cpython-36.pyc -------------------------------------------------------------------------------- /tests/pefile/ordlookup/__pycache__/ws2_32.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/ordlookup/__pycache__/ws2_32.cpython-36.pyc -------------------------------------------------------------------------------- /tests/pefile/ordlookup/oleaut32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/ordlookup/oleaut32.py -------------------------------------------------------------------------------- /tests/pefile/ordlookup/ws2_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/ordlookup/ws2_32.py -------------------------------------------------------------------------------- /tests/pefile/pefile-2019.4.18.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/pefile-2019.4.18.zip -------------------------------------------------------------------------------- /tests/pefile/pefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/pefile.py -------------------------------------------------------------------------------- /tests/pefile/peutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/COFFI/HEAD/tests/pefile/peutils.py -------------------------------------------------------------------------------- /version.doxyfile: -------------------------------------------------------------------------------- 1 | PROJECT_NUMBER = "1.2" 2 | --------------------------------------------------------------------------------