Skip to content

Instantly share code, notes, and snippets.

@arbor-asert
Created May 16, 2018 15:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save arbor-asert/6294e05d7f1fb5045d4652f8e56a4bc4 to your computer and use it in GitHub Desktop.
Save arbor-asert/6294e05d7f1fb5045d4652f8e56a4bc4 to your computer and use it in GitHub Desktop.
win_flusihoc.yara
rule flusihoc
{
meta:
author = "tnel"
company = "Arbor Networks"
date = "2017-07-06"
description = "Chinese DDoS Bot related to Expleror"
filetype = "exe"
md50 = "7c04cef7061ecff84f50fbfa4f568611"
md51 = "a81d8ed447170b930e89e482781393f6"
md52 = "e6454373c877dfddcd5297b0049a58f8"
strings:
$ddos0 = "GET %s%s%s%s%s%s%s%s%s%s"
$ddos1 = "%s|%s|%s|%s|%send"
$info0 = "HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0"
$info1 = "~MHz"
$info2 = "%d*%dMHz"
$cmd0 = "SYN_Flood"
$cmd1 = "UDP_Flood"
$cmd2 = "ICMP_Flood"
$cmd3 = "TCP_Flood"
$cmd4 = "HTTP_Flood"
$cmd5 = "DNS_Flood"
$cmd6 = "CON_Flood"
$cmd7 = "CC_Flood"
$cmd8 = "CC_Flood2"
$pdb0 = "C:\\Users\\chengzhen\\Desktop\\"
$pdb1 = "\\svchost\\Release\\svchost.pdb"
$status0 = "null"
$status1 = "Idle"
$status2 = "Busy"
$status3 = "RSDS"
condition:
(uint16(0) == 0x5A4D) and (2 of ($ddos*,$status*)) and (all of ($info*, $cmd*)) and (any of ($pdb*))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment