Advertisement
James_inthe_box

Phorpiex yara

May 10th, 2019
741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. ule Phorpiex_bin
  2. {
  3. meta:
  4. description = "Phorpiex bot"
  5. author = "James_inthe_box"
  6. reference = "09fe7418de08ba5494e93c2404556dde88a03f440ead6323a2c6ec36f23a0fc4"
  7. date = "2019/05"
  8. maltype = "Bot"
  9.  
  10. strings:
  11. $string1 = "Subject:"
  12. $string2 = "Message-ID:"
  13. $string3 = "http://icanhazip.com/"
  14. $string4 = "[0.0.0.0]"
  15. $string5 = "To:"
  16. $string6 = "RCPT TO:"
  17. $string7 = "Received: from"
  18.  
  19. condition:
  20. uint16(0) == 0x5A4D and all of ($string*) and filesize < 100KB
  21. }
  22.  
  23. rule Phorpiex_mem
  24. {
  25. meta:
  26. description = "Phorpiex bot"
  27. author = "James_inthe_box"
  28. reference = "09fe7418de08ba5494e93c2404556dde88a03f440ead6323a2c6ec36f23a0fc4"
  29. date = "2019/05"
  30. maltype = "Bot"
  31.  
  32. strings:
  33. $string1 = "Subject:"
  34. $string2 = "Message-ID:"
  35. $string3 = "http://icanhazip.com/"
  36. $string4 = "[0.0.0.0]"
  37. $string5 = "To:"
  38. $string6 = "RCPT TO:"
  39. $string7 = "Received: from"
  40.  
  41. condition:
  42. all of ($string*) and filesize > 100KB
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement