Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save silence-is-best/3a3b748bd8897535347c46a67c0e282a to your computer and use it in GitHub Desktop.
Save silence-is-best/3a3b748bd8897535347c46a67c0e282a to your computer and use it in GitHub Desktop.
AgentTesla Telegram exil yara
rule Agenttesla_telegram_bin
{
meta:
author = "James_inthe_box"
reference = "https://app.any.run/tasks/b4ceef1e-a649-44b7-9e0c-e53c3ab05354"
date = "2020/08"
maltype = "RAT"
strings:
$stringset31 = "OperatingSystemName"
$stringset32 = "ProcessorName"
$stringset33 = "AmountOfMemory"
$stringset34 = "VideocardName"
$stringset35 = "VideocardMem"
$stringset36 = "Password"
$stringset37 = "Mozilla"
$stringset38 = "Postbox"
$stringset39 = "Thunderbird"
$stringset311 = "SeaMonkey"
$stringset312 = "Flock"
$stringset313 = "BlackHawk"
$stringset314 = "CyberFox"
$stringset315 = "KMeleon"
$stringset316 = "IceCat"
$stringset317 = "PaleMoon"
$stringset318 = "IceDragon"
$stringset319 = "WaterFox"
$stringset320 = "WinSCP"
$stringset321 = "api.telegram.org"
condition:
14 of ($stringset3*) and filesize < 800KB
}
rule AgentTesla_telegram_mem
{
meta:
author = "James_inthe_box"
reference = "https://app.any.run/tasks/b4ceef1e-a649-44b7-9e0c-e53c3ab05354"
date = "2020/08"
maltype = "RAT"
strings:
$stringset31 = "OperatingSystemName"
$stringset32 = "ProcessorName"
$stringset33 = "AmountOfMemory"
$stringset34 = "VideocardName"
$stringset35 = "VideocardMem"
$stringset36 = "Password"
$stringset37 = "Mozilla"
$stringset38 = "Postbox"
$stringset39 = "Thunderbird"
$stringset311 = "SeaMonkey"
$stringset312 = "Flock"
$stringset313 = "BlackHawk"
$stringset314 = "CyberFox"
$stringset315 = "KMeleon"
$stringset316 = "IceCat"
$stringset317 = "PaleMoon"
$stringset318 = "IceDragon"
$stringset319 = "WaterFox"
$stringset320 = "WinSCP"
$stringset321 = "api.telegram.org"
condition:
14 of ($stringset3*) and filesize > 800KB
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment