🛡️ Blue Team / Defensive Security Lab

PRACIVO LAB
⚠️ Pracivo Security Lab — Blue team skills: log analysis, incident response, SIEM, firewall rules, IDS, threat hunting.

IOC Database — Indicators of Compromise

IOCs are artifacts left by attackers. Use these to hunt in your SIEM or block at your firewall.

TypeValueThreatConfidence
IP185.220.101.45Tor Exit Node / Brute ForceHigh
IP203.0.113.99Webshell Upload SourceHigh
Domainupdate-cdn.winhelper.netMalware C2 DomainHigh
Hash (MD5)5d41402abc4b2a76b9719d911017c592Known RAT dropperMedium
User-Agentpython-requests/2.28.0Automated attack toolLow
User-AgentNikto/2.1.6Web vulnerability scannerHigh
URL Pattern/uploads/*.phpWebshell accessHigh
Registry KeyHKCU\Software\Microsoft\Windows\CurrentVersion\Run\WindowsHelperMalware persistenceMedium
# IOC sharing platforms:
# MISP — open source threat intel platform
# OpenCTI — structured threat intelligence
# VirusTotal — hash/IP/domain lookup
# AbuseIPDB — IP reputation database
# URLhaus — malicious URL database
# OTX (AlienVault) — community threat intel

# Automate IOC blocking with MISP + firewall integration:
curl https://www.abuseipdb.com/api/v2/blacklist | jq '.data[].ipAddress' | xargs -I{} iptables -A INPUT -s {} -j DROP