This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Create DLL exports in C++ format for DLL proxying to legitimate DLL on disk | |
Usage: | |
python3 Find-DLL-Exports_DLL-Proxying.py "C:\path\to\original\location\DLL.dll" | |
Example: | |
python3 Find-DLL-Exports_DLL-Proxying.py "C:\Windows\System32\wtsapi32.dll" | |
Output sample -> Put at the top of your C++ code under the imports to DLL proxy traffic to the target DLL provided from the input | |
// Export DLL functions | |
#pragma once |