├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bash-completion └── sploitctl ├── man └── sploitctl.1 ├── repo.json ├── requirements.txt └── sploitctl.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackArch/sploitctl/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackArch/sploitctl/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackArch/sploitctl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackArch/sploitctl/HEAD/README.md -------------------------------------------------------------------------------- /bash-completion/sploitctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackArch/sploitctl/HEAD/bash-completion/sploitctl -------------------------------------------------------------------------------- /man/sploitctl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackArch/sploitctl/HEAD/man/sploitctl.1 -------------------------------------------------------------------------------- /repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackArch/sploitctl/HEAD/repo.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | termcolor 3 | pygit2 -------------------------------------------------------------------------------- /sploitctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackArch/sploitctl/HEAD/sploitctl.py --------------------------------------------------------------------------------