mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-14 23:14:55 +03:00
52 lines
1.4 KiB
Markdown
52 lines
1.4 KiB
Markdown
# 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
|
|
```
|