Initial commit - 611 cybersecurity skills across all subdomains

This commit is contained in:
mukul975
2026-02-25 10:47:44 +01:00
commit 22a7ab1462
1765 changed files with 280648 additions and 0 deletions
@@ -0,0 +1,21 @@
# Workflows - WMIExec Lateral Movement
## Lateral Movement Chain
```
1. Initial Compromise → Credential Harvesting → WMIExec to target
2. On each new host:
├── Enumerate local users and groups
├── Harvest credentials (LaZagne, Mimikatz, SAM dump)
├── Check for domain admin sessions
└── Pivot to next target using recovered credentials
```
## Multi-Method Fallback
```
Primary: wmiexec.py (semi-interactive, output capture)
Fallback1: dcomexec.py (different DCOM object, avoids WMI-specific detection)
Fallback2: Native PowerShell CIM (blends with admin activity)
Fallback3: smbexec.py (uses SMB service, noisier but reliable)
```