YARA
rule yara_rule
{
meta:
author = "baric"
date = "12/12/2025"
description = "yara rule"
string:
$s1 = "rundll32.exe" fullword ascii
$s2 = "the" wide
$url1 = /http:\/\/.*malhare.*/ nocase
$hidden = "Malhare" xor
$b64 = "SOC-mas" base64
$cmd = /powershell.*-enc\s+[A-Za-z0-9+/=]+/ nocase
$hex_string = { E3 41 ?? C8 G? VB }
condition:
all of them
}Breakdown
How to Install YARA to your machine
Running YARA on your machine
Example of output
Last updated