James_inthe_box

ArtraDownloader yara sig

Aug 26th, 2019
1,054
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. rule ArtraDownlaoder_bin
  2. {
  3. meta:
  4. description = "Artra Downloader"
  5. author = "James_inthe_box"
  6. reference = "dcb8531b0879d46949dd63b1ac094f5588c26867805d0795e244f4f9b8077ed1"
  7. date = "2019/08"
  8. maltype = "Loader"
  9.  
  10. strings:
  11. $string1 = "bqqmjdbujpo0y.xxx.gpsn.vsmfodpefe"
  12. $string2 = "=%s&st=%d"
  13. $string4 = "Content-length: %d"
  14. $string5 = "0I0N0V0\\0o0v0"
  15. $string6 = "ID=%s"
  16.  
  17. condition:
  18. uint16(0) == 0x5A4D and all of ($string*) and filesize < 100KB
  19. }
  20.  
  21. rule ArtraDownlaoder_mem
  22. {
  23. meta:
  24. description = "Artra Downloader"
  25. author = "James_inthe_box"
  26. reference = "dcb8531b0879d46949dd63b1ac094f5588c26867805d0795e244f4f9b8077ed1"
  27. date = "2019/08"
  28. maltype = "Loader"
  29.  
  30. strings:
  31. $string1 = "bqqmjdbujpo0y.xxx.gpsn.vsmfodpefe"
  32. $string2 = "=%s&st=%d"
  33. $string4 = "Content-length: %d"
  34. $string5 = "0I0N0V0\\0o0v0"
  35. $string6 = "ID=%s"
  36.  
  37. condition:
  38. all of ($string*) and filesize > 100KB
  39. }
Add Comment
Please, Sign In to add comment