James_inthe_box

JSSLoader yara sig

Oct 25th, 2019
870
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. rule JssHttp_loader_bin
  2. {
  3. meta:
  4. description = "JssLoader"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/b6f6bfe1-c483-46c5-8abc-899c1e08f5d5"
  7. date = "2019/10"
  8. maltype = "Loader"
  9.  
  10. strings:
  11. $string1 = "JssHttp"
  12. $string2 = "Host information report" wide
  13. $string3 = "End of report" wide
  14.  
  15. condition:
  16. uint16(0) == 0x5A4D and all of ($string*) and filesize < 100KB
  17. }
  18.  
  19. rule JssHttp_loader_mem
  20. {
  21. meta:
  22. description = "JssLoader"
  23. author = "James_inthe_box"
  24. reference = "https://app.any.run/tasks/b6f6bfe1-c483-46c5-8abc-899c1e08f5d5"
  25. date = "2019/10"
  26. maltype = "Loader"
  27.  
  28. strings:
  29. $string1 = "JssHttp"
  30. $string2 = "Host information report" wide
  31. $string3 = "End of report" wide
  32.  
  33. condition:
  34. all of ($string*) and filesize > 100KB
  35. }
Advertisement
Add Comment
Please, Sign In to add comment