Advertisement
James_inthe_box

Mohaza bot yara sig

Apr 19th, 2019
1,488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. rule Mohazo_bot_bin
  2. {
  3. meta:
  4. description = "Mohazo bot stealer"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/411a4cce-783c-4d3f-a57e-eb0c86de4e00"
  7. date = "2019/04"
  8. maltype = "Bot"
  9.  
  10. strings:
  11. $string1 = "content-disposition: form-data; name=\""
  12. $string2 = "%[^:]"
  13. $string3 = "%99[^:]"
  14. $string4 = "loader_urls"
  15.  
  16. condition:
  17. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  18. }
  19.  
  20. rule Mohazo_bot_mem
  21. {
  22. meta:
  23. description = "Mohazo bot stealer"
  24. author = "James_inthe_box"
  25. reference = "https://app.any.run/tasks/411a4cce-783c-4d3f-a57e-eb0c86de4e00"
  26. date = "2019/04"
  27. maltype = "Bot"
  28.  
  29. strings:
  30. $string1 = "content-disposition: form-data; name=\""
  31. $string2 = "%[^:]"
  32. $string3 = "%99[^:]"
  33. $string4 = "loader_urls"
  34.  
  35. condition:
  36. all of ($string*) and filesize > 800KB
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement