Digital Forensics & Incident Response
  • Welcome
  • General Notes
    • Azure Blob storage with NGINX proxy
    • Install and Configure ZeroTier client
    • S3FS Fuse and MinIO
    • Enable nested VT-X/AMD-V
    • mitm proxy
    • Exploring Volume Shadow Copies Manually
    • Resize VMDK/VDI
    • Resize VMDK on ESXi
    • Convert raw to vmdk
    • Favicon hashing and hunting with Shodan
    • WinRM/RemotePS
    • MinIO/S3/R2 ghost files
    • Mount E01 containing VMDK/XFS from RHEL system
    • Disk images for various filesystems and configurations
      • ext4 with LVM and RAID5 (3 disks)
      • ZFS
      • UFS, FFS, BTRFS, XFS
      • ext4, LVM, and LUKS1/LUKS2
      • NTFS, FAT32, with BitLocker
      • NTFS, FAT32, exFAT with TrueCrypt, VeraCrypt
    • VirtualBox adapters greyed out
    • Exporting SQLite blob data from standalone SQLite database using command line tools
  • Microsoft Defender KQL
    • Introduction to KQL
  • Windows Forensics
    • PsExec
      • PsExec and NTUSER data
    • Security Patch/KB Install Date
  • Linux Forensics
    • Inspecting RPM/DEB packages
    • Common Locations
  • ESXi Forensics
    • Mount external USB device in ESXi hypervisor
    • Understanding ESXi
      • Partitions / Volumes
      • ESXi console / shell
      • Guest Virtual Machines
    • General Notes
    • Triage and Imaging
    • ESXi VMFS Exploration
    • Export OVF from ESXi using OVF Tool
    • Identification, acquisition, and examination of iSCSI LUNs and VMFS datastores
  • Memory Forensics
    • Volatility
      • Volatility3 core commands
      • Build Custom Linux Profile for Volatility
      • Generate custom profile using btf2json
      • Banners, isfinfo, and custom profiles
      • Volatility2 core commands
      • 3rd Party Plugins
    • Acquisition
      • ESXi / VMware Workstation snapshots
      • DumpIt
      • WinPMem
      • Linux / AVML
  • Incident Response
    • Ivanti Connect Secure Auth Bypass and Remote Code Authentication CVE-2024-21887
    • VirusTotal & hash lists
    • Unix-like Artifacts Collector (UAC)
      • Setup MinIO (object storage)
      • Create S3 pre-signed URL
      • UAC and pre-signed URLs
    • Acquiring Linux VPS via SSH
    • AVML dump to SMB / AWS
    • China Chopper webshell
    • Logging Powershell activities
    • Compromised UniFi Controller
    • AnyDesk Remote Access
    • Mounting UFS VMDK from NetScaler/Citrix ADC
  • iOS Forensics
    • Checkm8 / checkra1n acquisitions/extractions
  • CTF / Challenges
    • 13Cubed Linux memory forensics
    • Compromised Windows Server 2022 (simulation)
      • FTK Imager
      • Autopsy Forensics
      • Plaso
      • Events Ripper
      • EZ tools
    • DEFCON 2019 forensics
    • Tomcat shells
    • Magnet Weekly CTF
      • Magnet CTF Week 0
      • Magnet CTF Week 1
    • DFIR Madness CTF
      • Case 001 - Szechuan Sauce
  • Log Files
    • Windows
      • Generating Log Timelines
  • Malware Analysis
    • Identifying UPX packed ELF, decompressing, fixing, and analysing Linux malware
    • PDF Analysis
  • Walking the VAD tree
  • OpenCTI
    • What is CTI/OpenCTI?
    • Setting up OpenCTI
    • Container Management
    • Configure Connectors
  • Vulnerability Management
    • Setting Up Nessus (Essentials)
    • Troubleshooting
  • Privacy
Powered by GitBook
On this page

Was this helpful?

  1. ESXi Forensics
  2. Understanding ESXi

Guest Virtual Machines

PreviousESXi console / shellNextGeneral Notes

Last updated 3 years ago

Was this helpful?

It may be difficult to identify guest VMs if you only have access to the console and not the ESXi web interface.

vmdumper is able to quickly provide information about virtual machines which are present on the host and currently running vm-support can list all configured VMs, regardless of powered state

[root@localhost:~] vmdumper -l
wid=528305      pid=-1  cfgFile="/vmfs/volumes/{volume-UUID}/host3/host3.vmx"     uuid="{UUID-hex}"  displayName="host3"     vmxCartelID=528303
wid=528307      pid=-1  cfgFile="/vmfs/volumes/{volume-UUID}/host1/host1.vmx"     uuid="{UUID-hex}"  displayName="host1"     vmxCartelID=528304
wid=528308      pid=-1  cfgFile="/vmfs/volumes/{volume-UUID}/host2/host2.vmx"     uuid="{UUID-hex}"  displayName="host2"     vmxCartelID=528302

[root@localhost:~] vm-support --listvms
/vmfs/volumes/{volume-UUID}/Ubuntu/Ubuntu.vmx (Registered)
/vmfs/volumes/{volume-UUID}/Kali/Kali.vmx (Registered)
/vmfs/volumes/{volume-UUID}/Windows10_1/Windows10_1.vmx (Registered)
/vmfs/volumes/{volume-UUID}/pfSense_gateway/pfSense_gateway.vmx (Registered)
/vmfs/volumes/{volume-UUID}/Windows_Flare/Windows_Flare.vmx (Registered)
/vmfs/volumes/{volume-UUID}/REMNUX/REMNUX.vmx (Registered)
/vmfs/volumes/{volume-UUID}/DC01/DC01.vmx (Registered)
/vmfs/volumes/{volume-UUID}/OpenCTI/OpenCTI.vmx (Registered)
/vmfs/volumes/{volume-UUID}/50cent/50cent.vmx (Registered)
/vmfs/volumes/{volume-UUID}/dht-tracker/dht-tracker.vmx (Registered)
/vmfs/volumes/{volume-UUID}/ubuntu-template/ubuntu-template.vmx (Registered)
/vmfs/volumes/{volume-UUID}/host1/host1.vmx (Running)
/vmfs/volumes/{volume-UUID}/host2/host2.vmx (Running)
/vmfs/volumes/{volume-UUID}/host3/host3.vmx (Running)

For specific information about a guest VM (or cat the same vmx file)

[root@localhost:~] vm-support -v /vmfs/volumes/{volume-UUID}/host1/host1.vmx
❗
❗