├── .gitignore ├── README.md ├── TODO.md ├── beacons └── https_beacon.ps1 ├── core ├── crypto.py ├── html │ └── 404.html ├── less.py ├── listener.py ├── logger.py ├── main_menu.py └── stash.py ├── palinka_c2.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/TODO.md -------------------------------------------------------------------------------- /beacons/https_beacon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/beacons/https_beacon.ps1 -------------------------------------------------------------------------------- /core/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/core/crypto.py -------------------------------------------------------------------------------- /core/html/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/core/html/404.html -------------------------------------------------------------------------------- /core/less.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/core/less.py -------------------------------------------------------------------------------- /core/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/core/listener.py -------------------------------------------------------------------------------- /core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/core/logger.py -------------------------------------------------------------------------------- /core/main_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/core/main_menu.py -------------------------------------------------------------------------------- /core/stash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/core/stash.py -------------------------------------------------------------------------------- /palinka_c2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapolis/palinka_c2/HEAD/palinka_c2.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome 2 | flask 3 | simple-term-menu 4 | colorama 5 | pyAesCrypt --------------------------------------------------------------------------------