Advertisement
James_inthe_box

Parasite HTTP

Apr 9th, 2019
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. rule Parasite_http_bin
  2. {
  3. meta:
  4. description = "Parasite HTTP"
  5. author = "James_inthe_box"
  6. reference = "0c6d4fb760c688236ac7ca81c778553c8d48c4e145fa5d99a3b24a1dc794edbe"
  7. date = "2019/04"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "Parasite HTTP"
  12. $string2 = "List start:"
  13. $string3 = "PrintActiveList"
  14. $string4 = "Active List; Domain : %s; Port : %d"
  15.  
  16. condition:
  17. uint16(0) == 0x5A4D and uint8(uint32(0x3c)+23) == 0x21 and 3 of ($string*) and filesize < 800KB
  18. }
  19.  
  20. rule Parasite_http_mem
  21. {
  22. meta:
  23. description = "Parasite HTTP"
  24. author = "James_inthe_box"
  25. reference = "0c6d4fb760c688236ac7ca81c778553c8d48c4e145fa5d99a3b24a1dc794edbe"
  26. date = "2019/04"
  27. maltype = "RAT"
  28.  
  29. strings:
  30. $string1 = "Parasite HTTP"
  31. $string2 = "List start:"
  32. $string3 = "PrintActiveList"
  33. $string4 = "Active List; Domain : %s; Port : %d"
  34.  
  35. condition:
  36. 3 of ($string*) and filesize > 800KB
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement