Skip to content
View ofaheem1974's full-sized avatar

Block or report ofaheem1974

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ofaheem1974/README.md

Alert Triage Engine

A structured cybersecurity alert triage application that transforms raw alert data into step-by-step investigative guidance aligned with real SOC workflows.

Features

  • 9-Phase Triage Framework: Executive Summary, Hypotheses, Investigation Checklist, Artefact Analysis, MITRE ATT&CK Mapping, Severity & Priority, Verdict, SOC Documentation, References
  • MITRE ATT&CK Mapping: Automatic mapping of alert indicators to ATT&CK Tactics, Techniques, and Sub-Techniques
  • Multi-Source Support: EDR, SIEM, XDR, email security, identity, firewall, proxy, cloud, and threat intel sources
  • Structured Output: Professional MDR-quality triage notes ready for SOC documentation
  • Verdict Assessment: True Positive, False Positive, Benign Positive, Inconclusive classifications

Installation

pip install -e .

Usage

CLI

# Interactive mode
alert-triage

# From JSON file
alert-triage --input alert.json

# From JSON string
alert-triage --json '{"alert_source": "CrowdStrike", "alert_name": "Suspicious PowerShell"}'

Python API

from src.engine.triage_engine import TriageEngine

engine = TriageEngine()
alert_data = {
    "alert_source": "CrowdStrike Falcon",
    "alert_name": "Suspicious PowerShell Execution",
    "timestamp": "2026-03-07T14:32:00Z",
    "host_user": "WORKSTATION-42 / jdoe",
    "severity": "High",
    "alert_description": "PowerShell process launched with encoded command",
    "observed_indicators": {
        "process_names": ["powershell.exe"],
        "command_lines": ["powershell.exe -enc SQBFAFgA..."]
    }
}
report = engine.triage(alert_data)
print(report.render())

Project Structure

src/
  engine/         # Core triage engine (9-phase framework)
  models/         # Data models for alerts, verdicts, reports
  formatters/     # Output formatters (text, JSON, markdown)
  mappers/        # MITRE ATT&CK mapping logic
  utils/          # Utilities (validation, parsing)
tests/            # Unit tests
examples/         # Example alert inputs

License

MIT

Popular repositories Loading

  1. ofaheem1974 ofaheem1974 Public

    Config files for my GitHub profile.

    Python

  2. awesome-blue-team-osint awesome-blue-team-osint Public

  3. security-notes security-notes Public

    Cybersecurity Notes

  4. Ibexia002 Ibexia002 Public

    Kotlin