mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-07-19 14:09:40 +03:00
Initial commit - 611 cybersecurity skills across all subdomains
This commit is contained in:
@@ -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
|
||||
```
|
||||
Reference in New Issue
Block a user