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,27 @@
# Workflows - Linux Log Forensics
## Workflow 1: Authentication Investigation
```
Collect /var/log/auth.log and rotated copies
|
Parse for successful and failed SSH logins
|
Identify brute force sources (>10 failures per IP)
|
Trace sudo command execution by user
|
Detect account creation/modification events
|
Correlate with wtmp/btmp login records
```
## Workflow 2: Full System Timeline
```
Collect all logs from /var/log/
|
Export systemd journal (journalctl --output=json)
|
Parse audit.log for security events
|
Merge into unified timeline
|
Identify unauthorized access and persistence
```