├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── about.md ├── after.md ├── during.md ├── examples ├── plan.docx ├── plan.html ├── plan.md └── plan.pdf ├── humans.txt ├── info.yml ├── pandoc.yml ├── playbooks ├── index.md ├── playbook-defacement.md ├── playbook-identity-and-access.md ├── playbook-phishing.md ├── playbook-ransomware.md └── playbook-supply-chain.md ├── reference └── glossary.md ├── roles ├── index.md ├── role-0-all-participants.md ├── role-1-commander.md ├── role-2-deputy.md ├── role-3-scribe.md ├── role-4-expert.md └── role-5-liaison.md └── test.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/README.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/about.md -------------------------------------------------------------------------------- /after.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/after.md -------------------------------------------------------------------------------- /during.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/during.md -------------------------------------------------------------------------------- /examples/plan.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/examples/plan.docx -------------------------------------------------------------------------------- /examples/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/examples/plan.html -------------------------------------------------------------------------------- /examples/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/examples/plan.md -------------------------------------------------------------------------------- /examples/plan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/examples/plan.pdf -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/humans.txt -------------------------------------------------------------------------------- /info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/info.yml -------------------------------------------------------------------------------- /pandoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/pandoc.yml -------------------------------------------------------------------------------- /playbooks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/playbooks/index.md -------------------------------------------------------------------------------- /playbooks/playbook-defacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/playbooks/playbook-defacement.md -------------------------------------------------------------------------------- /playbooks/playbook-identity-and-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/playbooks/playbook-identity-and-access.md -------------------------------------------------------------------------------- /playbooks/playbook-phishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/playbooks/playbook-phishing.md -------------------------------------------------------------------------------- /playbooks/playbook-ransomware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/playbooks/playbook-ransomware.md -------------------------------------------------------------------------------- /playbooks/playbook-supply-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/playbooks/playbook-supply-chain.md -------------------------------------------------------------------------------- /reference/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/reference/glossary.md -------------------------------------------------------------------------------- /roles/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/roles/index.md -------------------------------------------------------------------------------- /roles/role-0-all-participants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/roles/role-0-all-participants.md -------------------------------------------------------------------------------- /roles/role-1-commander.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/roles/role-1-commander.md -------------------------------------------------------------------------------- /roles/role-2-deputy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/roles/role-2-deputy.md -------------------------------------------------------------------------------- /roles/role-3-scribe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/roles/role-3-scribe.md -------------------------------------------------------------------------------- /roles/role-4-expert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/roles/role-4-expert.md -------------------------------------------------------------------------------- /roles/role-5-liaison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/counteractive/incident-response-plan-template/HEAD/roles/role-5-liaison.md -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- 1 | {{AUTHOR_NAME}} 2 | 3 | more test data. 4 | --------------------------------------------------------------------------------