Advertisement
James_inthe_box

Pitou yara sig

Jun 25th, 2019
904
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. rule Pitou_bin
  2. {
  3. meta:
  4. description = "Pitou"
  5. author = "James_inthe_box"
  6. reference = "https://isc.sans.edu/diary/25068"
  7. date = "2019/06"
  8. maltype = "Spammer"
  9.  
  10. strings:
  11. $string1 = "explorer.exe" wide
  12. $string2 = "Elevation:Administrator!new:" wide
  13. $string3 = "EFI PART"
  14. $string4 = "\\\\.\\C:"
  15. $string5 = "\\\\.\\PHYSICALDRIVE0"
  16. $string6 = ".pdb"
  17.  
  18. condition:
  19. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  20. }
  21.  
  22. rule Pitou_mem
  23. {
  24. meta:
  25. description = "Pitou"
  26. author = "James_inthe_box"
  27. reference = "https://isc.sans.edu/diary/25068"
  28. date = "2019/06"
  29. maltype = "Spammer"
  30.  
  31. strings:
  32. $string1 = "explorer.exe" wide
  33. $string2 = "Elevation:Administrator!new:" wide
  34. $string3 = "EFI PART"
  35. $string4 = "\\\\.\\C:"
  36. $string5 = "\\\\.\\PHYSICALDRIVE0"
  37. $string6 = ".pdb"
  38.  
  39. condition:
  40. all of ($string*) and filesize > 800KB
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement