Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
OneAlert — AI-powered SOC for OT/ICS networks — 6 autonomous agents, MITRE ATT&CK mapping, Suricata/Zeek ingestion, human-in-the-loop response, 330+ tests. Open-source alternative to Claroty/Dragos for SMBs. | Kitploit
Tools/GitHubGitHub/mangod12/onealert
Network SecurityThreat IntelligenceIncident ResponseAI Security
GitHubmangod12/onealert

OneAlert

AI-powered SOC for OT/ICS networks — 6 autonomous agents, MITRE ATT&CK mapping, Suricata/Zeek ingestion, human-in-the-loop response, 330+ tests. Open-source alternative to Claroty/Dragos for SMBs.

View Repository
31331 month agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Website
Share

OneAlert AI Security OS

Open-source autonomous cyber defense for industrial networks

AI agents that detect, investigate, hunt, and respond to threats across your OT/ICS infrastructure — with human approval gates and full audit trails.

Demo Setup · Features · Quick Start · Architecture

CI Tests AI Agents License Python React


Try It Now

Live demo: https://onealert-demo.mangoglacier-b3ad215d.southeastasia.azurecontainerapps.io/app/

Email[email protected]
Passwordpassword123

Pre-loaded with a realistic water treatment plant: 11 OT/IT assets, a multi-stage attack scenario (VPN compromise → lateral movement → PLC access attempt), AI-generated investigation case with MITRE ATT&CK mapping, and 15+ security events.


See It In Action

Dashboard
Security posture dashboard with KPIs, severity breakdown, and risk heatmap


Why This Exists

Enterprise SOC tools cost $300K-$800K/yr. SMB manufacturers with PLCs, SCADA systems, and OT networks can't afford them — but they're increasingly targeted. OneAlert gives them an AI blue team that:

  • Ingests Suricata/Zeek network telemetry
  • Detects anomalies with AI agents (not just static rules)
  • Correlates alerts into investigation cases with MITRE ATT&CK mapping
  • Generates response plans with human approval gates
  • Hunts for threats using natural language
  • Enforces OT safety constraints (no autonomous actions on PLCs)

Features

AI Agent Pipeline

Six specialized agents working as a team:

Governed Autonomy

  • 5 autonomy levels (L0 read-only to L4 crisis mode)
  • OT safety constraint: Purdue Level 0-3 assets always require human approval for containment
  • Full agent ledger: Every AI decision logged with model, tokens, reasoning
  • Policy engine: Action approval rules by zone, asset type, and autonomy level
  • Approval workflow: Approve/reject response plans via REST API before execution
  • Action executor: 12 action types (notify, block IP, isolate host, quarantine VLAN, etc.)

PII and Secret Redaction

  • 8 pattern types: emails, SSNs, credit cards, API keys, bearer tokens, passwords, private keys, JWTs
  • Integrated into event ingestion: secrets stripped before storage and LLM processing
  • Preserves network observables: IPs, ports, domains, hostnames kept for security analysis

Purple-Team Validation

  • Simulated ATT&CK testing: 8 technique categories with atomic test library
  • Dry-run/lab/production modes: production mode requires explicit human approval
  • Detection coverage metrics: per-technique detection rates and gap analysis
  • Control result tracking: which detection rules fired, which missed

Semantic Search and Blast Radius

  • Natural-language case search: TF-IDF ranking with zero external dependencies
  • Similar incident retrieval: cosine similarity matching with shared MITRE technique highlighting
  • Blast radius graph: entity relationship visualization (assets, IPs, MITRE techniques per case)

Security Event Ingestion

  • Suricata EVE JSON parser (alerts, DNS, HTTP, TLS, flows)
  • Zeek log parser (conn, dns, http, ssl, files, notice)
  • Webhook receiver for Filebeat/Fluentd real-time ingestion
  • File upload for offline analysis

MITRE ATT&CK Integration

  • Enterprise + ICS matrix (16 tactics, 30+ techniques)
  • Auto-mapping from Suricata signatures to techniques
  • Detection coverage heatmap per tactic
  • Searchable technique browser

Threat Hunt Lab

  • Natural-language input: "Look for lateral movement from engineering workstation to PLC subnet"
  • AI generates SQL queries against your event data
  • Auto-generated Sigma detection rules from confirmed findings
  • Read-only query safety validation (blocks INSERT/UPDATE/DELETE)

OT/ICS Vulnerability Management

  • Multi-source CVE aggregation (NVD, CISA KEV, ICS-CERT, Cisco PSIRT, Microsoft MSRC)
  • AI-powered OT-aware remediation (compensating controls for critical zones)
  • EPSS exploit probability scoring
  • SBOM analysis (CycloneDX/SPDX)
  • Passive device discovery with Purdue model classification

Compliance-as-Code

  • IEC 62443-3-3 (10 controls) + NIST CSF 2.0 (11 controls)
  • Automated evidence collection from platform data
  • Continuous compliance scoring

Multi-Tenancy and Billing

  • Organization model with role-based access (admin/analyst/viewer)
  • Stripe billing (Free, Starter $499, Pro $1,999, Enterprise $4,999/mo)
  • SIEM integrations (Splunk, Sentinel, ServiceNow, PagerDuty)

Quickstart

One-Command Demo

root@kitploit:~
git clone https://github.com/mangod12/OneAlert.git
cd OneAlert
pip install -r requirements.txt
python -m backend.demo

Open http://localhost:8000/app/ — demo data auto-loads with attack scenario.

Docker

root@kitploit:~
docker compose up --build

Local Development

root@kitploit:~
# Backend
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python -m uvicorn backend.main:app --reload

# Frontend
cd frontend-v2 && npm install && npm run dev

Environment Variables

root@kitploit:~
# Required for AI agents
AI_PROVIDER=anthropic          # or openai, ollama, vllm, groq
ANTHROPIC_API_KEY=sk-ant-...   # or AI_API_KEY for OpenAI-compatible

# Optional
AI_TRIAGE_MODEL=claude-sonnet-4-20250514
AI_BASE_URL=http://localhost:11434/v1  # for Ollama/vLLM
SECRET_KEY=your-production-secret
DATABASE_URL=postgresql://user:pass@host/db

Architecture

root@kitploit:~
                      OneAlert AI Security OS
 ┌─────────────────┬───────────────────┬───────────────────────┐
 │  Sensor Layer   │   Agent Layer     │     Control Plane      │
 │                 │                   │                        │
 │  Suricata EVE   │  Detect Agent     │  Policy Engine         │
 │  Zeek Logs      │  Triage Agent     │  Autonomy Levels       │
 │  Syslog/Auth    │  Hunt Agent       │  Approval Workflow     │
 │  OT Discovery   │  Response Agent   │  Agent Ledger          │
 │  PII Redaction  │  Purple Agent     │  OT Zone Constraints   │
 │                 │  Compliance Agent  │  Action Executor       │
 ├─────────────────┼───────────────────┼───────────────────────┤
 │  Data Layer     │   AI Runtime      │     Frontend           │
 │                 │                   │                        │
 │  PostgreSQL     │  Claude (default) │  Dashboard             │
 │  SQLite (dev)   │  OpenAI-compat    │  Cases & Investigations│
 │  Event Store    │  Ollama/vLLM      │  Events Viewer         │
 │  Agent Ledger   │  Model Routing    │  MITRE ATT&CK Map     │
 │  Semantic Search│                   │  Hunt Lab              │
 │                 │                   │  Response Plans        │
 │                 │                   │  Purple-Team Validation│
 └─────────────────┴───────────────────┴───────────────────────┘

Data Flow

root@kitploit:~
Suricata/Zeek Events ──► Ingest API ──► Event Store
                                            │
                                       Detect Agent (anomaly detection)
                                            │
CVE Alerts (NVD/CISA/ICS-CERT) ──► Triage Agent (correlation + MITRE)
                                            │
                                       Investigation Cases
                                            │
                                       Response Agent (governed plans)
                                            │
                                  Human Approval ──► Execute Actions

Tech Stack


API Overview

Full API docs at /docs when running locally.


Project Structure

root@kitploit:~
backend/
├── services/ai/          # Provider-agnostic LLM runtime
├── services/agents/       # Detect, Triage, Hunt, Response, Purple agents
├── services/mitre/        # MITRE ATT&CK integration
├── services/parsers/      # Suricata + Zeek event parsers
├── models/                # SQLAlchemy models + Pydantic schemas
├── routers/               # FastAPI route handlers
├── services/pii_redactor.py    # PII/secret redaction pipeline
├── services/action_executor.py # Response action execution
├── services/semantic_search.py # TF-IDF search + blast radius
└── services/              # CVE, compliance, billing, notifications

frontend-v2/src/
├── pages/                 # Dashboard, Cases, Events, HuntLab, MitreMap, ResponsePlans, Validation
├── components/            # Charts, layout, shared UI
└── stores/                # Zustand auth state

tests/                     # 309 pytest tests
tests/e2e/                 # Playwright E2E against the deployed app
docs/                      # AI_CONTEXT, ARCHITECTURE, CODEMAP, VISION

How OneAlert Compares

