├── .gitignore ├── Dockerfile ├── Empire ├── README.md ├── data │ └── module_source │ │ └── python │ │ └── management │ │ └── socks-src.py └── lib │ └── modules │ └── python │ └── management │ └── multi │ └── socks.py ├── README.md ├── arox.py ├── bin └── cert.sh └── ssl └── .gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klustic/AlmondRocks/HEAD/Dockerfile -------------------------------------------------------------------------------- /Empire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klustic/AlmondRocks/HEAD/Empire/README.md -------------------------------------------------------------------------------- /Empire/data/module_source/python/management/socks-src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klustic/AlmondRocks/HEAD/Empire/data/module_source/python/management/socks-src.py -------------------------------------------------------------------------------- /Empire/lib/modules/python/management/multi/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klustic/AlmondRocks/HEAD/Empire/lib/modules/python/management/multi/socks.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klustic/AlmondRocks/HEAD/README.md -------------------------------------------------------------------------------- /arox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klustic/AlmondRocks/HEAD/arox.py -------------------------------------------------------------------------------- /bin/cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klustic/AlmondRocks/HEAD/bin/cert.sh -------------------------------------------------------------------------------- /ssl/.gitignore: -------------------------------------------------------------------------------- 1 | *.pem --------------------------------------------------------------------------------