James_inthe_box

Buran ransomware yara

Jul 13th, 2019
630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. rule Buran_bin
  2. {
  3. meta:
  4. description = "Buran ransomware"
  5. author = "James_inthe_box"
  6. reference = "c201b67cb570829122d710c2259d5342cb7c23a8e524290f0c371e68f410664b"
  7. date = "2019/07"
  8. maltype = "Ransomware"
  9.  
  10. strings:
  11. $string1 = "GetLongPathNameA"
  12. $string2 = "GetDiskFreeSpaceExA"
  13. $string3 = "oleaut32.dll"
  14. $string4 = "Sleep"
  15. $string5 = "StreamUnit"
  16. $string6 = "Buran"
  17.  
  18. condition:
  19. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  20. }
  21.  
  22. rule Buran_mem
  23. {
  24. meta:
  25. description = "Buran ransomware"
  26. author = "James_inthe_box"
  27. reference = "c201b67cb570829122d710c2259d5342cb7c23a8e524290f0c371e68f410664b"
  28. date = "2019/07"
  29. maltype = "Ransomware"
  30.  
  31. strings:
  32. $string1 = "THIS IS BURAN"
  33.  
  34. condition:
  35. all of ($string*) and filesize > 800KB
  36. }
Advertisement
Add Comment
Please, Sign In to add comment