Advertisement
James_inthe_box

Uerlas yara sig

Jul 19th, 2019
771
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. rule Uerlas_bin
  2. {
  3. meta:
  4. description = "Uerlas"
  5. author = "James_inthe_box"
  6. reference = "1e9a6a7caf7c33487eb7f426a7fc411b501e2595462c59c2b3b0b624c9079e67"
  7. date = "2019/09"
  8. maltype = "Stealer"
  9.  
  10. strings:
  11. $string1 = "/c route add %s mask 255.255.255.255 %S" wide
  12. $string2 = "/c route delete %s" wide
  13.  
  14. condition:
  15. uint16(0) == 0x5A4D and all of ($string*) and filesize < 7000KB
  16. }
  17.  
  18. rule Uerlas_mem
  19. {
  20. meta:
  21. description = "Uerlas"
  22. author = "James_inthe_box"
  23. reference = "1e9a6a7caf7c33487eb7f426a7fc411b501e2595462c59c2b3b0b624c9079e67"
  24. date = "2019/09"
  25. maltype = "Stealer"
  26.  
  27. strings:
  28. $string1 = "/c route add %s mask 255.255.255.255 %S" wide
  29. $string2 = "/c route delete %s" wide
  30.  
  31. condition:
  32. all of ($string*) and filesize > 7000KB
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement