HackTool_MSIL_INVEIGHZERO_1

YARA-2025-0922 Medium general Active

The TypeLibGUID present in a .NET binary maps directly to the ProjectGuid found in the '.csproj' file of a .NET project. This rule looks for .NET PE files that contain the ProjectGuid found in the 'inveighzero' project.

HackTool_MSIL_INVEIGHZERO_1.yar Valid Syntax
// Copyright 2020 by FireEye, Inc.
// You may not use this file except in compliance with the license. The license should have been received with this file. You may obtain a copy of the license at:
// https://github.com/fireeye/red_team_tool_countermeasures/blob/master/LICENSE.txt
rule HackTool_MSIL_INVEIGHZERO_1
{
    meta:
        description = "The TypeLibGUID present in a .NET binary maps directly to the ProjectGuid found in the '.csproj' file of a .NET project. This rule looks for .NET PE files that contain the ProjectGuid found in the 'inveighzero' project."
        md5 = "dd8805d0e470e59b829d98397507d8c2"
        rev = 2
        author = "FireEye"
    strings:
        $typelibguid0 = "113ae281-d1e5-42e7-9cc2-12d30757baf1" ascii nocase wide
    condition:
        (uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}

Rule Metadata

description
The TypeLibGUID present in a .NET binary maps directly to the ProjectGuid found in the '.csproj' file of a .NET project. This rule looks for .NET PE files that contain the ProjectGuid found in the 'inveighzero' project.
md5
dd8805d0e470e59b829d98397507d8c2
author
FireEye

String Definitions

{"name":"$typelibguid0","value":"\"113ae281-d1e5-42e7-9cc2-12d30757baf1\" ascii nocase wide"}

Threat Analysis

This YARA rule is designed to detect general threats.

Severity Level: Medium

The rule uses pattern matching to identify specific byte sequences, strings, or behavioral patterns associated with malicious activity.

Detection Capabilities

  • File-based detection for executables and documents
  • Memory scanning for running processes
  • Network traffic analysis support

Command Line Usage

# Scan a single file
yara HackTool_MSIL_INVEIGHZERO_1.yar /path/to/suspicious/file

# Scan a directory recursively
yara -r HackTool_MSIL_INVEIGHZERO_1.yar /path/to/directory/

# Scan with metadata output
yara -m HackTool_MSIL_INVEIGHZERO_1.yar target_file

# Scan process memory (Linux)
yara HackTool_MSIL_INVEIGHZERO_1.yar /proc/[pid]/exe

Integration Examples

Python (yara-python)

import yara
rules = yara.compile(filepath='HackTool_MSIL_INVEIGHZERO_1.yar')
matches = rules.match('/path/to/file')

ClamAV Integration

clamscan --yara-rules=HackTool_MSIL_INVEIGHZERO_1.yar /path/to/scan

Rule Information

YARA ID
YARA-2025-0922
Author
Created
August 19, 2025
Last Updated
August 19, 2025
Last Imported
Never

Threat Intelligence

Risk Level Medium
Category general
Detection Confidence Analysis Pending
False Positive Rate Not Available
Last Seen in Wild No Data

Export Options