├── .all-contributorsrc ├── .github ├── auto_assign.yml ├── pull_request_template.md └── workflows │ ├── cd.yaml │ └── ci.yml ├── .gitignore ├── .markdownlint.json ├── .mlc_config.json ├── LICENSE ├── README.md ├── archive.md ├── assets └── purpleteam.png ├── code-of-conduct.md └── contributing.md /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .dccache 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.mlc_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/.mlc_config.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/README.md -------------------------------------------------------------------------------- /archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/archive.md -------------------------------------------------------------------------------- /assets/purpleteam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/assets/purpleteam.png -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brootware/awesome-cyber-security-university/HEAD/contributing.md --------------------------------------------------------------------------------