OneAlert's differentiator: AI agents that investigate and respond, not just collect logs. Every action governed by policy with human approval for OT assets.


Built For


Contributing

Contributions welcome! Areas where help is most valuable:

  • New event parsers: Windows Event Log, AWS CloudTrail, Azure Activity
  • MITRE coverage: More technique mappings and detection rules
  • Sigma ecosystem: Import/export Sigma rules, test against event data
  • UI/UX: Dashboard widgets, case visualization, topology graph
  • OT protocols: Additional ICS protocol parsers (BACnet, HART-IP)

License

MIT — see License.


Built for the security teams that can't afford a $500K SOC platform but still need one.

Download Tool
Case Investigation
AI-generated investigation case with MITRE ATT&CK mapping and attack timeline
MITRE ATT&CK Map
MITRE ATT&CK coverage heatmap with technique search
Hunt Lab
Natural-language threat hunting with AI-generated queries
Security Events
Suricata/Zeek security events with severity filtering
Alerts
CVE vulnerability alerts with AI remediation
Assets
OT/IT asset inventory with Purdue model classification
AgentWhat It Does
Detect AgentAnalyzes event statistics for port scans, OT protocol anomalies, C2 patterns
Triage AgentCorrelates alerts + events into investigation cases with MITRE ATT&CK mapping
Hunt AgentTakes natural-language hypotheses, generates SQL queries, outputs Sigma rules
Response AgentGenerates response plans with ordered containment actions
Purple AgentSimulates ATT&CK techniques to validate detection coverage
Compliance AgentMaps platform data to IEC 62443 and NIST CSF controls
LayerTechnology
BackendFastAPI, Python 3.11+, SQLAlchemy 2.0 async
FrontendReact 19, Vite 8, Tailwind CSS v4, Zustand, Recharts
AI RuntimeProvider-agnostic (Claude, GPT-4o, Ollama, vLLM, Groq)
DatabasePostgreSQL (prod), SQLite (dev)
AuthJWT + GitHub OAuth + TOTP MFA
DeployDocker, Azure Container Apps
CIGitHub Actions, 330+ tests (309 pytest + 22 Playwright E2E)
EndpointDescription
POST /api/v1/events/ingestWebhook receiver for security events
POST /api/v1/events/uploadUpload Suricata/Zeek log files
POST /api/v1/cases/pipelineRun full AI agent pipeline
POST /api/v1/cases/auto-triageRun triage agent on recent data
POST /api/v1/hunt/Start natural-language threat hunt
GET /api/v1/mitre/coverageMITRE ATT&CK detection coverage
GET /api/v1/cases/List investigation cases
GET /api/v1/alerts/List vulnerability alerts
GET /api/v1/events/statsEvent ingestion statistics
GET /api/v1/cases/search?q=Semantic case search
GET /api/v1/cases/{id}/similarFind similar incidents
GET /api/v1/cases/{id}/blast-radiusBlast radius entity graph
GET /api/v1/response-plans/List response plans
POST /api/v1/response-plans/{id}/approveApprove a response plan
POST /api/v1/response-plans/{id}/executeExecute approved plan
POST /api/v1/validation/runsCreate purple-team validation run
POST /api/v1/validation/runs/{id}/executeRun ATT&CK technique tests
GET /api/v1/validation/coverageDetection coverage by technique
CapabilityOneAlertWazuhSecurityOnionOSSECCaldera
AI-powered triageYes (6 agents)NoNoNoNo
MITRE ATT&CK mappingAuto-mappedManual rulesManualNoYes
OT/ICS protocol supportModbus, S7, EtherNet/IPLimitedZeek-basedNoNo
Natural-language threat huntingYesNoNoNoNo
Governed response (approval gates)Yes (L0-L4)NoNoNoNo
Purple-team validationBuilt-inNoNoNoYes (core)
PII redaction before LLMYesN/AN/AN/AN/A
Suricata + Zeek ingestionYesYesYesNoNo
Compliance (IEC 62443, NIST CSF)AutomatedManualNoNoNo
SBOM analysisYesNoNoNoNo
Self-hostableYesYesYesYesYes
SaaS billing (Stripe)Built-inNoNoNoNo
IndustryUse Case
Water/WastewaterMonitor PLCs controlling chemical dosing and pump stations
ManufacturingProtect HMIs and SCADA systems on the factory floor
Energy/UtilitiesDetect lateral movement from IT to OT control networks
MSSPsMulti-tenant SOC-as-a-Service for industrial clients
Security TeamsPurple-team validation of detection coverage
ComplianceAutomated IEC 62443 and NIST CSF evidence collection