Advertisement
James_inthe_box

Expiro yara sig

Oct 22nd, 2019
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. rule Expiro_bin
  2. {
  3. meta:
  4. description = "Expiro"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/c3c02897-5069-45d2-8add-2b3e194754ff"
  7. date = "2019/10"
  8. maltype = "Trojan"
  9.  
  10. strings:
  11. $string1 = "wscsvc|WinDefend|MsMpSvc|NisSrv|gupdate|gupdatem|wuauserv"
  12. $string2 = "%s%c%c%c%c-%c%c%c%c%c.com"
  13. $string3 = "\\*.dat"
  14. $string4 = "User-Agent: %cozilla/%u.%u (%compatible; msie %u; %s; .NET CLR %s/%s)"
  15. $string5 = "No space left on device"
  16.  
  17. condition:
  18. uint16(0) == 0x5A4D and all of ($string*) and filesize < 900KB
  19. }
  20.  
  21. rule Expiro_mem
  22. {
  23. meta:
  24. description = "Expiro"
  25. author = "James_inthe_box"
  26. reference = "https://app.any.run/tasks/c3c02897-5069-45d2-8add-2b3e194754ff"
  27. date = "2019/10"
  28. maltype = "Trojan"
  29.  
  30. strings:
  31. $string1 = "wscsvc|WinDefend|MsMpSvc|NisSrv|gupdate|gupdatem|wuauserv"
  32. $string2 = "%s%c%c%c%c-%c%c%c%c%c.com"
  33. $string3 = "\\*.dat"
  34. $string4 = "User-Agent: %cozilla/%u.%u (%compatible; msie %u; %s; .NET CLR %s/%s)"
  35. $string5 = "No space left on device"
  36.  
  37. condition:
  38. all of ($string*) and filesize > 900KB
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement