├── Extract.Hvcalls ├── README.md ├── images │ └── image001.png └── sources │ ├── Extract.Hvcalls.csproj │ ├── Extract.Hvcalls.csproj.user │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── ModuleHvCalls.cs │ ├── ParseHvCall.cs │ ├── Program.cs │ ├── README.md │ ├── config.json │ └── python │ ├── extract_hvcalls.py │ ├── hvcalls_merge.py │ └── requirements.txt ├── HvlibPowershell ├── Hvlib │ └── 1.0.0 │ │ ├── Hvlib.psd1 │ │ └── Hvlib.psm1 ├── README.md ├── Set-HvlibCloudExample.ps1 └── images │ └── image001.png ├── HyperV-Security-Framework ├── HyperV_Security_Framework.ps1 ├── README.md └── images │ └── image001.png ├── HyperViews ├── HyperViews │ ├── App.config │ ├── ClassDiagram1.cd │ ├── HexDumpView.Designer.cs │ ├── HexDumpView.cs │ ├── HexDumpView.resx │ ├── HyperViews.csproj │ ├── HyperViews.csproj.user │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── PTView │ │ ├── Driver │ │ │ ├── DriverInterface.cs │ │ │ ├── Internal │ │ │ │ └── Constants.cs │ │ │ └── hvlibdotnet.cs │ │ ├── Misc.cs │ │ ├── Native.cs │ │ └── Structures.cs │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.manifest │ └── hvlibdotnet.cs ├── README.md └── images │ └── image001.png ├── Hyperv_detector ├── hyperv_detector_v1 │ ├── README.md │ ├── hyperv_detector.c │ ├── hyperv_detector.sln │ ├── hyperv_detector.vcxproj │ ├── hyperv_detector.vcxproj.user │ └── images │ │ └── image001.png └── hyperv_detector_v2 │ ├── README.md │ ├── hyperv_detector.sln │ ├── hyperv_detector.vcxproj │ ├── hyperv_detector.vcxproj.user │ ├── hyperv_driver.vcxproj │ ├── hyperv_driver.vcxproj.user │ └── src │ ├── common │ ├── common.h │ └── shared_structs.h │ ├── kernel_mode │ ├── ASM64.asm │ ├── hypercall_checks.c │ ├── hypercall_perform.c │ ├── hyperv_driver.c │ ├── hyperv_driver.h │ └── hyperv_driver.inf │ └── user_mode │ ├── bios_checks.c │ ├── cpuid_checks.c │ ├── device_checks.c │ ├── file_checks.c │ ├── hyperv_detector.h │ ├── main.c │ ├── process_checks.c │ ├── registry_checks.c │ └── service_checks.c ├── Plugin_for_volatility ├── README.md ├── hvlib.py ├── hyperv.py ├── images │ └── image001.png └── stacker.py └── README.md /Extract.Hvcalls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/README.md -------------------------------------------------------------------------------- /Extract.Hvcalls/images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/images/image001.png -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/Extract.Hvcalls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/Extract.Hvcalls.csproj -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/Extract.Hvcalls.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/Extract.Hvcalls.csproj.user -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/Form1.Designer.cs -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/Form1.cs -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/Form1.resx -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/ModuleHvCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/ModuleHvCalls.cs -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/ParseHvCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/ParseHvCall.cs -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/Program.cs -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/README.md -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/config.json -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/python/extract_hvcalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/python/extract_hvcalls.py -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/python/hvcalls_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Extract.Hvcalls/sources/python/hvcalls_merge.py -------------------------------------------------------------------------------- /Extract.Hvcalls/sources/python/requirements.txt: -------------------------------------------------------------------------------- 1 | sark 2 | pefile -------------------------------------------------------------------------------- /HvlibPowershell/Hvlib/1.0.0/Hvlib.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HvlibPowershell/Hvlib/1.0.0/Hvlib.psd1 -------------------------------------------------------------------------------- /HvlibPowershell/Hvlib/1.0.0/Hvlib.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HvlibPowershell/Hvlib/1.0.0/Hvlib.psm1 -------------------------------------------------------------------------------- /HvlibPowershell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HvlibPowershell/README.md -------------------------------------------------------------------------------- /HvlibPowershell/Set-HvlibCloudExample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HvlibPowershell/Set-HvlibCloudExample.ps1 -------------------------------------------------------------------------------- /HvlibPowershell/images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HvlibPowershell/images/image001.png -------------------------------------------------------------------------------- /HyperV-Security-Framework/HyperV_Security_Framework.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperV-Security-Framework/HyperV_Security_Framework.ps1 -------------------------------------------------------------------------------- /HyperV-Security-Framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperV-Security-Framework/README.md -------------------------------------------------------------------------------- /HyperV-Security-Framework/images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperV-Security-Framework/images/image001.png -------------------------------------------------------------------------------- /HyperViews/HyperViews/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/App.config -------------------------------------------------------------------------------- /HyperViews/HyperViews/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/ClassDiagram1.cd -------------------------------------------------------------------------------- /HyperViews/HyperViews/HexDumpView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/HexDumpView.Designer.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/HexDumpView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/HexDumpView.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/HexDumpView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/HexDumpView.resx -------------------------------------------------------------------------------- /HyperViews/HyperViews/HyperViews.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/HyperViews.csproj -------------------------------------------------------------------------------- /HyperViews/HyperViews/HyperViews.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/HyperViews.csproj.user -------------------------------------------------------------------------------- /HyperViews/HyperViews/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/MainForm.Designer.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/MainForm.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/MainForm.resx -------------------------------------------------------------------------------- /HyperViews/HyperViews/PTView/Driver/DriverInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/PTView/Driver/DriverInterface.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/PTView/Driver/Internal/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/PTView/Driver/Internal/Constants.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/PTView/Driver/hvlibdotnet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/PTView/Driver/hvlibdotnet.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/PTView/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/PTView/Misc.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/PTView/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/PTView/Native.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/PTView/Structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/PTView/Structures.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/Program.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/Properties/Resources.resx -------------------------------------------------------------------------------- /HyperViews/HyperViews/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /HyperViews/HyperViews/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/Properties/Settings.settings -------------------------------------------------------------------------------- /HyperViews/HyperViews/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/app.manifest -------------------------------------------------------------------------------- /HyperViews/HyperViews/hvlibdotnet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/HyperViews/hvlibdotnet.cs -------------------------------------------------------------------------------- /HyperViews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/README.md -------------------------------------------------------------------------------- /HyperViews/images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/HyperViews/images/image001.png -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v1/README.md -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v1/hyperv_detector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v1/hyperv_detector.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v1/hyperv_detector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v1/hyperv_detector.sln -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v1/hyperv_detector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v1/hyperv_detector.vcxproj -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v1/hyperv_detector.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v1/hyperv_detector.vcxproj.user -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v1/images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v1/images/image001.png -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/README.md -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/hyperv_detector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/hyperv_detector.sln -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/hyperv_detector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/hyperv_detector.vcxproj -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/hyperv_detector.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/hyperv_detector.vcxproj.user -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/hyperv_driver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/hyperv_driver.vcxproj -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/hyperv_driver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/hyperv_driver.vcxproj.user -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/common/common.h -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/common/shared_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/common/shared_structs.h -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/kernel_mode/ASM64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/kernel_mode/ASM64.asm -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hypercall_checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hypercall_checks.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hypercall_perform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hypercall_perform.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hyperv_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hyperv_driver.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hyperv_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hyperv_driver.h -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hyperv_driver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/kernel_mode/hyperv_driver.inf -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/user_mode/bios_checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/user_mode/bios_checks.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/user_mode/cpuid_checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/user_mode/cpuid_checks.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/user_mode/device_checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/user_mode/device_checks.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/user_mode/file_checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/user_mode/file_checks.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/user_mode/hyperv_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/user_mode/hyperv_detector.h -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/user_mode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/user_mode/main.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/user_mode/process_checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/user_mode/process_checks.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/user_mode/registry_checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/user_mode/registry_checks.c -------------------------------------------------------------------------------- /Hyperv_detector/hyperv_detector_v2/src/user_mode/service_checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Hyperv_detector/hyperv_detector_v2/src/user_mode/service_checks.c -------------------------------------------------------------------------------- /Plugin_for_volatility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Plugin_for_volatility/README.md -------------------------------------------------------------------------------- /Plugin_for_volatility/hvlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Plugin_for_volatility/hvlib.py -------------------------------------------------------------------------------- /Plugin_for_volatility/hyperv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Plugin_for_volatility/hyperv.py -------------------------------------------------------------------------------- /Plugin_for_volatility/images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Plugin_for_volatility/images/image001.png -------------------------------------------------------------------------------- /Plugin_for_volatility/stacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/Plugin_for_volatility/stacker.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerhart01/Hyper-V-Tools/HEAD/README.md --------------------------------------------------------------------------------