Advertisement
James_inthe_box

Raaloader #yara sig

Aug 16th, 2019
957
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. rule Raaloader_bin
  2. {
  3. meta:
  4. description = "Raaloader"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/e658d397-a560-4678-b8ce-0c0222384879"
  7. date = "2019/08"
  8. maltype = "Loader"
  9.  
  10. strings:
  11. $string1 = "Connecting to: %s:%d"
  12. $string2 = "Connection with server terminated"
  13. $string4 = "Connected!"
  14. $string5 = "Console allocated!"
  15.  
  16. condition:
  17. uint16(0) == 0x5A4D and all of ($string*) and filesize < 80KB
  18. }
  19.  
  20. rule Raaloader_mem
  21. {
  22. meta:
  23. description = "Raaloader"
  24. author = "James_inthe_box"
  25. reference = "https://app.any.run/tasks/e658d397-a560-4678-b8ce-0c0222384879"
  26. date = "2019/08"
  27. maltype = "Loader"
  28.  
  29. strings:
  30. $string1 = "Connecting to: %s:%d"
  31. $string2 = "Connection with server terminated"
  32. $string4 = "Connected!"
  33. $string5 = "Console allocated!"
  34.  
  35. condition:
  36. all of ($string*) and filesize > 80KB
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement