Advertisement
James_inthe_box

YoungLotus

May 5th, 2019
842
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. Yara sig:
  2.  
  3. rule Younglotus_bin
  4. {
  5. meta:
  6. description = "YoungLotus"
  7. author = "James_inthe_box"
  8. reference = "903c4fad643ecfab5c523dfb4b555693071717e8e5fb508338dde71e28d0b676"
  9. date = "2019/02"
  10. maltype = "RAT"
  11.  
  12. strings:
  13. $string1 = "icon=%%WinDir%%\\system32\\shell32.dll"
  14. $string2 = "For i = 1 To Len(WriteData) Step 2"
  15. $string3 = "complete.dat"
  16. $string4 = ":///:GET /%s HTTP/1.1"
  17.  
  18. condition:
  19. uint16(0) == 0x5A4D and all of ($string*) and filesize < 100KB
  20. }
  21.  
  22.  
  23. rule Younglotus_mem
  24. {
  25. meta:
  26. description = "YoungLotus"
  27. author = "James_inthe_box"
  28. reference = "903c4fad643ecfab5c523dfb4b555693071717e8e5fb508338dde71e28d0b676"
  29. date = "2019/02"
  30. maltype = "RAT"
  31.  
  32. strings:
  33. $string1 = "icon=%%WinDir%%\\system32\\shell32.dll"
  34. $string2 = "For i = 1 To Len(WriteData) Step 2"
  35. $string3 = "complete.dat"
  36. $string4 = ":///:GET /%s HTTP/1.1"
  37.  
  38. condition:
  39. all of ($string*) and filesize > 100KB
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement