Advertisement
James_inthe_box

Pirite yara sig

Mar 15th, 2019
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. rule Pirite_bin
  2. {
  3. meta:
  4. description = "Pirite DDOS"
  5. author = "James_inthe_box"
  6. reference = "a0feae45be3494029aa3b605f33201d28a299dbfb8ca2ca851f3ac8ec604f16d"
  7. date = "2019/03"
  8. maltype = "DDOS"
  9.  
  10. strings:
  11. $string1 = "x64"
  12. $string2 = "x86"
  13. $string3 = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"
  14. $string4 = "TFloodParams"
  15. $string5 = "calc.exe"
  16. $string6 = "127.0.0.1"
  17. $string7 = "Flood"
  18.  
  19. condition:
  20. uint16(0) == 0x5A4D and all of ($string*) and filesize < 10MB
  21. }
  22.  
  23. rule Pirite_mem
  24. {
  25. meta:
  26. description = "Pirite DDOS"
  27. author = "James_inthe_box"
  28. reference = "a0feae45be3494029aa3b605f33201d28a299dbfb8ca2ca851f3ac8ec604f16d"
  29. date = "2019/03"
  30. maltype = "DDOS"
  31.  
  32. strings:
  33. $string1 = "x64"
  34. $string2 = "x86"
  35. $string3 = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"
  36. $string4 = "TFloodParams"
  37. $string5 = "calc.exe"
  38. $string6 = "127.0.0.1"
  39. $string7 = "Flood"
  40.  
  41. condition:
  42. all of ($string*) and filesize > 10MB
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement