Hands-on network security sandbox demonstrating real-time threat detection and security telemetry generation.
To better visualize how the attack machine triggers the IDS, the lab utilizes an isolated virtual network mapping malicious activity directly into Suricata's ingestion engine:
graph LR
subgraph Isolated_Network ["Isolated VirtualBox Network: 192.168.56.0/24"]
Kali["🐱 Kali Linux (Attacker)<br>192.168.56.102"]
Ubuntu["🐧 Ubuntu 20.04 (IDS Server)<br>192.168.56.101"]
end
subgraph Suricata_Engine ["Suricata Engine"]
Interface["📋 Interface: enp0s8"]
Rules["⚙️ Custom local.rules"]
Logs["📂 EVE JSON Telemetry"]
end
Kali -->|Generates Scans / Pings / Exploits| Ubuntu
Ubuntu --> Interface
Interface --> Rules
Rules -->|SIEM-Ready Alerts| Logs
Hands-on Suricata IDS lab demonstrating real-time threat detection and network packet capture on an isolated home network.
- IDS Server: Ubuntu 20.04 (192.168.56.101) - Suricata 7.0.10
- Attack Machine: Kali Linux (192.168.56.102)
- Network: VirtualBox Host-Only (192.168.56.0/24)
-
** Step 2 - Suricata Detection sudo suricata -c /etc/suricata/suricata.yaml -i enp0s8 -l /var/log/suricata -v Suricata successfully captures all network traffic on enp0s8 and this confirms that the custom rule signature was triggered by the simulated traffic

-
** Step 3 - EVE JSON validation EVE JSON format enables easy parsing and all attacks generated detections in eve.json with proper timestamps, source/destination IPs, and protocol information

- ICMP Ping Detection (SID: 1000001)
- Port Scan Detection (SID: 1000002)
- SSH Connection Attempt (SID: 1000003)
- HTTP Connection (SID: 1000004)
{
"timestamp": "2026-08-20T12:34:56.789123+0000",
"src_ip": "192.168.56.102",
"src_port": 54321,
"dst_ip": "192.168.56.101",
"dst_port": 22,
"proto": "TCP",
"alert": {
"signature": "SSH Connection Attempt",
"severity": 3,
"signature_id": 1000003
},
"tcp": {
"flags": "SYN",
"window": 65535
}
}
## Quick Start
```bash
sudo suricata -c /etc/suricata/suricata.yaml -i enp0s8 -l /var/log/suricata -v
## Test Result
✅ All attacks detected in real-time
✅ EVE JSON alerts captured successfully
✅ Zero false positives in lab environment
## Files
• Suricata-config/suricata.yaml-Suricata configuration
• Suricata-rules/local.rules-Custom detection rules
• detection-logs/eve.json-Captured network events
Skills Demonstrated
✔️ IDS/IPS configuration and deployment
✔️ Detection rule creation (Snort syntax)
✔️ Real-time threat monitoring
✔️ Network packet analysis
✔️ EVE JSON alert format (SIEM-ready)
## 🔮 Next-Gen Expansion: SIEM Integration
Because this lab captures all events in the standard `eve.json` format, the logical next step is SIEM forwarding.
* To see how to correlate these alerts with authentication anomalies:
"check out my companion lab: [SSH Brute-Force Detection & Analysis -Splunk SIEM](https://github.com/Ug111/SSH-Brute-Force-Detection-Splunk)"
This lab demonstrates hands-on understanding of threat detection workflows and the detection layer of SOC operations.
