Advertisement
James_inthe_box

Delf loader yara sig

Aug 19th, 2019
954
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. rule Delf_bin
  2. {
  3. meta:
  4. description = "Delf loader"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/04a0a774-dd16-43bd-a966-2a35ca66fe70/"
  7. date = "2019/08"
  8. maltype = "Loader"
  9.  
  10. strings:
  11. $string1 = "User-Agent: License"
  12. $string2 = "gate.php?serial="
  13. $string3 = "license-success-ok-"
  14.  
  15. condition:
  16. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  17. }
  18.  
  19. rule Delf_mem
  20. {
  21. meta:
  22. description = "Delf loader"
  23. author = "James_inthe_box"
  24. reference = "https://app.any.run/tasks/04a0a774-dd16-43bd-a966-2a35ca66fe70/"
  25. date = "2019/08"
  26. maltype = "Loader"
  27.  
  28. strings:
  29. $string1 = "User-Agent: License"
  30. $string2 = "gate.php?serial="
  31. $string3 = "license-success-ok-"
  32.  
  33. condition:
  34. all of ($string*) and filesize > 800KB
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement