The Hidden Thief
This is the repository that contains all the code that was shown during the malware workshop I hosted at Hack.ini event (Feb 2018).
The scripts here are for educational and demonstration purposes only. By using them, you agree that I will not be held accountable for any illegal activities you may use them in.
- A Windows 7 machine.
- Python 2.7.14 (32Bit)
- Pywin32-221.win32-py2.7 (here)
- PyHook-1.5.1.win32-py2.7 (here)
- Requests-2.18.4 (pip install requests)
- PyInstaller-3.3.1 (pip install pyinstaller)
Payload folder contains the three variants of the keylogger (Local mode, Live mode using HTTP and Furtive mode using FTP).
Infector folder contains the script that is used to trick a user into installing our malware onto his computer.
To convert your python script to a windows executable, use:
pyinstaller -F --noconsole filename .py
To generate and exe that includes a payload, use:
pyinstaller -F --add-data "payload.exe;." scriptname .py