├── README.md ├── main.py ├── requirements.txt └── src ├── Commands ├── Methods_Games │ ├── __pycache__ │ │ ├── roblox.cpython-312.pyc │ │ └── vse.cpython-312.pyc │ ├── roblox.py │ └── vse.py ├── Methods_L3 │ ├── __pycache__ │ │ ├── icmp.cpython-312.pyc │ │ └── pod.cpython-312.pyc │ ├── icmp.py │ └── pod.py ├── Methods_L4 │ ├── __pycache__ │ │ ├── ack.cpython-312.pyc │ │ ├── hex.cpython-312.pyc │ │ ├── junk.cpython-312.pyc │ │ ├── mem.cpython-312.pyc │ │ ├── ntp.cpython-312.pyc │ │ ├── tcp.cpython-312.pyc │ │ ├── tup.cpython-312.pyc │ │ └── udp.cpython-312.pyc │ ├── hex.py │ ├── junk.py │ ├── mem.py │ ├── ntp.py │ ├── syn.py │ ├── tcp.py │ ├── tup.py │ └── udp.py ├── Methods_L7 │ ├── __pycache__ │ │ ├── httpcfb.cpython-312.pyc │ │ ├── httpget.cpython-312.pyc │ │ ├── httpio.cpython-312.pyc │ │ ├── httpspoof.cpython-312.pyc │ │ └── httpstorm.cpython-312.pyc │ ├── httpcfb.py │ ├── httpget.py │ ├── httpio.py │ ├── httpspoof.py │ └── httpstorm.py └── Tools │ ├── __pycache__ │ ├── ip_to_loc.cpython-312.pyc │ └── url_to_ip.cpython-312.pyc │ ├── ip_to_loc.py │ └── url_to_ip.py ├── Payload ├── bot.py ├── memsv.txt ├── ntpServers.txt └── socks4.txt ├── cnc.py ├── config.json └── logins.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | requests 3 | -------------------------------------------------------------------------------- /src/Commands/Methods_Games/__pycache__/roblox.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_Games/__pycache__/roblox.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_Games/__pycache__/vse.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_Games/__pycache__/vse.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_Games/roblox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_Games/roblox.py -------------------------------------------------------------------------------- /src/Commands/Methods_Games/vse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_Games/vse.py -------------------------------------------------------------------------------- /src/Commands/Methods_L3/__pycache__/icmp.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L3/__pycache__/icmp.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L3/__pycache__/pod.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L3/__pycache__/pod.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L3/icmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L3/icmp.py -------------------------------------------------------------------------------- /src/Commands/Methods_L3/pod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L3/pod.py -------------------------------------------------------------------------------- /src/Commands/Methods_L4/__pycache__/ack.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/__pycache__/ack.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L4/__pycache__/hex.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/__pycache__/hex.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L4/__pycache__/junk.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/__pycache__/junk.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L4/__pycache__/mem.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/__pycache__/mem.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L4/__pycache__/ntp.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/__pycache__/ntp.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L4/__pycache__/tcp.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/__pycache__/tcp.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L4/__pycache__/tup.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/__pycache__/tup.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L4/__pycache__/udp.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/__pycache__/udp.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L4/hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/hex.py -------------------------------------------------------------------------------- /src/Commands/Methods_L4/junk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/junk.py -------------------------------------------------------------------------------- /src/Commands/Methods_L4/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/mem.py -------------------------------------------------------------------------------- /src/Commands/Methods_L4/ntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/ntp.py -------------------------------------------------------------------------------- /src/Commands/Methods_L4/syn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/syn.py -------------------------------------------------------------------------------- /src/Commands/Methods_L4/tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/tcp.py -------------------------------------------------------------------------------- /src/Commands/Methods_L4/tup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/tup.py -------------------------------------------------------------------------------- /src/Commands/Methods_L4/udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L4/udp.py -------------------------------------------------------------------------------- /src/Commands/Methods_L7/__pycache__/httpcfb.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/__pycache__/httpcfb.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L7/__pycache__/httpget.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/__pycache__/httpget.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L7/__pycache__/httpio.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/__pycache__/httpio.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L7/__pycache__/httpspoof.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/__pycache__/httpspoof.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L7/__pycache__/httpstorm.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/__pycache__/httpstorm.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Methods_L7/httpcfb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/httpcfb.py -------------------------------------------------------------------------------- /src/Commands/Methods_L7/httpget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/httpget.py -------------------------------------------------------------------------------- /src/Commands/Methods_L7/httpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/httpio.py -------------------------------------------------------------------------------- /src/Commands/Methods_L7/httpspoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/httpspoof.py -------------------------------------------------------------------------------- /src/Commands/Methods_L7/httpstorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Methods_L7/httpstorm.py -------------------------------------------------------------------------------- /src/Commands/Tools/__pycache__/ip_to_loc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Tools/__pycache__/ip_to_loc.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Tools/__pycache__/url_to_ip.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Tools/__pycache__/url_to_ip.cpython-312.pyc -------------------------------------------------------------------------------- /src/Commands/Tools/ip_to_loc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Tools/ip_to_loc.py -------------------------------------------------------------------------------- /src/Commands/Tools/url_to_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Commands/Tools/url_to_ip.py -------------------------------------------------------------------------------- /src/Payload/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Payload/bot.py -------------------------------------------------------------------------------- /src/Payload/memsv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Payload/memsv.txt -------------------------------------------------------------------------------- /src/Payload/ntpServers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Payload/ntpServers.txt -------------------------------------------------------------------------------- /src/Payload/socks4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/Payload/socks4.txt -------------------------------------------------------------------------------- /src/cnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/cnc.py -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/config.json -------------------------------------------------------------------------------- /src/logins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CirqueiraDev/KryptonC2/HEAD/src/logins.txt --------------------------------------------------------------------------------