├── Readme.md ├── c2.py ├── clear ├── core ├── agent.py ├── agentshelpers.py ├── common.py ├── encryption.py ├── listener.py ├── listenershelpers.py ├── menu.py └── payloadshelpers.py ├── lib └── templates │ ├── powershell.ps1 │ ├── source │ └── winexe │ │ └── winexe.cpp │ └── winexe │ ├── winexe32.exe │ └── winexe64.exe └── requirements.txt /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/Readme.md -------------------------------------------------------------------------------- /c2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/c2.py -------------------------------------------------------------------------------- /clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/clear -------------------------------------------------------------------------------- /core/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/core/agent.py -------------------------------------------------------------------------------- /core/agentshelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/core/agentshelpers.py -------------------------------------------------------------------------------- /core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/core/common.py -------------------------------------------------------------------------------- /core/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/core/encryption.py -------------------------------------------------------------------------------- /core/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/core/listener.py -------------------------------------------------------------------------------- /core/listenershelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/core/listenershelpers.py -------------------------------------------------------------------------------- /core/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/core/menu.py -------------------------------------------------------------------------------- /core/payloadshelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/core/payloadshelpers.py -------------------------------------------------------------------------------- /lib/templates/powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/lib/templates/powershell.ps1 -------------------------------------------------------------------------------- /lib/templates/source/winexe/winexe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/lib/templates/source/winexe/winexe.cpp -------------------------------------------------------------------------------- /lib/templates/winexe/winexe32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/lib/templates/winexe/winexe32.exe -------------------------------------------------------------------------------- /lib/templates/winexe/winexe64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xRick/c2/HEAD/lib/templates/winexe/winexe64.exe -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | netifaces 2 | flask 3 | readline 4 | pycrypto 5 | --------------------------------------------------------------------------------