Generated docs from job=generate-docs branch=master [ci skip]
This commit is contained in:
@@ -4175,11 +4175,9 @@ defense-evasion:
|
||||
executor:
|
||||
name: sh
|
||||
elevation_required: true
|
||||
command: 'if (systemd-detect-virt || sudo dmidecode | egrep -i ''manufacturer|product|vendor''
|
||||
| grep -iE ''Oracle|VirtualBox|VMWare|Parallels'') then echo "Virtualization
|
||||
Environment detected"; fi;
|
||||
|
||||
'
|
||||
command: |
|
||||
if (systemd-detect-virt) then echo "Virtualization Environment detected"; fi;
|
||||
if (sudo dmidecode | egrep -i 'manufacturer|product|vendor' | grep -iE 'Oracle|VirtualBox|VMWare|Parallels') then echo "Virtualization Environment detected"; fi;
|
||||
- name: Detect Virtualization Environment (Windows)
|
||||
auto_generated_guid: 502a7dc4-9d6f-4d28-abf2-f0e84692562d
|
||||
description: 'Windows Management Instrumentation(WMI) objects contains system
|
||||
@@ -84279,11 +84277,9 @@ discovery:
|
||||
executor:
|
||||
name: sh
|
||||
elevation_required: true
|
||||
command: 'if (systemd-detect-virt || sudo dmidecode | egrep -i ''manufacturer|product|vendor''
|
||||
| grep -iE ''Oracle|VirtualBox|VMWare|Parallels'') then echo "Virtualization
|
||||
Environment detected"; fi;
|
||||
|
||||
'
|
||||
command: |
|
||||
if (systemd-detect-virt) then echo "Virtualization Environment detected"; fi;
|
||||
if (sudo dmidecode | egrep -i 'manufacturer|product|vendor' | grep -iE 'Oracle|VirtualBox|VMWare|Parallels') then echo "Virtualization Environment detected"; fi;
|
||||
- name: Detect Virtualization Environment (Windows)
|
||||
auto_generated_guid: 502a7dc4-9d6f-4d28-abf2-f0e84692562d
|
||||
description: 'Windows Management Instrumentation(WMI) objects contains system
|
||||
|
||||
@@ -41,7 +41,8 @@ At boot, dmesg stores a log if a hypervisor is detected.
|
||||
|
||||
|
||||
```sh
|
||||
if (systemd-detect-virt || sudo dmidecode | egrep -i 'manufacturer|product|vendor' | grep -iE 'Oracle|VirtualBox|VMWare|Parallels') then echo "Virtualization Environment detected"; fi;
|
||||
if (systemd-detect-virt) then echo "Virtualization Environment detected"; fi;
|
||||
if (sudo dmidecode | egrep -i 'manufacturer|product|vendor' | grep -iE 'Oracle|VirtualBox|VMWare|Parallels') then echo "Virtualization Environment detected"; fi;
|
||||
```
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user