├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── .gitkeep │ ├── feature-req.md │ ├── new-comparison.md │ ├── new-template.md │ ├── nfs.md │ ├── request-change.md │ └── video-sub.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ └── .gitkeep ├── SUPPORT.md └── workflows │ └── .gitkeep ├── .gitignore ├── LICENSE ├── README.md ├── RESEARCH.md ├── Vagrantfile ├── frameworks ├── apfell │ └── .gitkeep ├── covenant │ └── .gitkeep ├── factionc2 │ └── .gitkeep ├── merlin │ └── .gitkeep ├── poshc2_python │ └── .gitkeep ├── silenttrinity │ └── .gitkeep ├── sliver │ └── .gitkeep └── urls └── repo_scripts ├── github_to_md.sh └── vagrant_prov └── prov.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-req.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/ISSUE_TEMPLATE/feature-req.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/ISSUE_TEMPLATE/new-comparison.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/ISSUE_TEMPLATE/new-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/nfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/ISSUE_TEMPLATE/nfs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/ISSUE_TEMPLATE/request-change.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/video-sub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/ISSUE_TEMPLATE/video-sub.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/README.md -------------------------------------------------------------------------------- /RESEARCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/RESEARCH.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/Vagrantfile -------------------------------------------------------------------------------- /frameworks/apfell/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/covenant/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/factionc2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/merlin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/poshc2_python/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/silenttrinity/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/sliver/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/frameworks/urls -------------------------------------------------------------------------------- /repo_scripts/github_to_md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/repo_scripts/github_to_md.sh -------------------------------------------------------------------------------- /repo_scripts/vagrant_prov/prov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessionallyEvil/C4/HEAD/repo_scripts/vagrant_prov/prov.sh --------------------------------------------------------------------------------