├── .gitignore ├── LICENSE.md ├── README-CN.md ├── README.md ├── generate_proxy_pe_source.py ├── proxy_pe_source_generator ├── __init__.py └── templates │ ├── ProxyLibrary.c │ ├── ProxyLibrary.h │ └── ProxyLibraryGlobals.h └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/ProxyPESourceGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/ProxyPESourceGenerator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/ProxyPESourceGenerator/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/ProxyPESourceGenerator/HEAD/README.md -------------------------------------------------------------------------------- /generate_proxy_pe_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/ProxyPESourceGenerator/HEAD/generate_proxy_pe_source.py -------------------------------------------------------------------------------- /proxy_pe_source_generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/ProxyPESourceGenerator/HEAD/proxy_pe_source_generator/__init__.py -------------------------------------------------------------------------------- /proxy_pe_source_generator/templates/ProxyLibrary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/ProxyPESourceGenerator/HEAD/proxy_pe_source_generator/templates/ProxyLibrary.c -------------------------------------------------------------------------------- /proxy_pe_source_generator/templates/ProxyLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/ProxyPESourceGenerator/HEAD/proxy_pe_source_generator/templates/ProxyLibrary.h -------------------------------------------------------------------------------- /proxy_pe_source_generator/templates/ProxyLibraryGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/ProxyPESourceGenerator/HEAD/proxy_pe_source_generator/templates/ProxyLibraryGlobals.h -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pefile 2 | --------------------------------------------------------------------------------