├── .gitignore ├── ARTHound.py ├── BloodSOCer.py ├── Cyphers ├── Detect-Test-Mimikatz.json ├── FIN7-Sigma.json ├── FIN7-Tactics.json ├── Playbooks-FIN7.json └── TA-uses-PetitPotam.json ├── Define-Icons.py ├── LICENSE ├── MitreHound.py ├── README.md ├── SigmaHound.py ├── UL-Cyphers.py ├── output └── playbooks_graph.json ├── requirements.txt └── resources ├── Arrows-BloodSOCer.json ├── Arrows-BloodSOCer.png ├── BloodSOCer.png ├── Cypher-1.png ├── Cypher-2.png ├── Cypher-3.png └── Cypher-4.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/.gitignore -------------------------------------------------------------------------------- /ARTHound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/ARTHound.py -------------------------------------------------------------------------------- /BloodSOCer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/BloodSOCer.py -------------------------------------------------------------------------------- /Cyphers/Detect-Test-Mimikatz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/Cyphers/Detect-Test-Mimikatz.json -------------------------------------------------------------------------------- /Cyphers/FIN7-Sigma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/Cyphers/FIN7-Sigma.json -------------------------------------------------------------------------------- /Cyphers/FIN7-Tactics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/Cyphers/FIN7-Tactics.json -------------------------------------------------------------------------------- /Cyphers/Playbooks-FIN7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/Cyphers/Playbooks-FIN7.json -------------------------------------------------------------------------------- /Cyphers/TA-uses-PetitPotam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/Cyphers/TA-uses-PetitPotam.json -------------------------------------------------------------------------------- /Define-Icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/Define-Icons.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/LICENSE -------------------------------------------------------------------------------- /MitreHound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/MitreHound.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/README.md -------------------------------------------------------------------------------- /SigmaHound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/SigmaHound.py -------------------------------------------------------------------------------- /UL-Cyphers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/UL-Cyphers.py -------------------------------------------------------------------------------- /output/playbooks_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/output/playbooks_graph.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | httpx>=0.23.0 2 | blood-hound-python-client>=1.0.5 3 | requests>=2.28.0 4 | yaml>=6.0 -------------------------------------------------------------------------------- /resources/Arrows-BloodSOCer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/resources/Arrows-BloodSOCer.json -------------------------------------------------------------------------------- /resources/Arrows-BloodSOCer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/resources/Arrows-BloodSOCer.png -------------------------------------------------------------------------------- /resources/BloodSOCer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/resources/BloodSOCer.png -------------------------------------------------------------------------------- /resources/Cypher-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/resources/Cypher-1.png -------------------------------------------------------------------------------- /resources/Cypher-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/resources/Cypher-2.png -------------------------------------------------------------------------------- /resources/Cypher-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/resources/Cypher-3.png -------------------------------------------------------------------------------- /resources/Cypher-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scoubi/BloodSOCer/HEAD/resources/Cypher-4.png --------------------------------------------------------------------------------