Cyber security

MEGR-APT : Harnessing Graph Neural Networks For Advanced Threat Detection

MEGR-APT is an advanced and scalable system designed for hunting Advanced Persistent Threats (APTs) by identifying suspicious subgraphs that align with specific attack scenarios, as described in Cyber Threat Intelligence (CTI) reports.

Its primary functionality revolves around two key processes: memory-efficient extraction of suspicious subgraphs and fast subgraph matching using Graph Neural Networks (GNNs) and attack representation learning.

Features And Functionality

Input And Architecture

The system takes kernel audit logs stored in a PostgreSQL database and attack query graphs in JSON format as inputs.

It operates through a modular architecture comprising Python scripts for core functions, Bash scripts for orchestration, and directories for logs, models, datasets, and technical documentation. Key components include:

  • Provenance Graph Construction: Converts kernel audit logs into provenance graphs using tools like construct_pg_cadets.py and stores them in RDF graph engines such as Stardog.
  • Hunting Pipeline: Extracts suspicious subgraphs using extract_rdf_subgraphs_cadets.py and matches them with attack query graphs via pre-trained GNN models using main.py.

For training its GNN-based graph matching models:

  1. Subgraphs are extracted using extract_rdf_subgraphs_[dataset].py.
  2. Graph Edit Distance (GED) is computed for training data.
  3. Models are trained using parameters specified in the main.py script.

The system includes a Jupyter notebook (Investigation_Reports.ipynb) to analyze detected subgraphs and generate reports for analysts. This notebook demonstrates scenarios with real-world datasets like DARPA TC3 CADETS host data.

To deploy MEGR-APT:

  1. Install dependencies listed in requirements.txt and torch_requirements.txt.
  2. Set up the Stardog graph database and load RDF Provenance Graphs using the provided Bash script (load_to_stardog.sh).
  3. Use the setup_environment.sh script to configure the environment.

MEGR-APT is particularly suited for organizations aiming to enhance their cybersecurity defenses by detecting APTs early. Its ability to process large-scale data efficiently makes it a powerful tool for threat intelligence and forensic investigations.

Varshini

Varshini is a Cyber Security expert in Threat Analysis, Vulnerability Assessment, and Research. Passionate about staying ahead of emerging Threats and Technologies.

Recent Posts

How Web Application Firewalls (WAFs) Work

General Working of a Web Application Firewall (WAF) A Web Application Firewall (WAF) acts as…

2 weeks ago

How to Send POST Requests Using curl in Linux

How to Send POST Requests Using curl in Linux If you work with APIs, servers,…

2 weeks ago

What Does chmod 777 Mean in Linux

If you are a Linux user, you have probably seen commands like chmod 777 while…

2 weeks ago

How to Undo and Redo in Vim or Vi

Vim and Vi are among the most powerful text editors in the Linux world. They…

2 weeks ago

How to Unzip and Extract Files in Linux

Working with compressed files is a common task for any Linux user. Whether you are…

2 weeks ago

Free Email Lookup Tools and Reverse Email Search Resources

In the digital era, an email address can reveal much more than just a contact…

2 weeks ago