├── .gitignore ├── README.md ├── cyballistics ├── cyballistics.ipynb └── enterprise-attack-v13.1.xlsx ├── dns-analysis ├── data.csv ├── dns-analysis.ipynb ├── map.html └── top-1m.csv ├── ioc-scoring └── IOC.ipynb ├── json-parser ├── FIN6+FIN7+FIN8.json └── json-parser.ipynb ├── packet_analysis └── packet_analysis.ipynb ├── pcaps ├── generated_traffic_1.pcap ├── generated_traffic_2.pcap ├── generated_traffic_3.pcap └── generated_traffic_4.pcap ├── requirements.txt ├── threatmodeling ├── .gitignore ├── DREAD.ipynb ├── README.md ├── attacktrees.ipynb ├── labs.md ├── myTreeName.dot └── tree.dot └── titanic ├── data.csv └── titanic.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | vt-cti 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /cyballistics/cyballistics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/cyballistics/cyballistics.ipynb -------------------------------------------------------------------------------- /cyballistics/enterprise-attack-v13.1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/cyballistics/enterprise-attack-v13.1.xlsx -------------------------------------------------------------------------------- /dns-analysis/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/dns-analysis/data.csv -------------------------------------------------------------------------------- /dns-analysis/dns-analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/dns-analysis/dns-analysis.ipynb -------------------------------------------------------------------------------- /dns-analysis/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/dns-analysis/map.html -------------------------------------------------------------------------------- /dns-analysis/top-1m.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/dns-analysis/top-1m.csv -------------------------------------------------------------------------------- /ioc-scoring/IOC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/ioc-scoring/IOC.ipynb -------------------------------------------------------------------------------- /json-parser/FIN6+FIN7+FIN8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/json-parser/FIN6+FIN7+FIN8.json -------------------------------------------------------------------------------- /json-parser/json-parser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/json-parser/json-parser.ipynb -------------------------------------------------------------------------------- /packet_analysis/packet_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/packet_analysis/packet_analysis.ipynb -------------------------------------------------------------------------------- /pcaps/generated_traffic_1.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/pcaps/generated_traffic_1.pcap -------------------------------------------------------------------------------- /pcaps/generated_traffic_2.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/pcaps/generated_traffic_2.pcap -------------------------------------------------------------------------------- /pcaps/generated_traffic_3.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/pcaps/generated_traffic_3.pcap -------------------------------------------------------------------------------- /pcaps/generated_traffic_4.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/pcaps/generated_traffic_4.pcap -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/requirements.txt -------------------------------------------------------------------------------- /threatmodeling/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /threatmodeling/DREAD.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/threatmodeling/DREAD.ipynb -------------------------------------------------------------------------------- /threatmodeling/README.md: -------------------------------------------------------------------------------- 1 |

Practical Threat Modeling Labs

2 | 3 | by @aboutsecurity 4 | -------------------------------------------------------------------------------- /threatmodeling/attacktrees.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/threatmodeling/attacktrees.ipynb -------------------------------------------------------------------------------- /threatmodeling/labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/threatmodeling/labs.md -------------------------------------------------------------------------------- /threatmodeling/myTreeName.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/threatmodeling/myTreeName.dot -------------------------------------------------------------------------------- /threatmodeling/tree.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/threatmodeling/tree.dot -------------------------------------------------------------------------------- /titanic/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/titanic/data.csv -------------------------------------------------------------------------------- /titanic/titanic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutsecurity/jupyter-notebooks/HEAD/titanic/titanic.ipynb --------------------------------------------------------------------------------