| name | hunting-living-off-the-land-binaries |
| description | Detects abuse of Living Off The Land Binaries (LOLBAS) such as certutil, wmic, mshta, regsvr32, and rundll32 in Windows event logs and Sysmon telemetry. Builds detection rules by cross-referencing process creation events against the LOLBAS project database. Use when threat hunting for fileless attack techniques or building SIEM detection rules.
|
| domain | cybersecurity |
| subdomain | security-operations |
| tags | ["hunting","living","off","the"] |
| version | 1.0 |
| author | mahipal |
| license | Apache-2.0 |
Hunting Living Off The Land Binaries
Instructions
Detect LOLBAS abuse by analyzing Windows process creation events (Event ID 4688 / Sysmon 1)
and matching command lines against known malicious patterns from the LOLBAS project.
import json
import requests
resp = requests.get("https://lolbas-project.github.io/api/lolbas.json")
lolbas_db = resp.json()
for entry in lolbas_db:
print(entry["Name"], [cmd["Command"] for cmd in entry.get("Commands", [])])
Key detection patterns:
- certutil -urlcache -split -f (download)
- mshta vbscript:Execute (script execution)
- regsvr32 /s /n /u /i:http (squiblydoo)
- rundll32 javascript: (script execution)
- wmic process call create (process creation)
- bitsadmin /transfer (download)
Examples
import Evtx.Evtx as evtx
with evtx.Evtx("Microsoft-Windows-Sysmon.evtx") as log:
for record in log.records():
xml = record.xml()
if "certutil" in xml.lower() and "urlcache" in xml.lower():
print(f"LOLBAS detected: {xml}")