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,66 @@
# Workflows
## Workflow 1: Endpoint Forensic Investigation
```
[Incident Detected / Investigation Authorized]
[Preserve Evidence (Order of Volatility)]
├── 1. Capture memory (WinPMEM/FTK Imager)
├── 2. Capture volatile data (processes, network, users)
├── 3. Create forensic disk image (E01/dd)
├── 4. Hash all evidence, document chain of custody
[Analysis Phase]
├── Memory analysis (Volatility 3)
├── Artifact parsing (KAPE + EZ tools)
├── Timeline reconstruction (plaso)
├── Malware analysis (if samples found)
[Correlate Findings]
├── Initial access vector identified
├── Persistence mechanisms documented
├── Scope of compromise determined
[Generate IOCs and Report]
[Handoff to Remediation Team]
```
## Workflow 2: Memory Analysis
```
[Memory dump acquired]
[Identify OS profile: vol windows.info]
[Process analysis: pslist → pstree → psscan]
├── Hidden processes found ──► [Analyze with malfind, dlllist]
[Network analysis: netscan]
├── Suspicious connections ──► [Extract IOCs (IPs, domains)]
[Injection detection: malfind]
├── Injected code found ──► [Dump and analyze with YARA]
[Credential analysis: hashdump, lsadump]
[Document all findings with screenshots and hashes]
```