Advertisement
James_inthe_box

Silenceproxy yara sig

Sep 18th, 2019
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. rule Silence_proxy_bin
  2. {
  3. meta:
  4. description = "Silence proxy bot"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/208214ee-94bc-43d1-baa8-dcbfb8d14a6a/"
  7. date = "2019/09"
  8. maltype = "Bot"
  9.  
  10. strings:
  11. $string1 = "127.0.0.1"
  12. $string2 = "Microsoft Audit Service"
  13. $string3 = "blablabla"
  14. $string4 = "Application_client"
  15.  
  16. condition:
  17. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  18. }
  19.  
  20. rule Silence_proxy_mem
  21. {
  22. meta:
  23. description = "Silence proxy bot"
  24. author = "James_inthe_box"
  25. reference = "https://app.any.run/tasks/208214ee-94bc-43d1-baa8-dcbfb8d14a6a/"
  26. date = "2019/09"
  27. maltype = "Bot"
  28.  
  29. strings:
  30. $string1 = "127.0.0.1"
  31. $string2 = "Microsoft Audit Service"
  32. $string3 = "blablabla"
  33. $string4 = "Application_client"
  34.  
  35. condition:
  36. uint16(0) == 0x5A4D and all of ($string*) and filesize > 800KB
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement