Sneed-Reactivity/yara-mikesxrs/AirBnB/hacktool_windows_hot_potato.yara
Sam Sneed 08e8d462fe OMG ISTG PLS WORK
RED PILL 🔴 💊
2024-07-25 12:43:35 -05:00

15 lines
555 B
Text

rule hacktool_windows_hot_potato
{
meta:
description = "https://foxglovesecurity.com/2016/01/16/hot-potato/"
reference = "https://github.com/foxglovesec/Potato"
author = "@mimeframe"
strings:
$a1 = "Parsing initial NTLM auth..." wide ascii
$a2 = "Got PROPFIND for /test..." wide ascii
$a3 = "Starting NBNS spoofer..." wide ascii
$a4 = "Exhausting UDP source ports so DNS lookups will fail..." wide ascii
$a5 = "Usage: potato.exe -ip" wide ascii
condition:
any of ($a*)
}