Advertisement
James_inthe_box

Arma VM Detector yara sig

Mar 26th, 2019
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. rule Arma_vmdetector_bin
  2. {
  3. meta:
  4. description = "Arma VM Detector"
  5. author = "James_inthe_box"
  6. reference = "8ac05c6a588e6421b7de21aebaf2dbfeb3334d4ebf17caf6d5705874c0a72c5e"
  7. date = "2019/03"
  8. maltype = "Support"
  9.  
  10. strings:
  11. $string1 = "arma.VmDetector.Win32"
  12. $string2 = "INFINITE"
  13. $string3 = "BIOS"
  14. $string4 = "BIOS_ROM_is_socketed"
  15. $string5 = "BIOS_shadowing_is_allowed"
  16. $string6 = "OEMStringArray" wide
  17. $string7 = "RegAsm.exe" wide
  18. $string8 = "/c copy" wide
  19.  
  20.  
  21. condition:
  22. uint16(0) == 0x5A4D and uint8(uint32(0x3c)+23) == 0x21 and all of ($string*) and filesize < 100KB
  23. }
  24.  
  25. rule Arma_vmdetector_mem
  26. {
  27. meta:
  28. description = "Arma VM Detector"
  29. author = "James_inthe_box"
  30. reference = "8ac05c6a588e6421b7de21aebaf2dbfeb3334d4ebf17caf6d5705874c0a72c5e"
  31. date = "2019/03"
  32. maltype = "Support"
  33.  
  34. strings:
  35. $string1 = "arma.VmDetector.Win32"
  36. $string2 = "INFINITE"
  37. $string3 = "BIOS"
  38. $string4 = "BIOS_ROM_is_socketed"
  39. $string5 = "BIOS_shadowing_is_allowed"
  40. $string6 = "OEMStringArray" wide
  41. $string7 = "RegAsm.exe" wide
  42. $string8 = "/c copy" wide
  43.  
  44.  
  45. condition:
  46. all of ($string*) and filesize > 100KB
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement