#malware-analysis #malware #malware-extraction

app mace

Automated extration of malware configuration, focusing on C2 communication

3 releases

Uses new Rust 2024

new 0.1.2 Apr 2, 2025
0.1.1 Apr 2, 2025
0.1.0 Mar 31, 2025

#374 in Parser implementations

46 downloads per month

MIT/Apache and GPL-3.0 licenses

47KB
1K SLoC

MACE (MAlware Configuration Extrator)

Crate Documentation License

Description

This project aims to provide functionality for the automated extraction of malware configuration from samples. The extracted information is focused on the C2 communication of the sample. This includes hardcoded domains and IPs and parameters of used Domain Generation Algorithms.

Supported malware families

Note: Automatic classification of malware families is not yet implemented

Example usage

Analyzing the DMSniff sample f4be1b8d67e33c11789d151d288130254d346ecc0f4738a12ce3a34d86ec646d

$ cargo run -- direct -f dm-sniff sample.exe | jq
{
  "header": {
    "sha256_of_sample": "f4be1b8d67e33c11789d151d288130254d346ecc0f4738a12ce3a34d86ec646d",
    "datetime_of_extraction": "2025-03-31T18:27:17.391055677+02:00",
    "extractor_used": "DMSniff"
  },
  "data": {
    "hardcoded_ips": [],
    "hardcoded_domains": [],
    "dga_parameters": {
      "number_sequences": {
        "primes": [
          5,
          3,
          1,
          7,
          13,
          11
        ]
      },
      "string_sequences": {
        "tlds": [
          ".com",
          ".org",
          ".net",
          ".ru",
          ".in"
        ]
      },
      "strings": {
        "prefix": "st"
      },
      "magic_numbers": {
        "counter": 50
      }
    }
  }
}

Todo

  • Implement automated classification of malware families

Dependencies

~72MB
~1.5M SLoC