├── .gitignore ├── .obsidian ├── app.json ├── appearance.json ├── community-plugins.json ├── core-plugins.json ├── hotkeys.json ├── plugins │ └── obsidian-annotator │ │ ├── main.js │ │ └── manifest.json ├── themes │ └── Minimal.css └── workspace ├── Part 1 ├── Cyber Threat Intelligence │ ├── _Optional paid resources.md │ ├── _Questions to think about.md │ ├── _Read and watch.md │ └── _Things to do.md ├── Frameworks and Models │ ├── _Questions to think about.md │ ├── _Read and watch.md │ └── _Things to do.md ├── Intelligence │ ├── _Optional paid resource.md │ ├── _Questions to think about.md │ ├── _Read and watch.md │ └── _Things to do.md ├── Part 1.md ├── Requirements │ ├── _Questions to think about.md │ ├── _Read and watch.md │ └── _Things to do.md └── The CTI Community │ ├── _Questions to think about.md │ └── _Things to do.md ├── Part 2 ├── Attribution │ ├── _Questions to think about.md │ ├── _Read and watch.md │ └── _Things to do.md ├── Clustering, Naming, and Creating Groups │ ├── _Questions to think about.md │ ├── _Read and watch.md │ └── _Things to do.md ├── OSINT and Open Sources │ ├── _Questions to think about.md │ ├── _Read and watch.md │ └── _Things to do.md ├── Part 2.md └── Pivoting │ ├── _Questions to think about.md │ ├── _Read and watch.md │ └── _Things to do.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.obsidian/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "useTab": false 3 | } -------------------------------------------------------------------------------- /.obsidian/appearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/.obsidian/appearance.json -------------------------------------------------------------------------------- /.obsidian/community-plugins.json: -------------------------------------------------------------------------------- 1 | [ 2 | "obsidian-annotator" 3 | ] -------------------------------------------------------------------------------- /.obsidian/core-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/.obsidian/core-plugins.json -------------------------------------------------------------------------------- /.obsidian/hotkeys.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-annotator/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/.obsidian/plugins/obsidian-annotator/main.js -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-annotator/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/.obsidian/plugins/obsidian-annotator/manifest.json -------------------------------------------------------------------------------- /.obsidian/themes/Minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/.obsidian/themes/Minimal.css -------------------------------------------------------------------------------- /.obsidian/workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/.obsidian/workspace -------------------------------------------------------------------------------- /Part 1/Cyber Threat Intelligence/_Optional paid resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Cyber Threat Intelligence/_Optional paid resources.md -------------------------------------------------------------------------------- /Part 1/Cyber Threat Intelligence/_Questions to think about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Cyber Threat Intelligence/_Questions to think about.md -------------------------------------------------------------------------------- /Part 1/Cyber Threat Intelligence/_Read and watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Cyber Threat Intelligence/_Read and watch.md -------------------------------------------------------------------------------- /Part 1/Cyber Threat Intelligence/_Things to do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Cyber Threat Intelligence/_Things to do.md -------------------------------------------------------------------------------- /Part 1/Frameworks and Models/_Questions to think about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Frameworks and Models/_Questions to think about.md -------------------------------------------------------------------------------- /Part 1/Frameworks and Models/_Read and watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Frameworks and Models/_Read and watch.md -------------------------------------------------------------------------------- /Part 1/Frameworks and Models/_Things to do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Frameworks and Models/_Things to do.md -------------------------------------------------------------------------------- /Part 1/Intelligence/_Optional paid resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Intelligence/_Optional paid resource.md -------------------------------------------------------------------------------- /Part 1/Intelligence/_Questions to think about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Intelligence/_Questions to think about.md -------------------------------------------------------------------------------- /Part 1/Intelligence/_Read and watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Intelligence/_Read and watch.md -------------------------------------------------------------------------------- /Part 1/Intelligence/_Things to do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Intelligence/_Things to do.md -------------------------------------------------------------------------------- /Part 1/Part 1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Part 1.md -------------------------------------------------------------------------------- /Part 1/Requirements/_Questions to think about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Requirements/_Questions to think about.md -------------------------------------------------------------------------------- /Part 1/Requirements/_Read and watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Requirements/_Read and watch.md -------------------------------------------------------------------------------- /Part 1/Requirements/_Things to do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/Requirements/_Things to do.md -------------------------------------------------------------------------------- /Part 1/The CTI Community/_Questions to think about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/The CTI Community/_Questions to think about.md -------------------------------------------------------------------------------- /Part 1/The CTI Community/_Things to do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 1/The CTI Community/_Things to do.md -------------------------------------------------------------------------------- /Part 2/Attribution/_Questions to think about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Attribution/_Questions to think about.md -------------------------------------------------------------------------------- /Part 2/Attribution/_Read and watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Attribution/_Read and watch.md -------------------------------------------------------------------------------- /Part 2/Attribution/_Things to do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Attribution/_Things to do.md -------------------------------------------------------------------------------- /Part 2/Clustering, Naming, and Creating Groups/_Questions to think about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Clustering, Naming, and Creating Groups/_Questions to think about.md -------------------------------------------------------------------------------- /Part 2/Clustering, Naming, and Creating Groups/_Read and watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Clustering, Naming, and Creating Groups/_Read and watch.md -------------------------------------------------------------------------------- /Part 2/Clustering, Naming, and Creating Groups/_Things to do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Clustering, Naming, and Creating Groups/_Things to do.md -------------------------------------------------------------------------------- /Part 2/OSINT and Open Sources/_Questions to think about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/OSINT and Open Sources/_Questions to think about.md -------------------------------------------------------------------------------- /Part 2/OSINT and Open Sources/_Read and watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/OSINT and Open Sources/_Read and watch.md -------------------------------------------------------------------------------- /Part 2/OSINT and Open Sources/_Things to do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/OSINT and Open Sources/_Things to do.md -------------------------------------------------------------------------------- /Part 2/Part 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Part 2.md -------------------------------------------------------------------------------- /Part 2/Pivoting/_Questions to think about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Pivoting/_Questions to think about.md -------------------------------------------------------------------------------- /Part 2/Pivoting/_Read and watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Pivoting/_Read and watch.md -------------------------------------------------------------------------------- /Part 2/Pivoting/_Things to do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/Part 2/Pivoting/_Things to do.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattreduce/cti-self-study/HEAD/README.md --------------------------------------------------------------------------------