├── .gitignore ├── CONTRIBUTING.md ├── GLOSSARY.md ├── LICENSE ├── MisconfigurationManager.ps1 ├── README.md ├── RESOURCES.md ├── attack-techniques ├── COERCE │ ├── COERCE-1 │ │ └── coerce-1_description.md │ └── COERCE-2 │ │ └── coerce-2_description.md ├── CRED │ ├── CRED-1 │ │ └── cred-1_description.md │ ├── CRED-2 │ │ └── cred-2_description.md │ ├── CRED-3 │ │ └── cred-3_description.md │ ├── CRED-4 │ │ └── cred-4_description.md │ ├── CRED-5 │ │ └── cred-5_description.md │ ├── CRED-6 │ │ └── cred-6_description.md │ ├── CRED-7 │ │ └── cred-7_description.md │ └── CRED-8 │ │ └── cred-8_description.md ├── ELEVATE │ ├── ELEVATE-1 │ │ └── ELEVATE-1_description.md │ ├── ELEVATE-2 │ │ └── ELEVATE-2_description.md │ ├── ELEVATE-3 │ │ └── ELEVATE-3_description.md │ ├── ELEVATE-4 │ │ └── ELEVATE-4_description.md │ └── ELEVATE-5 │ │ └── ELEVATE-5_description.md ├── EXEC │ ├── EXEC-1 │ │ └── exec-1_description.md │ └── EXEC-2 │ │ └── exec-2_description.md ├── README.md ├── RECON │ ├── RECON-1 │ │ └── recon-1_description.md │ ├── RECON-2 │ │ └── recon-2_description.md │ ├── RECON-3 │ │ └── recon-3_description.md │ ├── RECON-4 │ │ └── recon-4_description.md │ ├── RECON-5 │ │ └── recon-5_description.md │ ├── RECON-6 │ │ └── recon-6_description.md │ └── RECON-7 │ │ └── recon-7_description.md ├── TAKEOVER │ ├── TAKEOVER-1 │ │ └── takeover-1_description.md │ ├── TAKEOVER-2 │ │ └── takeover-2_description.md │ ├── TAKEOVER-3 │ │ └── takeover-3_description.md │ ├── TAKEOVER-4 │ │ └── takeover-4_description.md │ ├── TAKEOVER-5 │ │ └── takeover-5_description.md │ ├── TAKEOVER-6 │ │ └── takeover-6_description.md │ ├── TAKEOVER-7 │ │ └── takeover-7_description.md │ ├── TAKEOVER-8 │ │ └── takeover-8_description.md │ ├── TAKEOVER-9 │ │ └── takeover-9_description.md │ └── _takeover-techniques-list.md └── _attack-template.md ├── defense-techniques ├── CANARY │ └── CANARY-1 │ │ └── canary-1_description.md ├── DETECT │ ├── DETECT-1 │ │ └── detect-1_description.md │ ├── DETECT-2 │ │ └── detect-2_description.md │ ├── DETECT-3 │ │ └── detect-3_description.md │ ├── DETECT-4 │ │ └── detect-4_description.md │ ├── DETECT-5 │ │ └── detect-5_description.md │ ├── DETECT-6 │ │ └── detect-6_description.md │ ├── DETECT-7 │ │ └── detect-7_description.md │ ├── DETECT-8 │ │ └── detect-8_description.md │ └── DETECT-9 │ │ └── detect-9_description.md ├── PREVENT │ ├── PREVENT-1 │ │ ├── prevent-1_description.md │ │ └── prevent-1_ntlm-fallback.png │ ├── PREVENT-10 │ │ └── prevent-10_description.md │ ├── PREVENT-11 │ │ └── prevent-11_description.md │ ├── PREVENT-12 │ │ ├── prevent-12_auth-vs-session.png │ │ ├── prevent-12_description.md │ │ ├── prevent-12_ntlm-cross-protocol.png │ │ ├── prevent_12-ntlm_session-signing-failed.png │ │ └── prevent_12_ntlm-signing-table.png │ ├── PREVENT-13 │ │ ├── prevent-13_auth-vs-session.png │ │ ├── prevent-13_description.md │ │ ├── prevent-13_ntlm-cross-protocol.png │ │ ├── prevent-13_ntlm-ldap-signing-table.png │ │ └── prevent_13-ntlm_session-signing-failed.png │ ├── PREVENT-14 │ │ └── prevent-14_description.md │ ├── PREVENT-15 │ │ └── prevent-15_description.md │ ├── PREVENT-16 │ │ ├── prevent-16_aduc.png │ │ ├── prevent-16_description.md │ │ └── prevent-16_gp.png │ ├── PREVENT-17 │ │ └── prevent-17_description.md │ ├── PREVENT-18 │ │ └── prevent-18_description.md │ ├── PREVENT-19 │ │ └── prevent-19_description.md │ ├── PREVENT-2 │ │ ├── prevent-2_description.md │ │ └── prevent-2_ntlm-fallback.png │ ├── PREVENT-20 │ │ └── prevent-20_description.md │ ├── PREVENT-21 │ │ └── prevent-21_description.md │ ├── PREVENT-22 │ │ └── prevent-22_description.md │ ├── PREVENT-3 │ │ ├── prevent-3_description.md │ │ └── prevent-3_naa-disable.png │ ├── PREVENT-4 │ │ ├── prevent-4_description.md │ │ └── prevent-4_ehttp-diagram.png │ ├── PREVENT-5 │ │ └── prevent-5_description.md │ ├── PREVENT-6 │ │ ├── prevent-6_description.md │ │ └── prevent-6_pxe-password.png │ ├── PREVENT-7 │ │ └── prevent-7_description.md │ ├── PREVENT-8 │ │ ├── prevent-8_description.md │ │ └── prevent-8_pki-settings.png │ └── PREVENT-9 │ │ └── prevent-9_description.md ├── README.md └── _defense-template.md └── presentations ├── SO-CON 2024 - Misconfiguration Manager - Slides.pdf ├── SO-CON 2025 - Admins Guide to Preventing SCCM Attacks.pdf ├── Troopers 24 - Misconfiguration Manager.pdf └── Troopers 25 - Misconfiguration Manager.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .obsidian/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GLOSSARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/GLOSSARY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/LICENSE -------------------------------------------------------------------------------- /MisconfigurationManager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/MisconfigurationManager.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/README.md -------------------------------------------------------------------------------- /RESOURCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/RESOURCES.md -------------------------------------------------------------------------------- /attack-techniques/COERCE/COERCE-1/coerce-1_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/COERCE/COERCE-1/coerce-1_description.md -------------------------------------------------------------------------------- /attack-techniques/COERCE/COERCE-2/coerce-2_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/COERCE/COERCE-2/coerce-2_description.md -------------------------------------------------------------------------------- /attack-techniques/CRED/CRED-1/cred-1_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/CRED/CRED-1/cred-1_description.md -------------------------------------------------------------------------------- /attack-techniques/CRED/CRED-2/cred-2_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/CRED/CRED-2/cred-2_description.md -------------------------------------------------------------------------------- /attack-techniques/CRED/CRED-3/cred-3_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/CRED/CRED-3/cred-3_description.md -------------------------------------------------------------------------------- /attack-techniques/CRED/CRED-4/cred-4_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/CRED/CRED-4/cred-4_description.md -------------------------------------------------------------------------------- /attack-techniques/CRED/CRED-5/cred-5_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/CRED/CRED-5/cred-5_description.md -------------------------------------------------------------------------------- /attack-techniques/CRED/CRED-6/cred-6_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/CRED/CRED-6/cred-6_description.md -------------------------------------------------------------------------------- /attack-techniques/CRED/CRED-7/cred-7_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/CRED/CRED-7/cred-7_description.md -------------------------------------------------------------------------------- /attack-techniques/CRED/CRED-8/cred-8_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/CRED/CRED-8/cred-8_description.md -------------------------------------------------------------------------------- /attack-techniques/ELEVATE/ELEVATE-1/ELEVATE-1_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/ELEVATE/ELEVATE-1/ELEVATE-1_description.md -------------------------------------------------------------------------------- /attack-techniques/ELEVATE/ELEVATE-2/ELEVATE-2_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/ELEVATE/ELEVATE-2/ELEVATE-2_description.md -------------------------------------------------------------------------------- /attack-techniques/ELEVATE/ELEVATE-3/ELEVATE-3_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/ELEVATE/ELEVATE-3/ELEVATE-3_description.md -------------------------------------------------------------------------------- /attack-techniques/ELEVATE/ELEVATE-4/ELEVATE-4_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/ELEVATE/ELEVATE-4/ELEVATE-4_description.md -------------------------------------------------------------------------------- /attack-techniques/ELEVATE/ELEVATE-5/ELEVATE-5_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/ELEVATE/ELEVATE-5/ELEVATE-5_description.md -------------------------------------------------------------------------------- /attack-techniques/EXEC/EXEC-1/exec-1_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/EXEC/EXEC-1/exec-1_description.md -------------------------------------------------------------------------------- /attack-techniques/EXEC/EXEC-2/exec-2_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/EXEC/EXEC-2/exec-2_description.md -------------------------------------------------------------------------------- /attack-techniques/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/README.md -------------------------------------------------------------------------------- /attack-techniques/RECON/RECON-1/recon-1_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/RECON/RECON-1/recon-1_description.md -------------------------------------------------------------------------------- /attack-techniques/RECON/RECON-2/recon-2_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/RECON/RECON-2/recon-2_description.md -------------------------------------------------------------------------------- /attack-techniques/RECON/RECON-3/recon-3_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/RECON/RECON-3/recon-3_description.md -------------------------------------------------------------------------------- /attack-techniques/RECON/RECON-4/recon-4_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/RECON/RECON-4/recon-4_description.md -------------------------------------------------------------------------------- /attack-techniques/RECON/RECON-5/recon-5_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/RECON/RECON-5/recon-5_description.md -------------------------------------------------------------------------------- /attack-techniques/RECON/RECON-6/recon-6_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/RECON/RECON-6/recon-6_description.md -------------------------------------------------------------------------------- /attack-techniques/RECON/RECON-7/recon-7_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/RECON/RECON-7/recon-7_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/TAKEOVER-1/takeover-1_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/TAKEOVER-1/takeover-1_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/TAKEOVER-2/takeover-2_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/TAKEOVER-2/takeover-2_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/TAKEOVER-3/takeover-3_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/TAKEOVER-3/takeover-3_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/TAKEOVER-4/takeover-4_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/TAKEOVER-4/takeover-4_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/TAKEOVER-5/takeover-5_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/TAKEOVER-5/takeover-5_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/TAKEOVER-6/takeover-6_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/TAKEOVER-6/takeover-6_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/TAKEOVER-7/takeover-7_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/TAKEOVER-7/takeover-7_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/TAKEOVER-8/takeover-8_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/TAKEOVER-8/takeover-8_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/TAKEOVER-9/takeover-9_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/TAKEOVER-9/takeover-9_description.md -------------------------------------------------------------------------------- /attack-techniques/TAKEOVER/_takeover-techniques-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/TAKEOVER/_takeover-techniques-list.md -------------------------------------------------------------------------------- /attack-techniques/_attack-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/attack-techniques/_attack-template.md -------------------------------------------------------------------------------- /defense-techniques/CANARY/CANARY-1/canary-1_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/CANARY/CANARY-1/canary-1_description.md -------------------------------------------------------------------------------- /defense-techniques/DETECT/DETECT-1/detect-1_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/DETECT/DETECT-1/detect-1_description.md -------------------------------------------------------------------------------- /defense-techniques/DETECT/DETECT-2/detect-2_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/DETECT/DETECT-2/detect-2_description.md -------------------------------------------------------------------------------- /defense-techniques/DETECT/DETECT-3/detect-3_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/DETECT/DETECT-3/detect-3_description.md -------------------------------------------------------------------------------- /defense-techniques/DETECT/DETECT-4/detect-4_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/DETECT/DETECT-4/detect-4_description.md -------------------------------------------------------------------------------- /defense-techniques/DETECT/DETECT-5/detect-5_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/DETECT/DETECT-5/detect-5_description.md -------------------------------------------------------------------------------- /defense-techniques/DETECT/DETECT-6/detect-6_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/DETECT/DETECT-6/detect-6_description.md -------------------------------------------------------------------------------- /defense-techniques/DETECT/DETECT-7/detect-7_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/DETECT/DETECT-7/detect-7_description.md -------------------------------------------------------------------------------- /defense-techniques/DETECT/DETECT-8/detect-8_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/DETECT/DETECT-8/detect-8_description.md -------------------------------------------------------------------------------- /defense-techniques/DETECT/DETECT-9/detect-9_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/DETECT/DETECT-9/detect-9_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-1/prevent-1_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-1/prevent-1_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-1/prevent-1_ntlm-fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-1/prevent-1_ntlm-fallback.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-10/prevent-10_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-10/prevent-10_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-11/prevent-11_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-11/prevent-11_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-12/prevent-12_auth-vs-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-12/prevent-12_auth-vs-session.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-12/prevent-12_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-12/prevent-12_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-12/prevent-12_ntlm-cross-protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-12/prevent-12_ntlm-cross-protocol.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-12/prevent_12-ntlm_session-signing-failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-12/prevent_12-ntlm_session-signing-failed.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-12/prevent_12_ntlm-signing-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-12/prevent_12_ntlm-signing-table.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-13/prevent-13_auth-vs-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-13/prevent-13_auth-vs-session.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-13/prevent-13_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-13/prevent-13_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-13/prevent-13_ntlm-cross-protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-13/prevent-13_ntlm-cross-protocol.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-13/prevent-13_ntlm-ldap-signing-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-13/prevent-13_ntlm-ldap-signing-table.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-13/prevent_13-ntlm_session-signing-failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-13/prevent_13-ntlm_session-signing-failed.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-14/prevent-14_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-14/prevent-14_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-15/prevent-15_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-15/prevent-15_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-16/prevent-16_aduc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-16/prevent-16_aduc.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-16/prevent-16_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-16/prevent-16_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-16/prevent-16_gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-16/prevent-16_gp.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-17/prevent-17_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-17/prevent-17_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-18/prevent-18_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-18/prevent-18_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-19/prevent-19_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-19/prevent-19_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-2/prevent-2_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-2/prevent-2_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-2/prevent-2_ntlm-fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-2/prevent-2_ntlm-fallback.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-20/prevent-20_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-20/prevent-20_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-21/prevent-21_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-21/prevent-21_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-22/prevent-22_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-22/prevent-22_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-3/prevent-3_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-3/prevent-3_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-3/prevent-3_naa-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-3/prevent-3_naa-disable.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-4/prevent-4_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-4/prevent-4_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-4/prevent-4_ehttp-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-4/prevent-4_ehttp-diagram.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-5/prevent-5_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-5/prevent-5_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-6/prevent-6_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-6/prevent-6_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-6/prevent-6_pxe-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-6/prevent-6_pxe-password.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-7/prevent-7_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-7/prevent-7_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-8/prevent-8_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-8/prevent-8_description.md -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-8/prevent-8_pki-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-8/prevent-8_pki-settings.png -------------------------------------------------------------------------------- /defense-techniques/PREVENT/PREVENT-9/prevent-9_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/PREVENT/PREVENT-9/prevent-9_description.md -------------------------------------------------------------------------------- /defense-techniques/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/README.md -------------------------------------------------------------------------------- /defense-techniques/_defense-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/defense-techniques/_defense-template.md -------------------------------------------------------------------------------- /presentations/SO-CON 2024 - Misconfiguration Manager - Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/presentations/SO-CON 2024 - Misconfiguration Manager - Slides.pdf -------------------------------------------------------------------------------- /presentations/SO-CON 2025 - Admins Guide to Preventing SCCM Attacks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/presentations/SO-CON 2025 - Admins Guide to Preventing SCCM Attacks.pdf -------------------------------------------------------------------------------- /presentations/Troopers 24 - Misconfiguration Manager.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/presentations/Troopers 24 - Misconfiguration Manager.pdf -------------------------------------------------------------------------------- /presentations/Troopers 25 - Misconfiguration Manager.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subat0mik/Misconfiguration-Manager/HEAD/presentations/Troopers 25 - Misconfiguration Manager.pdf --------------------------------------------------------------------------------