Advertisement
James_inthe_box

Puntoloader yara sig

Feb 19th, 2019
572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. rule Punto_loader_bin
  2. {
  3. meta:
  4. description = "Punto loader"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/4de0d2c6-7f8d-4db7-baa7-50dd7e49952b"
  7. date = "2019/02"
  8. maltype = "Loader"
  9.  
  10. strings:
  11. $mz = { 4d 5a }
  12. $string1 = "Main Returned."
  13. $string2 = "Content-Transfer-Encoding: base64"
  14. $string3 = "Content-Type: multipart/form-data; boundary=%s"
  15. $string4 = "Accept-Encoding: deflate,gzip"
  16. $string5 = "Software\\Yandex" wide
  17. $string6 = "Mozilla/5.0 (Windows NT 10.0; Win32; x86) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.9 Safari/537.36" wide
  18. $string7 = "klog.php" wide
  19.  
  20. condition:
  21. ($mz at 0) and all of ($string*) and filesize < 800KB
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement