├── LICENSE ├── README.md ├── images ├── banner.png └── shell.png ├── lnx_requirement.txt ├── rev_shell ├── __pycache__ │ ├── knowing_win_pid.cpython-38.pyc │ ├── knowing_win_pid.cpython-39.pyc │ ├── lnx_keylogger.cpython-38.pyc │ ├── lnx_keylogger.cpython-39.pyc │ ├── win_chrome_password_extractor.cpython-38.pyc │ ├── win_chrome_password_extractor.cpython-39.pyc │ ├── win_keylogger.cpython-38.pyc │ ├── win_keylogger.cpython-39.pyc │ ├── win_wlan_passwd_and_wanip_extractor.cpython-38.pyc │ ├── win_wlan_passwd_and_wanip_extractor.cpython-39.pyc │ └── wlan_passwd_and_wanip_extractor.cpython-38.pyc ├── knowing_win_pid.py ├── lnx_keylogger.py ├── rev_shell.py ├── win_chrome_password_extractor.py ├── win_keylogger.py └── win_wlan_passwd_and_wanip_extractor.py ├── server └── server.py ├── srvr_requirement.txt └── win_requirement.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/README.md -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/images/shell.png -------------------------------------------------------------------------------- /lnx_requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/lnx_requirement.txt -------------------------------------------------------------------------------- /rev_shell/__pycache__/knowing_win_pid.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/knowing_win_pid.cpython-38.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/knowing_win_pid.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/knowing_win_pid.cpython-39.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/lnx_keylogger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/lnx_keylogger.cpython-38.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/lnx_keylogger.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/lnx_keylogger.cpython-39.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/win_chrome_password_extractor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/win_chrome_password_extractor.cpython-38.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/win_chrome_password_extractor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/win_chrome_password_extractor.cpython-39.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/win_keylogger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/win_keylogger.cpython-38.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/win_keylogger.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/win_keylogger.cpython-39.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/win_wlan_passwd_and_wanip_extractor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/win_wlan_passwd_and_wanip_extractor.cpython-38.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/win_wlan_passwd_and_wanip_extractor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/win_wlan_passwd_and_wanip_extractor.cpython-39.pyc -------------------------------------------------------------------------------- /rev_shell/__pycache__/wlan_passwd_and_wanip_extractor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/__pycache__/wlan_passwd_and_wanip_extractor.cpython-38.pyc -------------------------------------------------------------------------------- /rev_shell/knowing_win_pid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/knowing_win_pid.py -------------------------------------------------------------------------------- /rev_shell/lnx_keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/lnx_keylogger.py -------------------------------------------------------------------------------- /rev_shell/rev_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/rev_shell.py -------------------------------------------------------------------------------- /rev_shell/win_chrome_password_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/win_chrome_password_extractor.py -------------------------------------------------------------------------------- /rev_shell/win_keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/win_keylogger.py -------------------------------------------------------------------------------- /rev_shell/win_wlan_passwd_and_wanip_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/rev_shell/win_wlan_passwd_and_wanip_extractor.py -------------------------------------------------------------------------------- /server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/server/server.py -------------------------------------------------------------------------------- /srvr_requirement.txt: -------------------------------------------------------------------------------- 1 | termcolor==1.1.0 2 | pyfiglet==0.8.post1 3 | -------------------------------------------------------------------------------- /win_requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveng007/C2_Server/HEAD/win_requirement.txt --------------------------------------------------------------------------------