Skip to content

Commit

Permalink
Merge pull request #765 from anders-v/master
Browse files Browse the repository at this point in the history
adding rules for vm detection through wmi calls to drive and motherbo…
  • Loading branch information
williballenthin authored Jul 12, 2023
2 parents 3a483a9 + 758bc4d commit c3da5ee
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# generated using capa explorer for IDA Pro
rule:
meta:
name: detect VM via disk hardware WMI queries
namespace: anti-analysis/anti-vm/vm-detection
authors:
- [email protected]
scope: function
att&ck:
- Defense Evasion::Virtualization/Sandbox Evasion::System Checks [T1497.001]
examples:
- 32B3678F8C29437E9EA10EAB10194F66:0x4035e0
features:
- and:
- string: "Win32_DiskDrive"
- string: "Model"
- string: "Virtual"
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# generated using capa explorer for IDA Pro
rule:
meta:
name: detect VM via motherboard hardware WMI queries
namespace: anti-analysis/anti-vm/vm-detection
authors:
- [email protected]
scope: function
att&ck:
- Defense Evasion::Virtualization/Sandbox Evasion::System Checks [T1497.001]
examples:
- 32B3678F8C29437E9EA10EAB10194F66:0x4035e0
features:
- and:
- string: "Win32_BaseBoard"
- string: "Virtual"
- string: "Product"

0 comments on commit c3da5ee

Please sign in to comment.