Advertisement
James_inthe_box

Aldibot yara sig

Nov 13th, 2019
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. rule AldiBot_bin
  2. {
  3. meta:
  4. description = "Aldibot"
  5. author = "James_inthe_box"
  6. reference = "401567605f96c69d155d9d442e60031dbdab7d3fe8d13d2365d50684dab275b9"
  7. date = "2019/11"
  8. maltype = "Bot"
  9.  
  10. strings:
  11. $string1 = "/gate.php?hwid="
  12. $string2 = "&pc="
  13. $string3 = "&localip="
  14. $string4 = "&winver="
  15. $string5 = "StopHTTPDDoS"
  16. $string6 = "StopTCPDDoS"
  17.  
  18. condition:
  19. uint16(0) == 0x5A4D and all of ($string*) and filesize < 300KB
  20. }
  21.  
  22. rule AldiBot_mem
  23. {
  24. meta:
  25. description = "Aldibot"
  26. author = "James_inthe_box"
  27. reference = "401567605f96c69d155d9d442e60031dbdab7d3fe8d13d2365d50684dab275b9"
  28. date = "2019/11"
  29. maltype = "Bot"
  30.  
  31. strings:
  32. $string1 = "/gate.php?hwid="
  33. $string2 = "&pc="
  34. $string3 = "&localip="
  35. $string4 = "&winver="
  36. $string5 = "StopHTTPDDoS"
  37. $string6 = "StopTCPDDoS"
  38.  
  39. condition:
  40. all of ($string*) and filesize > 300KB
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement