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,51 @@
# Workflows — Internal Network Penetration Testing
## Attack Flow
```
Network Access (Ethernet/VPN)
├── Network Discovery (Nmap, ARP scan)
├── Credential Capture (Responder, mitm6)
│ │
│ └── Hash Cracking (Hashcat)
├── AD Enumeration (BloodHound, LDAP)
│ │
│ ├── Kerberoasting
│ ├── AS-REP Roasting
│ └── GPP Password Extraction
├── Lateral Movement (PsExec, WMI, WinRM)
│ │
│ └── Credential Harvesting (Mimikatz, LSASS dump)
├── Privilege Escalation
│ │
│ ├── Local (unquoted paths, token impersonation)
│ └── Domain (DCSync, Golden Ticket, ADCS)
└── Impact Demonstration
├── Sensitive data access
├── Domain compromise proof
└── Attack path documentation
```
## Evidence Collection Workflow
```
evidence/
├── credentials/
│ ├── responder_captures/
│ ├── cracked_hashes/
│ └── dumped_creds/
├── screenshots/
├── bloodhound/
│ └── domain_data.json
├── scan_results/
│ ├── nmap/
│ └── shares/
└── attack_paths/
└── path_documentation.md
```