Name: Saichandram Sadhu
Located_in: Cybersecurity Operations Center
Current_role: SOC Analyst & Threat Hunter
Mission: >
Investigate alerts, hunt adversaries, and perform
forensic analysis to secure enterprise environments.
Specializations:
- π Log Analysis & SIEM Operations
- π― Threat Hunting (MITRE ATT&CK)
- π‘οΈ Detection Engineering
- π¬ Digital Forensics & Incident Response
- π¦ Malware Analysis
- π€ Security Automation
Currently_Learning:
- Advanced Memory Forensics
- SOAR Playbook Development
- Cloud Security (Azure/AWS)π Home SOC Lab β Elastic + Wazuh + Sysmon
Built a complete detection lab to simulate real-world attacks and defense.
| Component | Description |
|---|---|
| ποΈ Infrastructure | Deployed Wazuh for EDR and Elastic Stack (ELK) for log aggregation |
| π Ingestion | Configured Sysmon with custom modular configuration for granular endpoint telemetry |
| βοΈ Simulations | Executed attacks using Atomic Red Team and Caldera to validate log visibility |
| π― Outcome | Successfully detected and visualized multi-stage attack chains in Kibana dashboards |
π¦ Alert Investigation Pack (5 Cases)
End-to-end investigation of simulated security incidents.
| # | Investigation | Key Findings |
|---|---|---|
| 1οΈβ£ | Encoded PowerShell | Decoded Base64 payloads to identify C2 beaconing attempts |
| 2οΈβ£ | RDP Brute Force | Analyzed Event ID 4625 clusters to identify attacker IP and targeted accounts |
| 3οΈβ£ | Malicious Service Creation | Detected persistence via sc.exe and registry run keys |
| 4οΈβ£ | Persistence Mechanisms | Investigated scheduled tasks used for maintaining access |
| 5οΈβ£ | Data Exfiltration | Identified anomalous outbound traffic patterns correlated with file access events |
βοΈ Detection Engineering (20+ Rules)
Developed and tuned detection logic to reduce noise and catch threats.
π Results Achieved:
βββ β
40% reduction in false positive rates
βββ β
Platform-agnostic Sigma rules for cross-SIEM deployment
βββ β
Behavioral detections for LotL binaries (certutil, bitsadmin)
βββ β
Custom rules for LSASS access and process injection
π― MITRE ATT&CK Hypothesis-Driven Hunts
Proactive threat hunting mapped to ATT&CK framework
graph LR
A[π Hypothesis] --> B[π Query Development]
B --> C[π Data Analysis]
C --> D[π Findings]
D --> E[π‘οΈ Detection Rules]
style A fill:#00ff88,stroke:#333,stroke-width:2px,color:#000
style B fill:#00d4ff,stroke:#333,stroke-width:2px,color:#000
style C fill:#ff6b6b,stroke:#333,stroke-width:2px,color:#000
style D fill:#ffd93d,stroke:#333,stroke-width:2px,color:#000
style E fill:#6bcb77,stroke:#333,stroke-width:2px,color:#000
| Technique | Hunt Focus | Outcome |
|---|---|---|
| T1059 | Command and Scripting Interpreter | Identified suspicious PowerShell execution patterns |
| T1003 | OS Credential Dumping | Detected LSASS access attempts |
| T1021 | Lateral Movement | Discovered anomalous SMB pipe connections |
π§ Memory Forensics
Deep analysis of volatile memory to uncover hidden threats
# Key Volatility 3 Plugins Used
volatility3 -f memory.raw windows.pslist # Process enumeration
volatility3 -f memory.raw windows.netscan # Network connections
volatility3 -f memory.raw windows.malfind # Injected code detection
volatility3 -f memory.raw windows.cmdline # Command line argumentsπ― Capabilities:
- β Rootkit and hidden malware identification
- β Process injection detection
- β Network connection reconstruction
- β Credential extraction analysis
π¦ Malware Analysis
Comprehensive static and dynamic analysis workflow
π¬ Analysis Pipeline:
β
βββ π Static Analysis
β βββ PE Headers examination (PEStudio)
β βββ String extraction and analysis
β βββ Import/Export table review
β βββ Entropy analysis
β
βββ π Dynamic Analysis
β βββ Behavioral monitoring (ProcMon)
β βββ Network traffic capture
β βββ File system changes
β βββ Registry modifications
β
βββ π Classification
βββ YARA rule development
βββ Malware family identification
β±οΈ Forensic Timelines
Reconstructing attack sequences through timeline analysis
| Artifact Source | Tool | Purpose |
|---|---|---|
| π $MFT | Plaso | File system activity |
| π Prefetch | Eric Zimmerman's Tools | Program execution |
| π¦ Shimcache | RECmd | Application compatibility |
| π Event Logs | Plaso | System events |
π§ AI-Powered Intrusion Detection System
Machine learning-based anomaly detection for network security
# Core Technology Stack
from sklearn.ensemble import IsolationForest
import pandas as pd
import numpy as np
# Anomaly Detection Pipeline
model = IsolationForest(
contamination=0.1,
random_state=42,
n_estimators=100
)β¨ Features:
- π Real-time network anomaly detection
- π Web dashboard for threat visualization
- π― Configurable alert thresholds
- π Historical trend analysis
πΈοΈ Botnet Detection
Network traffic analysis for C2 communication identification
π― Detection Capabilities:
- β C2 beaconing pattern recognition
- β IoT botnet behavioral analysis
- β DGA domain identification
- β Traffic flow anomaly detection
π soc-threat-hunting-dfir-portfolio/
β
βββ π‘οΈ SOC-Lab/ # Home lab configurations
β βββ sysmon-config.xml # Custom Sysmon configuration
β βββ wazuh-config.md # Wazuh deployment guide
β βββ elastic-search-queries.md # ELK query collection
β
βββ π¦ Alert-Investigations/ # Investigation case studies
β βββ INV001_sample_investigation.md
β βββ INV002_Credential_Theft_Report.md
β βββ investigation_template.md
β
βββ βοΈ Detections/ # Detection rule library
β βββ sigma_rules/ # Platform-agnostic rules
β βββ kql_rules/ # Microsoft Sentinel rules
β βββ splunk_rules/ # SPL detection queries
β
βββ πΉ Threat-Hunting/ # Hunt reports & templates
β βββ HUNT_T1003_CredDump.md
β βββ HUNT_T1021_LateralMovement.md
β βββ hunt_template.md
β
βββ π§ Memory-Forensics/ # Volatility analysis reports
β βββ MF_Case1_MaliciousProcess.md
β βββ volatility_commands.txt
β
βββ π¦ Malware-Analysis/ # Sample analysis reports
β βββ MA_REPORT_TEMPLATE.md
β βββ YARA/ # Custom YARA rules
β
βββ πΎ Disk-Forensics/ # Timeline analysis
β βββ plaso_timeline_template.md
β
βββ π€ AI-IDS/ # ML-based detection
β βββ model_description.md
β
βββ πΈοΈ Botnet-Detection/ # Network analysis
β βββ flow_analysis_template.py
β
βββ π scripts/ # Automation scripts
β βββ ioc_lookup_template.py
β βββ log_parser_template.py
β
βββ π templates/ # Report templates
β βββ hunt_report_template.md
β βββ report_template.md
β βββ sigma_template.yml
β
βββ π docs/ # Documentation
βββ Interview_Kit.md
βββ IR_Playbook.md
βββ Portfolio_Summary.md
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β π― ACTIVE LEARNING PATHS π― β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ£
β β
β π Advanced Sysmon Configs β
β ββ Maximum visibility with minimal noise β
β β
β βοΈ Signature Writing β
β ββ Advanced Sigma and YARA rule development β
β β
β π΅οΈ Deep Forensics β
β ββ NTFS internals and registry analysis β
β β
β π€ Security Automation β
β ββ SOAR playbooks for automated triage β
β β
β βοΈ Cloud Security β
β ββ Azure & AWS security operations β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Actively seeking roles in SOC Analysis, Threat Hunting, and Digital Forensics.
Let's discuss how I can contribute to your security team!

