Showing preview only (7,216K chars total). Download the full file or copy to clipboard to get everything.
Repository: HyperDbg/HyperDbg
Branch: master
Commit: a6f841c38044
Files: 723
Total size: 41.5 MB
Directory structure:
gitextract_yz6zvnmj/
├── .gitattributes
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ └── feature_request.md
│ ├── git/
│ │ └── git-help.md
│ ├── pull_request_template.md
│ └── workflows/
│ └── vs2022.yml
├── .gitignore
├── .gitmodules
├── CHANGELOG.md
├── CITATION.cff
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── CREDITS.md
├── HOWTO.md
├── LICENSE
├── README.md
├── doxyfile
├── examples/
│ ├── README.md
│ ├── kernel/
│ │ ├── README.md
│ │ └── hyperdbg_driver/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── core/
│ │ │ │ └── Core.c
│ │ │ └── driver/
│ │ │ ├── Driver.c
│ │ │ ├── Ioctl.c
│ │ │ └── Loader.c
│ │ ├── header/
│ │ │ ├── core/
│ │ │ │ └── Core.h
│ │ │ ├── driver/
│ │ │ │ ├── Driver.h
│ │ │ │ └── Loader.h
│ │ │ ├── misc/
│ │ │ │ └── Global.h
│ │ │ └── pch.h
│ │ ├── hyperdbg_driver.vcxproj
│ │ └── hyperdbg_driver.vcxproj.filters
│ └── user/
│ ├── README.md
│ └── hyperdbg_app/
│ ├── CMakeLists.txt
│ ├── code/
│ │ └── hyperdbg-app.cpp
│ ├── header/
│ │ └── pch.h
│ ├── hyperdbg_app.vcxproj
│ └── hyperdbg_app.vcxproj.filters
├── hwdbg/
│ ├── .github/
│ │ └── workflows/
│ │ └── test.yml
│ ├── .gitignore
│ ├── .mill-version
│ ├── .scalafmt.conf
│ ├── CODE_OF_CONDUCT.md
│ ├── LICENSE
│ ├── README.md
│ ├── build.sbt
│ ├── build.sc
│ ├── project/
│ │ ├── build.properties
│ │ ├── metals.sbt
│ │ ├── plugins.sbt
│ │ └── project/
│ │ ├── metals.sbt
│ │ └── project/
│ │ └── metals.sbt
│ ├── sim/
│ │ ├── .gitignore
│ │ ├── hwdbg/
│ │ │ ├── DebuggerModuleTestingBRAM/
│ │ │ │ ├── Makefile
│ │ │ │ ├── bram_instance_info.txt
│ │ │ │ ├── script_buffer_response.txt
│ │ │ │ ├── test.sh
│ │ │ │ └── test_DebuggerModuleTestingBRAM.py
│ │ │ └── communication/
│ │ │ ├── DebuggerPacketReceiver/
│ │ │ │ ├── Makefile
│ │ │ │ ├── test.sh
│ │ │ │ └── test_DebuggerPacketReceiver.py
│ │ │ ├── DebuggerPacketSender/
│ │ │ │ ├── Makefile
│ │ │ │ ├── test.sh
│ │ │ │ └── test_DebuggerPacketSender.py
│ │ │ └── SendReceiveSynchronizer/
│ │ │ ├── Makefile
│ │ │ ├── test.sh
│ │ │ └── test_SendReceiveSynchronizer.py
│ │ ├── modelsim/
│ │ │ ├── README.md
│ │ │ ├── modelsim.config
│ │ │ ├── modelsim.py
│ │ │ └── modelsim.tcl
│ │ └── plain-sv/
│ │ └── PlainSystemVerilogDUT.sv
│ └── src/
│ ├── main/
│ │ ├── scala/
│ │ │ ├── hwdbg/
│ │ │ │ ├── communication/
│ │ │ │ │ ├── interpreter/
│ │ │ │ │ │ ├── instance_info.scala
│ │ │ │ │ │ ├── script_buffer_handler.scala
│ │ │ │ │ │ └── send_success_or_error.scala
│ │ │ │ │ ├── interpreter.scala
│ │ │ │ │ ├── receiver.scala
│ │ │ │ │ ├── send_receive_synchronizer.scala
│ │ │ │ │ └── sender.scala
│ │ │ │ ├── configs/
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── configs.scala
│ │ │ │ │ ├── constants.scala
│ │ │ │ │ └── test_configs.scala
│ │ │ │ ├── libs/
│ │ │ │ │ ├── mem/
│ │ │ │ │ │ ├── init_mem.scala
│ │ │ │ │ │ └── init_reg_mem_from_file.scala
│ │ │ │ │ └── mux/
│ │ │ │ │ ├── mux_2_to_1_io.scala
│ │ │ │ │ ├── mux_2_to_1_lookup.scala
│ │ │ │ │ └── mux_4_to_1_onehot.scala
│ │ │ │ ├── main.scala
│ │ │ │ ├── script/
│ │ │ │ │ ├── eval.scala
│ │ │ │ │ ├── exec.scala
│ │ │ │ │ ├── get_value.scala
│ │ │ │ │ ├── script_definitions.scala
│ │ │ │ │ └── set_value.scala
│ │ │ │ ├── types/
│ │ │ │ │ ├── communication.scala
│ │ │ │ │ └── stage.scala
│ │ │ │ └── utils/
│ │ │ │ └── utils.scala
│ │ │ ├── top.scala
│ │ │ └── top_test.scala
│ │ └── systemverilog/
│ │ └── sensors/
│ │ ├── constraints/
│ │ │ └── top.xdc
│ │ └── src/
│ │ ├── PL_CORE.v
│ │ ├── ff_fanout.sv
│ │ ├── freq_generator.sv
│ │ ├── inverter.v
│ │ ├── inverter_chain.v
│ │ ├── multibyte_uart_rx.sv
│ │ ├── multibyte_uart_tx.sv
│ │ ├── not_gate_simple.v
│ │ ├── ro.v
│ │ ├── ro_core.sv
│ │ ├── ro_fanout.sv
│ │ ├── ro_sensor.sv
│ │ ├── top.sv
│ │ ├── uart_rx.sv
│ │ └── uart_tx.sv
│ └── test/
│ └── bram/
│ ├── instance_info.hex.txt
│ └── script_buffer.hex.txt
├── hyperdbg/
│ ├── .clang-format
│ ├── CMakeLists.txt
│ ├── FindWdk.cmake
│ ├── dependencies/
│ │ └── keystone/
│ │ └── include/
│ │ └── keystone/
│ │ ├── arm.h
│ │ ├── arm64.h
│ │ ├── evm.h
│ │ ├── hexagon.h
│ │ ├── keystone.h
│ │ ├── mips.h
│ │ ├── ppc.h
│ │ ├── riscv.h
│ │ ├── sparc.h
│ │ ├── systemz.h
│ │ └── x86.h
│ ├── hyperdbg-cli/
│ │ ├── CMakeLists.txt
│ │ ├── hyperdbg-cli.cpp
│ │ ├── hyperdbg-cli.vcxproj
│ │ └── hyperdbg-cli.vcxproj.filters
│ ├── hyperdbg-test/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── assembly/
│ │ │ │ └── asm-test.asm
│ │ │ ├── hardware/
│ │ │ │ └── hwdbg-tests.cpp
│ │ │ ├── main.cpp
│ │ │ ├── namedpipe.cpp
│ │ │ ├── tests/
│ │ │ │ ├── test-parser.cpp
│ │ │ │ └── test-semantic-scripts.cpp
│ │ │ └── tools.cpp
│ │ ├── header/
│ │ │ ├── hwdbg-tests.h
│ │ │ ├── namedpipe.h
│ │ │ ├── routines.h
│ │ │ └── testcases.h
│ │ ├── hyperdbg-test.vcxproj
│ │ ├── hyperdbg-test.vcxproj.filters
│ │ ├── pch.cpp
│ │ └── pch.h
│ ├── hyperdbg.sln
│ ├── hyperevade/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── SyscallFootprints.c
│ │ │ ├── Transparency.c
│ │ │ ├── UnloadDll.c
│ │ │ └── VmxFootprints.c
│ │ ├── header/
│ │ │ ├── SyscallFootprints.h
│ │ │ ├── Transparency.h
│ │ │ ├── VmxFootprints.h
│ │ │ └── pch.h
│ │ ├── hyperevade.def
│ │ ├── hyperevade.vcxproj
│ │ └── hyperevade.vcxproj.filters
│ ├── hyperhv/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── assembly/
│ │ │ │ ├── AsmCommon.asm
│ │ │ │ ├── AsmEpt.asm
│ │ │ │ ├── AsmHooks.asm
│ │ │ │ ├── AsmInterruptHandlers.asm
│ │ │ │ ├── AsmSegmentRegs.asm
│ │ │ │ ├── AsmVmexitHandler.asm
│ │ │ │ ├── AsmVmxContextState.asm
│ │ │ │ └── AsmVmxOperation.asm
│ │ │ ├── broadcast/
│ │ │ │ ├── Broadcast.c
│ │ │ │ └── DpcRoutines.c
│ │ │ ├── common/
│ │ │ │ ├── Bitwise.c
│ │ │ │ ├── Common.c
│ │ │ │ └── UnloadDll.c
│ │ │ ├── components/
│ │ │ │ └── registers/
│ │ │ │ └── DebugRegisters.c
│ │ │ ├── devices/
│ │ │ │ ├── Apic.c
│ │ │ │ └── Pci.c
│ │ │ ├── disassembler/
│ │ │ │ ├── Disassembler.c
│ │ │ │ └── ZydisKernel.c
│ │ │ ├── features/
│ │ │ │ ├── CompatibilityChecks.c
│ │ │ │ └── DirtyLogging.c
│ │ │ ├── globals/
│ │ │ │ └── GlobalVariableManagement.c
│ │ │ ├── hooks/
│ │ │ │ ├── ept-hook/
│ │ │ │ │ ├── EptHook.c
│ │ │ │ │ ├── ExecTrap.c
│ │ │ │ │ └── ModeBasedExecHook.c
│ │ │ │ └── syscall-hook/
│ │ │ │ ├── EferHook.c
│ │ │ │ └── SyscallCallback.c
│ │ │ ├── interface/
│ │ │ │ ├── Callback.c
│ │ │ │ ├── Configuration.c
│ │ │ │ ├── DirectVmcall.c
│ │ │ │ ├── Dispatch.c
│ │ │ │ ├── Export.c
│ │ │ │ └── HyperEvade.c
│ │ │ ├── memory/
│ │ │ │ ├── AddressCheck.c
│ │ │ │ ├── Conversion.c
│ │ │ │ ├── Layout.c
│ │ │ │ ├── MemoryManager.c
│ │ │ │ ├── MemoryMapper.c
│ │ │ │ ├── PoolManager.c
│ │ │ │ ├── Segmentation.c
│ │ │ │ └── SwitchLayout.c
│ │ │ ├── mmio/
│ │ │ │ └── MmioShadowing.c
│ │ │ ├── processor/
│ │ │ │ ├── Idt.c
│ │ │ │ └── Smm.c
│ │ │ └── vmm/
│ │ │ ├── ept/
│ │ │ │ ├── Ept.c
│ │ │ │ ├── Invept.c
│ │ │ │ └── Vpid.c
│ │ │ └── vmx/
│ │ │ ├── Counters.c
│ │ │ ├── CrossVmexits.c
│ │ │ ├── Events.c
│ │ │ ├── Hv.c
│ │ │ ├── IdtEmulation.c
│ │ │ ├── IoHandler.c
│ │ │ ├── ManageRegs.c
│ │ │ ├── MsrHandlers.c
│ │ │ ├── Mtf.c
│ │ │ ├── ProtectedHv.c
│ │ │ ├── Vmcall.c
│ │ │ ├── Vmexit.c
│ │ │ ├── Vmx.c
│ │ │ ├── VmxBroadcast.c
│ │ │ ├── VmxMechanisms.c
│ │ │ └── VmxRegions.c
│ │ ├── header/
│ │ │ ├── assembly/
│ │ │ │ └── InlineAsm.h
│ │ │ ├── broadcast/
│ │ │ │ ├── Broadcast.h
│ │ │ │ └── DpcRoutines.h
│ │ │ ├── common/
│ │ │ │ ├── Bitwise.h
│ │ │ │ ├── Common.h
│ │ │ │ ├── Dpc.h
│ │ │ │ ├── Msr.h
│ │ │ │ ├── State.h
│ │ │ │ ├── Trace.h
│ │ │ │ └── UnloadDll.h
│ │ │ ├── devices/
│ │ │ │ ├── Apic.h
│ │ │ │ └── Pci.h
│ │ │ ├── disassembler/
│ │ │ │ └── Disassembler.h
│ │ │ ├── features/
│ │ │ │ ├── CompatibilityChecks.h
│ │ │ │ └── DirtyLogging.h
│ │ │ ├── globals/
│ │ │ │ ├── GlobalVariableManagement.h
│ │ │ │ └── GlobalVariables.h
│ │ │ ├── hooks/
│ │ │ │ ├── ExecTrap.h
│ │ │ │ ├── Hooks.h
│ │ │ │ ├── ModeBasedExecHook.h
│ │ │ │ └── SyscallCallback.h
│ │ │ ├── interface/
│ │ │ │ ├── Callback.h
│ │ │ │ ├── DirectVmcall.h
│ │ │ │ └── Dispatch.h
│ │ │ ├── memory/
│ │ │ │ ├── AddressCheck.h
│ │ │ │ ├── Conversion.h
│ │ │ │ ├── Layout.h
│ │ │ │ ├── MemoryMapper.h
│ │ │ │ ├── PoolManager.h
│ │ │ │ ├── Segmentation.h
│ │ │ │ └── SwitchLayout.h
│ │ │ ├── mmio/
│ │ │ │ └── MmioShadowing.h
│ │ │ ├── processor/
│ │ │ │ ├── Idt.h
│ │ │ │ └── Smm.h
│ │ │ └── vmm/
│ │ │ ├── ept/
│ │ │ │ ├── Ept.h
│ │ │ │ ├── Invept.h
│ │ │ │ └── Vpid.h
│ │ │ └── vmx/
│ │ │ ├── Counters.h
│ │ │ ├── Events.h
│ │ │ ├── Hv.h
│ │ │ ├── IdtEmulation.h
│ │ │ ├── IoHandler.h
│ │ │ ├── MsrHandlers.h
│ │ │ ├── Mtf.h
│ │ │ ├── ProtectedHv.h
│ │ │ ├── Vmcall.h
│ │ │ ├── Vmx.h
│ │ │ ├── VmxBroadcast.h
│ │ │ ├── VmxMechanisms.h
│ │ │ └── VmxRegions.h
│ │ ├── hyperhv.def
│ │ ├── hyperhv.vcxproj
│ │ ├── hyperhv.vcxproj.filters
│ │ ├── pch.c
│ │ └── pch.h
│ ├── hyperkd/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── assembly/
│ │ │ │ └── AsmDebugger.asm
│ │ │ ├── common/
│ │ │ │ ├── Common.c
│ │ │ │ └── Synchronization.c
│ │ │ ├── debugger/
│ │ │ │ ├── broadcast/
│ │ │ │ │ ├── DpcRoutines.c
│ │ │ │ │ ├── HaltedBroadcast.c
│ │ │ │ │ └── HaltedRoutines.c
│ │ │ │ ├── commands/
│ │ │ │ │ ├── BreakpointCommands.c
│ │ │ │ │ ├── Callstack.c
│ │ │ │ │ ├── DebuggerCommands.c
│ │ │ │ │ └── ExtensionCommands.c
│ │ │ │ ├── communication/
│ │ │ │ │ └── SerialConnection.c
│ │ │ │ ├── core/
│ │ │ │ │ ├── Debugger.c
│ │ │ │ │ ├── DebuggerVmcalls.c
│ │ │ │ │ └── HaltedCore.c
│ │ │ │ ├── events/
│ │ │ │ │ ├── ApplyEvents.c
│ │ │ │ │ ├── DebuggerEvents.c
│ │ │ │ │ ├── Termination.c
│ │ │ │ │ └── ValidateEvents.c
│ │ │ │ ├── kernel-level/
│ │ │ │ │ └── Kd.c
│ │ │ │ ├── memory/
│ │ │ │ │ └── Allocations.c
│ │ │ │ ├── meta-events/
│ │ │ │ │ ├── MetaDispatch.c
│ │ │ │ │ └── Tracing.c
│ │ │ │ ├── objects/
│ │ │ │ │ ├── Process.c
│ │ │ │ │ └── Thread.c
│ │ │ │ ├── script-engine/
│ │ │ │ │ └── ScriptEngine.c
│ │ │ │ ├── tests/
│ │ │ │ │ └── KernelTests.c
│ │ │ │ └── user-level/
│ │ │ │ ├── Attaching.c
│ │ │ │ ├── ThreadHolder.c
│ │ │ │ ├── Ud.c
│ │ │ │ └── UserAccess.c
│ │ │ └── driver/
│ │ │ ├── Driver.c
│ │ │ ├── Ioctl.c
│ │ │ └── Loader.c
│ │ ├── header/
│ │ │ ├── assembly/
│ │ │ │ └── Assembly.h
│ │ │ ├── common/
│ │ │ │ ├── Common.h
│ │ │ │ ├── Dpc.h
│ │ │ │ └── Synchronization.h
│ │ │ ├── debugger/
│ │ │ │ ├── broadcast/
│ │ │ │ │ ├── DpcRoutines.h
│ │ │ │ │ ├── HaltedBroadcast.h
│ │ │ │ │ └── HaltedRoutines.h
│ │ │ │ ├── commands/
│ │ │ │ │ ├── BreakpointCommands.h
│ │ │ │ │ ├── Callstack.h
│ │ │ │ │ ├── DebuggerCommands.h
│ │ │ │ │ └── ExtensionCommands.h
│ │ │ │ ├── communication/
│ │ │ │ │ └── SerialConnection.h
│ │ │ │ ├── core/
│ │ │ │ │ ├── Debugger.h
│ │ │ │ │ ├── DebuggerVmcalls.h
│ │ │ │ │ ├── HaltedCore.h
│ │ │ │ │ └── State.h
│ │ │ │ ├── events/
│ │ │ │ │ ├── ApplyEvents.h
│ │ │ │ │ ├── DebuggerEvents.h
│ │ │ │ │ ├── Termination.h
│ │ │ │ │ └── ValidateEvents.h
│ │ │ │ ├── kernel-level/
│ │ │ │ │ └── Kd.h
│ │ │ │ ├── memory/
│ │ │ │ │ ├── Allocations.h
│ │ │ │ │ └── Memory.h
│ │ │ │ ├── meta-events/
│ │ │ │ │ ├── MetaDispatch.h
│ │ │ │ │ └── Tracing.h
│ │ │ │ ├── objects/
│ │ │ │ │ ├── Process.h
│ │ │ │ │ └── Thread.h
│ │ │ │ ├── script-engine/
│ │ │ │ │ └── ScriptEngine.h
│ │ │ │ ├── tests/
│ │ │ │ │ └── KernelTests.h
│ │ │ │ └── user-level/
│ │ │ │ ├── Attaching.h
│ │ │ │ ├── ThreadHolder.h
│ │ │ │ ├── Ud.h
│ │ │ │ └── UserAccess.h
│ │ │ ├── driver/
│ │ │ │ ├── Driver.h
│ │ │ │ └── Loader.h
│ │ │ ├── globals/
│ │ │ │ └── Global.h
│ │ │ └── pch.h
│ │ ├── hyperkd.vcxproj
│ │ └── hyperkd.vcxproj.filters
│ ├── hyperlog/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── Logging.c
│ │ │ └── UnloadDll.c
│ │ ├── header/
│ │ │ ├── Logging.h
│ │ │ ├── UnloadDll.h
│ │ │ └── pch.h
│ │ ├── hyperlog.def
│ │ ├── hyperlog.inf
│ │ ├── hyperlog.vcxproj
│ │ └── hyperlog.vcxproj.filters
│ ├── hypertrace/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── Lbr.c
│ │ │ ├── Tracing.c
│ │ │ └── UnloadDll.c
│ │ ├── header/
│ │ │ ├── Lbr.h
│ │ │ ├── Tracing.h
│ │ │ ├── UnloadDll.h
│ │ │ └── pch.h
│ │ ├── hypertrace.def
│ │ ├── hypertrace.vcxproj
│ │ └── hypertrace.vcxproj.filters
│ ├── include/
│ │ ├── SDK/
│ │ │ ├── HyperDbgSdk.h
│ │ │ ├── headers/
│ │ │ │ ├── Assertions.h
│ │ │ │ ├── BasicTypes.h
│ │ │ │ ├── Connection.h
│ │ │ │ ├── Constants.h
│ │ │ │ ├── DataTypes.h
│ │ │ │ ├── ErrorCodes.h
│ │ │ │ ├── Events.h
│ │ │ │ ├── HardwareDebugger.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── Pcie.h
│ │ │ │ ├── RequestStructures.h
│ │ │ │ ├── ScriptEngineCommonDefinitions.h
│ │ │ │ └── Symbols.h
│ │ │ ├── imports/
│ │ │ │ ├── kernel/
│ │ │ │ │ ├── HyperDbgHyperEvade.h
│ │ │ │ │ ├── HyperDbgHyperLogImports.h
│ │ │ │ │ ├── HyperDbgHyperLogIntrinsics.h
│ │ │ │ │ ├── HyperDbgHyperTrace.h
│ │ │ │ │ └── HyperDbgVmmImports.h
│ │ │ │ └── user/
│ │ │ │ ├── HyperDbgLibImports.h
│ │ │ │ ├── HyperDbgScriptImports.h
│ │ │ │ └── HyperDbgSymImports.h
│ │ │ └── modules/
│ │ │ ├── HyperEvade.h
│ │ │ ├── HyperLog.h
│ │ │ ├── HyperTrace.h
│ │ │ └── VMM.h
│ │ ├── components/
│ │ │ ├── interface/
│ │ │ │ ├── HyperLogCallback.c
│ │ │ │ └── HyperLogCallback.h
│ │ │ ├── optimizations/
│ │ │ │ ├── code/
│ │ │ │ │ ├── AvlTree.c
│ │ │ │ │ ├── BinarySearch.c
│ │ │ │ │ ├── InsertionSort.c
│ │ │ │ │ └── OptimizationsExamples.c
│ │ │ │ └── header/
│ │ │ │ ├── AvlTree.h
│ │ │ │ ├── BinarySearch.h
│ │ │ │ ├── InsertionSort.h
│ │ │ │ └── OptimizationsExamples.h
│ │ │ └── spinlock/
│ │ │ ├── code/
│ │ │ │ └── Spinlock.c
│ │ │ └── header/
│ │ │ └── Spinlock.h
│ │ ├── config/
│ │ │ ├── Configuration.h
│ │ │ └── Definition.h
│ │ ├── hyper-v/
│ │ │ └── HypervTlfs.h
│ │ ├── keystone/
│ │ │ ├── arm.h
│ │ │ ├── arm64.h
│ │ │ ├── evm.h
│ │ │ ├── hexagon.h
│ │ │ ├── keystone.h
│ │ │ ├── mips.h
│ │ │ ├── ppc.h
│ │ │ ├── riscv.h
│ │ │ ├── sparc.h
│ │ │ ├── systemz.h
│ │ │ └── x86.h
│ │ ├── macros/
│ │ │ └── MetaMacros.h
│ │ ├── platform/
│ │ │ ├── kernel/
│ │ │ │ ├── code/
│ │ │ │ │ ├── PlatformMem.c
│ │ │ │ │ └── pch.h
│ │ │ │ └── header/
│ │ │ │ ├── Environment.h
│ │ │ │ ├── PlatformMem.h
│ │ │ │ ├── PlatformModuleInfo.h
│ │ │ │ └── PlatformTypes.h
│ │ │ └── user/
│ │ │ ├── code/
│ │ │ │ └── .gitkeep
│ │ │ └── header/
│ │ │ ├── Environment.h
│ │ │ └── Windows.h
│ │ └── zydis/
│ │ ├── ZycoreExportConfig.h
│ │ └── ZydisExportConfig.h
│ ├── kdserial/
│ │ ├── CMakeLists.txt
│ │ ├── apm88xxxx.c
│ │ ├── bcm2835.c
│ │ ├── common.c
│ │ ├── common.h
│ │ ├── hardware.c
│ │ ├── ioaccess.c
│ │ ├── kdcom.h
│ │ ├── kdserial.def
│ │ ├── kdserial.rc
│ │ ├── kdserial.vcxproj
│ │ ├── msm8974.c
│ │ ├── msm8x60.c
│ │ ├── mx6uart.c
│ │ ├── nvidia.c
│ │ ├── omap.c
│ │ ├── pl011.c
│ │ ├── sam5250.c
│ │ ├── sdm845.c
│ │ ├── spimax311.c
│ │ ├── uart16550.c
│ │ ├── uartio.c
│ │ ├── uartp.h
│ │ ├── usif.c
│ │ └── win11sdk.h
│ ├── libhyperdbg/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── app/
│ │ │ │ ├── dllmain.cpp
│ │ │ │ └── libhyperdbg.cpp
│ │ │ ├── assembly/
│ │ │ │ └── asm-vmx-checks.asm
│ │ │ ├── common/
│ │ │ │ ├── common.cpp
│ │ │ │ ├── list.cpp
│ │ │ │ └── spinlock.cpp
│ │ │ ├── debugger/
│ │ │ │ ├── commands/
│ │ │ │ │ ├── debugging-commands/
│ │ │ │ │ │ ├── a.cpp
│ │ │ │ │ │ ├── bc.cpp
│ │ │ │ │ │ ├── bd.cpp
│ │ │ │ │ │ ├── be.cpp
│ │ │ │ │ │ ├── bl.cpp
│ │ │ │ │ │ ├── bp.cpp
│ │ │ │ │ │ ├── continue.cpp
│ │ │ │ │ │ ├── core.cpp
│ │ │ │ │ │ ├── cpu.cpp
│ │ │ │ │ │ ├── d-u.cpp
│ │ │ │ │ │ ├── dt-struct.cpp
│ │ │ │ │ │ ├── e.cpp
│ │ │ │ │ │ ├── eval.cpp
│ │ │ │ │ │ ├── events.cpp
│ │ │ │ │ │ ├── exit.cpp
│ │ │ │ │ │ ├── flush.cpp
│ │ │ │ │ │ ├── g.cpp
│ │ │ │ │ │ ├── gg.cpp
│ │ │ │ │ │ ├── gu.cpp
│ │ │ │ │ │ ├── i.cpp
│ │ │ │ │ │ ├── k.cpp
│ │ │ │ │ │ ├── lm.cpp
│ │ │ │ │ │ ├── load.cpp
│ │ │ │ │ │ ├── output.cpp
│ │ │ │ │ │ ├── p.cpp
│ │ │ │ │ │ ├── pause.cpp
│ │ │ │ │ │ ├── preactivate.cpp
│ │ │ │ │ │ ├── prealloc.cpp
│ │ │ │ │ │ ├── print.cpp
│ │ │ │ │ │ ├── r.cpp
│ │ │ │ │ │ ├── rdmsr.cpp
│ │ │ │ │ │ ├── s.cpp
│ │ │ │ │ │ ├── settings.cpp
│ │ │ │ │ │ ├── sleep.cpp
│ │ │ │ │ │ ├── t.cpp
│ │ │ │ │ │ ├── test.cpp
│ │ │ │ │ │ ├── unload.cpp
│ │ │ │ │ │ ├── wrmsr.cpp
│ │ │ │ │ │ └── x.cpp
│ │ │ │ │ ├── extension-commands/
│ │ │ │ │ │ ├── apic.cpp
│ │ │ │ │ │ ├── cpuid.cpp
│ │ │ │ │ │ ├── crwrite.cpp
│ │ │ │ │ │ ├── dr.cpp
│ │ │ │ │ │ ├── epthook.cpp
│ │ │ │ │ │ ├── epthook2.cpp
│ │ │ │ │ │ ├── exception.cpp
│ │ │ │ │ │ ├── hide.cpp
│ │ │ │ │ │ ├── idt.cpp
│ │ │ │ │ │ ├── interrupt.cpp
│ │ │ │ │ │ ├── ioapic.cpp
│ │ │ │ │ │ ├── ioin.cpp
│ │ │ │ │ │ ├── ioout.cpp
│ │ │ │ │ │ ├── measure.cpp
│ │ │ │ │ │ ├── mode.cpp
│ │ │ │ │ │ ├── monitor.cpp
│ │ │ │ │ │ ├── msrread.cpp
│ │ │ │ │ │ ├── msrwrite.cpp
│ │ │ │ │ │ ├── pa2va.cpp
│ │ │ │ │ │ ├── pcicam.cpp
│ │ │ │ │ │ ├── pcitree.cpp
│ │ │ │ │ │ ├── pmc.cpp
│ │ │ │ │ │ ├── pte.cpp
│ │ │ │ │ │ ├── rev.cpp
│ │ │ │ │ │ ├── smi.cpp
│ │ │ │ │ │ ├── syscall-sysret.cpp
│ │ │ │ │ │ ├── trace.cpp
│ │ │ │ │ │ ├── track.cpp
│ │ │ │ │ │ ├── tsc.cpp
│ │ │ │ │ │ ├── unhide.cpp
│ │ │ │ │ │ ├── va2pa.cpp
│ │ │ │ │ │ ├── vmcall.cpp
│ │ │ │ │ │ └── xsetbv.cpp
│ │ │ │ │ ├── hwdbg-commands/
│ │ │ │ │ │ ├── hw.cpp
│ │ │ │ │ │ └── hw_clk.cpp
│ │ │ │ │ └── meta-commands/
│ │ │ │ │ ├── attach.cpp
│ │ │ │ │ ├── cls.cpp
│ │ │ │ │ ├── connect.cpp
│ │ │ │ │ ├── debug.cpp
│ │ │ │ │ ├── detach.cpp
│ │ │ │ │ ├── disconnect.cpp
│ │ │ │ │ ├── dump.cpp
│ │ │ │ │ ├── formats.cpp
│ │ │ │ │ ├── help.cpp
│ │ │ │ │ ├── kill.cpp
│ │ │ │ │ ├── listen.cpp
│ │ │ │ │ ├── logclose.cpp
│ │ │ │ │ ├── logopen.cpp
│ │ │ │ │ ├── pagein.cpp
│ │ │ │ │ ├── pe.cpp
│ │ │ │ │ ├── process.cpp
│ │ │ │ │ ├── restart.cpp
│ │ │ │ │ ├── script.cpp
│ │ │ │ │ ├── start.cpp
│ │ │ │ │ ├── status.cpp
│ │ │ │ │ ├── switch.cpp
│ │ │ │ │ ├── sym.cpp
│ │ │ │ │ ├── sympath.cpp
│ │ │ │ │ └── thread.cpp
│ │ │ │ ├── communication/
│ │ │ │ │ ├── forwarding.cpp
│ │ │ │ │ ├── namedpipe.cpp
│ │ │ │ │ ├── remote-connection.cpp
│ │ │ │ │ ├── tcpclient.cpp
│ │ │ │ │ └── tcpserver.cpp
│ │ │ │ ├── core/
│ │ │ │ │ ├── break-control.cpp
│ │ │ │ │ ├── debugger.cpp
│ │ │ │ │ ├── interpreter.cpp
│ │ │ │ │ └── steppings.cpp
│ │ │ │ ├── driver-loader/
│ │ │ │ │ └── install.cpp
│ │ │ │ ├── kernel-level/
│ │ │ │ │ ├── kd.cpp
│ │ │ │ │ └── kernel-listening.cpp
│ │ │ │ ├── misc/
│ │ │ │ │ ├── assembler.cpp
│ │ │ │ │ ├── callstack.cpp
│ │ │ │ │ ├── disassembler.cpp
│ │ │ │ │ ├── pci-id.cpp
│ │ │ │ │ └── readmem.cpp
│ │ │ │ ├── script-engine/
│ │ │ │ │ ├── script-engine-wrapper.cpp
│ │ │ │ │ ├── script-engine.cpp
│ │ │ │ │ └── symbol.cpp
│ │ │ │ ├── tests/
│ │ │ │ │ └── tests.cpp
│ │ │ │ ├── transparency/
│ │ │ │ │ ├── gaussian-rng.cpp
│ │ │ │ │ └── transparency.cpp
│ │ │ │ └── user-level/
│ │ │ │ ├── pe-parser.cpp
│ │ │ │ ├── ud.cpp
│ │ │ │ └── user-listening.cpp
│ │ │ ├── export/
│ │ │ │ └── export.cpp
│ │ │ ├── hwdbg/
│ │ │ │ ├── hwdbg-interpreter.cpp
│ │ │ │ └── hwdbg-scripts.cpp
│ │ │ ├── objects/
│ │ │ │ └── objects.cpp
│ │ │ └── rev/
│ │ │ └── rev-ctrl.cpp
│ │ ├── header/
│ │ │ ├── assembler.h
│ │ │ ├── commands.h
│ │ │ ├── common.h
│ │ │ ├── communication.h
│ │ │ ├── debugger.h
│ │ │ ├── export.h
│ │ │ ├── forwarding.h
│ │ │ ├── globals.h
│ │ │ ├── help.h
│ │ │ ├── hwdbg-interpreter.h
│ │ │ ├── hwdbg-scripts.h
│ │ │ ├── inipp.h
│ │ │ ├── install.h
│ │ │ ├── kd.h
│ │ │ ├── libhyperdbg.h
│ │ │ ├── list.h
│ │ │ ├── namedpipe.h
│ │ │ ├── objects.h
│ │ │ ├── pci-id.h
│ │ │ ├── pe-parser.h
│ │ │ ├── rev-ctrl.h
│ │ │ ├── script-engine.h
│ │ │ ├── steppings.h
│ │ │ ├── symbol.h
│ │ │ ├── tests.h
│ │ │ ├── transparency.h
│ │ │ └── ud.h
│ │ ├── libhyperdbg.vcxproj
│ │ ├── libhyperdbg.vcxproj.filters
│ │ ├── pch.cpp
│ │ └── pch.h
│ ├── libraries/
│ │ ├── kdserial/
│ │ │ ├── arm/
│ │ │ │ ├── kdhv.lib
│ │ │ │ ├── kdserialtransport.lib
│ │ │ │ └── kdtelemetry.lib
│ │ │ ├── arm64/
│ │ │ │ ├── kdhv.lib
│ │ │ │ ├── kdserialtransport.lib
│ │ │ │ └── kdtelemetry.lib
│ │ │ ├── x64/
│ │ │ │ ├── kdhv.lib
│ │ │ │ ├── kdserialtransport.lib
│ │ │ │ └── kdtelemetry.lib
│ │ │ └── x86/
│ │ │ ├── kdhv.lib
│ │ │ ├── kdserialtransport.lib
│ │ │ └── kdtelemetry.lib
│ │ └── keystone/
│ │ ├── README.md
│ │ ├── debug-lib/
│ │ │ └── keystone.lib
│ │ └── release-lib/
│ │ └── keystone.lib
│ ├── linux/
│ │ ├── README.md
│ │ └── mock/
│ │ ├── Makefile
│ │ ├── README.md
│ │ └── mock.c
│ ├── miscellaneous/
│ │ └── constants/
│ │ ├── errors.txt
│ │ ├── ioctl.txt
│ │ └── ntstatus.txt
│ ├── script-engine/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── common.c
│ │ │ ├── globals.c
│ │ │ ├── hardware.c
│ │ │ ├── parse-table.c
│ │ │ ├── pch.c
│ │ │ ├── scanner.c
│ │ │ ├── script-engine.c
│ │ │ └── type.c
│ │ ├── header/
│ │ │ ├── common.h
│ │ │ ├── globals.h
│ │ │ ├── hardware.h
│ │ │ ├── parse-table.h
│ │ │ ├── pch.h
│ │ │ ├── scanner.h
│ │ │ ├── script-engine.h
│ │ │ └── type.h
│ │ ├── python/
│ │ │ ├── Boolean_Expression_Grammar.txt
│ │ │ ├── Grammar.txt
│ │ │ ├── generator.py
│ │ │ ├── lalr1_parser.py
│ │ │ ├── lalr_parsing/
│ │ │ │ ├── __init__.py
│ │ │ │ ├── grammar.py
│ │ │ │ ├── lalr_one.py
│ │ │ │ └── lr_zero.py
│ │ │ ├── ll1_parser.py
│ │ │ └── util.py
│ │ ├── script/
│ │ │ ├── fibonacci.ds
│ │ │ └── test.ds
│ │ ├── script-engine.vcxproj
│ │ ├── script-engine.vcxproj.filters
│ │ ├── script_include.c
│ │ └── script_include.h
│ ├── script-eval/
│ │ ├── code/
│ │ │ ├── Functions.c
│ │ │ ├── Keywords.c
│ │ │ ├── PseudoRegisters.c
│ │ │ ├── Regs.c
│ │ │ └── ScriptEngineEval.c
│ │ └── header/
│ │ ├── ScriptEngineHeader.h
│ │ └── ScriptEngineInternalHeader.h
│ ├── symbol-parser/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── casting.cpp
│ │ │ ├── common-utils.cpp
│ │ │ └── symbol-parser.cpp
│ │ ├── header/
│ │ │ ├── common-utils.h
│ │ │ └── symbol-parser.h
│ │ ├── pch.cpp
│ │ ├── pch.h
│ │ ├── symbol-parser.vcxproj
│ │ └── symbol-parser.vcxproj.filters
│ └── tests/
│ ├── command-parser/
│ │ ├── command-parser-failed-testcases.txt
│ │ └── command-parser-testcases.txt
│ └── hwdbg-tests/
│ └── scripts/
│ ├── codes/
│ │ ├── script_conditional_statement_global_var.hds
│ │ ├── script_conditional_statements_pins.hds
│ │ ├── script_conditional_statements_ports.hds
│ │ ├── script_conditional_statements_ports_with_port_assignments.hds
│ │ ├── script_simple_pin_assignments.hds
│ │ └── script_simple_port_assignments.hds
│ └── compiled-scripts/
│ ├── script_conditional_statement_global_var.hds.hex.txt
│ ├── script_conditional_statements_pins.hds.hex.txt
│ ├── script_conditional_statements_ports.hds.hex.txt
│ ├── script_conditional_statements_ports_with_port_assignments.hds.hex.txt
│ ├── script_simple_pin_assignments.hds.hex.txt
│ └── script_simple_port_assignments.hds.hex.txt
└── utils/
├── clang-format.bat
├── clean.bat
├── counter.py
├── doxygen.bat
├── msvc-build.bat
└── test-environment.py
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitattributes
================================================
# Auto detect text files and perform LF normalization
* text=auto
# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union
# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Note**
We're fortunate to have a community of highly skilled system engineers and reverse engineers contributing to HyperDbg. However, as an open-source, community-driven debugger, our resources and developer time are limited.
Since most HyperDbg users are professional programmers, we encourage you to contribute by submitting pull requests (PRs) whenever possible. While we will address issues created by users, we greatly appreciate your efforts to resolve issues independently and submit PRs. If you're unable to create a PR, please feel free to create an issue, and we'll do our best to address it.
Thank you for reporting issues and for your contributions! ❤️
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. Win 10 1909]
- Processor [e.g. Intel i7 6820HQ]
- Version [e.g. 0.1]
- Environment [VMWare Nested Virtualization, Physical Machine]
**Additional context**
Add any other context about the problem here.
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Note**
We're fortunate to have a community of highly skilled system engineers and reverse engineers contributing to HyperDbg. However, as an open-source, community-driven debugger, our resources and developer time are limited.
Since most HyperDbg users are professional programmers, we encourage you to contribute by submitting pull requests (PRs) whenever possible. While we will address requests for new features created by users, we greatly appreciate your efforts to add them independently and submit PRs. If you're unable to create a PR, please feel free to create your request, and we'll do our best to address it. You can also create issues or discussions to discuss the possible features that you want to add to HyperDbg.
Thank you for requesting new features and for your contributions! ❤️
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
================================================
FILE: .github/git/git-help.md
================================================
## Removing submodules
To remove a submodule you need to:
- Delete the relevant section from the `.gitmodules` file.
- Stage the `.gitmodules` changes git add `.gitmodules`.
- Delete the relevant section from `.git/config`.
- Run `git rm --cached path_to_submodule` (no trailing slash).
- Run `rm -rf .git/modules/path_to_submodule` (no trailing slash).
- Commit `git commit -m "Removed submodule <name>"`.
- Delete the now untracked submodule files `rm -rf path_to_submodule`.
To add a submodule:
```
git submodule add https://github.com/HyperDbg/evaluation
```
Discard changes on a special file:
```
git checkout hyperdbg/hprdbgctrl/print.cpp
```
To release (deploy):
Imagine Tag is **v0.1.0** (tags should start with the 'v*', and only on the master branch). After that, we will use the following command.
```
git checkout master
git tag -a v0.1.0 -m "your descriptive comment"
git push origin master v0.1.0
```
To update submodules:
```
git submodule update --init --recursive --remote
```
To remove the effects of 'git add .' without modifying (removing) the changes in the source code (remove the source codes ready for staging):
```
git reset
```
To remove the effects of `git add .` and `git commit -m "test"` or just `git add .` without modifying (removing) the changes in the source code:
```
git reset --soft HEAD~1
```
---------------
## Releasing instructions
```
git checkout master
git pull
git tag -a v0.1.0 -m "HyperDbg releases"
git push origin master v0.1.0
git checkout dev
git rebase master
git push
```
================================================
FILE: .github/pull_request_template.md
================================================
# Description
Please include a summary of the change and which issue is fixed.
Fixes # (issue)
## Type of change
Please delete options that are not relevant, or add anything you think would be helpful.
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update
**Please ONLY submit your pull request to the "Dev" branch, pull requests to the "Master" branch are not accepted!**
================================================
FILE: .github/workflows/vs2022.yml
================================================
name: vs2022-ci
on:
push:
branches:
- master
- dev
tags:
- 'v*'
paths-ignore:
- '.gitignore'
- '.gitattributes'
- '**.cmd'
- '**.bat'
- '**.md'
pull_request:
paths-ignore:
- '.gitignore'
- '.gitattributes'
- '**.cmd'
- '**.bat'
- '**.md'
env:
# WDK for Windows 11, version 22H2
WDK_URL: https://go.microsoft.com/fwlink/?linkid=2196230
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: ./hyperdbg/hyperdbg.sln
RELEASE_ZIP_FILE_NAME: hyperdbg
BUILD_BIN_DIR: ./hyperdbg/build/bin/
# Zydis library
# ZYDIS_REPO_PATH: hyperdbg/dependencies/zydis/
# ZYDIS_SOLUTION_PATH: hyperdbg/dependencies/zydis/msvc/Zydis.sln
# ZYDIS_BIN_DIR: hyperdbg/libraries/zydis
jobs:
win-amd64-build:
runs-on: windows-2022
strategy:
matrix:
BUILD_CONFIGURATION: [release, debug]
PLATFORM: [x64]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Checkout submodules recursively
run: git submodule update --init --recursive --remote
# - name: Useful default vars
# run: |
# echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE"
# echo "github.workspace: ${{ github.workspace }}"
- name: Setup WDK version 22H2
run: |
$wdkSetupPath = "$Env:TEMP\wdksetup.exe"
(New-Object Net.WebClient).DownloadFile('${{env.WDK_URL}}', $wdkSetupPath)
Start-Process -FilePath $wdkSetupPath -ArgumentList "/quiet" -NoNewWindow -Wait
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.1
# - name: Build third-party dependencies (Release Mode)
# working-directory: ${{env.GITHUB_WORKSPACE}}
# run: msbuild /m /p:Configuration="Release MT" /p:Platform=${{matrix.PLATFORM}} /target:zydis /target:zycore /p:OutDir=${{ github.workspace }}/hyperdbg/libraries/zydis/ ${{ github.workspace }}/hyperdbg/dependencies/zydis/msvc/Zydis.sln
- name: Build Hyperdbg solution
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{matrix.BUILD_CONFIGURATION}} /p:Platform=${{matrix.PLATFORM}} ${{env.SOLUTION_FILE_PATH}}
- name: Upload build directory
uses: actions/upload-artifact@v4.4.0
with:
name: build_files_${{matrix.BUILD_CONFIGURATION}}
path: ${{ env.BUILD_BIN_DIR }}
deploy-release:
name: Deploy release
needs: win-amd64-build
runs-on: windows-2022
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Download build files from "build" job
uses: actions/download-artifact@v4.1.7
with:
name: build_files_release
path: ${{ env.BUILD_BIN_DIR }}
- name: Archive release
uses: thedoctor0/zip-release@master
with:
path: ${{ env.BUILD_BIN_DIR }}release/
type: 'zip'
filename: ${{env.RELEASE_ZIP_FILE_NAME}}-${{ github.ref_name }}.zip
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
${{env.RELEASE_ZIP_FILE_NAME}}-${{ github.ref_name }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
================================================
FILE: .gitignore
================================================
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Mono auto generated files
mono_crash.*
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/
# Visual Studio 2015/2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# Visual Studio 2017 auto generated files
Generated\ Files/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUnit
*.VisualState.xml
TestResult.xml
nunit-*.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
# Benchmark Results
BenchmarkDotNet.Artifacts/
# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/
# ASP.NET Scaffolding
ScaffoldingReadMe.txt
# StyleCop
StyleCopReport.xml
# Files built by Visual Studio
*_i.c
*_p.c
*_h.h
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*_wpftmp.csproj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb
# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap
# Visual Studio Trace Files
*.e2e
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# AxoCover is a Code Coverage Tool
.axoCover/*
!.axoCover/settings.json
# Coverlet is a free, cross platform Code Coverage Tool
coverage*[.json, .xml, .info]
# Visual Studio code coverage results
*.coverage
*.coveragexml
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/
# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output
csx/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.appx
*.appxbundle
*.appxupload
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!?*.[Cc]ache/
# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs
# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
#*.snk
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
ServiceFabricBackup/
*.rptproj.bak
# SQL Server files
*.mdf
*.ldf
*.ndf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
*- [Bb]ackup.rdl
*- [Bb]ackup ([0-9]).rdl
*- [Bb]ackup ([0-9][0-9]).rdl
# Microsoft Fakes
FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
node_modules/
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# CodeRush personal settings
.cr/personal
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config
# Tabs Studio
*.tss
# Telerik's JustMock configuration file
*.jmconfig
# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs
# OpenCover UI analysis results
OpenCover/
# Azure Stream Analytics local run output
ASALocalRun/
# MSBuild Binary and Structured Log
*.binlog
# NVidia Nsight GPU debugger configuration file
*.nvuser
# MFractors (Xamarin productivity tool) working folder
.mfractor/
# Local History for Visual Studio
.localhistory/
# BeatPulse healthcheck temp database
healthchecksdb
# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
.ionide/
# VS Code
**/.vscode/
# HyperDbg builds
/hyperdbg/build/*
# HyperDbg script engine test cases
/hyperdbg/hyperdbg-cli/script-test-cases/*
# Ignore local zydis builds
/hyperdbg/libraries/zydis/*.lib
/hyperdbg/libraries/zydis/user/*.lib
/hyperdbg/libraries/zydis/kernel/*.lib
# Exceptions
!/hyperdbg/libraries/*
!/hyperdbg/libraries/pdbex/*
!/hyperdbg/libraries/DIA/*
!/hyperdbg/libraries/DIA/x84/*
!/hyperdbg/libraries/DIA/x64/*
# kdserial libraries
!/hyperdbg/libraries/kdserial/*
!/hyperdbg/libraries/kdserial/x86/*
!/hyperdbg/libraries/kdserial/x64/*
!/hyperdbg/libraries/kdserial/arm/*
!/hyperdbg/libraries/kdserial/arm64/*
# Ignore keystone libraries
!/hyperdbg/libraries/keystone/release/
!/hyperdbg/libraries/keystone/debug/
!/hyperdbg/libraries/keystone/release/*
!/hyperdbg/libraries/keystone/debug/*
# Code review tools
compile_commands.json
StructLayoutSettings.json
*.metaproj
#ignore clion config files
.idea
cmake-build-debug
/hyperdbg/hyperhv/zydis/
================================================
FILE: .gitmodules
================================================
[submodule "hyperdbg/dependencies/pdbex"]
path = hyperdbg/dependencies/pdbex
url = https://github.com/HyperDbg/pdbex.git
[submodule "hyperdbg/tests/script-engine-test"]
path = hyperdbg/tests/script-engine-test
url = https://github.com/HyperDbg/script-engine-test.git
[submodule "hyperdbg/miscellaneous/constants/pciid"]
path = hyperdbg/miscellaneous/constants/pciid
url = https://github.com/HyperDbg/pciids
[submodule "hyperdbg/dependencies/ia32-doc"]
path = hyperdbg/dependencies/ia32-doc
url = https://github.com/HyperDbg/ia32-doc.git
[submodule "hyperdbg/dependencies/zydis"]
path = hyperdbg/dependencies/zydis
url = https://github.com/HyperDbg/zydis.git
================================================
FILE: CHANGELOG.md
================================================
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.18.0.0] - 2026-02-16
New release of the HyperDbg Debugger.
### Added
- Script engine now supports writing libraries using the '#include' keyword thanks to [@xmaple555](https://github.com/xmaple555) ([link](https://docs.hyperdbg.org/commands/scripting-language/casting-and-inclusion))([link](https://github.com/HyperDbg/HyperDbg/issues/557))([link](https://github.com/HyperDbg/HyperDbg/pull/561))
- Initial codes for the hypertrace project by using Intel Last Branch Record (LBR) and Branch Trace Store (BTS) thanks to [@harimishal1](https://github.com/harimishal1) ([link](https://github.com/HyperDbg/HyperDbg/tree/master/hyperdbg/hypertrace))
- The hypertrace project is now linked to the hyperkd
- Initial efforts to port HyperDbg to Linux have started thanks to [@Alish14](https://github.com/Alish14) ([link](https://github.com/HyperDbg/HyperDbg/pull/563))
### Changed
- Fix bugs for interpreting 'db_pa, 'dd_pa', 'eb_pa', and 'ed_pa' keywords in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#keywords))([link](https://github.com/HyperDbg/HyperDbg/pull/507))
- Fix variable types in the script engine ([link](https://github.com/HyperDbg/HyperDbg/commit/43b0245fa11b5c73ce4cd21d8b8787b86a05f89d))
- Fix and update array index for boolean expressions in the script engine ([link](https://github.com/HyperDbg/HyperDbg/commit/ba2cec3c12c3ff45ddc0004051884983ff62a0b3))
- Fix and update array index for boolean expressions in the script engine ([link](https://github.com/HyperDbg/HyperDbg/commit/ba2cec3c12c3ff45ddc0004051884983ff62a0b3))
- Fix compilation error in Zydis with the new Windows WDK ([link](https://github.com/HyperDbg/zydis/commit/e61f59332ce49f8853006573ca853e404fafdd08))
## [0.17.0.0] - 2025-11-10
New release of the HyperDbg Debugger. All credit for this release goes to [@xmaple555](https://github.com/xmaple555).
### Added
- Added 1D and 2D arrays (multidimensional arrays) in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/variables-and-assignments#multidimensional-array))([link](https://github.com/HyperDbg/HyperDbg/pull/554))
- Added compound assignments in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/variables-and-assignments#compound-assignment))([link](https://github.com/HyperDbg/HyperDbg/pull/554))
- Added multiple assignments in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/variables-and-assignments#multiple-assignment))([link](https://github.com/HyperDbg/HyperDbg/pull/554))
### Changed
- Fix bugs for interpreting 'db_pa, 'dd_pa', 'eb_pa', and 'ed_pa' keywords in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#keywords))([link](https://github.com/HyperDbg/HyperDbg/pull/507))
- Fix variable types in the script engine ([link](https://github.com/HyperDbg/HyperDbg/commit/43b0245fa11b5c73ce4cd21d8b8787b86a05f89d))
- Fix and update array index for boolean expressions in the script engine ([link](https://github.com/HyperDbg/HyperDbg/commit/ba2cec3c12c3ff45ddc0004051884983ff62a0b3))
## [0.16.0.0] - 2025-09-08
New release of the HyperDbg Debugger.
### Added
- The **!xsetbv** event command was added for handling the execution of the XSETBV instruction, thanks to HyperDbg group members ([link](https://docs.hyperdbg.org/commands/extension-commands/xsetbv))
- Display of the number of blocked context switches in the '.switch' command ([link](https://docs.hyperdbg.org/commands/meta-commands/.switch))
- Added support for step-in (the 't' command) in the user debugger ([link](https://docs.hyperdbg.org/commands/debugging-commands/t))
- Added support for step-over (the 'p' command) in the user debugger ([link](https://docs.hyperdbg.org/commands/debugging-commands/p))
- Added support to show all registers or a specific register in the user debugger ([link](https://docs.hyperdbg.org/commands/debugging-commands/r))
- Exported SDK API for running scripts in either the kernel debugger or the user debugger
- Added support to modify registers or a specific register in the user debugger ([link](https://docs.hyperdbg.org/commands/debugging-commands/r))
- Added support to evaluate (run) scripts on the target thread in the user debugger ([link](https://docs.hyperdbg.org/commands/debugging-commands/eval))
- Added an indication of a thread's running or paused state to the HyperDbg signature in the user debugger ([link](https://docs.hyperdbg.org/using-hyperdbg/prerequisites/signatures))
- Added support for the '.formats' command in the user debugger ([link](https://docs.hyperdbg.org/commands/meta-commands/.formats))
- Added support for interpreting parameters based on script engine expressions in the user debugger
- Exported SDK API for evaluating expressions based on the context of the kernel debugger or the user debugger
- Added a new mechanism for showing the 'printf' and the 'print' function messages in the user debugger ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/exports/printf))([link](https://docs.hyperdbg.org/commands/scripting-language/functions/exports/print))
### Changed
- Non-volatile XMM registers are no longer saved/restored on VM-exit handler ([link](https://learn.microsoft.com/en-us/cpp/build/x64-software-conventions?view=msvc-170))
- Fix grammar and spelling errors throughout HyperDbg codebase ([link](https://github.com/HyperDbg/HyperDbg/pull/546))
- Relocate extension command files into their corresponding VS directory
- Fix infinite VM-exit bug for the '!monitor x' command thanks to [@unlockable](https://github.com/unlockable) ([link](https://github.com/HyperDbg/HyperDbg/pull/545))
## [0.15.0.0] - 2025-08-18
New release of the HyperDbg Debugger.
### Added
- Added the '!smi' command for performing operations related to System Management Interrupt (SMI) ([link](https://docs.hyperdbg.org/commands/extension-commands/smi))
- Export the SDK functions for SMI operations ([link](https://docs.hyperdbg.org/commands/extension-commands/smi#sdk))
- Check for Intel CET IBT (indirect branch tracking) support
- Check for Intel CET shadow stack support
- Added support to Intel CET for SYSCALL/SYSRET emulation ([link](https://docs.hyperdbg.org/commands/extension-commands/syscall))([link](https://docs.hyperdbg.org/commands/extension-commands/sysret))
### Changed
- The 'hyperhv' project now has build optimizations enabled
- Reformat VMXOFF restoring routines to restore general-purpose and XMM registers correctly before moving to the previous stack
- Fix unloading (VMXOFF) crash when restoring XMM registers
- Fix the problem with restoring XMM registers (#468) ([link](https://github.com/HyperDbg/HyperDbg/issues/468))
- Enhanced the '.pe' command to support PE Rich Headers thanks to [@Alish14](https://github.com/Alish14) ([link](https://github.com/HyperDbg/HyperDbg/pull/539))
- Updated ia32-doc to fix VMCS PL3 SSP fields ([link](https://github.com/HyperDbg/ia32-doc))
- Fix the terminating process issue of the '!syscall/!sysret' commands on 11 generation (Rocket Lake/Tiger Lake) and newer Intel processors ([link](https://github.com/HyperDbg/HyperDbg/issues/392))
- Reenable the support for the '.start' command in the Debugger mode ([link](https://docs.hyperdbg.org/commands/meta-commands/.start))
- The '!mode' event command is now compatible with different EPT hook commands (e.g., !epthook, !epthook2, !monitor, .start, and .restart) ([link](https://docs.hyperdbg.org/commands/extension-commands/mode))
- The '!mode' command doesn't need allocating extra EPTPs ([link](https://docs.hyperdbg.org/commands/extension-commands/mode))
## [0.14.1.0] - 2025-07-27
New release of the HyperDbg Debugger.
### Changed
- Restored the previous optimization on the release builds
- Fixed the issue of not properly restoring registers after the 'CPUID' instruction
- Fixed the building issues of the user debugger with the 'bp' and the '.start' commands
## [0.14.0.0] - 2025-07-23
New release of the HyperDbg Debugger.
### Added
- **microsleep(microseconds)** function in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/timings/microsleep))
- **rdtsc()** and **rdtscp()** functions in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/timings/rdtsc))([link](https://docs.hyperdbg.org/commands/scripting-language/functions/timings/rdtscp))
- Added functions to get system-call number from the running system ([link](https://github.com/HyperDbg/HyperDbg/commit/5d33cb7395c57fd6af170bfed90376598347679c))
- Added the support for the '.start' command in the VMI mode ([link](https://docs.hyperdbg.org/commands/meta-commands/.start))
- Added a new mechanism for finding the system-call number based on the running system ([link](https://github.com/HyperDbg/HyperDbg/commit/5d33cb7395c57fd6af170bfed90376598347679c))
- Added hyperevade transparency project ([link](https://url.hyperdbg.org/hyperevade))
- Added support to the '.attach' and '.detach' in the debugger mode ([link](https://docs.hyperdbg.org/commands/meta-commands/.attach))([link](https://docs.hyperdbg.org/commands/meta-commands/.detach))
- Added support to the '.start' command in the VMI mode for the user debugger ([link](https://docs.hyperdbg.org/commands/meta-commands/.start))
- Added support to setting the breakpoint using the 'bp' command in the VMI mode ([link](https://docs.hyperdbg.org/commands/debugging-commands/bp))
- Added EPT page table support for MMIO addresses above 512 GB
### Changed
- Redesigned the '!mode' extension command without extra EPTP ([link](https://github.com/HyperDbg/HyperDbg/commit/a93b78dfadbf94d2d69f24413170c983ec379f48))
- The user mode debugger now uses MBEC for preventing user-mode code execution ([link](https://github.com/HyperDbg/HyperDbg/commit/6893c1b19f1edaf57d0074bd60abcd518bf77338))
- Apply transparent-mode based on dynamic system-calls ([link](https://github.com/HyperDbg/HyperDbg/commit/1eb960607331fc0c2622804d7aff65702c155649))
- Breakpoint initialization is changed from kernel debugger to the regular debugger ([link](https://github.com/HyperDbg/HyperDbg/commit/e5326f895dcddb1adbc873a9fecede7af7eb7651))
- Fixed the build issue on new Windows SDK for Token structures ([link](https://github.com/HyperDbg/HyperDbg/pull/530))
- Fixed retrieving valid watching process IDs for the execution trap and user-mode execution prevention
- Fixed crashing the driver if the hyperlog memory was not properly allocated
- The target runner image for deploying HyperDbg (CI/CD) changed from Windows Server 2019 to 2022
- Restored the pid and the process name parameters of the '!hide' command ([link](https://docs.hyperdbg.org/commands/extension-commands/hide))
- Fixed crashing Windows when using 'TPAUSE' instruction on bare metal Windows 11 24h2
- Check to avoid putting EPT hooks on physical addresses greater than 512 GB
## [0.13.2.0] - 2025-05-26
New release of the HyperDbg Debugger.
### Added
- Intercepting system-call return results using the TRAP flag for the transparent-mode
- Added optional parameters and context for the transparent-mode system-call return interceptions
### Changed
- Set variable length (stack frames) for showing the callstack ([link](https://docs.hyperdbg.org/commands/debugging-commands/k))
- Fixed VMCS layout corruption due to NMI injection (VMRESUME 0x7 error) in nested-virtualization on Meteor Lake processors
- Restore RDMSR handler for VM-exits
## [0.13.1.0] - 2025-04-14
New release of the HyperDbg Debugger.
### Added
- Added new transparency methods for hiding nested virtualization environments thanks to [@CokeTree3](https://github.com/CokeTree3) ([link](https://github.com/HyperDbg/HyperDbg/pull/515))
### Changed
- Fix '.thread' command crash ([link](https://github.com/HyperDbg/HyperDbg/pull/510))
- Update .clang-format format file based on the new version of LLVM
- Update the list of required contributions
## [0.13.0.0] - 2025-02-25
New release of the HyperDbg Debugger.
### Added
- Added mitigation for the anti-hypervisor method in handling the trap flag for emulated instructions ([link](https://github.com/HyperDbg/HyperDbg/pull/497))
- Export the SDK functions for enabling and disabling transparent mode ([link](https://docs.hyperdbg.org/commands/extension-commands/hide#sdk))([link](https://docs.hyperdbg.org/commands/extension-commands/unhide#sdk))
- New description of changing script engine constants ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/customize-build/change-script-engine-limitations))
- Added the command for interpreting PCI CAM (PCI configuration space) fields ([link](https://docs.hyperdbg.org/commands/extension-commands/pcicam))
- Added the command for dumping PCI CAM (PCI configuration space) memory ([link](https://docs.hyperdbg.org/commands/extension-commands/pcicam))
- Checking for and unloading the older version of the driver (if it exists) ([link](https://github.com/HyperDbg/HyperDbg/pull/503))
- **memcpy_pa()** function in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/memory/memcpy_pa))
- **poi_pa**, **hi_pa**, **low_pa**, **db_pa**, **dd_pa**, **dw_pa**, and **dq_pa** keywords in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#keywords))
- **eb_pa**, **ed_pa**, and **eq_pa** functions in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/memory/eb_pa-ed_pa-eq_pa))
### Changed
- Fix the 'lm' command issue of not showing kernel module addresses (KASLR leak mitigation) introduced in Windows 11 24h2 ([link](https://docs.hyperdbg.org/commands/debugging-commands/lm))
- Deprecated TSC mitigation for the transparent mode ([link](https://docs.hyperdbg.org/commands/extension-commands/measure))
- Changed the parameters of the '!hide' command ([link](https://docs.hyperdbg.org/commands/extension-commands/hide))
- Changed the parameters of the '!unhide' command ([link](https://docs.hyperdbg.org/commands/extension-commands/unhide))
- Fix containing backslash escape character in script strings ([link](https://github.com/HyperDbg/HyperDbg/pull/499))
- Fix reading/writing into devices' physical memory (MMIO region) in VMI Mode ([link](https://github.com/HyperDbg/HyperDbg/pull/500))
- All test cases for command parsing are now passed ([link](https://github.com/HyperDbg/HyperDbg/pull/504))
- The '.sympath' command now requires the symbol server path to be within quotes, although it is not mandatory ([link](https://docs.hyperdbg.org/commands/meta-commands/.sympath))
## [0.12.0.0] - 2025-01-02
New release of the HyperDbg Debugger.
### Added
- Added the PCI tree command ([link](https://docs.hyperdbg.org/commands/extension-commands/pcitree))
- Added the proper handling for the xsetbv VM exits thanks to [@Shtan7](https://github.com/Shtan7) ([link](https://github.com/HyperDbg/HyperDbg/pull/491))
- Added the IDT command for interpreting Interrupt Descriptor Table (IDT) ([link](https://docs.hyperdbg.org/commands/extension-commands/idt))
- Export SDK APIs for getting Interrupt Descriptor Table (IDT) entries
### Changed
- Fix buffer overflow in the symbols path converter thanks to [@binophism](https://github.com/binophism) ([link](https://github.com/HyperDbg/HyperDbg/pull/490))
- Fix script engine's "printf" function to improve safety thanks to [@Reodus](https://github.com/Reodus) ([link](https://github.com/HyperDbg/HyperDbg/pull/489))
## [0.11.0.0] - 2024-12-03
New release of the HyperDbg Debugger.
### Added
- Added the local APIC command (xAPIC and x2APIC modes) ([link](https://docs.hyperdbg.org/commands/extension-commands/apic))
- Added the I/O APIC command ([link](https://docs.hyperdbg.org/commands/extension-commands/ioapic))
- The new link is added to help increase the number of EPT hook breakpoints in a single page ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/customize-build/number-of-ept-hooks-in-one-page))
- Export SDK APIs for Local APIC and X2APIC
### Changed
- The link for changing the communication buffer size is updated ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/customize-build/increase-communication-buffer-size))
- Update Microsoft's DIA SDK and symsrv
## [0.10.2.0] - 2024-10-11
New release of the HyperDbg Debugger.
### Added
- Automated test case parsing and test case compilation (generation) for the hwdbg debugger
- Export hwdbg testing functions
- Automated test case interpretation and emulation of hwdbg hardware scripts
- Create JSON representation of hwdbg configs
### Changed
- Fix main command parser bugs according to test cases
- Improvements in symbol structure, token structure, and stack buffer in the script engine
- Fix compatibility mode program crash when terminating 32-bit process (#479) ([link](https://github.com/HyperDbg/HyperDbg/pull/479))
- Extensive refactor of chip instance info interpretation codes of hwdbg debugger
- Separating functions of hwdbg interpreter and script manager
- Fix synthesize inconsistencies between Icarus iVerilog and Xilinx ISim
- Fix runtime error for deallocating memory from separate DLLs
- Exporting standard functions (import/export) for the script engine
- Exporting standard functions (import/export) for the symbol parser
- Avoid passing signals once the stage is not configured
## [0.10.1.0] - 2024-09-08
New release of the HyperDbg Debugger.
### Added
- Added feature to pause the debuggee immediately upon connection
- The '.debug' command now supports pausing the debuggee at startup ([link](https://docs.hyperdbg.org/commands/meta-commands/.debug))
- Export SDK API for assembling instructions
- The 'struct' command now supports a path as output ([link](https://docs.hyperdbg.org/commands/debugging-commands/struct))
- Export SDK API closing connection to the remote debuggee
- Automated tests for the main command parser
- Export SDK APIs for stepping and tracing instructions
- Export SDK APIs for tracking execution
### Changed
- HyperDbg command-line comment sign is changed from '#' to C-like comments ('//' and '/**/')
- Integrating a new command parser for the regular HyperDbg commands
- Fix showing a list of active outputs using the 'output' command ([link](https://docs.hyperdbg.org/commands/debugging-commands/output))
- Fix the issue of passing arguments to the '.start' command ([link](https://docs.hyperdbg.org/commands/meta-commands/.start))
- Fix the problem with parsing multiple spaces within the events (#420) ([link](https://github.com/HyperDbg/HyperDbg/issues/420))
- Fix the problem with escaping '{' in the command parser (#421) ([link](https://github.com/HyperDbg/HyperDbg/issues/421))
- Fix nested brackets issues in the main command parser
- Fix script engine bugs on order of passing arguments to functions (#453) ([link](https://github.com/HyperDbg/HyperDbg/issues/453))
- Fix the script test case for factorial computation ([link](https://github.com/HyperDbg/script-engine-test/blob/main/semantic-test-cases/manual-test-cases_60-69.ds))
- Fix the script test case for computation iterative Fibonacci ([link](https://github.com/HyperDbg/script-engine-test/blob/main/semantic-test-cases/manual-test-cases_60-69.ds))
- Fix miscomputation of physical address width for physical address validity checks (#469) ([link](https://github.com/HyperDbg/HyperDbg/issues/469))
## [0.10.0.0] - 2024-07-22
New release of the HyperDbg Debugger.
### Added
- Support using assembly conditions and codes in all events ([link](https://docs.hyperdbg.org/using-hyperdbg/prerequisites/how-to-create-a-condition))([link](https://docs.hyperdbg.org/using-hyperdbg/prerequisites/how-to-create-an-action))
- Added support for forwarding events to binary (DLL) modules ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/event-forwarding))([link](https://docs.hyperdbg.org/commands/debugging-commands/output))([link](https://github.com/HyperDbg/event-forwarding-examples))
- Added the assembler command 'a' for virtual memory ([link](https://docs.hyperdbg.org/commands/debugging-commands/a))
- Added the assembler command '!a' for physical memory ([link](https://docs.hyperdbg.org/commands/extension-commands/a))
- Providing a unified SDK API for reading memory in the VMI Mode and the Debugger Mode
- Export SDK APIs for reading/writing into registers in the Debugger Mode
- Export SDK API for writing memory in the VMI Mode and the Debugger Mode
- Export SDK API for getting kernel base address
- Export SDK API for connecting to the debugger and from debuggee in the Debugger Mode
- Export SDK API for starting a new process
- Add and export SDK API for unsetting message callback
- Event commands are coming with more examples regarding scripts and assembly codes
- Add message callback using shared memory
- Add maximum execution limitation to the script IRs (#435) ([link](https://github.com/HyperDbg/HyperDbg/pull/435))
### Changed
- Fix clearing '!monitor' hooks on a different process or if the process is closed (#409) ([link](https://github.com/HyperDbg/HyperDbg/issues/409))
- Fix triggering multiple '!monitor' hooks with different contexts (#415) ([link](https://github.com/HyperDbg/HyperDbg/issues/415))
- Fix the problem of repeating commands once kHyperDbg is disconnected
- Fix step-over hangs if the process terminates/excepts within call instruction (#406) ([link](https://github.com/HyperDbg/HyperDbg/issues/406))
- Fix crash on editing invalid physical addresses (#424) ([link](https://github.com/HyperDbg/HyperDbg/issues/424))
- Fix exporting VMM module load and install it in the SDK
- Fix function interpretation issues and update the parser and the code execution (#435) ([link](https://github.com/HyperDbg/HyperDbg/pull/435))
## [0.9.1.0] - 2024-06-30
New release of the HyperDbg Debugger.
### Added
- Regular port/pin value read and modification in hwdbg
- Conditional statement evaluation in hwdbg
- Added automatic script buffer packet generator for hwdbg
- Added support for @hw_pinX and @hw_portX registers
- Added hwdbg instance information interpreter
- Added stack buffer in vmx-root ([link](https://github.com/HyperDbg/HyperDbg/commit/5df4d2a5268a6b190dc126bf6cfe0527703296eb))
- Exporting functions to support loading drivers with different names
- Exporting function to connect and load HyperDbg drivers
- Exporting function to connect and load HyperDbg drivers
- **$date** and **$time** pseudo-registers are added ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#pseudo-registers))([link](https://github.com/HyperDbg/HyperDbg/issues/397))
### Changed
- Fix using constant WSTRINGs in the **wcsncmp** function ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/strings/wcsncmp))
- Fix `phnt` build error with 24H2 SDK
- `hprdbgctrl.dll` changed to `libhyperdbg.dll`
- `hprdbgkd.sys` changed to `hyperkd.sys`
- `hprdbghv.dll` changed to `hyperhv.dll`
- Dividing user/kernel exported headers in the SDK
## [0.9.0.0] - 2024-06-09
New release of the HyperDbg Debugger.
### Added
- The **!monitor** command now physical address hooking ([link](https://docs.hyperdbg.org/commands/extension-commands/monitor))
- **hwdbg** is merged to HyperDbg codebase ([link](https://hwdbg.hyperdbg.org))
- **strncmp(Str1, Str2, Num)**, and **wcsncmp(WStr1, WStr2, Num)** functions in script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/strings/strncmp))([link](https://docs.hyperdbg.org/commands/scripting-language/functions/strings/wcsncmp))
### Changed
- Using a separate HOST IDT in VMCS (not OS IDT) (fix to this [VM escape](https://www.unknowncheats.me/forum/c-and-c-/390593-vm-escape-via-nmi.html) issues)
- Using a dedicated HOST GDT and TSS Stack
- Checking for race-condition of not locked cores before applying instant-events and switching cores
- The error message for invalid address is changed ([more information](https://docs.hyperdbg.org/tips-and-tricks/considerations/accessing-invalid-address))
- Fix the problem of not locking all cores after running the '.pagein' command
## [0.8.4.0] - 2024-05-10
New release of the HyperDbg Debugger.
### Changed
- Fixed the signedness overflow of the command parser
## [0.8.3.0] - 2024-05-03
New release of the HyperDbg Debugger.
### Added
- Added hwdbg headers ([link](https://hwdbg.hyperdbg.org))
- Added support NUMA configuration with multiple count CPU sockets ([link](https://github.com/HyperDbg/HyperDbg/commit/040f70024fdad879ecf2ff2b31da066d4ed759fc))
- Added citation to TRM paper ([link](https://arxiv.org/abs/2405.00298))
### Changed
- Change release flag of hyperdbg-cli to Multi-threaded Debug (/MTd)
- Fix bitwise extended type, fixed memleaks, remove excess else and cmp int with EOF ([link](https://github.com/HyperDbg/HyperDbg/commit/7bcf1e5c71364aa3177eef0929c07463155ce5c6))
## [0.8.2.0] - 2024-03-19
New release of the HyperDbg Debugger.
### Added
- Add user-defined functions and variable types in script engine thanks to [@xmaple555](https://github.com/xmaple555) ([link](https://docs.hyperdbg.org/commands/scripting-language/constants-and-functions))([link](https://github.com/HyperDbg/HyperDbg/pull/342))
### Changed
- Fix debuggee crash after running the '.debug close' command on the debugger
- The problem with adding edge MTRR pages is fixed thanks to [@Maladiy](https://github.com/Maladiy) ([link](https://github.com/HyperDbg/HyperDbg/pull/347))
- All compiler/linker warnings of kernel-mode modules are fixed
- User/Kernel modules of HyperDbg now compiled with "treat warning as error"
- After downloading new symbols it is automatically loaded
- Fix error messages/comments spelling typos
## [0.8.1.0] - 2024-02-01
New release of the HyperDbg Debugger.
### Added
- The **!monitor** command now supports length in parameters ([link](https://docs.hyperdbg.org/commands/extension-commands/monitor#syntax))
### Changed
- Fix the issue of not intercepting memory monitoring on non-contiguous physical memory allocations
- The speed of memory read/write/execution interception is enhanced by avoiding triggering out-of-range events
## [0.8.0.0] - 2024-01-28
New release of the HyperDbg Debugger thanks to [@mattiwatti](https://github.com/Mattiwatti).
### Added
- The **!mode** event command is added to detect kernel-to-user and user-to-kernel transitions ([link](https://docs.hyperdbg.org/commands/extension-commands/mode))
- The 'preactivate' command is added to support initializing special functionalities in the Debugger Mode ([link](https://docs.hyperdbg.org/commands/debugging-commands/preactivate))
### Changed
- Fix miscalculating MTRRs in 13th gen processors
## [0.7.2.0] - 2024-01-23
New release of the HyperDbg Debugger thanks to [@mattiwatti](https://github.com/Mattiwatti) and [@cutecatsandvirtualmachines](https://github.com/cutecatsandvirtualmachines).
### Changed
- Fix INVEPT invalidation using out of scope descriptor ([link](https://github.com/HyperDbg/HyperDbg/commit/94b3a052a9b84bb7cf64114eba9fc2fe71d0eccf))
- Fix MTRR initialization crash ([link](https://github.com/HyperDbg/HyperDbg/pull/329))
## [0.7.1.0] - 2023-12-20
New release of the HyperDbg Debugger.
### Changed
- Fix the single core broadcasting events issue ([link](https://github.com/HyperDbg/HyperDbg/commit/ab95cd76285ef9aad084560c5c9dc8970bba84b7))
- Evaluate the '.pagin' ranges as expressions ([link](https://github.com/HyperDbg/HyperDbg/commit/ab95cd76285ef9aad084560c5c9dc8970bba84b7))
- Add hexadecimal escape sequence as string parameter for string functions ([link](https://github.com/HyperDbg/HyperDbg/commit/60fbec6936330643d8de1ec7b548f651ac8f106d))
- Add hexadecimal escape sequence as wstring parameter for wstring functions ([link](https://github.com/HyperDbg/HyperDbg/commit/e6dbc3f49e2d20a51d2f20120316fd0392067fa2))
- Fix breakpoint and the '!epthook' problems in the same address ([link](https://github.com/HyperDbg/HyperDbg/pull/326))
## [0.7.0.0] - 2023-11-22
New release of the HyperDbg Debugger.
### Added
- HyperDbg now applies events immediately as implemented in the "instant events" mechanism ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/instant-events))
- The Event Forwarding mechanism is now supported in the Debugger Mode ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/event-forwarding))
- The Event Forwarding mechanism now supports external modules (DLLs) ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/event-forwarding))
- **event_clear(EventId)** function in script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/events/event_clear))
- HyperDbg now supports string inputs for strlen and other related functions thanks to [@xmaple555](https://github.com/xmaple555) ([link](https://github.com/HyperDbg/HyperDbg/pull/297))
- New semantic tests for the script engine (50 to 59) is added mainly for testing new string and memory comparison functions ([link](https://github.com/HyperDbg/script-engine-test))
- **strlen** and **wcslen** functions now support string and wide-character string as the input ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/strings/strlen))([link](https://docs.hyperdbg.org/commands/scripting-language/functions/strings/wcslen))
- **strcmp(Str1, Str2)**, **wcscmp(WStr1, WStr2)** and **memcmp(Ptr1, Ptr2, Num)** functions in script engine thanks to [@xmaple555](https://github.com/xmaple555) ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/strings/strcmp))([link](https://docs.hyperdbg.org/commands/scripting-language/functions/strings/wcscmp))([link](https://docs.hyperdbg.org/commands/scripting-language/functions/memory/memcmp))
- The debug break interception (\#DB) manipulation option is added to the 'test' command ([link](https://docs.hyperdbg.org/commands/debugging-commands/test))
- The '.pagein' command, now supports address ranges (length in bytes) to bring multiple pages into the RAM ([link](https://docs.hyperdbg.org/commands/meta-commands/.pagein))
### Changed
- Fix the problem with the "less than" and the "greater than" operators for signed numbers thanks to [@xmaple555](https://github.com/xmaple555) ([link](https://github.com/HyperDbg/HyperDbg/pull/279))
- Fix the problem checking for alternative names thanks to [@xmaple555](https://github.com/xmaple555) ([link](https://github.com/HyperDbg/HyperDbg/pull/276))
- Fix the crash by turning off the breakpoints while a breakpoint is still active thanks to [@xmaple555](https://github.com/xmaple555) ([link](https://github.com/HyperDbg/HyperDbg/pull/273))
- Fix the crash on reading symbols on remote debuggee thanks to [@xmaple555](https://github.com/xmaple555) ([link](https://github.com/HyperDbg/HyperDbg/pull/274))
- The 'prealloc' command is updated with new instant-event preallocated pools ([link](https://docs.hyperdbg.org/commands/debugging-commands/prealloc))
- Fix wrong removing of EPT Hook (hidden breakpoints)
- The 'event' command, no longer continues debuggee for clearing events, instead just disables the event and removes the effects of the event when debuggee continues ([link](https://docs.hyperdbg.org/commands/debugging-commands/events))
- **$id** pseudo-register changed to **$event_id** ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#pseudo-registers))
- **$tag** pseudo-register changed to **$event_tag** ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#pseudo-registers))
- **$stage** pseudo-register changed to **$event_stage** ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#pseudo-registers))
- Fix adding pseudo-registers with underscore in the script engine ([link](https://github.com/HyperDbg/HyperDbg/pull/313))
- Fix the boolean expression interpretation in **if** conditions in the script engine ([link](https://github.com/HyperDbg/HyperDbg/issues/311))
- HyperDbg now intercepts all debug breaks (\#DBs) if it's not explicitly asked not to by using the 'test' command ([link](https://docs.hyperdbg.org/commands/debugging-commands/test))
- Fix '%d' bug in script engine ([link](https://github.com/HyperDbg/HyperDbg/pull/318))
## [0.6.0.0-beta] - 2023-09-25
New release of the HyperDbg Debugger.
### Added
- **event_inject(InterruptionType, Vector)** function in script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/events/event_inject))
- **event_inject_error_code(InterruptionType, Vector, ErrorCode)** function in script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/events/event_inject_error_code))
- **.dump** - command is added to the debugger to dump the virtual memory into a file ([link](https://docs.hyperdbg.org/commands/meta-commands/.dump))
- **!dump** - command is added to the debugger to dump the physical memory into a file ([link](https://docs.hyperdbg.org/commands/extension-commands/dump))
- **gu** - command is added to the debugger to step-out or go up instructions thanks to [@xmaple555](https://github.com/xmaple555) ([link](https://docs.hyperdbg.org/commands/debugging-commands/gu))
### Changed
- HyperDbg now switched to a multiple EPTP memory model, and each core has its own EPT table ([link](https://github.com/HyperDbg/HyperDbg/commit/7f53fab2ee3ba5b6a48eac6ddeb5975398c4da31))
- Building mtrr map by adding smrr, fixed ranges, and default memory type is fixed (#255) thanks to [@Air14](https://github.com/Air14)
- The problem of removing multiple EPT hooks on a single address is fixed
- The problem of not intercepting the step-over command 'p' when executed in different cores is fixed
- HyperDbg now checks for the validity of physical addresses based on CPUID.80000008H:EAX\[7:0\]'s physical address width
## [0.5.0.0] - 2023-08-07
New release of the HyperDbg Debugger.
### Added
- The event calling stage mechanism ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/event-calling-stage))
- New pseudo-registers (**$stage**) in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#pseudo-registers))
### Changed
- The disassembler now warns if you mistakenly used the 'u' command over a 32-bit program ([link](https://github.com/HyperDbg/HyperDbg/commit/9d239ccdfd7901cad197a4b49327efbf322cd116))
- The debuggee won't load the VMM module if the debugger is not listening
- The debugger and the debuggee now perform a version/build check to prevent version mismatch
- Fix the 'eb' command's parsing issue with '0xeb' hex bytes ([link](https://github.com/HyperDbg/HyperDbg/commit/b7dc237d7fd72b6f0130f86eb3b30f9f490917d6))
- Fix the connection problem with serial (checksum error) over two VMs
- Fix the 't' command's indicator of trap flags and simultaneous stepping of multiple threads ([link](https://github.com/HyperDbg/HyperDbg/pull/249))
- Fix the problem with the '.kill' and '.restart' commands
- Show the stage of the event once the debugger is paused
- Fix sending context, tag, and registers once '!epthook2' wants to halt the debugger
## [0.4.0.0] - 2023-07-18
New release of the HyperDbg Debugger.
### Added
- The **!monitor** command now supports 'execution' interception ([link](https://docs.hyperdbg.org/commands/extension-commands/monitor))
- **.pagein** - command is added to the debugger to bring pages in ([link](https://docs.hyperdbg.org/commands/meta-commands/.pagein))
### Changed
- The '.start' command's mechanism for finding the entrypoint is changed to address issues ([link](https://docs.hyperdbg.org/commands/meta-commands/.start))
- The buffer overlap error in hyperlog in multi-core systems is fixed ([link](https://github.com/HyperDbg/HyperDbg/commit/1fa06c0b5a8b93656803fdc455025f59aadd0adb))
- The implementation of 'dd' (define dword, 32-bit), and 'dw' (define word, 16-bit) is changed ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#keywords))
- The problem with unloading driver (#238) is fixed ([link](https://github.com/HyperDbg/HyperDbg/issues/238))
- The symbol files for 32-bit modules are now loaded based on SysWOW64, and the issue (#243) is fixed ([link](https://github.com/HyperDbg/HyperDbg/issues/243))
- New alias names for u, !u as u64, !u64 and for u2, !u2 as u32, !u32 ([link](https://docs.hyperdbg.org/commands/extension-commands/u))([link](https://docs.hyperdbg.org/commands/debugging-commands/u))
## [0.3.0.0] - 2023-06-08
New release of the HyperDbg Debugger.
### Added
- The event short-circuiting mechanism ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/event-short-circuiting))
- New pseudo-registers (**$tag**, **$id**) in the script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/assumptions-and-evaluations#pseudo-registers))
- The breakpoint interception manipulation (\#BP) option is added to the 'test' command ([link](https://docs.hyperdbg.org/commands/debugging-commands/test))
- The '!track' command to create the tracking records of function CALLs and RETs along with registers ([link](https://docs.hyperdbg.org/commands/extension-commands/track))
- **disassemble_len(Address)** function in script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/diassembler/disassemble_len))
- **disassemble_len32(Address)** function in script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/diassembler/disassemble_len32))
- **event_sc(DisableOrEnable)** function in script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/events/event_sc))
### Changed
- The old Length Disassembler Engine is replaced by Zydis ([link](https://github.com/HyperDbg/HyperDbg/pull/234))
## [0.2.2.0] - 2023-06-02
The patch for fixing bugs of HyperDbg Debugger.
### Changed
- The problem with the callstack command (k) is fixed ([link](https://github.com/HyperDbg/HyperDbg/commit/4194880a2e5578a4bb9055e2ac3e2fdb564e3d82))
## [0.2.1.0] - 2023-05-24
The patch for fixing bugs of the second (2nd) release of HyperDbg Debugger.
### Changed
- Fixing bugs!
- The parameters of the '!cpuid' extension command is changed, and a new EAX index parameter is added ([link](https://docs.hyperdbg.org/commands/extension-commands/cpuid#parameters))
- The problem with removing EPT hooks (!monitor and !epthook) is fixed ([link](https://github.com/HyperDbg/HyperDbg/commit/e2ea08ac35834ff869512c3c450004bc50a06390))
## [0.2.0.0] - 2023-05-03
The second (2nd) release of the HyperDbg Debugger.
### Added
- HyperDbg Software Development Kit (SDK) is now available
- **flush()** function in script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/events/flush))
- **memcpy()** function in script engine ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/memory/memcpy))
### Changed
- Global code refactoring and fixing bugs!
- Compiling HyperDbg by using the latest Windows 11 WDK
- **enable_event** function name changed to **event_enable** ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/events/event_enable))
- **disable_event** function name changed to **event_disable** ([link](https://docs.hyperdbg.org/commands/scripting-language/functions/events/event_disable))
- The "**settings**" command now preserves the configurations in the config file
- The communication buffer is now separated from the hyperlogger buffer chunks and the buffer size is increased X10 times ([link](https://docs.hyperdbg.org/tips-and-tricks/misc/increase-communication-buffer-size))
- Zydis submodule is updated to version 4 ([link](https://github.com/zyantific/zydis/releases/tag/v4.0.0))
### Removed
- **enable_event** script engine function
- **disable_event** script engine function
## [0.1.0.0] - 2022-05-31
This is the first (1st) release of HyperDbg Debugger.
### Added
- \# (comment in batch scripts)
- ? (evaluate and execute expressions and scripts in debuggee)
- ~ (display and change the current operating core)
- load (load the kernel modules)
- unload (unload the kernel modules)
- status (show the debuggee status)
- events (show and modify active/disabled events)
- p (step-over)
- t (step-in)
- i (instrumentation step-in)
- r (read or modify registers)
- bp (set breakpoint)
- bl (list breakpoints)
- be (enable breakpoints)
- bd (disable breakpoints)
- bc (clear and remove breakpoints)
- g (continue debuggee or processing kernel packets)
- x (examine symbols and find functions and variables address)
- db, dc, dd, dq (read virtual memory)
- eb, ed, eq (edit virtual memory)
- sb, sd, sq (search virtual memory)
- u, u2 (disassemble virtual address)
- k, kd, kq (display stack backtrace)
- dt (display and map virtual memory to structures)
- struct (make structures, enums, data types from symbols)
- sleep (wait for specific time in the .script command)
- pause (break to the debugger and pause processing kernel packets)
- print (evaluate and print expression in debuggee)
- lm (view loaded modules)
- cpu (check cpu supported technologies)
- rdmsr (read model-specific register)
- wrmsr (write model-specific register)
- flush (remove pending kernel buffers and messages)
- prealloc (reserve pre-allocated pools)
- output (create output source for event forwarding)
- test (test functionalities)
- settings (configures different options and preferences)
- exit (exit from the debugger)
- .help (show the help of commands)
- .debug (prepare and connect to debugger)
- .connect (connect to a session)
- .disconnect (disconnect from a session)
- .listen (listen on a port and wait for the debugger to connect)
- .status (show the debugger status)
- .start (start a new process)
- .restart (restart the process)
- .attach (attach to a process)
- .detach (detach from the process)
- .switch (show the list and switch between active debugging processes)
- .kill (terminate the process)
- .process, .process2 (show the current process and switch to another process)
- .thread, .thread2 (show the current thread and switch to another thread)
- .formats (show number formats)
- .script (run batch script commands)
- .sympath (set the symbol server)
- .sym (load pdb symbols)
- .pe (parse PE file)
- .logopen (open log file)
- .logclose (close log file)
- .cls (clear the screen)
- !pte (display page-level address and entries)
- !db, !dc, !dd, !dq (read physical memory)
- !eb, !ed, !eq (edit physical memory)
- !sb, !sd, !sq (search physical memory)
- !u, !u2 (disassemble physical address)
- !dt (display and map physical memory to structures)
- !epthook (hidden hook with EPT - stealth breakpoints)
- !epthook2 (hidden hook with EPT - detours)
- !monitor (monitor read/write to a page)
- !syscall, !syscall2 (hook system-calls)
- !sysret, !sysret2 (hook SYSRET instruction execution)
- !cpuid (hook CPUID instruction execution)
- !msrread (hook RDMSR instruction execution)
- !msrwrite (hook WRMSR instruction execution)
- !tsc (hook RDTSC/RDTSCP instruction execution)
- !pmc (hook RDPMC instruction execution)
- !vmcall (hook hypercalls)
- !exception (hook first 32 entries of IDT)
- !interrupt (hook external device interrupts)
- !dr (hook access to debug registers)
- !ioin (hook IN instruction execution)
- !ioout (hook OUT instruction execution)
- !hide (enable transparent-mode)
- !unhide (disable transparent-mode)
- !measure (measuring and providing details for transparent-mode)
- !va2pa (convert a virtual address to physical address)
- !pa2va (convert physical address to virtual address)
================================================
FILE: CITATION.cff
================================================
cff-version: 1.2.0
message: "In case you use one of HyperDbg's components for your work, please consider citing our paper."
authors:
- family-names: "Karvandi"
given-names: "Mohammad Sina"
- family-names: "Gholamrezaei"
given-names: "MohammadHosein"
- family-names: "Khalaj Monfared"
given-names: "Saleh"
- family-names: "Meghdadizanjani"
given-names: "Soroush"
- family-names: "Abbassi"
given-names: "Behrooz"
- family-names: "Amini"
given-names: "Ali"
- family-names: "Mortazavi"
given-names: "Reza"
- family-names: "Gorgin"
given-names: "Saeid"
- family-names: "Rahmati"
given-names: "Dara"
- family-names: "Schwarz"
given-names: "Michael"
title: "HyperDbg: Reinventing Hardware-Assisted Debugging"
version: 1.0.0
doi: 10.1145/3548606.3560649
date-released: 2022-11-07
url: "https://doi.org/10.1145/3548606.3560649"
================================================
FILE: CODE_OF_CONDUCT.md
================================================
# Contributor Covenant Code of Conduct
## Our Pledge
In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.
## Our Standards
Examples of behavior that contributes to creating a positive environment
include:
* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members
Examples of unacceptable behavior by participants include:
* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
## Our Responsibilities
Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.
Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.
## Scope
This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at sina@rayanfam.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
[homepage]: https://www.contributor-covenant.org
For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq
================================================
FILE: CONTRIBUTING.md
================================================
# Contribution
First off, thanks for taking the time to contribute! ❤️
HyperDbg is a large-scale project that requires a lot of time and effort from the community. Given the current number of developers and their limited time and resources, we cannot develop every part simultaneously. Therefore, new developers are warmly welcomed to join and add their contributions to the project. Here, we made a list of potential improvements that you can contribute on. Feel free to open up an issue if you think you have any ideas that would make a good addition to the list.
## Things to Work on
Please make sure to create a [discussion](https://github.com/orgs/HyperDbg/discussions) or an [issue](https://github.com/HyperDbg/HyperDbg/issues), or even better, join the HyperDbg groups ([Telegram](https://t.me/HyperDbg), [Discord](https://discord.gg/anSPsGUtzN), [Matrix](https://matrix.to/#/#hyperdbg-discussion:matrix.org)) on social media. Discuss the way you want to implement your changes and inform developers, because we often see people simultaneously working on the same issue. To avoid this collision, make sure to inform us before you start developing.
- Writing blog posts and creating videos about use-cases of HyperDbg (make sure to add it to the [awesome](https://github.com/HyperDbg/awesome) repository).
- Fixing unresolved GitHub [issues](https://github.com/HyperDbg/HyperDbg/issues).
- Troubleshooting problems with running on Hyper-V's nested virtualization.
- Troubleshooting problems with running on VirtualBox's nested virtualization.
- Supporting KDNET (sending data over the network).
- Enhancing HyperDbg's [Transparent Mode](https://docs.hyperdbg.org/using-hyperdbg/prerequisites/operation-modes#transparent-mode). These features should be added as an extension to the [HyperEvade](https://www.vusec.net/projects/hyperevade/) project (e.g., by bypassing [al-khaser](https://github.com/LordNoteworthy/al-khaser) and similar anti-debugging and anti-hypervisor projects).
- Enhancing and adding more features to the ['.pe'](https://docs.hyperdbg.org/commands/meta-commands/.pe) command.
- Adding HyperDbg to the system startup using UEFI.
- Adding routines to activate and use Last Branch Record (LBR) and Branch Trace Store (BTS) | (In progress).
- Creating a QT-based GUI.
- Creating a SoftICE-style GUI.
- Supporting nested-virtualization on HyperDbg itself.
- Protecting HyperDbg code and memory from modification using VT-x capabilities.
- Adding support for the Intel Processor Trace (PT) and event command for detecting coverage.
- Creating a wrapper that automatically interprets the [HyperDbg SDK](https://github.com/HyperDbg/HyperDbg/tree/master/hyperdbg/include/SDK) to GO, RUST, C#, Python, etc.
- Creating syntax highlighting for dslang for different IDEs (VSCode, VIM, etc.).
- Building HyperDbg using LLVM clang.
- Helping us start supporting HyperDbg on Linux (discussion needed).
- Helping us start supporting HyperDbg on AMD processors (discussion needed).
- Adding digital (FPGA) modules to the hwdbg hardware debugger.
- Creating a [ret-sync](https://github.com/bootleg/ret-sync) module for HyperDbg.
- Adding fuzzing capabilities to HyperDbg (maybe integrating [AFL++](https://github.com/AFLplusplus/AFLplusplus) into HyperDbg).
- Working on live memory migration and adding support for kernel-mode time travel debugging.
- Integrating the [z3 project](https://github.com/Z3Prover/z3) into HyperDbg and adding commands based on the z3 solver.
- Adding the [Bochs emulator](https://github.com/bochs-emu/Bochs) to HyperDbg.
- Creating different examples of how to use the SDK (using different programming languages).
- Debugging and fixing bugs related to HyperDbg's physical serial communication.
- Reading symbol information from modules in memory (currently, HyperDbg opens a file which continues the debugger).
- Adding APIC virtualization.
- Reading the list of modules for the '[lm](https://docs.hyperdbg.org/commands/debugging-commands/lm)' command directly from kernel-mode.
- Detecting and fixing anti-hypervisor methods described [here](https://github.com/Ahora57/MAJESTY-technologies).
- Investigating why the symbols parser (DIA SDK) could not read symbols of the 'kernel32!*'.
- Creating the 'alias' command that converts or registers scripts as a command, for example: "alias !list .script list.dbg" (discussion needed).
- Adding support for [Hardware Performance Counters (HPC)](https://en.wikipedia.org/wiki/Hardware_performance_counter).
- Any other interesting tasks you might find!
- ~~Creating commands to inspect and read details of PCIe devices.~~ Added: [<a href="https://docs.hyperdbg.org/commands/extension-commands/pcitree" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/extension-commands/pcicam" target="_blank">link</a>]
- ~~Mitigating the anti-hypervisor method described [here](https://howtohypervise.blogspot.com/2019/01/a-common-missight-in-most-hypervisors.html).~~ [[Fixed](https://github.com/HyperDbg/HyperDbg/pull/497)]
- ~~Fixing the problem with [XSETBV instruction freezing](https://github.com/HyperDbg/HyperDbg/issues/429).~~ [[Fixed](https://github.com/HyperDbg/HyperDbg/pull/491)]
This list will be updated frequently.
## Fixing Bugs
HyperDbg likely contains numerous bugs and may not have considered various scenarios that could lead to system crashes. We consistently invest a substantial amount of time in addressing these issues to improve the overall user experience with HyperDbg. Your assistance in identifying and fixing bugs would be greatly appreciated. Here's a glimpse into how HyperDbg developers allocate their daily time:
<img align="center" width="50%" height="30%" src="https://raw.githubusercontent.com/HyperDbg/graphics/master/Memes/bug-fix.jpg" alt="Fixing bugs!">
## Coding Style
If you want to create a pull request please read [coding-style](https://docs.hyperdbg.org/contribution/style-guide/coding-style), [doxygen-style](https://docs.hyperdbg.org/contribution/style-guide/doxygen-style), and [command-style](https://docs.hyperdbg.org/contribution/style-guide/command-style) in the case you want a new feature, or report a bug, please explain it in [issues](https://GitHub.com/HyperDbg/HyperDbg/issues/).
## FAQ
Here are some Frequently Asked Questions which may help with your moving process
#### Did you write a patch that fixes a bug?
Open a new GitHub pull request with the patch and also ensure the PR description clearly describes the problem and solution.
#### Suggesting Enhancements
If you want to submit an enhancement or suggestion for HyperDbg, including completely new features and minor improvements to existing functionality please explain it in [issues](https://GitHub.com/HyperDbg/HyperDbg/issues/).
#### Would you like to add a new feature or change an existing one?
Suggest your change by opening an [issue](https://GitHub.com/HyperDbg/HyperDbg/issues/) and start writing code.
#### Do you have questions about the source code?
Ask any question about HyperDbg by opening an [issue](https://GitHub.com/HyperDbg/HyperDbg/issues/).
## Source-code Tree
Here's the overview of HyperDbg's source code, including the project's relations and dependencies.
</br></br></br>
<img align="center" width="90%" height="50%" src="https://raw.githubusercontent.com/HyperDbg/graphics/master/Diagrams/source-tree/source-tree.png" alt="Source Tree">
================================================
FILE: CREDITS.md
================================================
# Contributors
The list provided comprises individuals who have made significant contributions to the [HyperDbg](https://hyperdbg.org) project. Please be aware that not everyone may have been included, and some may have been unintentionally omitted.
## Credits:
Just so you know – the attributions listed on this credits page are acknowledged without any particular order.
- All of the [contributors](https://github.com/HyperDbg/HyperDbg/graphs/contributors)
- Sina Karvandi ([@Intel80x86](https://twitter.com/Intel80x86))
- MH Gholamrezaei ([@mohoseinam](https://twitter.com/mohoseinam))
- Mohammad Ataei ([@mammadataei](https://twitter.com/mammadataei)) for the website
- Saleh Khalaj Monfared ([@S4l3hh](https://twitter.com/S4l3hh))
- Michael Schwarz ([@misc0110](https://twitter.com/misc0110))
- Soroush Meghdadizanjani ([@meSoroush](https://twitter.com/meSoroush))
- Alee Amini ([@AleeAmini](https://twitter.com/AleeAmini))
- Behrooz Abbassi ([@BehroozAbbassi](https://twitter.com/BehroozAbbassi))
- Zyantific Team ([zyantific.com](https://zyantific.com)) for [Zydis](https://zydis.re) Disassembler
- Petr Beneš ([@PetrBenes](https://twitter.com/PetrBenes)) for [ia32-doc](https://github.com/ia32-doc/ia32-doc), and [pdbex](https://github.com/wbenny/pdbex)
- Process Hacker Team ([@ProcessHacker](https://twitter.com/processhacker)) for [phnt](https://github.com/processhacker/phnt)
- Ddkwork ([@ddkwork](https://github.com/ddkwork)) for making GUI
- Mohammad K. Fallah ([@mkfallah11](https://github.com/mkfallah11)) for implementing the optimization algorithms
- Xandora Team ([xandora.io](https://www.xandora.io)) for [Keystone](https://github.com/keystone-engine/keystone) engine
- xmaple555 ([@xmaple555](https://github.com/xmaple555)) for contributions in HyperDbg core and the script engine
- Abbas Masoumi Gorji ([@AbbasMasoumiG](https://twitter.com/AbbasMasoumiG))
- Björn Ruytenberg ([@0Xiphorus](https://twitter.com/0Xiphorus))
- Marcis Zarins ([@CokeTree3](https://github.com/CokeTree3)) for his works on enhancing HyperEvade project
- Artem Shishkin ([@honorary_bot](https://twitter.com/honorary_bot)) for always answering our hypervisor questions
- unrustled.jimmies for helping us debug and fix issues, and his contributions in HyperDbg
================================================
FILE: HOWTO.md
================================================
# HOWTO
How to do different tasks in HyperDbg
## Automatic testing for the script engine
There is an automatic test for the script engine's statements.
The statement generator is available at: https://github.com/HyperDbg/script-engine-test
This repo is added automatically to HyperDbg when you cloned it with the `--recursive` flag.
To run the tests, you must first run `utils/test-environment.py` to make the environment for testing the script engine.
After that, run the following command in your HyperDbg command-line:
```
? test
```
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: README.md
================================================
<p align="left">
<a href="https://hyperdbg.org"><img src="https://raw.githubusercontent.com/HyperDbg/graphics/master/Badges/Link-Website-orange.svg" alt="Website"></a>
<a href="https://docs.hyperdbg.org"><img src="https://raw.githubusercontent.com/HyperDbg/graphics/master/Badges/Link-Docs-yellow.svg" alt="Documentation"></a>
<a href="https://doxygen.hyperdbg.org"><img src="https://raw.githubusercontent.com/HyperDbg/graphics/master/Badges/Link-Doxygen-lightgreen.svg" alt="Doxygen"></a>
<a href="https://research.hyperdbg.org"><img src="https://raw.githubusercontent.com/HyperDbg/graphics/master/Badges/Link-Research-pink.svg" alt="Published Academic Researches"></a>
<a href="https://www.gnu.org/licenses/gpl-3.0"><img src="https://raw.githubusercontent.com/HyperDbg/graphics/master/Badges/License-GPLv3-blue.svg" alt="License"></a>
</p>
# HyperDbg Debugger
<a href="https://hyperdbg.org/"><img align="right" width="150" height="150" src="https://github.com/HyperDbg/graphics/raw/master/Art%20Board/HyperDbg-Cat.Circle.Compressed.png" alt="HyperDbg Debugger"></a></br>
**HyperDbg Debugger** is a free (as in free beer), open-source, community-driven, hypervisor-assisted, user-mode, and kernel-mode Windows debugger with a focus on using modern hardware technologies. It is a debugger designed for analyzing, fuzzing, and reversing.
You can follow **HyperDbg** on **[Twitter](https://twitter.com/HyperDbg)** or **[Mastodon](https://infosec.exchange/@hyperdbg)** to get notified about new releases, or join any of the HyperDbg groups, where you can ask developers and open-source reversing enthusiasts for help setting up and using HyperDbg.
- **[Telegram](https://t.me/HyperDbg)**
- **[Discord](https://discord.gg/anSPsGUtzN)**
- **[Matrix](https://matrix.to/#/#hyperdbg-discussion:matrix.org)**
## Description
**HyperDbg** is designed with a focus on using modern hardware technologies to provide new features to the debuggers' world. It operates on top of Windows by virtualizing an already running system using Intel VT-x and EPT. This debugger aims not to use any APIs and software debugging mechanisms, but instead, it uses Second Layer Page Table (a.k.a. Extended Page Table or EPT) extensively to monitor both kernel and user executions.
<p align="center"><a href="https://hyperdbg.org/"><img align="center" width="600" height="500" src="https://raw.githubusercontent.com/HyperDbg/graphics/master/Art%20Board/Artboard%201.png" alt="HyperDbg Debugger"></a></br>
</p>
HyperDbg comes with features like hidden hooks, which are as fast as old inline hooks, but also stealth. It mimics hardware debug registers for (read & write) to a specific location, but this time invisible for both the Windows kernel and the programs, and of course, without any limitation in size or count!
Using TLB-splitting and having features such as measuring code coverage and monitoring all mov(s) to/from memory by a function, makes HyperDbg a unique debugger.
Although it has novel features, HyperDbg tries to be as stealthy as possible. It doesn’t use any debugging APIs to debug Windows or any application, so classic anti-debugging methods won’t detect it. Also, it resists the exploitation of time delta methods (e.g., RDTSC/RDTSCP) to detect the presence of hypervisors, therefore making it much harder for applications, packers, protectors, malware, anti-cheat engines, etc. to discover the debugger.
## Why HyperDbg?
HyperDbg is harder to set up and use, and also requires deeper low-level system knowledge compared to traditional debuggers. However, it provides two major advantages:
1. **Full System & OS Control**
HyperDbg operates at the hypervisor level, giving you powerful capabilities that are simply not possible with classic debuggers. This allows you to leverage hardware-assisted [features](https://github.com/HyperDbg/HyperDbg?tab=readme-ov-file#unique-features) for advanced reverse engineering and debugging scenarios.
2. **Stealth & Detection Resistance**
Since HyperDbg doesn't rely on standard OS debugging APIs, it is generally much harder (though not impossible) to detect. This makes it a strong choice when working against anti-debugging protections.
These advantages open up entirely new debugging and reverse engineering techniques that go beyond what conventional debuggers can offer.
## Build & Installation
You can download the latest compiled binary files from **[releases](https://github.com/HyperDbg/HyperDbg/releases)**; otherwise, if you want to build HyperDbg, you should clone HyperDbg with the `--recursive` flag.
```
git clone --recursive https://github.com/HyperDbg/HyperDbg.git
```
Please visit **[Build & Install](https://docs.hyperdbg.org/getting-started/build-and-install)** and **[Quick Start](https://docs.hyperdbg.org/getting-started/quick-start)** for a detailed explanation of how to start with **HyperDbg**. You can also see the **[FAQ](https://docs.hyperdbg.org/getting-started/faq)** for more information, or if you previously used other native debuggers like GDB, LLDB, or WinDbg, you could see the [command map](https://hyperdbg.github.io/commands-map).
## Tutorials
The **OpenSecurityTraining2's "Reversing with HyperDbg (Dbg3301)**" tutorial series, available on [**OST2's website**](https://ost2.fyi/Dbg3301) (_preferred_) and [**YouTube**](https://www.youtube.com/playlist?list=PLUFkSN0XLZ-kF1f143wlw8ujlH2A45nZY) is the recommended way to get started with and learn HyperDbg. It guides you through the initial steps of using HyperDbg, covering essential concepts, principles, and debugging functionalities, along with practical examples and numerous reverse engineering methods that are unique to HyperDbg.
If you're interested in understanding the internal design and architecture of hypervisors and HyperDbg, you can read the [**Hypervisor From Scratch**](https://rayanfam.com/tutorials) tutorials.
## Publications
In case you use one of **HyperDbg**'s components in your work, please consider citing our papers.
**1. [HyperDbg: Reinventing Hardware-Assisted Debugging (CCS'22)](https://dl.acm.org/doi/abs/10.1145/3548606.3560649)** [[arXiv](https://arxiv.org/abs/2207.05676)]
```
@inproceedings{karvandi2022hyperdbg,
title={HyperDbg: Reinventing Hardware-Assisted Debugging},
author={Karvandi, Mohammad Sina and Gholamrezaei, MohammadHosein and Khalaj Monfared, Saleh and Meghdadizanjani, Soroush and Abbassi, Behrooz and Amini, Ali and Mortazavi, Reza and Gorgin, Saeid and Rahmati, Dara and Schwarz, Michael},
booktitle={Proceedings of the 2022 ACM SIGSAC Conference on Computer and Communications Security},
pages={1709--1723},
year={2022}
}
```
<details>
<summary><b>Other paper built upon HyperDbg...</b></summary>
**2. [The Reversing Machine: Reconstructing Memory Assumptions](https://arxiv.org/pdf/2405.00298)** [[arXiv](https://arxiv.org/abs/2405.00298)]
```
@article{karvandi2024reversing,
title={The Reversing Machine: Reconstructing Memory Assumptions},
author={Karvandi, Mohammad Sina and Meghdadizanjani, Soroush and Arasteh, Sima and Monfared, Saleh Khalaj and Fallah, Mohammad K and Gorgin, Saeid and Lee, Jeong-A and van der Kouwe, Erik},
journal={arXiv preprint arXiv:2405.00298},
year={2024}
}
```
**3. [hwdbg: Debugging Hardware Like Software (EuroSec'25)](https://dl.acm.org/doi/abs/10.1145/3722041.3723101)** [[PDF](https://dl.acm.org/doi/pdf/10.1145/3722041.3723101)]
```
@inproceedings{karvandi2025hwdbg,
title={hwdbg: Debugging Hardware Like Software},
author={Karvandi, Mohammad Sina and Meghdadizanjani, Soroush and Monfared, Saleh Khalaj and van der Kouwe, Erik and Slowinska, Asia},
booktitle={Proceedings of the 18th European Workshop on Systems Security},
pages={56--62},
year={2025}
}
```
</details>
You can also read [this article](https://research.hyperdbg.org/debugger/kernel-debugger-design/) as it describes the overall architecture, technical difficulties, design decisions, and internals of HyperDbg Debugger, [this article](https://research.hyperdbg.org/vmm/transparency/) about our efforts on vm-exit transparency, [this article](https://research.hyperdbg.org/debugger/chasing-bugs/) about chasing bugs within hypervisors, and [this article](https://research.hyperdbg.org/debugger/gaining-insights/) about new reverse engineering techniques introduced in HyperDbg. More articles, posts, and resources are available at the **[awesome](https://github.com/HyperDbg/awesome)** repo, and in addition, the **[slides](https://github.com/HyperDbg/slides)** repo provides presentation slides for further reference.
## Unique Features
* Advanced Hypervisor-based Kernel Mode Debugger [<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/getting-started/attach-to-hyperdbg/debug" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/getting-started/attach-to-hyperdbg/local-debugging" target="_blank">link</a>]
* Classic EPT Hook (Hidden Breakpoint) [<a href="https://docs.hyperdbg.org/commands/extension-commands/epthook" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/design/features/vmm-module/design-of-epthook" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/hooking-any-function" target="_blank">link</a>]
* Inline EPT Hook (Inline Hook) [<a href="https://docs.hyperdbg.org/commands/extension-commands/epthook2" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/design/features/vmm-module/design-of-epthook2" target="_blank">link</a>]
* Monitor Memory for R/W (Emulating Hardware Debug Registers Without Limitation) [<a href="https://docs.hyperdbg.org/commands/extension-commands/monitor" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/design/features/vmm-module/design-of-monitor" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/monitoring-accesses-to-structures" target="_blank">link</a>]
* SYSCALL Hook (Disable EFER & Handle #UD) [<a href="https://docs.hyperdbg.org/commands/extension-commands/syscall" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/design/features/vmm-module/design-of-syscall-and-sysret" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/intercepting-all-syscalls" target="_blank">link</a>]
* SYSRET Hook (Disable EFER & Handle #UD) [<a href="https://docs.hyperdbg.org/commands/extension-commands/sysret" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/design/features/vmm-module/design-of-syscall-and-sysret" target="_blank">link</a>]
* CPUID Hook & Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/cpuid" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/triggering-special-instructions" target="_blank">link</a>]
* RDMSR Hook & Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/msrread" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/identifying-system-behavior" target="_blank">link</a>]
* WRMSR Hook & Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/msrwrite" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/identifying-system-behavior" target="_blank">link</a>]
* RDTSC/RDTSCP Hook & Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/tsc" target="_blank">link</a>]
* RDPMC Hook & Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/pmc" target="_blank">link</a>]
* VMCALL Hook & Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/vmcall" target="_blank">link</a>]
* Debug Registers Hook & Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/dr" target="_blank">link</a>]
* I/O Port (IN Instruction) Hook & Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/ioin" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/triggering-special-instructions" target="_blank">link</a>]
* I/O Port (OUT Instruction) Hook & Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/ioout" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/triggering-special-instructions" target="_blank">link</a>]
* MMIO Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/monitor" target="_blank">link</a>]
* Exception (IDT < 32) Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/exception" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/design/features/vmm-module/design-of-exception-and-interrupt" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/identifying-system-behavior" target="_blank">link</a>]
* External-Interrupt (IDT > 32) Monitor [<a href="https://docs.hyperdbg.org/commands/extension-commands/interrupt" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/design/features/vmm-module/design-of-exception-and-interrupt" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/events/identifying-system-behavior" target="_blank">link</a>]
* Running Automated Scripts [<a href="https://docs.hyperdbg.org/commands/scripting-language/debugger-script" target="_blank">link</a>]
* Transparent-mode and Hyperevade Project (Anti-debugging and Anti-hypervisor Resistance) [<a href="https://docs.hyperdbg.org/tips-and-tricks/considerations/transparent-mode" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/extension-commands/hide" target="_blank">link</a>][<a href="https://www.vusec.net/projects/hyperevade/" target="_blank">link</a>]
* Running Custom Assembly in Both VMX-root, VMX non-root (Kernel & User) [<a href="https://docs.hyperdbg.org/using-hyperdbg/prerequisites/how-to-create-an-action" target="_blank">link</a>]
* Checking for Custom Conditions [<a href="https://docs.hyperdbg.org/using-hyperdbg/prerequisites/how-to-create-a-condition" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/design/debugger-internals/conditions" target="_blank">link</a>]
* Process-specific & Thread-specific Debugging [<a href="https://docs.hyperdbg.org/commands/meta-commands/.process" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/meta-commands/.thread" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/user-mode-debugging/examples/basics/switching-to-a-specific-process-or-thread" target="_blank">link</a>]
* VMX-root Compatible Message Tracing [<a href="https://docs.hyperdbg.org/design/features/vmm-module/vmx-root-mode-compatible-message-tracing" target="_blank">link</a>]
* Powerful Kernel Side Scripting Engine [<a href="https://docs.hyperdbg.org/commands/scripting-language" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/design/script-engine" target="_blank">link</a>]
* Support To Symbols (Parsing PDB Files) [<a href="https://docs.hyperdbg.org/commands/meta-commands/.sympath" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/meta-commands/.sym" target="_blank">link</a>]
* Mapping Data To Symbols & Create Structures, Enums From PDB Files [<a href="https://docs.hyperdbg.org/commands/debugging-commands/dt" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/debugging-commands/struct" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/basics/mapping-data-and-create-structures-and-enums-from-symbols" target="_blank">link</a>]
* Event Forwarding (#DFIR) [<a href="https://docs.hyperdbg.org/tips-and-tricks/misc/event-forwarding" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/debugging-commands/output" target="_blank">link</a>]
* Transparent Breakpoint Handler [<a href="https://docs.hyperdbg.org/commands/debugging-commands/bp" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/using-hyperdbg/kernel-mode-debugging/examples/basics/setting-breakpoints-and-stepping-instructions" target="_blank">link</a>]
* Various Custom Scripts [<a href="https://github.com/HyperDbg/scripts" target="_blank">link</a>]
* HyperDbg Software Development Kit (SDK) [<a href="https://docs.hyperdbg.org/using-hyperdbg/sdk" target="_blank">link</a>]
* Event Short-circuiting [<a href="https://docs.hyperdbg.org/tips-and-tricks/misc/event-short-circuiting" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/scripting-language/functions/events/event_sc" target="_blank">link</a>]
* Tracking Records of Function Calls and Return Addresses [<a href="https://docs.hyperdbg.org/commands/extension-commands/track" target="_blank">link</a>]
* Kernel-level Length Disassembler Engine (LDE) [<a href="https://docs.hyperdbg.org/commands/scripting-language/functions/diassembler/disassemble_len" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/scripting-language/functions/diassembler/disassemble_len32" target="_blank">link</a>]
* Memory Execution Monitor & Execution Blocking [<a href="https://docs.hyperdbg.org/commands/extension-commands/monitor" target="_blank">link</a>]
* Custom Page-fault Injection [<a href="https://docs.hyperdbg.org/commands/meta-commands/.pagein" target="_blank">link</a>]
* Different Event Calling Stages [<a href="https://docs.hyperdbg.org/tips-and-tricks/misc/event-calling-stage" target="_blank">link</a>]
* Injecting Custom Interrupts/Exceptions/Faults [<a href="https://docs.hyperdbg.org/commands/scripting-language/functions/events/event_inject" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/scripting-language/functions/events/event_inject_error_code" target="_blank">link</a>]
* Instant Events in the Debugger Mode [<a href="https://docs.hyperdbg.org/tips-and-tricks/misc/instant-events" target="_blank">link</a>]
* Detecting Kernel-to-user and User-to-kernel Transitions [<a href="https://docs.hyperdbg.org/commands/extension-commands/mode" target="_blank">link</a>]
* Physical Memory Monitoring Hooks [<a href="https://docs.hyperdbg.org/commands/extension-commands/monitor" target="_blank">link</a>]
* Enumerating PCI/PCI-e Devices [<a href="https://docs.hyperdbg.org/commands/extension-commands/pcitree" target="_blank">link</a>]
* Interpreting and Dumping PCI/PCI-e Configuration Space (CAM) [<a href="https://docs.hyperdbg.org/commands/extension-commands/pcicam" target="_blank">link</a>]
* Dumping IDT Entries, I/O APIC, and Local APIC in XAPIC and X2APIC Modes [<a href="https://docs.hyperdbg.org/commands/extension-commands/idt" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/extension-commands/ioapic" target="_blank">link</a>][<a href="https://docs.hyperdbg.org/commands/extension-commands/apic" target="_blank">link</a>]
* Triggering and Counting System Management Mode (SMM) Interrupts (SMIs) [<a href="https://docs.hyperdbg.org/commands/extension-commands/smi" target="_blank">link</a>]
* Attaching to the User-mode Process and Preventing Execution [<a href="https://docs.hyperdbg.org/commands/meta-commands/.attach" target="_blank">link</a>]
* Intercepting Execution of XSETBV Instructions [<a href="https://docs.hyperdbg.org/commands/extension-commands/xsetbv" target="_blank">link</a>]
* Writing Library Script Files [<a href="https://docs.hyperdbg.org/commands/scripting-language/casting-and-inclusion" target="_blank">link</a>]
## How does it work?
You can read about the internal design of HyperDbg and its features in the [documentation](https://docs.hyperdbg.org/design). Here's a top-level diagram that shows how HyperDbg works:
</br>
<p align="center"><a href="https://hyperdbg.org/"><img align="center" width="70%" height="100%" src="https://raw.githubusercontent.com/HyperDbg/graphics/master/Diagrams/Diagram-hq-v1/Diagram_v1.jpg" alt="HyperDbg Design"></a></br>
</p>
</br>
## Scripts
You can write your **[scripts](https://github.com/HyperDbg/scripts)** to automate your debugging journey. **HyperDbg** has a powerful, fast, and entirely kernel-side implemented [script engine](https://docs.hyperdbg.org/commands/scripting-language).
## Contributing
Contributing to HyperDbg is super appreciated. We have made a list of potential [tasks](https://github.com/HyperDbg/HyperDbg/blob/master/CONTRIBUTING.md#things-to-work-on) that you might be interested in contributing towards.
If you want to contribute to HyperDbg, please read the [Contribution Guide](https://github.com/HyperDbg/HyperDbg/blob/master/CONTRIBUTING.md).
## License
**HyperDbg**, and all its submodules and repos, unless a license is otherwise specified, are licensed under **GPLv3** LICENSE.
Dependencies are licensed by their own.
================================================
FILE: doxyfile
================================================
# Doxyfile 1.8.17
# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
# TAG = value [value, ...]
# For lists, items can also be appended using:
# TAG += value [value, ...]
# Values that contain spaces should be placed between quotes (\" \").
#---------------------------------------------------------------------------
# Project related configuration options
#---------------------------------------------------------------------------
# This tag specifies the encoding used for all characters in the configuration
# file that follow. The default is UTF-8 which is also the encoding used for all
# text before the first occurrence of this tag. Doxygen uses libiconv (or the
# iconv built into libc) for the transcoding. See
# https://www.gnu.org/software/libiconv/ for the list of possible encodings.
# The default value is: UTF-8.
DOXYFILE_ENCODING = UTF-8
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
# double-quotes, unless you are using Doxywizard) that should identify the
# project for which the documentation is generated. This name is used in the
# title of most generated pages and in a few other places.
# The default value is: My Project.
PROJECT_NAME = "HyperDbg Debugger"
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER =
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
# quick idea about the purpose of the project. Keep the description short.
PROJECT_BRIEF =
# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
# in the documentation. The maximum height of the logo should not exceed 55
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
# the logo to the output directory.
PROJECT_LOGO =
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
# into which the generated documentation will be written. If a relative path is
# entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used.
OUTPUT_DIRECTORY = ./docs
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
# directories (in 2 levels) under the output directory of each output format and
# will distribute the generated files over these directories. Enabling this
# option can be useful when feeding doxygen a huge amount of source files, where
# putting all generated files in the same directory would otherwise causes
# performance problems for the file system.
# The default value is: NO.
CREATE_SUBDIRS = NO
# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
# characters to appear in the names of generated files. If set to NO, non-ASCII
# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
# U+3044.
# The default value is: NO.
ALLOW_UNICODE_NAMES = NO
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
# documentation generated by doxygen is written. Doxygen will use this
# information to generate all constant output in the proper language.
# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
# Ukrainian and Vietnamese.
# The default value is: English.
OUTPUT_LANGUAGE = English
# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all
# documentation generated by doxygen is written. Doxygen will use this
# information to generate all generated output in the proper direction.
# Possible values are: None, LTR, RTL and Context.
# The default value is: None.
OUTPUT_TEXT_DIRECTION = None
# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
# descriptions after the members that are listed in the file and class
# documentation (similar to Javadoc). Set to NO to disable this.
# The default value is: YES.
BRIEF_MEMBER_DESC = YES
# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
# description of a member or function before the detailed description
#
# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
# brief descriptions will be completely suppressed.
# The default value is: YES.
REPEAT_BRIEF = YES
# This tag implements a quasi-intelligent brief description abbreviator that is
# used to form the text in various listings. Each string in this list, if found
# as the leading text of the brief description, will be stripped from the text
# and the result, after processing the whole list, is used as the annotated
# text. Otherwise, the brief description is used as-is. If left blank, the
# following values are used ($name is automatically replaced with the name of
# the entity):The $name class, The $name widget, The $name file, is, provides,
# specifies, contains, represents, a, an and the.
ABBREVIATE_BRIEF = "The $name class" \
"The $name widget" \
"The $name file" \
is \
provides \
specifies \
contains \
represents \
a \
an \
the
# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
# doxygen will generate a detailed section even if there is only a brief
# description.
# The default value is: NO.
ALWAYS_DETAILED_SEC = NO
# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
# inherited members of a class in the documentation of that class as if those
# members were ordinary class members. Constructors, destructors and assignment
# operators of the base classes will not be shown.
# The default value is: NO.
INLINE_INHERITED_MEMB = NO
# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
# before files name in the file list and in the header files. If set to NO the
# shortest path that makes the file name unique will be used
# The default value is: YES.
FULL_PATH_NAMES = YES
# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
# Stripping is only done if one of the specified strings matches the left-hand
# part of the path. The tag can be used to show relative paths in the file list.
# If left blank the directory from which doxygen is run is used as the path to
# strip.
#
# Note that you can specify absolute paths here, but also relative paths, which
# will be relative from the directory where doxygen is started.
# This tag requires that the tag FULL_PATH_NAMES is set to YES.
STRIP_FROM_PATH =
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
# path mentioned in the documentation of a class, which tells the reader which
# header file to include in order to use a class. If left blank only the name of
# the header file containing the class definition is used. Otherwise one should
# specify the list of include paths that are normally passed to the compiler
# using the -I flag.
STRIP_FROM_INC_PATH =
# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
# less readable) file names. This can be useful is your file systems doesn't
# support long names like on DOS, Mac, or CD-ROM.
# The default value is: NO.
SHORT_NAMES = NO
# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
# first line (until the first dot) of a Javadoc-style comment as the brief
# description. If set to NO, the Javadoc-style will behave just like regular Qt-
# style comments (thus requiring an explicit @brief command for a brief
# description.)
# The default value is: NO.
JAVADOC_AUTOBRIEF = NO
# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line
# such as
# /***************
# as being the beginning of a Javadoc-style comment "banner". If set to NO, the
# Javadoc-style will behave just like regular comments and it will not be
# interpreted by doxygen.
# The default value is: NO.
JAVADOC_BANNER = NO
# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
# line (until the first dot) of a Qt-style comment as the brief description. If
# set to NO, the Qt-style will behave just like regular Qt-style comments (thus
# requiring an explicit \brief command for a brief description.)
# The default value is: NO.
QT_AUTOBRIEF = NO
# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
# a brief description. This used to be the default behavior. The new default is
# to treat a multi-line C++ comment block as a detailed description. Set this
# tag to YES if you prefer the old behavior instead.
#
# Note that setting this tag to YES also means that rational rose comments are
# not recognized any more.
# The default value is: NO.
MULTILINE_CPP_IS_BRIEF = NO
# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
# documentation from any documented member that it re-implements.
# The default value is: YES.
INHERIT_DOCS = YES
# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
# page for each member. If set to NO, the documentation of a member will be part
# of the file/class/namespace that contains it.
# The default value is: NO.
SEPARATE_MEMBER_PAGES = NO
# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
# uses this value to replace tabs by spaces in code fragments.
# Minimum value: 1, maximum value: 16, default value: 4.
TAB_SIZE = 4
# This tag can be used to specify a number of aliases that act as commands in
# the documentation. An alias has the form:
# name=value
# For example adding
# "sideeffect=@par Side Effects:\n"
# will allow you to put the command \sideeffect (or @sideeffect) in the
# documentation, which will result in a user-defined paragraph with heading
# "Side Effects:". You can put \n's in the value part of an alias to insert
# newlines (in the resulting output). You can put ^^ in the value part of an
# alias to insert a newline as if a physical newline was in the original file.
# When you need a literal { or } or , in the value part of an alias you have to
# escape them by means of a backslash (\), this can lead to conflicts with the
# commands \{ and \} for these it is advised to use the version @{ and @} or use
# a double escape (\\{ and \\})
ALIASES =
# This tag can be used to specify a number of word-keyword mappings (TCL only).
# A mapping has the form "name=value". For example adding "class=itcl::class"
# will allow you to use the command class in the itcl::class meaning.
TCL_SUBST =
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
# only. Doxygen will then generate output that is more tailored for C. For
# instance, some of the names that are used will be different. The list of all
# members will be omitted, etc.
# The default value is: NO.
OPTIMIZE_OUTPUT_FOR_C = NO
# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
# Python sources only. Doxygen will then generate output that is more tailored
# for that language. For instance, namespaces will be presented as packages,
# qualified scopes will look different, etc.
# The default value is: NO.
OPTIMIZE_OUTPUT_JAVA = NO
# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
# sources. Doxygen will then generate output that is tailored for Fortran.
# The default value is: NO.
OPTIMIZE_FOR_FORTRAN = NO
# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
# sources. Doxygen will then generate output that is tailored for VHDL.
# The default value is: NO.
OPTIMIZE_OUTPUT_VHDL = NO
# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice
# sources only. Doxygen will then generate output that is more tailored for that
# language. For instance, namespaces will be presented as modules, types will be
# separated into more groups, etc.
# The default value is: NO.
OPTIMIZE_OUTPUT_SLICE = NO
# Doxygen selects the parser to use depending on the extension of the files it
# parses. With this tag you can assign which parser to use for a given
# extension. Doxygen has a built-in mapping, but you can override or extend it
# using this tag. The format is ext=language, where ext is a file extension, and
# language is one of the parsers supported by doxygen: IDL, Java, JavaScript,
# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice,
# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:
# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
# tries to guess whether the code is fixed or free formatted code, this is the
# default for Fortran type files), VHDL, tcl. For instance to make doxygen treat
# .inc files as Fortran files (default is PHP), and .f files as C (default is
# Fortran), use: inc=Fortran f=C.
#
# Note: For files without extension you can use no_extension as a placeholder.
#
# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
# the files are not read by doxygen.
EXTENSION_MAPPING =
# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
# according to the Markdown format, which allows for more readable
# documentation. See https://daringfireball.net/projects/markdown/ for details.
# The output of markdown processing is further processed by doxygen, so you can
# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
# case of backward compatibilities issues.
# The default value is: YES.
MARKDOWN_SUPPORT = YES
# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
# to that level are automatically included in the table of contents, even if
# they do not have an id attribute.
# Note: This feature currently applies only to Markdown headings.
# Minimum value: 0, maximum value: 99, default value: 5.
# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
TOC_INCLUDE_HEADINGS = 5
# When enabled doxygen tries to link words that correspond to documented
# classes, or namespaces to their corresponding documentation. Such a link can
# be prevented in individual cases by putting a % sign in front of the word or
# globally by setting AUTOLINK_SUPPORT to NO.
# The default value is: YES.
AUTOLINK_SUPPORT = YES
# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
# to include (a tag file for) the STL sources as input, then you should set this
# tag to YES in order to let doxygen match functions declarations and
# definitions whose arguments contain STL classes (e.g. func(std::string);
# versus func(std::string) {}). This also make the inheritance and collaboration
# diagrams that involve STL classes more complete and accurate.
# The default value is: NO.
BUILTIN_STL_SUPPORT = NO
# If you use Microsoft's C++/CLI language, you should set this option to YES to
# enable parsing support.
# The default value is: NO.
CPP_CLI_SUPPORT = NO
# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen
# will parse them like normal C++ but will assume all classes use public instead
# of private inheritance when no explicit protection keyword is present.
# The default value is: NO.
SIP_SUPPORT = NO
# For Microsoft's IDL there are propget and propput attributes to indicate
# getter and setter methods for a property. Setting this option to YES will make
# doxygen to replace the get and set methods by a property in the documentation.
# This will only work if the methods are indeed getting or setting a simple
# type. If this is not the case, or you want to show the methods anyway, you
# should set this option to NO.
# The default value is: YES.
IDL_PROPERTY_SUPPORT = YES
# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
# tag is set to YES then doxygen will reuse the documentation of the first
# member in the group (if any) for the other members of the group. By default
# all members of a group must be documented explicitly.
# The default value is: NO.
DISTRIBUTE_GROUP_DOC = NO
# If one adds a struct or class to a group and this option is enabled, then also
# any nested class or struct is added to the same group. By default this option
# is disabled and one has to add nested compounds explicitly via \ingroup.
# The default value is: NO.
GROUP_NESTED_COMPOUNDS = NO
# Set the SUBGROUPING tag to YES to allow class member groups of the same type
# (for instance a group of public functions) to be put as a subgroup of that
# type (e.g. under the Public Functions section). Set it to NO to prevent
# subgrouping. Alternatively, this can be done per class using the
# \nosubgrouping command.
# The default value is: YES.
SUBGROUPING = YES
# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
# are shown inside the group in which they are included (e.g. using \ingroup)
# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
# and RTF).
#
# Note that this feature does not work in combination with
# SEPARATE_MEMBER_PAGES.
# The default value is: NO.
INLINE_GROUPED_CLASSES = NO
# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
# with only public data fields or simple typedef fields will be shown inline in
# the documentation of the scope in which they are defined (i.e. file,
# namespace, or group documentation), provided this scope is documented. If set
# to NO, structs, classes, and unions are shown on a separate page (for HTML and
# Man pages) or section (for LaTeX and RTF).
# The default value is: NO.
INLINE_SIMPLE_STRUCTS = NO
# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
# enum is documented as struct, union, or enum with the name of the typedef. So
# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
# with name TypeT. When disabled the typedef will appear as a member of a file,
# namespace, or class. And the struct will be named TypeS. This can typically be
# useful for C code in case the coding convention dictates that all compound
# types are typedef'ed and only the typedef is referenced, never the tag name.
# The default value is: NO.
TYPEDEF_HIDES_STRUCT = NO
# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
# cache is used to resolve symbols given their name and scope. Since this can be
# an expensive process and often the same symbol appears multiple times in the
# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
# doxygen will become slower. If the cache is too large, memory is wasted. The
# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
# symbols. At the end of a run doxygen will report the cache usage and suggest
# the optimal cache size from a speed point of view.
# Minimum value: 0, maximum value: 9, default value: 0.
LOOKUP_CACHE_SIZE = 0
#---------------------------------------------------------------------------
# Build related configuration options
#---------------------------------------------------------------------------
# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
# documentation are documented, even if no documentation was available. Private
# class members and static file members will be hidden unless the
# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
# Note: This will also disable the warnings about undocumented members that are
# normally produced when WARNINGS is set to YES.
# The default value is: NO.
EXTRACT_ALL = yes
# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
# be included in the documentation.
# The default value is: NO.
EXTRACT_PRIVATE = NO
# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual
# methods of a class will be included in the documentation.
# The default value is: NO.
EXTRACT_PRIV_VIRTUAL = NO
# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
# scope will be included in the documentation.
# The default value is: NO.
EXTRACT_PACKAGE = NO
# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
# included in the documentation.
# The default value is: NO.
EXTRACT_STATIC = NO
# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
# locally in source files will be included in the documentation. If set to NO,
# only classes defined in header files are included. Does not have any effect
# for Java sources.
# The default value is: YES.
EXTRACT_LOCAL_CLASSES = YES
# This flag is only useful for Objective-C code. If set to YES, local methods,
# which are defined in the implementation section but not in the interface are
# included in the documentation. If set to NO, only methods in the interface are
# included.
# The default value is: NO.
EXTRACT_LOCAL_METHODS = NO
# If this flag is set to YES, the members of anonymous namespaces will be
# extracted and appear in the documentation as a namespace called
# 'anonymous_namespace{file}', where file will be replaced with the base name of
# the file that contains the anonymous namespace. By default anonymous namespace
# are hidden.
# The default value is: NO.
EXTRACT_ANON_NSPACES = NO
# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
# undocumented members inside documented classes or files. If set to NO these
# members will be included in the various overviews, but no documentation
# section is generated. This option has no effect if EXTRACT_ALL is enabled.
# The default value is: NO.
HIDE_UNDOC_MEMBERS = NO
# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
# undocumented classes that are normally visible in the class hierarchy. If set
# to NO, these classes will be included in the various overviews. This option
# has no effect if EXTRACT_ALL is enabled.
# The default value is: NO.
HIDE_UNDOC_CLASSES = NO
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
# declarations. If set to NO, these declarations will be included in the
# documentation.
# The default value is: NO.
HIDE_FRIEND_COMPOUNDS = NO
# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
# documentation blocks found inside the body of a function. If set to NO, these
# blocks will be appended to the function's detailed documentation block.
# The default value is: NO.
HIDE_IN_BODY_DOCS = NO
# The INTERNAL_DOCS tag determines if documentation that is typed after a
# \internal command is included. If the tag is set to NO then the documentation
# will be excluded. Set it to YES to include the internal documentation.
# The default value is: NO.
INTERNAL_DOCS = NO
# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
# names in lower-case letters. If set to YES, upper-case letters are also
# allowed. This is useful if you have classes or files whose names only differ
# in case and if your file system supports case sensitive file names. Windows
# (including Cygwin) ands Mac users are advised to set this option to NO.
# The default value is: system dependent.
CASE_SENSE_NAMES = NO
# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
# their full class and namespace scopes in the documentation. If set to YES, the
# scope will be hidden.
# The default value is: NO.
HIDE_SCOPE_NAMES = NO
# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
# append additional text to a page's title, such as Class Reference. If set to
# YES the compound reference will be hidden.
# The default value is: NO.
HIDE_COMPOUND_REFERENCE= NO
# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
# the files that are included by a file in the documentation of that file.
# The default value is: YES.
SHOW_INCLUDE_FILES = YES
# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
# grouped member an include statement to the documentation, telling the reader
# which file to include in order to use the member.
# The default value is: NO.
SHOW_GROUPED_MEMB_INC = NO
# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
# files with double quotes in the documentation rather than with sharp brackets.
# The default value is: NO.
FORCE_LOCAL_INCLUDES = NO
# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
# documentation for inline members.
# The default value is: YES.
INLINE_INFO = YES
# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
# (detailed) documentation of file and class members alphabetically by member
# name. If set to NO, the members will appear in declaration order.
# The default value is: YES.
SORT_MEMBER_DOCS = YES
# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
# descriptions of file, namespace and class members alphabetically by member
# name. If set to NO, the members will appear in declaration order. Note that
# this will also influence the order of the classes in the class list.
# The default value is: NO.
SORT_BRIEF_DOCS = NO
# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
# (brief and detailed) documentation of class members so that constructors and
# destructors are listed first. If set to NO the constructors will appear in the
# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
# member documentation.
# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
# detailed member documentation.
# The default value is: NO.
SORT_MEMBERS_CTORS_1ST = NO
# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
# of group names into alphabetical order. If set to NO the group names will
# appear in their defined order.
# The default value is: NO.
SORT_GROUP_NAMES = NO
# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
# fully-qualified names, including namespaces. If set to NO, the class list will
# be sorted only by class name, not including the namespace part.
# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
# Note: This option applies only to the class list, not to the alphabetical
# list.
# The default value is: NO.
SORT_BY_SCOPE_NAME = NO
# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
# type resolution of all parameters of a function it will reject a match between
# the prototype and the implementation of a member function even if there is
# only one candidate or it is obvious which candidate to choose by doing a
# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
# accept a match between prototype and implementation in such cases.
# The default value is: NO.
STRICT_PROTO_MATCHING = NO
# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
# list. This list is created by putting \todo commands in the documentation.
# The default value is: YES.
GENERATE_TODOLIST = YES
# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
# list. This list is created by putting \test commands in the documentation.
# The default value is: YES.
GENERATE_TESTLIST = YES
# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
# list. This list is created by putting \bug commands in the documentation.
# The default value is: YES.
GENERATE_BUGLIST = YES
# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
# the deprecated list. This list is created by putting \deprecated commands in
# the documentation.
# The default value is: YES.
GENERATE_DEPRECATEDLIST= YES
# The ENABLED_SECTIONS tag can be used to enable conditional documentation
# sections, marked by \if <section_label> ... \endif and \cond <section_label>
# ... \endcond blocks.
ENABLED_SECTIONS =
# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
# initial value of a variable or macro / define can have for it to appear in the
# documentation. If the initializer consists of more lines than specified here
# it will be hidden. Use a value of 0 to hide initializers completely. The
# appearance of the value of individual variables and macros / defines can be
# controlled using \showinitializer or \hideinitializer command in the
# documentation regardless of this setting.
# Minimum value: 0, maximum value: 10000, default value: 30.
MAX_INITIALIZER_LINES = 30
# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
# the bottom of the documentation of classes and structs. If set to YES, the
# list will mention the files that were used to generate the documentation.
# The default value is: YES.
SHOW_USED_FILES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
# will remove the Files entry from the Quick Index and from the Folder Tree View
# (if specified).
# The default value is: YES.
SHOW_FILES = YES
# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
# page. This will remove the Namespaces entry from the Quick Index and from the
# Folder Tree View (if specified).
# The default value is: YES.
SHOW_NAMESPACES = YES
# The FILE_VERSION_FILTER tag can be used to specify a program or script that
# doxygen should invoke to get the current version for each file (typically from
# the version control system). Doxygen will invoke the program by executing (via
# popen()) the command command input-file, where command is the value of the
# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
# by doxygen. Whatever the program writes to standard output is used as the file
# version. For an example see the documentation.
FILE_VERSION_FILTER =
# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
# by doxygen. The layout file controls the global structure of the generated
# output files in an output format independent way. To create the layout file
# that represents doxygen's defaults, run doxygen with the -l option. You can
# optionally specify a file name after the option, if omitted DoxygenLayout.xml
# will be used as the name of the layout file.
#
# Note that if you run doxygen from a directory containing a file called
# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
# tag is left empty.
LAYOUT_FILE =
# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
# the reference definitions. This must be a list of .bib files. The .bib
# extension is automatically appended if omitted. This requires the bibtex tool
# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.
# For LaTeX the style of the bibliography can be controlled using
# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
# search path. See also \cite for info how to create references.
CITE_BIB_FILES =
#---------------------------------------------------------------------------
# Configuration options related to warning and progress messages
#---------------------------------------------------------------------------
# The QUIET tag can be used to turn on/off the messages that are generated to
# standard output by doxygen. If QUIET is set to YES this implies that the
# messages are off.
# The default value is: NO.
QUIET = NO
# The WARNINGS tag can be used to turn on/off the warning messages that are
# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
# this implies that the warnings are on.
#
# Tip: Turn warnings on while writing the documentation.
# The default value is: YES.
WARNINGS = YES
# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
# will automatically be disabled.
# The default value is: YES.
WARN_IF_UNDOCUMENTED = YES
# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
# potential errors in the documentation, such as not documenting some parameters
# in a documented function, or documenting parameters that don't exist or using
# markup commands wrongly.
# The default value is: YES.
WARN_IF_DOC_ERROR = YES
# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
# are documented, but have no documentation for their parameters or return
# value. If set to NO, doxygen will only warn about wrong or incomplete
# parameter documentation, but not about the absence of documentation. If
# EXTRACT_ALL is set to YES then this flag will automatically be disabled.
# The default value is: NO.
WARN_NO_PARAMDOC = NO
# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
# a warning is encountered.
# The default value is: NO.
WARN_AS_ERROR = NO
# The WARN_FORMAT tag determines the format of the warning messages that doxygen
# can produce. The string should contain the $file, $line, and $text tags, which
# will be replaced by the file and line number from which the warning originated
# and the warning text. Optionally the format may contain $version, which will
# be replaced by the version of the file (if it could be obtained via
# FILE_VERSION_FILTER)
# The default value is: $file:$line: $text.
WARN_FORMAT = "$file:$line: $text"
# The WARN_LOGFILE tag can be used to specify a file to which warning and error
# messages should be written. If left blank the output is written to standard
# error (stderr).
WARN_LOGFILE =
#---------------------------------------------------------------------------
# Configuration options related to the input files
#---------------------------------------------------------------------------
# The INPUT tag is used to specify the files and/or directories that contain
# documented source files. You may enter file names like myfile.cpp or
# directories like /usr/src/myproject. Separate the files or directories with
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.
INPUT = ./ \
./hyperdbg \
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
# documentation (see: https://www.gnu.org/software/libiconv/) for the list of
# possible encodings.
# The default value is: UTF-8.
INPUT_ENCODING = UTF-8
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
# *.h) to filter out the source-files in the directories.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# read by doxygen.
#
# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment),
# *.doc (to be provided as doxygen C comment), *.txt (to be provided as doxygen
# C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f, *.for, *.tcl, *.vhd,
# *.vhdl, *.ucf, *.qsf and *.ice.
FILE_PATTERNS = *.c \
*.cc \
*.cxx \
*.cpp \
*.c++ \
*.java \
*.ii \
*.ixx \
*.ipp \
*.i++ \
*.inl \
*.idl \
*.ddl \
*.odl \
*.h \
*.hh \
*.hxx \
*.hpp \
*.h++ \
*.cs \
*.d \
*.php \
*.php4 \
*.php5 \
*.phtml \
*.inc \
*.m \
*.markdown \
*.md \
*.mm \
*.dox \
*.doc \
*.txt \
*.py \
*.pyw \
*.f90 \
*.f95 \
*.f03 \
*.f08 \
*.f \
*.for \
*.tcl \
*.vhd \
*.vhdl \
*.ucf \
*.qsf \
*.ice
# The RECURSIVE tag can be used to specify whether or not subdirectories should
# be searched for input files as well.
# The default value is: NO.
RECURSIVE = YES
# The EXCLUDE tag can be used to specify files and/or directories that should be
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
#
# Note that relative paths are relative to the directory from which doxygen is
# run.
EXCLUDE =
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded
# from the input.
# The default value is: NO.
EXCLUDE_SYMLINKS = NO
# If the value of the INPUT tag contains directories, you can use the
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
# certain files from those directories.
#
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories for example use the pattern */test/*
EXCLUDE_PATTERNS = */hyperdbg/dependencies/*
# EXCLUDE_PATTERNS += */docs/*
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
# output. The symbol name can be a fully qualified name, a word, or if the
# wildcard * is used, a substring. Examples: ANamespace, AClass,
# AClass::ANamespace, ANamespace::*Test
#
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories use the pattern */test/*
EXCLUDE_SYMBOLS =
# The EXAMPLE_PATH tag can be used to specify one or more files or directories
# that contain example code fragments that are included (see the \include
# command).
EXAMPLE_PATH =
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
# *.h) to filter out the source-files in the directories. If left blank all
# files are included.
EXAMPLE_PATTERNS = *
# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
# searched for input files to be used with the \include or \dontinclude commands
# irrespective of the value of the RECURSIVE tag.
# The default value is: NO.
EXAMPLE_RECURSIVE = NO
# The IMAGE_PATH tag can be used to specify one or more files or directories
# that contain images that are to be included in the documentation (see the
# \image command).
IMAGE_PATH =
# The INPUT_FILTER tag can be used to specify a program that doxygen should
# invoke to filter for each input file. Doxygen will invoke the filter program
# by executing (via popen()) the command:
#
# <filter> <input-file>
#
# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
# name of an input file. Doxygen will then use the output that the filter
# program writes to standard output. If FILTER_PATTERNS is specified, this tag
# will be ignored.
#
# Note that the filter must not add or remove lines; it is applied before the
# code is scanned, but not when the output code is generated. If lines are added
# or removed, the anchors will not be placed correctly.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# properly processed by doxygen.
INPUT_FILTER =
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
# basis. Doxygen will compare the file name with each pattern and apply the
# filter if there is a match. The filters are a list of the form: pattern=filter
# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
# patterns match the file name, INPUT_FILTER is applied.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# properly processed by doxygen.
FILTER_PATTERNS =
# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
# INPUT_FILTER) will also be used to filter the input files that are used for
# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
# The default value is: NO.
FILTER_SOURCE_FILES = NO
# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
# it is also possible to disable source filtering for a specific pattern using
# *.ext= (so without naming a filter).
# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
FILTER_SOURCE_PATTERNS =
# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
# is part of the input, its contents will be placed on the main page
# (index.html). This can be useful if you have a project on for instance GitHub
# and want to reuse the introduction page also for the doxygen output.
INPUT += ./README.md
USE_MDFILE_AS_MAINPAGE = README.md
#---------------------------------------------------------------------------
# Configuration options related to source browsing
#---------------------------------------------------------------------------
# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
# generated. Documented entities will be cross-referenced with these sources.
#
# Note: To get rid of all source code in the generated output, make sure that
# also VERBATIM_HEADERS is set to NO.
# The default value is: NO.
SOURCE_BROWSER = no
# Setting the INLINE_SOURCES tag to YES will include the body of functions,
# classes and enums directly into the documentation.
# The default value is: NO.
INLINE_SOURCES = yes
# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
# special comment blocks from generated source code fragments. Normal C, C++ and
# Fortran comments will always remain visible.
# The default value is: YES.
STRIP_CODE_COMMENTS = YES
# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
# entity all documented functions referencing it will be listed.
# The default value is: NO.
REFERENCED_BY_RELATION = NO
# If the REFERENCES_RELATION tag is set to YES then for each documented function
# all documented entities called/used by that function will be listed.
# The default value is: NO.
REFERENCES_RELATION = NO
# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
# to YES then the hyperlinks from functions in REFERENCES_RELATION and
# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
# link to the documentation.
# The default value is: YES.
REFERENCES_LINK_SOURCE = YES
# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
# source code will show a tooltip with additional information such as prototype,
# brief description and links to the definition and documentation. Since this
# will make the HTML file larger and loading of large files a bit slower, you
# can opt to disable this feature.
# The default value is: YES.
# This tag requires that the tag SOURCE_BROWSER is set to YES.
SOURCE_TOOLTIPS = YES
# If the USE_HTAGS tag is set to YES then the references to source code will
# point to the HTML generated by the htags(1) tool instead of doxygen built-in
# source browser. The htags tool is part of GNU's global source tagging system
# (see https://www.gnu.org/software/global/global.html). You will need version
# 4.8.6 or higher.
#
# To use it do the following:
# - Install the latest version of global
# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file
# - Make sure the INPUT points to the root of the source tree
# - Run doxygen as normal
#
# Doxygen will invoke htags (and that will in turn invoke gtags), so these
# tools must be available from the command line (i.e. in the search path).
#
# The result: instead of the source browser generated by doxygen, the links to
# source code will now point to the output of htags.
# The default value is: NO.
# This tag requires that the tag SOURCE_BROWSER is set to YES.
USE_HTAGS = NO
# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
# verbatim copy of the header file for each class for which an include is
# specified. Set to NO to disable this.
# See also: Section \class.
# The default value is: YES.
VERBATIM_HEADERS = YES
#---------------------------------------------------------------------------
# Configuration options related to the alphabetical class index
#---------------------------------------------------------------------------
# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
# compounds will be generated. Enable this if the project contains a lot of
# classes, structs, unions or interfaces.
# The default value is: YES.
ALPHABETICAL_INDEX = YES
# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
# which the alphabetical index list will be split.
# Minimum value: 1, maximum value: 20, default value: 5.
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
COLS_IN_ALPHA_INDEX = 5
# In case all classes in a project start with a common prefix, all classes will
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
# can be used to specify a prefix (or a list of prefixes) that should be ignored
# while generating the index headers.
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
IGNORE_PREFIX =
#---------------------------------------------------------------------------
# Configuration options related to the HTML output
#---------------------------------------------------------------------------
# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
# The default value is: YES.
GENERATE_HTML = YES
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: html.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_OUTPUT = doxygen
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
# generated HTML page (for example: .htm, .php, .asp).
# The default value is: .html.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_FILE_EXTENSION = .html
# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
# each generated HTML page. If the tag is left blank doxygen will generate a
# standard header.
#
# To get valid HTML the header file that includes any scripts and style sheets
# that doxygen needs, which is dependent on the configuration options used (e.g.
# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
# default header using
# doxygen -w html new_header.html new_footer.html new_stylesheet.css
# YourConfigFile
# and then modify the file new_header.html. See also section "Doxygen usage"
# for information on how to generate the default header that doxygen normally
# uses.
# Note: The header is subject to change so you typically have to regenerate the
# default header when upgrading to a newer version of doxygen. For a description
# of the possible markers and block names see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
# generated HTML page. If the tag is left blank doxygen will generate a standard
# footer. See HTML_HEADER for more information on how to generate a default
# footer and what special commands can be used inside the footer. See also
# section "Doxygen usage" for information on how to generate the default footer
# that doxygen normally uses.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_FOOTER =
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
# sheet that is used by each HTML page. It can be used to fine-tune the look of
# the HTML output. If left blank doxygen will generate a default style sheet.
# See also section "Doxygen usage" for information on how to generate the style
# sheet that doxygen normally uses.
# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
# it is more robust and this tag (HTML_STYLESHEET) will in the future become
# obsolete.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_STYLESHEET =
# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
# cascading style sheets that are included after the standard style sheets
# created by doxygen. Using this option one can overrule certain style aspects.
# This is preferred over using HTML_STYLESHEET since it does not replace the
# standard style sheet and is therefore more robust against future updates.
# Doxygen will copy the style sheet files to the output directory.
# Note: The order of the extra style sheet files is of importance (e.g. the last
# style sheet in the list overrules the setting of the previous ones in the
# list). For an example see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_EXTRA_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
# that these files will be copied to the base HTML output directory. Use the
# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
# files will be copied as-is; there are no commands or markers available.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_EXTRA_FILES =
# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
# will adjust the colors in the style sheet and background images according to
# this color. Hue is specified as an angle on a colorwheel, see
# https://en.wikipedia.org/wiki/Hue for more information. For instance the value
# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
# purple, and 360 is red again.
# Minimum value: 0, maximum value: 359, default value: 220.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_COLORSTYLE_HUE = 220
# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
# in the HTML output. For a value of 0 the output will use grayscales only. A
# value of 255 will produce the most vivid colors.
# Minimum value: 0, maximum value: 255, default value: 100.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_COLORSTYLE_SAT = 100
# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
# luminance component of the colors in the HTML output. Values below 100
# gradually make the output lighter, whereas values above 100 make the output
# darker. The value divided by 100 is the actual gamma applied, so 80 represents
# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
# change the gamma.
# Minimum value: 40, maximum value: 240, default value: 80.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_COLORSTYLE_GAMMA = 80
# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
# page will contain the date and time when the page was generated. Setting this
# to YES can help to show when doxygen was last run and thus if the
# documentation is up to date.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_TIMESTAMP = NO
# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
# documentation will contain a main index with vertical navigation menus that
# are dynamically created via JavaScript. If disabled, the navigation index will
# consists of multiple levels of tabs that are statically embedded in every HTML
# page. Disable this option to support browsers that do not have JavaScript,
# like the Qt help browser.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_DYNAMIC_MENUS = YES
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
# page has loaded.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_DYNAMIC_SECTIONS = NO
# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
# shown in the various tree structured indices initially; the user can expand
# and collapse entries dynamically later on. Doxygen will expand the tree to
# such a level that at most the specified number of entries are visible (unless
# a fully collapsed tree already exceeds this amount). So setting the number of
# entries 1 will produce a full collapsed tree by default. 0 is a special value
# representing an infinite number of entries and will result in a full expanded
# tree by default.
# Minimum value: 0, maximum value: 9999, default value: 100.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_INDEX_NUM_ENTRIES = 100
# If the GENERATE_DOCSET tag is set to YES, additional index files will be
# generated that can be used as input for Apple's Xcode 3 integrated development
# environment (see: https://developer.apple.com/xcode/), introduced with OSX
# 10.5 (Leopard). To create a documentation set, doxygen will generate a
# Makefile in the HTML output directory. Running make will produce the docset in
# that directory and running make install will install the docset in
# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
# genXcode/_index.html for more information.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_DOCSET = NO
# This tag determines the name of the docset feed. A documentation feed provides
# an umbrella under which multiple documentation sets from a single provider
# (such as a company or product suite) can be grouped.
# The default value is: Doxygen generated docs.
# This tag requires that the tag GENERATE_DOCSET is set to YES.
DOCSET_FEEDNAME = "Doxygen generated docs"
# This tag specifies a string that should uniquely identify the documentation
# set bundle. This should be a reverse domain-name style string, e.g.
# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_DOCSET is set to YES.
DOCSET_BUNDLE_ID = org.doxygen.Project
# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
# the documentation publisher. This should be a reverse domain-name style
# string, e.g. com.mycompany.MyDocSet.documentation.
# The default value is: org.doxygen.Publisher.
# This tag requires that the tag GENERATE_DOCSET is set to YES.
DOCSET_PUBLISHER_ID = org.doxygen.Publisher
# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
# The default value is: Publisher.
# This tag requires that the tag GENERATE_DOCSET is set to YES.
DOCSET_PUBLISHER_NAME = Publisher
# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on
# Windows.
#
# The HTML Help Workshop contains a compiler that can convert all HTML output
# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
# files are now used as the Windows 98 help format, and will replace the old
# Windows help format (.hlp) on all Windows platforms in the future. Compressed
# HTML files also contain an index, a table of contents, and you can search for
# words in the documentation. The HTML workshop also contains a viewer for
# compressed HTML files.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_HTMLHELP = NO
# The CHM_FILE tag can be used to specify the file name of the resulting .chm
# file. You can add a path in front of the file if the result should not be
# written to the html output directory.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
CHM_FILE =
# The HHC_LOCATION tag can be used to specify the location (absolute path
# including file name) of the HTML help compiler (hhc.exe). If non-empty,
# doxygen will try to run the HTML help compiler on the generated index.hhp.
# The file has to be specified with full path.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
HHC_LOCATION =
# The GENERATE_CHI flag controls if a separate .chi index file is generated
# (YES) or that it should be included in the master .chm file (NO).
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
GENERATE_CHI = NO
# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
# and project file content.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
CHM_INDEX_ENCODING =
# The BINARY_TOC flag controls whether a binary table of contents is generated
# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
# enables the Previous and Next buttons.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
BINARY_TOC = NO
# The TOC_EXPAND flag can be set to YES to add extra items for group members to
# the table of contents of the HTML help documentation and to the tree view.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
TOC_EXPAND = NO
# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
# (.qch) of the generated HTML documentation.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_QHP = NO
# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
# the file name of the resulting .qch file. The path specified is relative to
# the HTML output folder.
# This tag requires that the tag GENERATE_QHP is set to YES.
QCH_FILE =
# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
# Project output. For more information please see Qt Help Project / Namespace
# (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_NAMESPACE = org.doxygen.Project
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
# Help Project output. For more information please see Qt Help Project / Virtual
# Folders (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-
# folders).
# The default value is: doc.
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_VIRTUAL_FOLDER = doc
# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
# filter to add. For more information please see Qt Help Project / Custom
# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-
# filters).
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_CUST_FILTER_NAME =
# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
# custom filter to add. For more information please see Qt Help Project / Custom
# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-
# filters).
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_CUST_FILTER_ATTRS =
# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
# project's filter section matches. Qt Help Project / Filter Attributes (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes).
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_SECT_FILTER_ATTRS =
# The QHG_LOCATION tag can be used to specify the location of Qt's
# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
# generated .qhp file.
# This tag requires that the tag GENERATE_QHP is set to YES.
QHG_LOCATION =
# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
# generated, together with the HTML files, they form an Eclipse help plugin. To
# install this plugin and make it available under the help contents menu in
# Eclipse, the contents of the directory containing the HTML and XML files needs
# to be copied into the plugins directory of eclipse. The name of the directory
# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
# After copying Eclipse needs to be restarted before the help appears.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_ECLIPSEHELP = NO
# A unique identifier for the Eclipse help plugin. When installing the plugin
# the directory name containing the HTML and XML files should also have this
# name. Each documentation set should have its own identifier.
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
ECLIPSE_DOC_ID = org.doxygen.Project
# If you want full control over the layout of the generated HTML pages it might
# be necessary to disable the index and replace it with your own. The
# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
# of each HTML page. A value of NO enables the index and the value YES disables
# it. Since the tabs in the index contain the same information as the navigation
# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
DISABLE_INDEX = NO
# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
# structure should be generated to display hierarchical information. If the tag
# value is set to YES, a side panel will be generated containing a tree-like
# index structure (just like the one that is generated for HTML Help). For this
# to work a browser that supports JavaScript, DHTML, CSS and frames is required
# (i.e. any modern browser). Windows users are probably better off using the
# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
# further fine-tune the look of the index. As an example, the default style
# sheet generated by doxygen has an example that shows how to put an image at
# the root of the tree instead of the PROJECT_NAME. Since the tree basically has
# the same information as the tab index, you could consider setting
# DISABLE_INDEX to YES when enabling this option.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_TREEVIEW = YES
# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
# doxygen will group on one line in the generated HTML documentation.
#
# Note that a value of 0 will completely suppress the enum values from appearing
# in the overview section.
# Minimum value: 0, maximum value: 20, default value: 4.
# This tag requires that the tag GENERATE_HTML is set to YES.
ENUM_VALUES_PER_LINE = 4
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
# to set the initial width (in pixels
gitextract_yz6zvnmj/
├── .gitattributes
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ └── feature_request.md
│ ├── git/
│ │ └── git-help.md
│ ├── pull_request_template.md
│ └── workflows/
│ └── vs2022.yml
├── .gitignore
├── .gitmodules
├── CHANGELOG.md
├── CITATION.cff
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── CREDITS.md
├── HOWTO.md
├── LICENSE
├── README.md
├── doxyfile
├── examples/
│ ├── README.md
│ ├── kernel/
│ │ ├── README.md
│ │ └── hyperdbg_driver/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── core/
│ │ │ │ └── Core.c
│ │ │ └── driver/
│ │ │ ├── Driver.c
│ │ │ ├── Ioctl.c
│ │ │ └── Loader.c
│ │ ├── header/
│ │ │ ├── core/
│ │ │ │ └── Core.h
│ │ │ ├── driver/
│ │ │ │ ├── Driver.h
│ │ │ │ └── Loader.h
│ │ │ ├── misc/
│ │ │ │ └── Global.h
│ │ │ └── pch.h
│ │ ├── hyperdbg_driver.vcxproj
│ │ └── hyperdbg_driver.vcxproj.filters
│ └── user/
│ ├── README.md
│ └── hyperdbg_app/
│ ├── CMakeLists.txt
│ ├── code/
│ │ └── hyperdbg-app.cpp
│ ├── header/
│ │ └── pch.h
│ ├── hyperdbg_app.vcxproj
│ └── hyperdbg_app.vcxproj.filters
├── hwdbg/
│ ├── .github/
│ │ └── workflows/
│ │ └── test.yml
│ ├── .gitignore
│ ├── .mill-version
│ ├── .scalafmt.conf
│ ├── CODE_OF_CONDUCT.md
│ ├── LICENSE
│ ├── README.md
│ ├── build.sbt
│ ├── build.sc
│ ├── project/
│ │ ├── build.properties
│ │ ├── metals.sbt
│ │ ├── plugins.sbt
│ │ └── project/
│ │ ├── metals.sbt
│ │ └── project/
│ │ └── metals.sbt
│ ├── sim/
│ │ ├── .gitignore
│ │ ├── hwdbg/
│ │ │ ├── DebuggerModuleTestingBRAM/
│ │ │ │ ├── Makefile
│ │ │ │ ├── bram_instance_info.txt
│ │ │ │ ├── script_buffer_response.txt
│ │ │ │ ├── test.sh
│ │ │ │ └── test_DebuggerModuleTestingBRAM.py
│ │ │ └── communication/
│ │ │ ├── DebuggerPacketReceiver/
│ │ │ │ ├── Makefile
│ │ │ │ ├── test.sh
│ │ │ │ └── test_DebuggerPacketReceiver.py
│ │ │ ├── DebuggerPacketSender/
│ │ │ │ ├── Makefile
│ │ │ │ ├── test.sh
│ │ │ │ └── test_DebuggerPacketSender.py
│ │ │ └── SendReceiveSynchronizer/
│ │ │ ├── Makefile
│ │ │ ├── test.sh
│ │ │ └── test_SendReceiveSynchronizer.py
│ │ ├── modelsim/
│ │ │ ├── README.md
│ │ │ ├── modelsim.config
│ │ │ ├── modelsim.py
│ │ │ └── modelsim.tcl
│ │ └── plain-sv/
│ │ └── PlainSystemVerilogDUT.sv
│ └── src/
│ ├── main/
│ │ ├── scala/
│ │ │ ├── hwdbg/
│ │ │ │ ├── communication/
│ │ │ │ │ ├── interpreter/
│ │ │ │ │ │ ├── instance_info.scala
│ │ │ │ │ │ ├── script_buffer_handler.scala
│ │ │ │ │ │ └── send_success_or_error.scala
│ │ │ │ │ ├── interpreter.scala
│ │ │ │ │ ├── receiver.scala
│ │ │ │ │ ├── send_receive_synchronizer.scala
│ │ │ │ │ └── sender.scala
│ │ │ │ ├── configs/
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── configs.scala
│ │ │ │ │ ├── constants.scala
│ │ │ │ │ └── test_configs.scala
│ │ │ │ ├── libs/
│ │ │ │ │ ├── mem/
│ │ │ │ │ │ ├── init_mem.scala
│ │ │ │ │ │ └── init_reg_mem_from_file.scala
│ │ │ │ │ └── mux/
│ │ │ │ │ ├── mux_2_to_1_io.scala
│ │ │ │ │ ├── mux_2_to_1_lookup.scala
│ │ │ │ │ └── mux_4_to_1_onehot.scala
│ │ │ │ ├── main.scala
│ │ │ │ ├── script/
│ │ │ │ │ ├── eval.scala
│ │ │ │ │ ├── exec.scala
│ │ │ │ │ ├── get_value.scala
│ │ │ │ │ ├── script_definitions.scala
│ │ │ │ │ └── set_value.scala
│ │ │ │ ├── types/
│ │ │ │ │ ├── communication.scala
│ │ │ │ │ └── stage.scala
│ │ │ │ └── utils/
│ │ │ │ └── utils.scala
│ │ │ ├── top.scala
│ │ │ └── top_test.scala
│ │ └── systemverilog/
│ │ └── sensors/
│ │ ├── constraints/
│ │ │ └── top.xdc
│ │ └── src/
│ │ ├── PL_CORE.v
│ │ ├── ff_fanout.sv
│ │ ├── freq_generator.sv
│ │ ├── inverter.v
│ │ ├── inverter_chain.v
│ │ ├── multibyte_uart_rx.sv
│ │ ├── multibyte_uart_tx.sv
│ │ ├── not_gate_simple.v
│ │ ├── ro.v
│ │ ├── ro_core.sv
│ │ ├── ro_fanout.sv
│ │ ├── ro_sensor.sv
│ │ ├── top.sv
│ │ ├── uart_rx.sv
│ │ └── uart_tx.sv
│ └── test/
│ └── bram/
│ ├── instance_info.hex.txt
│ └── script_buffer.hex.txt
├── hyperdbg/
│ ├── .clang-format
│ ├── CMakeLists.txt
│ ├── FindWdk.cmake
│ ├── dependencies/
│ │ └── keystone/
│ │ └── include/
│ │ └── keystone/
│ │ ├── arm.h
│ │ ├── arm64.h
│ │ ├── evm.h
│ │ ├── hexagon.h
│ │ ├── keystone.h
│ │ ├── mips.h
│ │ ├── ppc.h
│ │ ├── riscv.h
│ │ ├── sparc.h
│ │ ├── systemz.h
│ │ └── x86.h
│ ├── hyperdbg-cli/
│ │ ├── CMakeLists.txt
│ │ ├── hyperdbg-cli.cpp
│ │ ├── hyperdbg-cli.vcxproj
│ │ └── hyperdbg-cli.vcxproj.filters
│ ├── hyperdbg-test/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── assembly/
│ │ │ │ └── asm-test.asm
│ │ │ ├── hardware/
│ │ │ │ └── hwdbg-tests.cpp
│ │ │ ├── main.cpp
│ │ │ ├── namedpipe.cpp
│ │ │ ├── tests/
│ │ │ │ ├── test-parser.cpp
│ │ │ │ └── test-semantic-scripts.cpp
│ │ │ └── tools.cpp
│ │ ├── header/
│ │ │ ├── hwdbg-tests.h
│ │ │ ├── namedpipe.h
│ │ │ ├── routines.h
│ │ │ └── testcases.h
│ │ ├── hyperdbg-test.vcxproj
│ │ ├── hyperdbg-test.vcxproj.filters
│ │ ├── pch.cpp
│ │ └── pch.h
│ ├── hyperdbg.sln
│ ├── hyperevade/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── SyscallFootprints.c
│ │ │ ├── Transparency.c
│ │ │ ├── UnloadDll.c
│ │ │ └── VmxFootprints.c
│ │ ├── header/
│ │ │ ├── SyscallFootprints.h
│ │ │ ├── Transparency.h
│ │ │ ├── VmxFootprints.h
│ │ │ └── pch.h
│ │ ├── hyperevade.def
│ │ ├── hyperevade.vcxproj
│ │ └── hyperevade.vcxproj.filters
│ ├── hyperhv/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── assembly/
│ │ │ │ ├── AsmCommon.asm
│ │ │ │ ├── AsmEpt.asm
│ │ │ │ ├── AsmHooks.asm
│ │ │ │ ├── AsmInterruptHandlers.asm
│ │ │ │ ├── AsmSegmentRegs.asm
│ │ │ │ ├── AsmVmexitHandler.asm
│ │ │ │ ├── AsmVmxContextState.asm
│ │ │ │ └── AsmVmxOperation.asm
│ │ │ ├── broadcast/
│ │ │ │ ├── Broadcast.c
│ │ │ │ └── DpcRoutines.c
│ │ │ ├── common/
│ │ │ │ ├── Bitwise.c
│ │ │ │ ├── Common.c
│ │ │ │ └── UnloadDll.c
│ │ │ ├── components/
│ │ │ │ └── registers/
│ │ │ │ └── DebugRegisters.c
│ │ │ ├── devices/
│ │ │ │ ├── Apic.c
│ │ │ │ └── Pci.c
│ │ │ ├── disassembler/
│ │ │ │ ├── Disassembler.c
│ │ │ │ └── ZydisKernel.c
│ │ │ ├── features/
│ │ │ │ ├── CompatibilityChecks.c
│ │ │ │ └── DirtyLogging.c
│ │ │ ├── globals/
│ │ │ │ └── GlobalVariableManagement.c
│ │ │ ├── hooks/
│ │ │ │ ├── ept-hook/
│ │ │ │ │ ├── EptHook.c
│ │ │ │ │ ├── ExecTrap.c
│ │ │ │ │ └── ModeBasedExecHook.c
│ │ │ │ └── syscall-hook/
│ │ │ │ ├── EferHook.c
│ │ │ │ └── SyscallCallback.c
│ │ │ ├── interface/
│ │ │ │ ├── Callback.c
│ │ │ │ ├── Configuration.c
│ │ │ │ ├── DirectVmcall.c
│ │ │ │ ├── Dispatch.c
│ │ │ │ ├── Export.c
│ │ │ │ └── HyperEvade.c
│ │ │ ├── memory/
│ │ │ │ ├── AddressCheck.c
│ │ │ │ ├── Conversion.c
│ │ │ │ ├── Layout.c
│ │ │ │ ├── MemoryManager.c
│ │ │ │ ├── MemoryMapper.c
│ │ │ │ ├── PoolManager.c
│ │ │ │ ├── Segmentation.c
│ │ │ │ └── SwitchLayout.c
│ │ │ ├── mmio/
│ │ │ │ └── MmioShadowing.c
│ │ │ ├── processor/
│ │ │ │ ├── Idt.c
│ │ │ │ └── Smm.c
│ │ │ └── vmm/
│ │ │ ├── ept/
│ │ │ │ ├── Ept.c
│ │ │ │ ├── Invept.c
│ │ │ │ └── Vpid.c
│ │ │ └── vmx/
│ │ │ ├── Counters.c
│ │ │ ├── CrossVmexits.c
│ │ │ ├── Events.c
│ │ │ ├── Hv.c
│ │ │ ├── IdtEmulation.c
│ │ │ ├── IoHandler.c
│ │ │ ├── ManageRegs.c
│ │ │ ├── MsrHandlers.c
│ │ │ ├── Mtf.c
│ │ │ ├── ProtectedHv.c
│ │ │ ├── Vmcall.c
│ │ │ ├── Vmexit.c
│ │ │ ├── Vmx.c
│ │ │ ├── VmxBroadcast.c
│ │ │ ├── VmxMechanisms.c
│ │ │ └── VmxRegions.c
│ │ ├── header/
│ │ │ ├── assembly/
│ │ │ │ └── InlineAsm.h
│ │ │ ├── broadcast/
│ │ │ │ ├── Broadcast.h
│ │ │ │ └── DpcRoutines.h
│ │ │ ├── common/
│ │ │ │ ├── Bitwise.h
│ │ │ │ ├── Common.h
│ │ │ │ ├── Dpc.h
│ │ │ │ ├── Msr.h
│ │ │ │ ├── State.h
│ │ │ │ ├── Trace.h
│ │ │ │ └── UnloadDll.h
│ │ │ ├── devices/
│ │ │ │ ├── Apic.h
│ │ │ │ └── Pci.h
│ │ │ ├── disassembler/
│ │ │ │ └── Disassembler.h
│ │ │ ├── features/
│ │ │ │ ├── CompatibilityChecks.h
│ │ │ │ └── DirtyLogging.h
│ │ │ ├── globals/
│ │ │ │ ├── GlobalVariableManagement.h
│ │ │ │ └── GlobalVariables.h
│ │ │ ├── hooks/
│ │ │ │ ├── ExecTrap.h
│ │ │ │ ├── Hooks.h
│ │ │ │ ├── ModeBasedExecHook.h
│ │ │ │ └── SyscallCallback.h
│ │ │ ├── interface/
│ │ │ │ ├── Callback.h
│ │ │ │ ├── DirectVmcall.h
│ │ │ │ └── Dispatch.h
│ │ │ ├── memory/
│ │ │ │ ├── AddressCheck.h
│ │ │ │ ├── Conversion.h
│ │ │ │ ├── Layout.h
│ │ │ │ ├── MemoryMapper.h
│ │ │ │ ├── PoolManager.h
│ │ │ │ ├── Segmentation.h
│ │ │ │ └── SwitchLayout.h
│ │ │ ├── mmio/
│ │ │ │ └── MmioShadowing.h
│ │ │ ├── processor/
│ │ │ │ ├── Idt.h
│ │ │ │ └── Smm.h
│ │ │ └── vmm/
│ │ │ ├── ept/
│ │ │ │ ├── Ept.h
│ │ │ │ ├── Invept.h
│ │ │ │ └── Vpid.h
│ │ │ └── vmx/
│ │ │ ├── Counters.h
│ │ │ ├── Events.h
│ │ │ ├── Hv.h
│ │ │ ├── IdtEmulation.h
│ │ │ ├── IoHandler.h
│ │ │ ├── MsrHandlers.h
│ │ │ ├── Mtf.h
│ │ │ ├── ProtectedHv.h
│ │ │ ├── Vmcall.h
│ │ │ ├── Vmx.h
│ │ │ ├── VmxBroadcast.h
│ │ │ ├── VmxMechanisms.h
│ │ │ └── VmxRegions.h
│ │ ├── hyperhv.def
│ │ ├── hyperhv.vcxproj
│ │ ├── hyperhv.vcxproj.filters
│ │ ├── pch.c
│ │ └── pch.h
│ ├── hyperkd/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── assembly/
│ │ │ │ └── AsmDebugger.asm
│ │ │ ├── common/
│ │ │ │ ├── Common.c
│ │ │ │ └── Synchronization.c
│ │ │ ├── debugger/
│ │ │ │ ├── broadcast/
│ │ │ │ │ ├── DpcRoutines.c
│ │ │ │ │ ├── HaltedBroadcast.c
│ │ │ │ │ └── HaltedRoutines.c
│ │ │ │ ├── commands/
│ │ │ │ │ ├── BreakpointCommands.c
│ │ │ │ │ ├── Callstack.c
│ │ │ │ │ ├── DebuggerCommands.c
│ │ │ │ │ └── ExtensionCommands.c
│ │ │ │ ├── communication/
│ │ │ │ │ └── SerialConnection.c
│ │ │ │ ├── core/
│ │ │ │ │ ├── Debugger.c
│ │ │ │ │ ├── DebuggerVmcalls.c
│ │ │ │ │ └── HaltedCore.c
│ │ │ │ ├── events/
│ │ │ │ │ ├── ApplyEvents.c
│ │ │ │ │ ├── DebuggerEvents.c
│ │ │ │ │ ├── Termination.c
│ │ │ │ │ └── ValidateEvents.c
│ │ │ │ ├── kernel-level/
│ │ │ │ │ └── Kd.c
│ │ │ │ ├── memory/
│ │ │ │ │ └── Allocations.c
│ │ │ │ ├── meta-events/
│ │ │ │ │ ├── MetaDispatch.c
│ │ │ │ │ └── Tracing.c
│ │ │ │ ├── objects/
│ │ │ │ │ ├── Process.c
│ │ │ │ │ └── Thread.c
│ │ │ │ ├── script-engine/
│ │ │ │ │ └── ScriptEngine.c
│ │ │ │ ├── tests/
│ │ │ │ │ └── KernelTests.c
│ │ │ │ └── user-level/
│ │ │ │ ├── Attaching.c
│ │ │ │ ├── ThreadHolder.c
│ │ │ │ ├── Ud.c
│ │ │ │ └── UserAccess.c
│ │ │ └── driver/
│ │ │ ├── Driver.c
│ │ │ ├── Ioctl.c
│ │ │ └── Loader.c
│ │ ├── header/
│ │ │ ├── assembly/
│ │ │ │ └── Assembly.h
│ │ │ ├── common/
│ │ │ │ ├── Common.h
│ │ │ │ ├── Dpc.h
│ │ │ │ └── Synchronization.h
│ │ │ ├── debugger/
│ │ │ │ ├── broadcast/
│ │ │ │ │ ├── DpcRoutines.h
│ │ │ │ │ ├── HaltedBroadcast.h
│ │ │ │ │ └── HaltedRoutines.h
│ │ │ │ ├── commands/
│ │ │ │ │ ├── BreakpointCommands.h
│ │ │ │ │ ├── Callstack.h
│ │ │ │ │ ├── DebuggerCommands.h
│ │ │ │ │ └── ExtensionCommands.h
│ │ │ │ ├── communication/
│ │ │ │ │ └── SerialConnection.h
│ │ │ │ ├── core/
│ │ │ │ │ ├── Debugger.h
│ │ │ │ │ ├── DebuggerVmcalls.h
│ │ │ │ │ ├── HaltedCore.h
│ │ │ │ │ └── State.h
│ │ │ │ ├── events/
│ │ │ │ │ ├── ApplyEvents.h
│ │ │ │ │ ├── DebuggerEvents.h
│ │ │ │ │ ├── Termination.h
│ │ │ │ │ └── ValidateEvents.h
│ │ │ │ ├── kernel-level/
│ │ │ │ │ └── Kd.h
│ │ │ │ ├── memory/
│ │ │ │ │ ├── Allocations.h
│ │ │ │ │ └── Memory.h
│ │ │ │ ├── meta-events/
│ │ │ │ │ ├── MetaDispatch.h
│ │ │ │ │ └── Tracing.h
│ │ │ │ ├── objects/
│ │ │ │ │ ├── Process.h
│ │ │ │ │ └── Thread.h
│ │ │ │ ├── script-engine/
│ │ │ │ │ └── ScriptEngine.h
│ │ │ │ ├── tests/
│ │ │ │ │ └── KernelTests.h
│ │ │ │ └── user-level/
│ │ │ │ ├── Attaching.h
│ │ │ │ ├── ThreadHolder.h
│ │ │ │ ├── Ud.h
│ │ │ │ └── UserAccess.h
│ │ │ ├── driver/
│ │ │ │ ├── Driver.h
│ │ │ │ └── Loader.h
│ │ │ ├── globals/
│ │ │ │ └── Global.h
│ │ │ └── pch.h
│ │ ├── hyperkd.vcxproj
│ │ └── hyperkd.vcxproj.filters
│ ├── hyperlog/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── Logging.c
│ │ │ └── UnloadDll.c
│ │ ├── header/
│ │ │ ├── Logging.h
│ │ │ ├── UnloadDll.h
│ │ │ └── pch.h
│ │ ├── hyperlog.def
│ │ ├── hyperlog.inf
│ │ ├── hyperlog.vcxproj
│ │ └── hyperlog.vcxproj.filters
│ ├── hypertrace/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── Lbr.c
│ │ │ ├── Tracing.c
│ │ │ └── UnloadDll.c
│ │ ├── header/
│ │ │ ├── Lbr.h
│ │ │ ├── Tracing.h
│ │ │ ├── UnloadDll.h
│ │ │ └── pch.h
│ │ ├── hypertrace.def
│ │ ├── hypertrace.vcxproj
│ │ └── hypertrace.vcxproj.filters
│ ├── include/
│ │ ├── SDK/
│ │ │ ├── HyperDbgSdk.h
│ │ │ ├── headers/
│ │ │ │ ├── Assertions.h
│ │ │ │ ├── BasicTypes.h
│ │ │ │ ├── Connection.h
│ │ │ │ ├── Constants.h
│ │ │ │ ├── DataTypes.h
│ │ │ │ ├── ErrorCodes.h
│ │ │ │ ├── Events.h
│ │ │ │ ├── HardwareDebugger.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── Pcie.h
│ │ │ │ ├── RequestStructures.h
│ │ │ │ ├── ScriptEngineCommonDefinitions.h
│ │ │ │ └── Symbols.h
│ │ │ ├── imports/
│ │ │ │ ├── kernel/
│ │ │ │ │ ├── HyperDbgHyperEvade.h
│ │ │ │ │ ├── HyperDbgHyperLogImports.h
│ │ │ │ │ ├── HyperDbgHyperLogIntrinsics.h
│ │ │ │ │ ├── HyperDbgHyperTrace.h
│ │ │ │ │ └── HyperDbgVmmImports.h
│ │ │ │ └── user/
│ │ │ │ ├── HyperDbgLibImports.h
│ │ │ │ ├── HyperDbgScriptImports.h
│ │ │ │ └── HyperDbgSymImports.h
│ │ │ └── modules/
│ │ │ ├── HyperEvade.h
│ │ │ ├── HyperLog.h
│ │ │ ├── HyperTrace.h
│ │ │ └── VMM.h
│ │ ├── components/
│ │ │ ├── interface/
│ │ │ │ ├── HyperLogCallback.c
│ │ │ │ └── HyperLogCallback.h
│ │ │ ├── optimizations/
│ │ │ │ ├── code/
│ │ │ │ │ ├── AvlTree.c
│ │ │ │ │ ├── BinarySearch.c
│ │ │ │ │ ├── InsertionSort.c
│ │ │ │ │ └── OptimizationsExamples.c
│ │ │ │ └── header/
│ │ │ │ ├── AvlTree.h
│ │ │ │ ├── BinarySearch.h
│ │ │ │ ├── InsertionSort.h
│ │ │ │ └── OptimizationsExamples.h
│ │ │ └── spinlock/
│ │ │ ├── code/
│ │ │ │ └── Spinlock.c
│ │ │ └── header/
│ │ │ └── Spinlock.h
│ │ ├── config/
│ │ │ ├── Configuration.h
│ │ │ └── Definition.h
│ │ ├── hyper-v/
│ │ │ └── HypervTlfs.h
│ │ ├── keystone/
│ │ │ ├── arm.h
│ │ │ ├── arm64.h
│ │ │ ├── evm.h
│ │ │ ├── hexagon.h
│ │ │ ├── keystone.h
│ │ │ ├── mips.h
│ │ │ ├── ppc.h
│ │ │ ├── riscv.h
│ │ │ ├── sparc.h
│ │ │ ├── systemz.h
│ │ │ └── x86.h
│ │ ├── macros/
│ │ │ └── MetaMacros.h
│ │ ├── platform/
│ │ │ ├── kernel/
│ │ │ │ ├── code/
│ │ │ │ │ ├── PlatformMem.c
│ │ │ │ │ └── pch.h
│ │ │ │ └── header/
│ │ │ │ ├── Environment.h
│ │ │ │ ├── PlatformMem.h
│ │ │ │ ├── PlatformModuleInfo.h
│ │ │ │ └── PlatformTypes.h
│ │ │ └── user/
│ │ │ ├── code/
│ │ │ │ └── .gitkeep
│ │ │ └── header/
│ │ │ ├── Environment.h
│ │ │ └── Windows.h
│ │ └── zydis/
│ │ ├── ZycoreExportConfig.h
│ │ └── ZydisExportConfig.h
│ ├── kdserial/
│ │ ├── CMakeLists.txt
│ │ ├── apm88xxxx.c
│ │ ├── bcm2835.c
│ │ ├── common.c
│ │ ├── common.h
│ │ ├── hardware.c
│ │ ├── ioaccess.c
│ │ ├── kdcom.h
│ │ ├── kdserial.def
│ │ ├── kdserial.rc
│ │ ├── kdserial.vcxproj
│ │ ├── msm8974.c
│ │ ├── msm8x60.c
│ │ ├── mx6uart.c
│ │ ├── nvidia.c
│ │ ├── omap.c
│ │ ├── pl011.c
│ │ ├── sam5250.c
│ │ ├── sdm845.c
│ │ ├── spimax311.c
│ │ ├── uart16550.c
│ │ ├── uartio.c
│ │ ├── uartp.h
│ │ ├── usif.c
│ │ └── win11sdk.h
│ ├── libhyperdbg/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── app/
│ │ │ │ ├── dllmain.cpp
│ │ │ │ └── libhyperdbg.cpp
│ │ │ ├── assembly/
│ │ │ │ └── asm-vmx-checks.asm
│ │ │ ├── common/
│ │ │ │ ├── common.cpp
│ │ │ │ ├── list.cpp
│ │ │ │ └── spinlock.cpp
│ │ │ ├── debugger/
│ │ │ │ ├── commands/
│ │ │ │ │ ├── debugging-commands/
│ │ │ │ │ │ ├── a.cpp
│ │ │ │ │ │ ├── bc.cpp
│ │ │ │ │ │ ├── bd.cpp
│ │ │ │ │ │ ├── be.cpp
│ │ │ │ │ │ ├── bl.cpp
│ │ │ │ │ │ ├── bp.cpp
│ │ │ │ │ │ ├── continue.cpp
│ │ │ │ │ │ ├── core.cpp
│ │ │ │ │ │ ├── cpu.cpp
│ │ │ │ │ │ ├── d-u.cpp
│ │ │ │ │ │ ├── dt-struct.cpp
│ │ │ │ │ │ ├── e.cpp
│ │ │ │ │ │ ├── eval.cpp
│ │ │ │ │ │ ├── events.cpp
│ │ │ │ │ │ ├── exit.cpp
│ │ │ │ │ │ ├── flush.cpp
│ │ │ │ │ │ ├── g.cpp
│ │ │ │ │ │ ├── gg.cpp
│ │ │ │ │ │ ├── gu.cpp
│ │ │ │ │ │ ├── i.cpp
│ │ │ │ │ │ ├── k.cpp
│ │ │ │ │ │ ├── lm.cpp
│ │ │ │ │ │ ├── load.cpp
│ │ │ │ │ │ ├── output.cpp
│ │ │ │ │ │ ├── p.cpp
│ │ │ │ │ │ ├── pause.cpp
│ │ │ │ │ │ ├── preactivate.cpp
│ │ │ │ │ │ ├── prealloc.cpp
│ │ │ │ │ │ ├── print.cpp
│ │ │ │ │ │ ├── r.cpp
│ │ │ │ │ │ ├── rdmsr.cpp
│ │ │ │ │ │ ├── s.cpp
│ │ │ │ │ │ ├── settings.cpp
│ │ │ │ │ │ ├── sleep.cpp
│ │ │ │ │ │ ├── t.cpp
│ │ │ │ │ │ ├── test.cpp
│ │ │ │ │ │ ├── unload.cpp
│ │ │ │ │ │ ├── wrmsr.cpp
│ │ │ │ │ │ └── x.cpp
│ │ │ │ │ ├── extension-commands/
│ │ │ │ │ │ ├── apic.cpp
│ │ │ │ │ │ ├── cpuid.cpp
│ │ │ │ │ │ ├── crwrite.cpp
│ │ │ │ │ │ ├── dr.cpp
│ │ │ │ │ │ ├── epthook.cpp
│ │ │ │ │ │ ├── epthook2.cpp
│ │ │ │ │ │ ├── exception.cpp
│ │ │ │ │ │ ├── hide.cpp
│ │ │ │ │ │ ├── idt.cpp
│ │ │ │ │ │ ├── interrupt.cpp
│ │ │ │ │ │ ├── ioapic.cpp
│ │ │ │ │ │ ├── ioin.cpp
│ │ │ │ │ │ ├── ioout.cpp
│ │ │ │ │ │ ├── measure.cpp
│ │ │ │ │ │ ├── mode.cpp
│ │ │ │ │ │ ├── monitor.cpp
│ │ │ │ │ │ ├── msrread.cpp
│ │ │ │ │ │ ├── msrwrite.cpp
│ │ │ │ │ │ ├── pa2va.cpp
│ │ │ │ │ │ ├── pcicam.cpp
│ │ │ │ │ │ ├── pcitree.cpp
│ │ │ │ │ │ ├── pmc.cpp
│ │ │ │ │ │ ├── pte.cpp
│ │ │ │ │ │ ├── rev.cpp
│ │ │ │ │ │ ├── smi.cpp
│ │ │ │ │ │ ├── syscall-sysret.cpp
│ │ │ │ │ │ ├── trace.cpp
│ │ │ │ │ │ ├── track.cpp
│ │ │ │ │ │ ├── tsc.cpp
│ │ │ │ │ │ ├── unhide.cpp
│ │ │ │ │ │ ├── va2pa.cpp
│ │ │ │ │ │ ├── vmcall.cpp
│ │ │ │ │ │ └── xsetbv.cpp
│ │ │ │ │ ├── hwdbg-commands/
│ │ │ │ │ │ ├── hw.cpp
│ │ │ │ │ │ └── hw_clk.cpp
│ │ │ │ │ └── meta-commands/
│ │ │ │ │ ├── attach.cpp
│ │ │ │ │ ├── cls.cpp
│ │ │ │ │ ├── connect.cpp
│ │ │ │ │ ├── debug.cpp
│ │ │ │ │ ├── detach.cpp
│ │ │ │ │ ├── disconnect.cpp
│ │ │ │ │ ├── dump.cpp
│ │ │ │ │ ├── formats.cpp
│ │ │ │ │ ├── help.cpp
│ │ │ │ │ ├── kill.cpp
│ │ │ │ │ ├── listen.cpp
│ │ │ │ │ ├── logclose.cpp
│ │ │ │ │ ├── logopen.cpp
│ │ │ │ │ ├── pagein.cpp
│ │ │ │ │ ├── pe.cpp
│ │ │ │ │ ├── process.cpp
│ │ │ │ │ ├── restart.cpp
│ │ │ │ │ ├── script.cpp
│ │ │ │ │ ├── start.cpp
│ │ │ │ │ ├── status.cpp
│ │ │ │ │ ├── switch.cpp
│ │ │ │ │ ├── sym.cpp
│ │ │ │ │ ├── sympath.cpp
│ │ │ │ │ └── thread.cpp
│ │ │ │ ├── communication/
│ │ │ │ │ ├── forwarding.cpp
│ │ │ │ │ ├── namedpipe.cpp
│ │ │ │ │ ├── remote-connection.cpp
│ │ │ │ │ ├── tcpclient.cpp
│ │ │ │ │ └── tcpserver.cpp
│ │ │ │ ├── core/
│ │ │ │ │ ├── break-control.cpp
│ │ │ │ │ ├── debugger.cpp
│ │ │ │ │ ├── interpreter.cpp
│ │ │ │ │ └── steppings.cpp
│ │ │ │ ├── driver-loader/
│ │ │ │ │ └── install.cpp
│ │ │ │ ├── kernel-level/
│ │ │ │ │ ├── kd.cpp
│ │ │ │ │ └── kernel-listening.cpp
│ │ │ │ ├── misc/
│ │ │ │ │ ├── assembler.cpp
│ │ │ │ │ ├── callstack.cpp
│ │ │ │ │ ├── disassembler.cpp
│ │ │ │ │ ├── pci-id.cpp
│ │ │ │ │ └── readmem.cpp
│ │ │ │ ├── script-engine/
│ │ │ │ │ ├── script-engine-wrapper.cpp
│ │ │ │ │ ├── script-engine.cpp
│ │ │ │ │ └── symbol.cpp
│ │ │ │ ├── tests/
│ │ │ │ │ └── tests.cpp
│ │ │ │ ├── transparency/
│ │ │ │ │ ├── gaussian-rng.cpp
│ │ │ │ │ └── transparency.cpp
│ │ │ │ └── user-level/
│ │ │ │ ├── pe-parser.cpp
│ │ │ │ ├── ud.cpp
│ │ │ │ └── user-listening.cpp
│ │ │ ├── export/
│ │ │ │ └── export.cpp
│ │ │ ├── hwdbg/
│ │ │ │ ├── hwdbg-interpreter.cpp
│ │ │ │ └── hwdbg-scripts.cpp
│ │ │ ├── objects/
│ │ │ │ └── objects.cpp
│ │ │ └── rev/
│ │ │ └── rev-ctrl.cpp
│ │ ├── header/
│ │ │ ├── assembler.h
│ │ │ ├── commands.h
│ │ │ ├── common.h
│ │ │ ├── communication.h
│ │ │ ├── debugger.h
│ │ │ ├── export.h
│ │ │ ├── forwarding.h
│ │ │ ├── globals.h
│ │ │ ├── help.h
│ │ │ ├── hwdbg-interpreter.h
│ │ │ ├── hwdbg-scripts.h
│ │ │ ├── inipp.h
│ │ │ ├── install.h
│ │ │ ├── kd.h
│ │ │ ├── libhyperdbg.h
│ │ │ ├── list.h
│ │ │ ├── namedpipe.h
│ │ │ ├── objects.h
│ │ │ ├── pci-id.h
│ │ │ ├── pe-parser.h
│ │ │ ├── rev-ctrl.h
│ │ │ ├── script-engine.h
│ │ │ ├── steppings.h
│ │ │ ├── symbol.h
│ │ │ ├── tests.h
│ │ │ ├── transparency.h
│ │ │ └── ud.h
│ │ ├── libhyperdbg.vcxproj
│ │ ├── libhyperdbg.vcxproj.filters
│ │ ├── pch.cpp
│ │ └── pch.h
│ ├── libraries/
│ │ ├── kdserial/
│ │ │ ├── arm/
│ │ │ │ ├── kdhv.lib
│ │ │ │ ├── kdserialtransport.lib
│ │ │ │ └── kdtelemetry.lib
│ │ │ ├── arm64/
│ │ │ │ ├── kdhv.lib
│ │ │ │ ├── kdserialtransport.lib
│ │ │ │ └── kdtelemetry.lib
│ │ │ ├── x64/
│ │ │ │ ├── kdhv.lib
│ │ │ │ ├── kdserialtransport.lib
│ │ │ │ └── kdtelemetry.lib
│ │ │ └── x86/
│ │ │ ├── kdhv.lib
│ │ │ ├── kdserialtransport.lib
│ │ │ └── kdtelemetry.lib
│ │ └── keystone/
│ │ ├── README.md
│ │ ├── debug-lib/
│ │ │ └── keystone.lib
│ │ └── release-lib/
│ │ └── keystone.lib
│ ├── linux/
│ │ ├── README.md
│ │ └── mock/
│ │ ├── Makefile
│ │ ├── README.md
│ │ └── mock.c
│ ├── miscellaneous/
│ │ └── constants/
│ │ ├── errors.txt
│ │ ├── ioctl.txt
│ │ └── ntstatus.txt
│ ├── script-engine/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── common.c
│ │ │ ├── globals.c
│ │ │ ├── hardware.c
│ │ │ ├── parse-table.c
│ │ │ ├── pch.c
│ │ │ ├── scanner.c
│ │ │ ├── script-engine.c
│ │ │ └── type.c
│ │ ├── header/
│ │ │ ├── common.h
│ │ │ ├── globals.h
│ │ │ ├── hardware.h
│ │ │ ├── parse-table.h
│ │ │ ├── pch.h
│ │ │ ├── scanner.h
│ │ │ ├── script-engine.h
│ │ │ └── type.h
│ │ ├── python/
│ │ │ ├── Boolean_Expression_Grammar.txt
│ │ │ ├── Grammar.txt
│ │ │ ├── generator.py
│ │ │ ├── lalr1_parser.py
│ │ │ ├── lalr_parsing/
│ │ │ │ ├── __init__.py
│ │ │ │ ├── grammar.py
│ │ │ │ ├── lalr_one.py
│ │ │ │ └── lr_zero.py
│ │ │ ├── ll1_parser.py
│ │ │ └── util.py
│ │ ├── script/
│ │ │ ├── fibonacci.ds
│ │ │ └── test.ds
│ │ ├── script-engine.vcxproj
│ │ ├── script-engine.vcxproj.filters
│ │ ├── script_include.c
│ │ └── script_include.h
│ ├── script-eval/
│ │ ├── code/
│ │ │ ├── Functions.c
│ │ │ ├── Keywords.c
│ │ │ ├── PseudoRegisters.c
│ │ │ ├── Regs.c
│ │ │ └── ScriptEngineEval.c
│ │ └── header/
│ │ ├── ScriptEngineHeader.h
│ │ └── ScriptEngineInternalHeader.h
│ ├── symbol-parser/
│ │ ├── CMakeLists.txt
│ │ ├── code/
│ │ │ ├── casting.cpp
│ │ │ ├── common-utils.cpp
│ │ │ └── symbol-parser.cpp
│ │ ├── header/
│ │ │ ├── common-utils.h
│ │ │ └── symbol-parser.h
│ │ ├── pch.cpp
│ │ ├── pch.h
│ │ ├── symbol-parser.vcxproj
│ │ └── symbol-parser.vcxproj.filters
│ └── tests/
│ ├── command-parser/
│ │ ├── command-parser-failed-testcases.txt
│ │ └── command-parser-testcases.txt
│ └── hwdbg-tests/
│ └── scripts/
│ ├── codes/
│ │ ├── script_conditional_statement_global_var.hds
│ │ ├── script_conditional_statements_pins.hds
│ │ ├── script_conditional_statements_ports.hds
│ │ ├── script_conditional_statements_ports_with_port_assignments.hds
│ │ ├── script_simple_pin_assignments.hds
│ │ └── script_simple_port_assignments.hds
│ └── compiled-scripts/
│ ├── script_conditional_statement_global_var.hds.hex.txt
│ ├── script_conditional_statements_pins.hds.hex.txt
│ ├── script_conditional_statements_ports.hds.hex.txt
│ ├── script_conditional_statements_ports_with_port_assignments.hds.hex.txt
│ ├── script_simple_pin_assignments.hds.hex.txt
│ └── script_simple_port_assignments.hds.hex.txt
└── utils/
├── clang-format.bat
├── clean.bat
├── counter.py
├── doxygen.bat
├── msvc-build.bat
└── test-environment.py
SYMBOL INDEX (2931 symbols across 378 files)
FILE: examples/kernel/hyperdbg_driver/code/core/Core.c
function BOOLEAN (line 18) | BOOLEAN
FILE: examples/kernel/hyperdbg_driver/code/driver/Driver.c
function NTSTATUS (line 22) | NTSTATUS
function VOID (line 96) | VOID
function NTSTATUS (line 118) | NTSTATUS
function NTSTATUS (line 190) | NTSTATUS
function NTSTATUS (line 214) | NTSTATUS
function NTSTATUS (line 238) | NTSTATUS
function NTSTATUS (line 264) | NTSTATUS
FILE: examples/kernel/hyperdbg_driver/code/driver/Ioctl.c
function NTSTATUS (line 22) | NTSTATUS
FILE: examples/kernel/hyperdbg_driver/code/driver/Loader.c
function BOOLEAN (line 18) | BOOLEAN
function VOID (line 103) | VOID
FILE: examples/user/hyperdbg_app/code/hyperdbg-app.cpp
function hyperdbg_show_messages (line 23) | int
function hyperdbg_show_messages_shared_buffer (line 36) | int
function hyperdbg_load (line 49) | int
function main (line 121) | int
FILE: hwdbg/sim/hwdbg/DebuggerModuleTestingBRAM/test_DebuggerModuleTestingBRAM.py
function extract_number (line 102) | def extract_number(s):
function print_bram_content (line 105) | def print_bram_content(dut):
function get_symbol_value (line 232) | def get_symbol_value(dut, value):
function get_symbol_type (line 247) | def get_symbol_type(dut, type):
function get_stage_index (line 262) | def get_stage_index(dut, stage_index):
function extract_stage_details (line 278) | def extract_stage_details(dut):
function set_input_pins (line 390) | def set_input_pins(dut):
function DebuggerModuleTestingBRAM_test (line 425) | async def DebuggerModuleTestingBRAM_test(dut):
FILE: hwdbg/sim/hwdbg/communication/DebuggerPacketReceiver/test_DebuggerPacketReceiver.py
function DebuggerPacketReceiver_test (line 41) | async def DebuggerPacketReceiver_test(dut):
FILE: hwdbg/sim/hwdbg/communication/DebuggerPacketSender/test_DebuggerPacketSender.py
function DebuggerPacketSender_test (line 42) | async def DebuggerPacketSender_test(dut):
FILE: hwdbg/sim/hwdbg/communication/SendReceiveSynchronizer/test_SendReceiveSynchronizer.py
function SendReceiveSynchronizer_test (line 49) | async def SendReceiveSynchronizer_test(dut):
FILE: hyperdbg/dependencies/keystone/include/keystone/arm.h
type ks_err_asm_arm (line 13) | typedef enum ks_err_asm_arm {
FILE: hyperdbg/dependencies/keystone/include/keystone/arm64.h
type ks_err_asm_arm64 (line 13) | typedef enum ks_err_asm_arm64 {
FILE: hyperdbg/dependencies/keystone/include/keystone/evm.h
type ks_err_asm_evm (line 13) | typedef enum ks_err_asm_evm {
FILE: hyperdbg/dependencies/keystone/include/keystone/hexagon.h
type ks_err_asm_hexagon (line 13) | typedef enum ks_err_asm_hexagon {
FILE: hyperdbg/dependencies/keystone/include/keystone/keystone.h
type ks_struct (line 38) | struct ks_struct
type ks_engine (line 39) | typedef struct ks_struct ks_engine;
type ks_arch (line 57) | typedef enum ks_arch {
type ks_mode (line 72) | typedef enum ks_mode {
type ks_err (line 109) | typedef enum ks_err {
type ks_opt_type (line 173) | typedef enum ks_opt_type {
type ks_opt_value (line 180) | typedef enum ks_opt_value {
FILE: hyperdbg/dependencies/keystone/include/keystone/mips.h
type ks_err_asm_mips (line 13) | typedef enum ks_err_asm_mips {
FILE: hyperdbg/dependencies/keystone/include/keystone/ppc.h
type ks_err_asm_ppc (line 13) | typedef enum ks_err_asm_ppc {
FILE: hyperdbg/dependencies/keystone/include/keystone/riscv.h
type ks_err_asm_riscv (line 13) | typedef enum ks_err_asm_riscv {
FILE: hyperdbg/dependencies/keystone/include/keystone/sparc.h
type ks_err_asm_sparc (line 13) | typedef enum ks_err_asm_sparc {
FILE: hyperdbg/dependencies/keystone/include/keystone/systemz.h
type ks_err_asm_systemz (line 13) | typedef enum ks_err_asm_systemz {
FILE: hyperdbg/dependencies/keystone/include/keystone/x86.h
type ks_err_asm_x86 (line 13) | typedef enum ks_err_asm_x86 {
FILE: hyperdbg/hyperdbg-cli/hyperdbg-cli.cpp
function main (line 36) | int
FILE: hyperdbg/hyperdbg-test/code/hardware/hwdbg-tests.cpp
function commentContent (line 22) | std::string
function BOOLEAN (line 44) | BOOLEAN
function BOOLEAN (line 194) | BOOLEAN
FILE: hyperdbg/hyperdbg-test/code/main.cpp
function main (line 21) | int
FILE: hyperdbg/hyperdbg-test/code/namedpipe.cpp
function UINT32 (line 19) | UINT32
function HANDLE (line 175) | HANDLE
function BOOLEAN (line 206) | BOOLEAN
function UINT32 (line 236) | UINT32
function BOOLEAN (line 271) | BOOLEAN
function VOID (line 304) | VOID
function HANDLE (line 327) | HANDLE
function BOOLEAN (line 373) | BOOLEAN
function UINT32 (line 416) | UINT32
function VOID (line 450) | VOID
function NamedPipeServerExample (line 467) | int
function NamedPipeClientExample (line 545) | int
FILE: hyperdbg/hyperdbg-test/code/tests/test-parser.cpp
function CHAR_PTR_PTR (line 22) | CHAR_PTR_PTR
function VOID (line 54) | VOID
function parseTestCases (line 77) | std::vector<std::pair<std::string, std::vector<std::string>>>
function countBackslashNUpToPosition (line 186) | int
function VOID (line 213) | VOID
function BOOLEAN (line 284) | BOOLEAN
FILE: hyperdbg/hyperdbg-test/code/tests/test-semantic-scripts.cpp
function VOID (line 23) | VOID
function BOOLEAN (line 94) | BOOLEAN
FILE: hyperdbg/hyperdbg-test/code/tools.cpp
function Uint64ToString (line 14) | std::string
function BOOLEAN (line 22) | BOOLEAN
function ConvertToString (line 32) | std::string
FILE: hyperdbg/hyperevade/code/SyscallFootprints.c
function VOID (line 14) | VOID
function VOID (line 20) | VOID
function VOID (line 43) | VOID
function VOID (line 163) | VOID
function PVOID (line 261) | PVOID
function VOID (line 323) | VOID
function VOID (line 371) | VOID
function VOID (line 427) | VOID
function VOID (line 454) | VOID
function VOID (line 482) | VOID
function VOID (line 543) | VOID
function VOID (line 603) | VOID
function VOID (line 744) | VOID
function BOOLEAN (line 813) | BOOLEAN
function BOOLEAN (line 867) | BOOLEAN
function UINT64 (line 1046) | UINT64
function UINT64 (line 1230) | UINT64
function UINT64 (line 1450) | UINT64
function UINT64 (line 1532) | UINT64
function VOID (line 1593) | VOID
function VOID (line 1746) | VOID
FILE: hyperdbg/hyperevade/code/Transparency.c
function BOOLEAN (line 22) | BOOLEAN
function BOOLEAN (line 88) | BOOLEAN
function UINT32 (line 112) | UINT32
function BOOLEAN (line 131) | BOOLEAN
FILE: hyperdbg/hyperevade/code/UnloadDll.c
function NTSTATUS (line 21) | NTSTATUS
function NTSTATUS (line 30) | NTSTATUS
FILE: hyperdbg/hyperevade/code/VmxFootprints.c
function VOID (line 22) | VOID
function BOOLEAN (line 50) | BOOLEAN
function BOOLEAN (line 92) | BOOLEAN
function VOID (line 130) | VOID
FILE: hyperdbg/hyperevade/header/SyscallFootprints.h
type SYSTEM_INFORMATION_CLASS (line 22) | typedef enum _SYSTEM_INFORMATION_CLASS
type SYSTEM_CODEINTEGRITY_INFORMATION (line 42) | typedef struct _SYSTEM_CODEINTEGRITY_INFORMATION
type SYSTEM_PROCESS_INFORMATION (line 53) | typedef struct _SYSTEM_PROCESS_INFORMATION
type SSDTStruct (line 84) | typedef struct _SSDTStruct
type SYSTEM_MODULE_ENTRY (line 100) | typedef struct _SYSTEM_MODULE_ENTRY
type SYSTEM_MODULE_INFORMATION (line 118) | typedef struct _SYSTEM_MODULE_INFORMATION
FILE: hyperdbg/hyperevade/header/Transparency.h
type TRANSPARENCY_MEASUREMENTS (line 28) | typedef struct _TRANSPARENCY_MEASUREMENTS
type TRANSPARENCY_PROCESS (line 46) | typedef struct _TRANSPARENCY_PROCESS
FILE: hyperdbg/hyperhv/code/broadcast/Broadcast.c
function VOID (line 20) | VOID
function VOID (line 34) | VOID
function VOID (line 48) | VOID
function VOID (line 62) | VOID
function VOID (line 76) | VOID
function VOID (line 90) | VOID
function VOID (line 104) | VOID
function VOID (line 118) | VOID
function VOID (line 131) | VOID
function VOID (line 144) | VOID
function VOID (line 159) | VOID
function VOID (line 172) | VOID
function VOID (line 186) | VOID
function VOID (line 199) | VOID
function VOID (line 212) | VOID
function VOID (line 226) | VOID
function VOID (line 239) | VOID
function VOID (line 253) | VOID
function VOID (line 266) | VOID
function VOID (line 282) | VOID
function VOID (line 298) | VOID
function VOID (line 311) | VOID
function VOID (line 326) | VOID
function VOID (line 340) | VOID
function VOID (line 354) | VOID
function VOID (line 367) | VOID
function VOID (line 381) | VOID
function VOID (line 394) | VOID
function VOID (line 408) | VOID
function VOID (line 421) | VOID
function VOID (line 435) | VOID
function VOID (line 446) | VOID
function VOID (line 457) | VOID
function VOID (line 468) | VOID
function VOID (line 479) | VOID
function VOID (line 490) | VOID
function VOID (line 501) | VOID
function VOID (line 512) | VOID
function VOID (line 523) | VOID
function VOID (line 534) | VOID
FILE: hyperdbg/hyperhv/code/broadcast/DpcRoutines.c
function NTSTATUS (line 34) | NTSTATUS
function BOOLEAN (line 127) | BOOLEAN
function VOID (line 160) | VOID
function VOID (line 188) | VOID
function VOID (line 216) | VOID
function VOID (line 245) | VOID
function VOID (line 274) | VOID
function VOID (line 303) | VOID
function VOID (line 332) | VOID
function VOID (line 360) | VOID
function VOID (line 389) | VOID
function VOID (line 418) | VOID
function VOID (line 446) | VOID
function VOID (line 477) | VOID
function VOID (line 508) | VOID
function VOID (line 539) | VOID
function VOID (line 570) | VOID
function VOID (line 601) | VOID
function VOID (line 632) | VOID
function VOID (line 663) | VOID
function VOID (line 694) | VOID
function VOID (line 725) | VOID
function VOID (line 755) | VOID
function VOID (line 786) | VOID
function VOID (line 816) | VOID
function VOID (line 847) | VOID
function VOID (line 878) | VOID
function VOID (line 910) | VOID
function VOID (line 943) | VOID
function VOID (line 975) | VOID
function VOID (line 1005) | VOID
function VOID (line 1036) | VOID
function VOID (line 1067) | VOID
function VOID (line 1097) | VOID
function VOID (line 1128) | VOID
function VOID (line 1162) | VOID
function VOID (line 1193) | VOID
function VOID (line 1223) | VOID
function VOID (line 1253) | VOID
function VOID (line 1284) | VOID
function VOID (line 1315) | VOID
function VOID (line 1349) | VOID
function VOID (line 1379) | VOID
function VOID (line 1410) | VOID
function VOID (line 1441) | VOID
function VOID (line 1472) | VOID
function VOID (line 1503) | VOID
function VOID (line 1534) | VOID
function VOID (line 1570) | VOID
function VOID (line 1606) | VOID
function VOID (line 1637) | VOID
function VOID (line 1670) | VOID
function VOID (line 1713) | VOID
function VOID (line 1744) | VOID
FILE: hyperdbg/hyperhv/code/common/Bitwise.c
function TestBit (line 21) | int
function ClearBit (line 33) | void
function SetBit (line 45) | void
FILE: hyperdbg/hyperhv/code/common/Common.c
function _Use_decl_annotations_ (line 22) | _Use_decl_annotations_
function PCHAR (line 47) | PCHAR
function BOOLEAN (line 68) | BOOLEAN
function VOID (line 84) | VOID
function BOOLEAN (line 96) | BOOLEAN
function VOID (line 148) | VOID
function BOOLEAN (line 201) | BOOLEAN
FILE: hyperdbg/hyperhv/code/common/UnloadDll.c
function NTSTATUS (line 21) | NTSTATUS
function NTSTATUS (line 30) | NTSTATUS
FILE: hyperdbg/hyperhv/code/components/registers/DebugRegisters.c
function BOOLEAN (line 36) | BOOLEAN
FILE: hyperdbg/hyperhv/code/devices/Apic.c
function UINT64 (line 25) | UINT64
function VOID (line 56) | VOID
function VOID (line 77) | VOID
function VOID (line 135) | VOID
function VOID (line 149) | VOID
function UINT64 (line 161) | UINT64
function BOOLEAN (line 172) | BOOLEAN
function BOOLEAN (line 232) | BOOLEAN
function VOID (line 282) | VOID
function VOID (line 300) | VOID
function BOOLEAN (line 323) | BOOLEAN
function BOOLEAN (line 344) | BOOLEAN
function BOOLEAN (line 365) | BOOLEAN
function VOID (line 428) | VOID
function VOID (line 454) | VOID
FILE: hyperdbg/hyperhv/code/devices/Pci.c
function QWORD (line 24) | QWORD
function BOOLEAN (line 73) | BOOLEAN
FILE: hyperdbg/hyperhv/code/disassembler/Disassembler.c
function BOOLEAN (line 25) | BOOLEAN
function BOOLEAN (line 120) | BOOLEAN
function UINT32 (line 224) | UINT32
function UINT32 (line 296) | UINT32
function UINT32 (line 328) | UINT32
function UINT32 (line 371) | UINT32
FILE: hyperdbg/hyperhv/code/disassembler/ZydisKernel.c
function VOID (line 71) | VOID
function _Use_decl_annotations_ (line 90) | _Use_decl_annotations_
FILE: hyperdbg/hyperhv/code/features/CompatibilityChecks.c
function BOOLEAN (line 20) | BOOLEAN
function UINT32 (line 55) | UINT32
function UINT32 (line 73) | UINT32
function BOOLEAN (line 91) | BOOLEAN
function BOOLEAN (line 106) | BOOLEAN
function BOOLEAN (line 121) | BOOLEAN
function BOOLEAN (line 152) | BOOLEAN
function VOID (line 182) | VOID
FILE: hyperdbg/hyperhv/code/features/DirtyLogging.c
function BOOLEAN (line 20) | BOOLEAN
function BOOLEAN (line 104) | BOOLEAN
function VOID (line 155) | VOID
function VOID (line 181) | VOID
function VOID (line 215) | VOID
function BOOLEAN (line 227) | BOOLEAN
function VOID (line 299) | VOID
FILE: hyperdbg/hyperhv/code/globals/GlobalVariableManagement.c
function BOOLEAN (line 19) | BOOLEAN
function VOID (line 51) | VOID
FILE: hyperdbg/hyperhv/code/hooks/ept-hook/EptHook.c
function _Must_inspect_result_ (line 23) | _Must_inspect_result_
function VOID (line 69) | VOID
function VOID (line 109) | VOID
function BOOLEAN (line 144) | static BOOLEAN
function BOOLEAN (line 383) | static BOOLEAN
function PVOID (line 455) | PVOID
function BOOLEAN (line 479) | BOOLEAN
function BOOLEAN (line 547) | BOOLEAN
function BOOLEAN (line 619) | BOOLEAN
function BOOLEAN (line 645) | BOOLEAN
function BOOLEAN (line 670) | BOOLEAN
function VOID (line 718) | VOID
function VOID (line 757) | VOID
function VOID (line 806) | VOID
function BOOLEAN (line 848) | BOOLEAN
function BOOLEAN (line 994) | BOOLEAN
function BOOLEAN (line 1389) | BOOLEAN
function BOOLEAN (line 1561) | BOOLEAN
function BOOLEAN (line 1601) | BOOLEAN
function BOOLEAN (line 1632) | BOOLEAN
function BOOLEAN (line 1670) | BOOLEAN
function BOOLEAN (line 1705) | BOOLEAN
function BOOLEAN (line 1845) | BOOLEAN
function UINT32 (line 1884) | UINT32
function BOOLEAN (line 1921) | BOOLEAN
function VOID (line 1982) | VOID
function BOOLEAN (line 2050) | BOOLEAN
function BOOLEAN (line 2228) | BOOLEAN
function BOOLEAN (line 2315) | BOOLEAN
function BOOLEAN (line 2358) | BOOLEAN
function BOOLEAN (line 2389) | BOOLEAN
function BOOLEAN (line 2423) | BOOLEAN
function VOID (line 2450) | VOID
function PVOID (line 2502) | PVOID
function BOOLEAN (line 2585) | BOOLEAN
function BOOLEAN (line 2643) | BOOLEAN
function BOOLEAN (line 2701) | BOOLEAN
FILE: hyperdbg/hyperhv/code/hooks/ept-hook/ExecTrap.c
function BOOLEAN (line 28) | BOOLEAN
function BOOLEAN (line 255) | BOOLEAN
function VOID (line 330) | VOID
function BOOLEAN (line 368) | BOOLEAN
function VOID (line 431) | VOID
function VOID (line 479) | VOID
function VOID (line 499) | VOID
function VOID (line 540) | VOID
function VOID (line 581) | VOID
function VOID (line 624) | VOID
function BOOLEAN (line 654) | BOOLEAN
function VOID (line 720) | VOID
function VOID (line 777) | VOID
function BOOLEAN (line 789) | BOOLEAN
function BOOLEAN (line 814) | BOOLEAN
FILE: hyperdbg/hyperhv/code/hooks/ept-hook/ModeBasedExecHook.c
function BOOLEAN (line 22) | BOOLEAN
function BOOLEAN (line 66) | BOOLEAN
function BOOLEAN (line 118) | BOOLEAN
function VOID (line 188) | VOID
function BOOLEAN (line 212) | BOOLEAN
function VOID (line 274) | VOID
FILE: hyperdbg/hyperhv/code/hooks/syscall-hook/EferHook.c
function VOID (line 30) | VOID
function _Use_decl_annotations_ (line 113) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 200) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 265) | _Use_decl_annotations_
FILE: hyperdbg/hyperhv/code/hooks/syscall-hook/SyscallCallback.c
function BOOLEAN (line 20) | BOOLEAN
function BOOLEAN (line 83) | BOOLEAN
function BOOLEAN (line 131) | BOOLEAN
function BOOLEAN (line 214) | BOOLEAN
function BOOLEAN (line 273) | BOOLEAN
function VOID (line 390) | VOID
FILE: hyperdbg/hyperhv/code/interface/Callback.c
function VMM_CALLBACK_TRIGGERING_EVENT_STATUS_TYPE (line 25) | VMM_CALLBACK_TRIGGERING_EVENT_STATUS_TYPE
function VOID (line 46) | VOID
function BOOLEAN (line 71) | BOOLEAN
function VOID (line 96) | VOID
function VOID (line 118) | VOID
function BOOLEAN (line 142) | BOOLEAN
function BOOLEAN (line 165) | BOOLEAN
function BOOLEAN (line 187) | BOOLEAN
function BOOLEAN (line 210) | BOOLEAN
function BOOLEAN (line 231) | BOOLEAN
function BOOLEAN (line 252) | BOOLEAN
function VOID (line 273) | VOID
FILE: hyperdbg/hyperhv/code/interface/Configuration.c
function VOID (line 20) | VOID
function BOOLEAN (line 31) | BOOLEAN
function VOID (line 42) | VOID
function VOID (line 54) | VOID
function BOOLEAN (line 66) | BOOLEAN
function BOOLEAN (line 78) | BOOLEAN
function VOID (line 89) | VOID
function VOID (line 100) | VOID
function VOID (line 111) | VOID
function VOID (line 122) | VOID
function VOID (line 133) | VOID
function VOID (line 144) | VOID
function BOOLEAN (line 158) | BOOLEAN
function BOOLEAN (line 171) | BOOLEAN
function BOOLEAN (line 189) | BOOLEAN
function BOOLEAN (line 210) | BOOLEAN
function VOID (line 228) | VOID
function VOID (line 240) | VOID
function BOOLEAN (line 262) | BOOLEAN
function BOOLEAN (line 279) | BOOLEAN
function BOOLEAN (line 296) | BOOLEAN
function BOOLEAN (line 319) | BOOLEAN
function BOOLEAN (line 339) | BOOLEAN
function BOOLEAN (line 359) | BOOLEAN
function BOOLEAN (line 376) | BOOLEAN
function BOOLEAN (line 394) | BOOLEAN
function BOOLEAN (line 412) | BOOLEAN
function VOID (line 427) | VOID
function VOID (line 440) | VOID
function VOID (line 460) | VOID
function VOID (line 473) | VOID
function VOID (line 486) | VOID
function VOID (line 499) | VOID
function VOID (line 513) | VOID
function VOID (line 527) | VOID
function VOID (line 541) | VOID
function VOID (line 555) | VOID
function VOID (line 569) | VOID
FILE: hyperdbg/hyperhv/code/interface/DirectVmcall.c
function NTSTATUS (line 24) | NTSTATUS
function NTSTATUS (line 44) | NTSTATUS
function NTSTATUS (line 64) | NTSTATUS
function NTSTATUS (line 83) | NTSTATUS
function NTSTATUS (line 102) | NTSTATUS
function NTSTATUS (line 121) | NTSTATUS
function NTSTATUS (line 140) | NTSTATUS
function NTSTATUS (line 159) | NTSTATUS
function NTSTATUS (line 178) | NTSTATUS
function NTSTATUS (line 197) | NTSTATUS
function NTSTATUS (line 216) | NTSTATUS
function NTSTATUS (line 235) | NTSTATUS
function NTSTATUS (line 254) | NTSTATUS
function NTSTATUS (line 273) | NTSTATUS
function NTSTATUS (line 292) | NTSTATUS
function NTSTATUS (line 311) | NTSTATUS
function NTSTATUS (line 330) | NTSTATUS
function NTSTATUS (line 349) | NTSTATUS
function NTSTATUS (line 368) | NTSTATUS
function NTSTATUS (line 387) | NTSTATUS
function NTSTATUS (line 406) | NTSTATUS
function NTSTATUS (line 425) | NTSTATUS
function NTSTATUS (line 445) | NTSTATUS
function NTSTATUS (line 464) | NTSTATUS
function NTSTATUS (line 483) | NTSTATUS
function NTSTATUS (line 503) | NTSTATUS
function NTSTATUS (line 523) | NTSTATUS
FILE: hyperdbg/hyperhv/code/interface/Dispatch.c
function VOID (line 24) | VOID
function VOID (line 68) | VOID
function VOID (line 112) | VOID
function VOID (line 179) | VOID
function VOID (line 247) | VOID
function VOID (line 300) | VOID
function VOID (line 363) | VOID
function VOID (line 439) | VOID
function VOID (line 498) | VOID
function VOID (line 572) | VOID
function VOID (line 617) | VOID
function VOID (line 662) | VOID
function VOID (line 707) | VOID
function VOID (line 764) | VOID
function VOID (line 828) | VOID
function VOID (line 923) | VOID
function VOID (line 1033) | VOID
function VOID (line 1065) | VOID
function BOOLEAN (line 1089) | BOOLEAN
function BOOLEAN (line 1183) | BOOLEAN
function BOOLEAN (line 1277) | BOOLEAN
function VOID (line 1370) | VOID
function VOID (line 1417) | VOID
function VOID (line 1462) | VOID
FILE: hyperdbg/hyperhv/code/interface/Export.c
function VOID (line 21) | VOID
function VOID (line 33) | VOID
function VOID (line 46) | VOID
function VOID (line 59) | VOID
function VOID (line 72) | VOID
function VOID (line 85) | VOID
function VOID (line 97) | VOID
function VOID (line 109) | VOID
function VOID (line 121) | VOID
function VOID (line 133) | VOID
function VOID (line 146) | VOID
function VOID (line 161) | VOID
function VOID (line 176) | VOID
function VOID (line 190) | VOID
function UINT32 (line 202) | UINT32
function VOID (line 214) | VOID
function VOID (line 226) | VOID
function VOID (line 238) | VOID
function VOID (line 252) | VOID
function VOID (line 266) | VOID
function VOID (line 279) | VOID
function VOID (line 292) | VOID
function VOID (line 305) | VOID
function UINT64 (line 317) | UINT64
function VOID (line 329) | VOID
function UINT16 (line 340) | UINT16
function UINT64 (line 351) | UINT64
function VOID (line 363) | VOID
function UINT64 (line 374) | UINT64
function VOID (line 386) | VOID
function UINT64 (line 397) | UINT64
function UINT64 (line 408) | UINT64
function VOID (line 420) | VOID
function BOOLEAN (line 432) | BOOLEAN
function BOOLEAN (line 447) | BOOLEAN
function BOOLEAN (line 462) | BOOLEAN
function VOID (line 477) | VOID
function VOID (line 488) | VOID
function VOID (line 504) | VOID
function VOID (line 517) | VOID
function BOOLEAN (line 529) | BOOLEAN
function VOID (line 540) | VOID
function BOOLEAN (line 551) | BOOLEAN
function BOOLEAN (line 562) | BOOLEAN
function VOID (line 574) | VOID
function VOID (line 586) | VOID
function VOID (line 598) | VOID
function UINT32 (line 610) | UINT32
function UINT32 (line 622) | UINT32
function VOID (line 634) | VOID
function VOID (line 649) | VOID
function VOID (line 666) | VOID
function VOID (line 685) | VOID
function NTSTATUS (line 706) | NTSTATUS
function VOID (line 720) | VOID
function VOID (line 731) | VOID
function VOID (line 742) | VOID
function INT32 (line 755) | INT32
function INT32 (line 769) | INT32
function INT32 (line 782) | INT32
function INT32 (line 796) | INT32
function INT32 (line 810) | INT32
function VOID (line 822) | VOID
function VOID (line 835) | VOID
function BOOLEAN (line 848) | BOOLEAN
function BOOLEAN (line 860) | BOOLEAN
function VOID (line 874) | VOID
function BOOLEAN (line 889) | BOOLEAN
FILE: hyperdbg/hyperhv/code/interface/HyperEvade.c
function BOOLEAN (line 23) | BOOLEAN
function BOOLEAN (line 100) | BOOLEAN
FILE: hyperdbg/hyperhv/code/memory/AddressCheck.c
function BOOLEAN (line 23) | BOOLEAN
function BOOLEAN (line 65) | BOOLEAN
function BOOLEAN (line 119) | BOOLEAN
function BOOLEAN (line 156) | BOOLEAN
function BOOLEAN (line 317) | BOOLEAN
function BOOLEAN (line 331) | BOOLEAN
function UINT32 (line 344) | UINT32
FILE: hyperdbg/hyperhv/code/memory/Conversion.c
function _Use_decl_annotations_ (line 20) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 40) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 88) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 135) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 152) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 169) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 213) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 256) | _Use_decl_annotations_
FILE: hyperdbg/hyperhv/code/memory/Layout.c
function _Use_decl_annotations_ (line 22) | _Use_decl_annotations_
function CR3_TYPE (line 54) | CR3_TYPE
function CR3_TYPE (line 74) | CR3_TYPE
function UINT64 (line 89) | UINT64
FILE: hyperdbg/hyperhv/code/memory/MemoryManager.c
function BOOLEAN (line 23) | BOOLEAN
function BOOLEAN (line 52) | BOOLEAN
function BOOLEAN (line 85) | BOOLEAN
function BOOLEAN (line 231) | BOOLEAN
FILE: hyperdbg/hyperhv/code/memory/MemoryMapper.c
function _Use_decl_annotations_ (line 23) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 40) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 57) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 86) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 125) | _Use_decl_annotations_
function BOOLEAN (line 173) | BOOLEAN
function _Use_decl_annotations_ (line 250) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 312) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 416) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 444) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 473) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 523) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 571) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 589) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 602) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 617) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 631) | _Use_decl_annotations_
function VOID (line 660) | VOID
function VOID (line 715) | VOID
function _Use_decl_annotations_ (line 759) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 846) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 929) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 987) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1096) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1121) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1143) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1163) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1208) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1255) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1319) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1427) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1454) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1475) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1500) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1580) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1659) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1740) | _Use_decl_annotations_
function BOOLEAN (line 1777) | BOOLEAN
function BOOLEAN (line 1801) | BOOLEAN
FILE: hyperdbg/hyperhv/code/memory/PoolManager.c
function BOOLEAN (line 20) | BOOLEAN
function VOID (line 36) | VOID
function BOOLEAN (line 52) | BOOLEAN
function VOID (line 86) | VOID
function BOOLEAN (line 135) | BOOLEAN
function VOID (line 176) | VOID
function UINT64 (line 211) | UINT64
function BOOLEAN (line 252) | BOOLEAN
function BOOLEAN (line 301) | BOOLEAN
function BOOLEAN (line 414) | BOOLEAN
FILE: hyperdbg/hyperhv/code/memory/Segmentation.c
function _Use_decl_annotations_ (line 22) | _Use_decl_annotations_
function VOID (line 94) | VOID
FILE: hyperdbg/hyperhv/code/memory/SwitchLayout.c
function _Use_decl_annotations_ (line 23) | _Use_decl_annotations_
function CR3_TYPE (line 69) | CR3_TYPE
function _Use_decl_annotations_ (line 97) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 123) | _Use_decl_annotations_
FILE: hyperdbg/hyperhv/code/mmio/MmioShadowing.c
function VOID (line 14) | VOID
FILE: hyperdbg/hyperhv/code/processor/Idt.c
function VOID (line 20) | VOID
FILE: hyperdbg/hyperhv/code/processor/Smm.c
function UINT64 (line 20) | UINT64
function BOOLEAN (line 38) | BOOLEAN
function BOOLEAN (line 82) | BOOLEAN
FILE: hyperdbg/hyperhv/code/vmm/ept/Ept.c
function BOOLEAN (line 21) | BOOLEAN
function UINT8 (line 68) | UINT8
function BOOLEAN (line 155) | BOOLEAN
function PEPT_PML1_ENTRY (line 303) | PEPT_PML1_ENTRY
function PVOID (line 367) | PVOID
function PEPT_PML2_ENTRY (line 430) | PEPT_PML2_ENTRY
function BOOLEAN (line 461) | BOOLEAN
function BOOLEAN (line 597) | BOOLEAN
function BOOLEAN (line 629) | BOOLEAN
function PVMM_EPT_PAGE_TABLE (line 661) | PVMM_EPT_PAGE_TABLE
function BOOLEAN (line 834) | BOOLEAN
function _Use_decl_annotations_ (line 918) | _Use_decl_annotations_
function BOOLEAN (line 1077) | BOOLEAN
function VOID (line 1121) | VOID
function _Use_decl_annotations_ (line 1149) | _Use_decl_annotations_
function BOOLEAN (line 1186) | BOOLEAN
function BOOLEAN (line 1286) | BOOLEAN
FILE: hyperdbg/hyperhv/code/vmm/ept/Invept.c
function UCHAR (line 21) | UCHAR
function UCHAR (line 39) | UCHAR
function UCHAR (line 53) | UCHAR
FILE: hyperdbg/hyperhv/code/vmm/ept/Vpid.c
function _Use_decl_annotations_ (line 21) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 47) | _Use_decl_annotations_
function VOID (line 61) | VOID
function VOID (line 73) | VOID
function VOID (line 85) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/Counters.c
function VOID (line 20) | VOID
function VOID (line 42) | VOID
function VOID (line 61) | VOID
function VOID (line 79) | VOID
function VOID (line 93) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/CrossVmexits.c
function VOID (line 20) | VOID
function VOID (line 52) | VOID
function VOID (line 69) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/Events.c
function VOID (line 23) | VOID
function VOID (line 45) | VOID
function VOID (line 61) | VOID
function VOID (line 78) | VOID
function VOID (line 95) | VOID
function VOID (line 111) | VOID
function VOID (line 123) | VOID
function VOID (line 154) | VOID
function VOID (line 191) | VOID
function VOID (line 236) | VOID
function VOID (line 280) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/Hv.c
function UINT32 (line 22) | UINT32
function BOOLEAN (line 41) | BOOLEAN
function VOID (line 66) | VOID
function VOID (line 139) | VOID
function VOID (line 271) | VOID
function VOID (line 297) | VOID
function VOID (line 319) | inline VOID
function VOID (line 332) | inline VOID
function VOID (line 344) | VOID
function VOID (line 376) | VOID
function VOID (line 397) | VOID
function VOID (line 428) | VOID
function VOID (line 458) | VOID
function VOID (line 520) | VOID
function VOID (line 554) | VOID
function VOID (line 569) | VOID
function VOID (line 583) | VOID
function UINT32 (line 598) | UINT32
function VOID (line 617) | VOID
function VOID (line 651) | VOID
function VOID (line 688) | VOID
function VOID (line 725) | VOID
function VOID (line 759) | VOID
function VOID (line 967) | VOID
function VOID (line 1003) | VOID
function VOID (line 1036) | VOID
function VOID (line 1053) | VOID
function VOID (line 1069) | VOID
function VOID (line 1086) | VOID
function VOID (line 1122) | VOID
function VOID (line 1135) | VOID
function UINT16 (line 1146) | UINT16
function UINT64 (line 1165) | UINT64
function VOID (line 1181) | VOID
function UINT64 (line 1192) | UINT64
function VOID (line 1208) | VOID
function UINT64 (line 1219) | UINT64
function UINT64 (line 1234) | UINT64
function VOID (line 1250) | VOID
function VOID (line 1263) | VOID
function VOID (line 1285) | VOID
function VOID (line 1314) | VOID
function BOOLEAN (line 1336) | BOOLEAN
function VOID (line 1406) | VOID
function VOID (line 1443) | VOID
function UINT64 (line 1468) | UINT64
function VOID (line 1483) | VOID
function UINT64 (line 1494) | UINT64
function VOID (line 1512) | VOID
function VOID (line 1526) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/IdtEmulation.c
function VOID (line 22) | VOID
function VOID (line 72) | VOID
function VOID (line 116) | VOID
function VOID (line 188) | VOID
function VOID (line 295) | VOID
function VOID (line 335) | VOID
function BOOLEAN (line 473) | BOOLEAN
function VOID (line 510) | VOID
function VOID (line 603) | VOID
function BOOLEAN (line 623) | BOOLEAN
function VOID (line 660) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/IoHandler.c
function VOID (line 23) | VOID
function BOOLEAN (line 213) | BOOLEAN
function VOID (line 240) | VOID
function VOID (line 267) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/ManageRegs.c
function VOID (line 21) | VOID
function VOID (line 34) | VOID
function VMX_SEGMENT_SELECTOR (line 48) | VMX_SEGMENT_SELECTOR
function VOID (line 67) | VOID
function VOID (line 79) | VOID
function VMX_SEGMENT_SELECTOR (line 93) | VMX_SEGMENT_SELECTOR
function VOID (line 112) | VOID
function VOID (line 124) | VOID
function VMX_SEGMENT_SELECTOR (line 138) | VMX_SEGMENT_SELECTOR
function VOID (line 157) | VOID
function VOID (line 169) | VOID
function VMX_SEGMENT_SELECTOR (line 183) | VMX_SEGMENT_SELECTOR
function VOID (line 202) | VOID
function VOID (line 214) | VOID
function VMX_SEGMENT_SELECTOR (line 228) | VMX_SEGMENT_SELECTOR
function VOID (line 247) | VOID
function VOID (line 259) | VOID
function VMX_SEGMENT_SELECTOR (line 273) | VMX_SEGMENT_SELECTOR
function VOID (line 292) | VOID
function UINT64 (line 303) | UINT64
function VOID (line 319) | VOID
function UINT64 (line 330) | UINT64
function VOID (line 346) | VOID
function UINT64 (line 357) | UINT64
function VOID (line 371) | VOID
function UINT64 (line 382) | UINT64
function VOID (line 397) | VOID
function UINT64 (line 408) | UINT64
function VOID (line 422) | VOID
function VOID (line 434) | VOID
function UINT64 (line 445) | UINT64
function UINT64 (line 459) | UINT64
function UINT64 (line 473) | UINT64
function UINT64 (line 487) | UINT64
function UINT64 (line 501) | UINT64
function UINT64 (line 515) | UINT64
function VOID (line 530) | VOID
function VOID (line 542) | VOID
function VOID (line 554) | VOID
function VOID (line 566) | VOID
function VOID (line 578) | VOID
function VOID (line 590) | VOID
function VOID (line 602) | VOID
function VOID (line 614) | VOID
function VOID (line 626) | VOID
function VOID (line 638) | VOID
function VOID (line 650) | VOID
function UINT64 (line 661) | UINT64
function UINT64 (line 674) | UINT64
function UINT64 (line 687) | UINT64
function UINT64 (line 700) | UINT64
function UINT64 (line 713) | UINT64
function UINT64 (line 726) | UINT64
FILE: hyperdbg/hyperhv/code/vmm/vmx/MsrHandlers.c
function VOID (line 21) | VOID
function VOID (line 176) | VOID
function BOOLEAN (line 305) | BOOLEAN
function BOOLEAN (line 354) | BOOLEAN
function VOID (line 401) | VOID
function VOID (line 423) | VOID
function VOID (line 452) | VOID
function VOID (line 483) | VOID
function VOID (line 499) | VOID
function VOID (line 530) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/Mtf.c
function VOID (line 20) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/ProtectedHv.c
function VOID (line 30) | VOID
function VOID (line 75) | VOID
function VOID (line 108) | VOID
function VOID (line 141) | VOID
function VOID (line 160) | VOID
function VOID (line 191) | VOID
function VOID (line 258) | VOID
function VOID (line 269) | VOID
function VOID (line 286) | VOID
function VOID (line 340) | VOID
function VOID (line 394) | VOID
function VOID (line 437) | VOID
function VOID (line 473) | VOID
function VOID (line 536) | VOID
function VOID (line 548) | VOID
function VOID (line 561) | VOID
function VOID (line 573) | VOID
function VOID (line 587) | VOID
function VOID (line 600) | VOID
function VOID (line 614) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/Vmcall.c
function _Use_decl_annotations_ (line 22) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 72) | _Use_decl_annotations_
function NTSTATUS (line 108) | NTSTATUS
function _Use_decl_annotations_ (line 130) | _Use_decl_annotations_
function NTSTATUS (line 556) | NTSTATUS
FILE: hyperdbg/hyperhv/code/vmm/vmx/Vmexit.c
function BOOLEAN (line 21) | BOOLEAN
FILE: hyperdbg/hyperhv/code/vmm/vmx/Vmx.c
function UCHAR (line 21) | inline UCHAR
function UCHAR (line 35) | inline UCHAR
function UCHAR (line 53) | inline UCHAR
function UCHAR (line 71) | inline UCHAR
function UCHAR (line 85) | inline UCHAR
function UCHAR (line 103) | inline UCHAR
function UCHAR (line 121) | inline UCHAR
function UCHAR (line 135) | inline UCHAR
function UCHAR (line 151) | inline UCHAR
function BOOLEAN (line 165) | BOOLEAN
function BOOLEAN (line 221) | BOOLEAN
function BOOLEAN (line 245) | BOOLEAN
function BOOLEAN (line 259) | BOOLEAN
function BOOLEAN (line 412) | BOOLEAN
function BOOLEAN (line 499) | BOOLEAN
function VOID (line 540) | VOID
function BOOLEAN (line 575) | BOOLEAN
function BOOLEAN (line 604) | BOOLEAN
function BOOLEAN (line 698) | BOOLEAN
function VOID (line 747) | VOID
function _Use_decl_annotations_ (line 764) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 796) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 818) | _Use_decl_annotations_
function VOID (line 1039) | VOID
function UINT64 (line 1072) | UINT64
function VOID (line 1123) | VOID
function UINT64 (line 1214) | UINT64
function UINT64 (line 1225) | UINT64
function VOID (line 1236) | VOID
function UINT32 (line 1329) | UINT32
function UINT32 (line 1418) | UINT32
function VOID (line 1508) | VOID
function INT32 (line 1535) | INT32
function INT32 (line 1673) | INT32
function INT32 (line 1811) | INT32
FILE: hyperdbg/hyperhv/code/vmm/vmx/VmxBroadcast.c
function VOID (line 19) | VOID
function VOID (line 56) | VOID
function BOOLEAN (line 91) | BOOLEAN
function BOOLEAN (line 142) | BOOLEAN
function BOOLEAN (line 186) | BOOLEAN
FILE: hyperdbg/hyperhv/code/vmm/vmx/VmxMechanisms.c
function VOID (line 19) | VOID
function VOID (line 41) | VOID
function VOID (line 58) | VOID
function VOID (line 73) | VOID
function VOID (line 105) | VOID
FILE: hyperdbg/hyperhv/code/vmm/vmx/VmxRegions.c
function _Use_decl_annotations_ (line 21) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 101) | _Use_decl_annotations_
function BOOLEAN (line 166) | BOOLEAN
function BOOLEAN (line 191) | BOOLEAN
function BOOLEAN (line 220) | BOOLEAN
function UINT64 (line 263) | UINT64 *
function BOOLEAN (line 296) | BOOLEAN
function BOOLEAN (line 331) | BOOLEAN
function BOOLEAN (line 366) | BOOLEAN
function BOOLEAN (line 393) | BOOLEAN
FILE: hyperdbg/hyperhv/header/common/Common.h
type SEGMENT_DESCRIPTOR_32 (line 77) | typedef SEGMENT_DESCRIPTOR_32 * PSEGMENT_DESCRIPTOR;
type CPUID (line 83) | typedef struct _CPUID
type CR_FIXED (line 91) | typedef union _CR_FIXED
type NT_KPROCESS (line 112) | typedef struct _NT_KPROCESS
FILE: hyperdbg/hyperhv/header/common/Msr.h
type MSR (line 34) | typedef union _MSR
FILE: hyperdbg/hyperhv/header/common/State.h
type EPT_PML4E (line 18) | typedef EPT_PML4E EPT_PML4_POINTER, *PEPT_PML4_POINTER;
type EPT_PDPTE (line 19) | typedef EPT_PDPTE EPT_PML3_POINTER, *PEPT_PML3_POINTER;
type EPT_PDPTE_1GB (line 20) | typedef EPT_PDPTE_1GB EPT_PML3_ENTRY, *PEPT_PML3_ENTRY;
type EPT_PDE_2MB (line 21) | typedef EPT_PDE_2MB EPT_PML2_ENTRY, *PEPT_PML2_ENTRY;
type EPT_PDE (line 22) | typedef EPT_PDE EPT_PML2_POINTER, *PEPT_PML2_POINTER;
type EPT_PTE (line 23) | typedef EPT_PTE EPT_PML1_ENTRY, *PEPT_PML1_ENTRY;
type NMI_BROADCAST_ACTION_TYPE (line 49) | typedef enum _NMI_BROADCAST_ACTION_TYPE
type EPT_HOOKED_LAST_VIOLATION (line 63) | typedef enum _EPT_HOOKED_LAST_VIOLATION
type VMM_EPT_PAGE_TABLE (line 105) | typedef struct _VMM_EPT_PAGE_TABLE
type VM_EXIT_TRANSPARENCY (line 145) | typedef struct _VM_EXIT_TRANSPARENCY
type VMX_VMXOFF_STATE (line 159) | typedef struct _VMX_VMXOFF_STATE
type EPT_HOOKED_PAGE_DETAIL (line 171) | typedef struct _EPT_HOOKED_PAGE_DETAIL
type NMI_BROADCASTING_STATE (line 293) | typedef struct _NMI_BROADCASTING_STATE
type VIRTUAL_MACHINE_STATE (line 303) | typedef struct _VIRTUAL_MACHINE_STATE
FILE: hyperdbg/hyperhv/header/devices/Apic.h
type IO_APIC_ENT (line 151) | typedef struct _IO_APIC_ENT
FILE: hyperdbg/hyperhv/header/features/CompatibilityChecks.h
type COMPATIBILITY_CHECKS_STATUS (line 23) | typedef struct _COMPATIBILITY_CHECKS_STATUS
FILE: hyperdbg/hyperhv/header/hooks/ExecTrap.h
type USER_KERNEL_EXECUTION_TRAP_STATE (line 43) | typedef struct _USER_KERNEL_EXECUTION_TRAP_STATE
FILE: hyperdbg/hyperhv/header/hooks/Hooks.h
type HIDDEN_HOOKS_DETOUR_DETAILS (line 22) | typedef struct _HIDDEN_HOOKS_DETOUR_DETAILS
FILE: hyperdbg/hyperhv/header/hooks/ModeBasedExecHook.h
type MODE_BASED_RAM_REGIONS (line 28) | typedef struct MODE_BASED_RAM_REGIONS
FILE: hyperdbg/hyperhv/header/hooks/SyscallCallback.h
type SYSCALL_CALLBACK_PROCESS_THREAD_INFORMATION (line 44) | typedef struct _SYSCALL_CALLBACK_PROCESS_THREAD_INFORMATION
type SYSCALL_CALLBACK_TRAP_FLAG_STATE (line 65) | typedef struct _SYSCALL_CALLBACK_TRAP_FLAG_STATE
FILE: hyperdbg/hyperhv/header/memory/MemoryMapper.h
type MEMORY_MAPPER_WRAPPER_FOR_MEMORY_READ (line 34) | typedef enum _MEMORY_MAPPER_WRAPPER_FOR_MEMORY_READ
type MEMORY_MAPPER_WRAPPER_FOR_MEMORY_WRITE (line 46) | typedef enum _MEMORY_MAPPER_WRAPPER_FOR_MEMORY_WRITE
type PAGE_ENTRY (line 62) | typedef struct _PAGE_ENTRY
type MEMORY_MAPPER_ADDRESSES (line 104) | typedef struct _MEMORY_MAPPER_ADDRESSES
FILE: hyperdbg/hyperhv/header/memory/PoolManager.h
type POOL_TABLE (line 33) | typedef struct _POOL_TABLE
type REQUEST_NEW_ALLOCATION (line 49) | typedef struct _REQUEST_NEW_ALLOCATION
FILE: hyperdbg/hyperhv/header/processor/Idt.h
type KIDTENTRY64 (line 19) | typedef union _KIDTENTRY64
type KDESCRIPTOR64 (line 37) | typedef struct _KDESCRIPTOR64
FILE: hyperdbg/hyperhv/header/vmm/ept/Ept.h
type MTRR_RANGE_DESCRIPTOR (line 83) | typedef struct _MTRR_RANGE_DESCRIPTOR
type IA32_MTRR_FIXED_RANGE_TYPE (line 95) | typedef union _IA32_MTRR_FIXED_RANGE_TYPE
type EPT_STATE (line 128) | typedef struct _EPT_STATE
type VMM_EPT_DYNAMIC_SPLIT (line 140) | typedef struct _VMM_EPT_DYNAMIC_SPLIT
FILE: hyperdbg/hyperhv/header/vmm/vmx/Events.h
type INTERRUPT_TYPE (line 48) | typedef enum _INTERRUPT_TYPE
type INTERRUPT_INFO (line 68) | typedef union _INTERRUPT_INFO
type EVENT_INFORMATION (line 87) | typedef struct _EVENT_INFORMATION
FILE: hyperdbg/hyperhv/header/vmm/vmx/IdtEmulation.h
type SIDT_ENTRY (line 37) | typedef struct _SIDT_ENTRY
type KIDT_ENTRY (line 43) | typedef struct _KIDT_ENTRY
type INTERRUPT_TRAP_FRAME (line 67) | typedef struct _INTERRUPT_TRAP_FRAME
type HOST_EXCEPTION_INFO (line 199) | typedef struct _HOST_EXCEPTION_INFO
FILE: hyperdbg/hyperhv/header/vmm/vmx/IoHandler.h
type IO_ACCESS_INSTR (line 22) | typedef enum _IO_ACCESS_INSTR
type IO_OP_ENCODING (line 32) | typedef enum _IO_OP_ENCODING
function UINT8 (line 46) | inline UINT8
function UINT16 (line 56) | inline UINT16
function UINT32 (line 66) | inline UINT32
function IoInByteString (line 76) | inline void
function IoInWordString (line 86) | inline void
function IoInDwordString (line 96) | inline void
function IoOutByte (line 106) | inline void
function IoOutWord (line 116) | inline void
function IoOutDword (line 126) | inline void
function IoOutByteString (line 136) | inline void
function IoOutWordString (line 146) | inline void
function IoOutDwordString (line 156) | inline void
FILE: hyperdbg/hyperhv/header/vmm/vmx/Vmx.h
type HYPERCALL_INPUT_VALUE (line 74) | typedef union _HYPERCALL_INPUT_VALUE
type HYPERCALL_CODE (line 96) | enum HYPERCALL_CODE
type MOV_TO_DEBUG_REG (line 222) | typedef enum _MOV_TO_DEBUG_REG
FILE: hyperdbg/hyperkd/code/common/Common.c
function BOOLEAN (line 23) | BOOLEAN
function _Use_decl_annotations_ (line 50) | _Use_decl_annotations_
function PCHAR (line 74) | PCHAR
function NTSTATUS (line 97) | NTSTATUS
function _Use_decl_annotations_ (line 157) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 254) | _Use_decl_annotations_
FILE: hyperdbg/hyperkd/code/common/Synchronization.c
function VOID (line 20) | VOID
function VOID (line 35) | VOID
function VOID (line 50) | VOID
FILE: hyperdbg/hyperkd/code/debugger/broadcast/DpcRoutines.c
function NTSTATUS (line 34) | NTSTATUS
function VOID (line 127) | VOID
function VOID (line 159) | VOID
function VOID (line 191) | VOID
function VOID (line 225) | VOID
function VOID (line 259) | VOID
function BOOLEAN (line 290) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/broadcast/HaltedBroadcast.c
function VOID (line 22) | VOID
function VOID (line 56) | VOID
function VOID (line 90) | VOID
function VOID (line 122) | VOID
function VOID (line 149) | VOID
function VOID (line 176) | VOID
function VOID (line 203) | VOID
function VOID (line 232) | VOID
function VOID (line 266) | VOID
function VOID (line 300) | VOID
function VOID (line 333) | VOID
function VOID (line 360) | VOID
function VOID (line 387) | VOID
function VOID (line 416) | VOID
function VOID (line 449) | VOID
function VOID (line 476) | VOID
function VOID (line 503) | VOID
function VOID (line 531) | VOID
function VOID (line 558) | VOID
function VOID (line 586) | VOID
function VOID (line 614) | VOID
function VOID (line 642) | VOID
function VOID (line 670) | VOID
function VOID (line 700) | VOID
FILE: hyperdbg/hyperkd/code/debugger/broadcast/HaltedRoutines.c
function VOID (line 23) | VOID
function VOID (line 57) | VOID
function VOID (line 91) | VOID
function VOID (line 124) | VOID
function VOID (line 152) | VOID
function VOID (line 180) | VOID
function VOID (line 208) | VOID
function VOID (line 237) | VOID
function VOID (line 271) | VOID
function VOID (line 305) | VOID
function VOID (line 339) | VOID
function VOID (line 367) | VOID
function VOID (line 395) | VOID
FILE: hyperdbg/hyperkd/code/debugger/commands/BreakpointCommands.c
function BOOLEAN (line 22) | BOOLEAN
function BOOLEAN (line 147) | BOOLEAN
function BOOLEAN (line 173) | BOOLEAN
function BOOLEAN (line 238) | BOOLEAN
function BOOLEAN (line 368) | BOOLEAN
function VOID (line 413) | VOID
function BOOLEAN (line 439) | BOOLEAN
function BOOLEAN (line 478) | BOOLEAN
function BOOLEAN (line 662) | BOOLEAN
function BOOLEAN (line 780) | BOOLEAN
function VOID (line 859) | VOID
function PDEBUGGEE_BP_DESCRIPTOR (line 888) | PDEBUGGEE_BP_DESCRIPTOR
function PDEBUGGEE_BP_DESCRIPTOR (line 919) | PDEBUGGEE_BP_DESCRIPTOR
function BOOLEAN (line 950) | BOOLEAN
function VOID (line 1143) | VOID
function BOOLEAN (line 1196) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/commands/Callstack.c
function BOOLEAN (line 25) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/commands/DebuggerCommands.c
function BOOLEAN (line 22) | BOOLEAN
function BOOLEAN (line 73) | BOOLEAN
function BOOLEAN (line 185) | BOOLEAN
function NTSTATUS (line 336) | NTSTATUS
function NTSTATUS (line 489) | NTSTATUS
function BOOLEAN (line 611) | BOOLEAN
function BOOLEAN (line 732) | BOOLEAN
function BOOLEAN (line 1018) | BOOLEAN
function NTSTATUS (line 1190) | NTSTATUS
function NTSTATUS (line 1291) | NTSTATUS
function NTSTATUS (line 1311) | NTSTATUS
function NTSTATUS (line 1330) | NTSTATUS
function NTSTATUS (line 1352) | NTSTATUS
function NTSTATUS (line 1375) | NTSTATUS
function NTSTATUS (line 1499) | NTSTATUS
function BOOLEAN (line 1531) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/commands/ExtensionCommands.c
function UINT32 (line 22) | UINT32
function VOID (line 91) | VOID
function VOID (line 113) | VOID
function BOOLEAN (line 260) | BOOLEAN
function VOID (line 390) | VOID
function VOID (line 403) | VOID
function VOID (line 417) | VOID
function VOID (line 430) | VOID
function VOID (line 444) | VOID
function VOID (line 457) | VOID
function VOID (line 470) | VOID
function VOID (line 484) | VOID
function VOID (line 497) | VOID
function VOID (line 511) | VOID
function VOID (line 524) | VOID
function VOID (line 540) | VOID
function VOID (line 556) | VOID
function VOID (line 569) | VOID
function VOID (line 584) | VOID
function VOID (line 598) | VOID
function VOID (line 612) | VOID
function VOID (line 625) | VOID
function VOID (line 639) | VOID
function VOID (line 652) | VOID
function VOID (line 666) | VOID
function VOID (line 679) | VOID
function VOID (line 696) | VOID
function VOID (line 759) | VOID
FILE: hyperdbg/hyperkd/code/debugger/communication/SerialConnection.c
function VOID (line 19) | VOID
function VOID (line 33) | VOID
function BOOLEAN (line 52) | BOOLEAN
function BOOLEAN (line 98) | BOOLEAN
function BOOLEAN (line 154) | BOOLEAN
function BOOLEAN (line 191) | BOOLEAN
function BOOLEAN (line 241) | BOOLEAN
function BOOLEAN (line 300) | BOOLEAN
function BOOLEAN (line 322) | BOOLEAN
function NTSTATUS (line 340) | NTSTATUS
FILE: hyperdbg/hyperkd/code/debugger/core/Debugger.c
function UINT64 (line 20) | UINT64
function UINT32 (line 31) | UINT32
function VOID (line 43) | VOID
function BOOLEAN (line 55) | BOOLEAN
function VOID (line 232) | VOID
function PDEBUGGER_EVENT (line 340) | PDEBUGGER_EVENT
function PVOID (line 511) | PVOID
function PDEBUGGER_EVENT_ACTION (line 626) | PDEBUGGER_EVENT_ACTION
function BOOLEAN (line 1032) | BOOLEAN
function VMM_CALLBACK_TRIGGERING_EVENT_STATUS_TYPE (line 1067) | VMM_CALLBACK_TRIGGERING_EVENT_STATUS_TYPE
function VOID (line 1523) | VOID
function BOOLEAN (line 1581) | BOOLEAN
function VOID (line 1710) | VOID
function VOID (line 1771) | VOID
function PDEBUGGER_EVENT (line 1808) | PDEBUGGER_EVENT
function BOOLEAN (line 1851) | BOOLEAN
function BOOLEAN (line 1908) | BOOLEAN
function BOOLEAN (line 1960) | BOOLEAN
function UINT32 (line 2004) | UINT32
function PLIST_ENTRY (line 2035) | PLIST_ENTRY
function UINT32 (line 2147) | UINT32
function UINT32 (line 2185) | UINT32
function UINT32 (line 2223) | UINT32
function BOOLEAN (line 2255) | BOOLEAN
function BOOLEAN (line 2289) | BOOLEAN
function BOOLEAN (line 2316) | BOOLEAN
function BOOLEAN (line 2353) | BOOLEAN
function VOID (line 2390) | VOID
function BOOLEAN (line 2424) | BOOLEAN
function BOOLEAN (line 2451) | BOOLEAN
function BOOLEAN (line 2475) | BOOLEAN
function BOOLEAN (line 2527) | BOOLEAN
function BOOLEAN (line 2596) | BOOLEAN
function BOOLEAN (line 2663) | BOOLEAN
function BOOLEAN (line 2837) | BOOLEAN
function BOOLEAN (line 3078) | BOOLEAN
function BOOLEAN (line 3222) | BOOLEAN
function BOOLEAN (line 3398) | BOOLEAN
function BOOLEAN (line 3643) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/core/DebuggerVmcalls.c
function BOOLEAN (line 26) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/core/HaltedCore.c
function VOID (line 23) | VOID
function VOID (line 44) | VOID
function VOID (line 320) | VOID
function VOID (line 355) | VOID
function BOOLEAN (line 398) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/events/ApplyEvents.c
function BOOLEAN (line 25) | BOOLEAN
function BOOLEAN (line 323) | BOOLEAN
function BOOLEAN (line 424) | BOOLEAN
function VOID (line 532) | VOID
function VOID (line 587) | VOID
function VOID (line 642) | VOID
function VOID (line 697) | VOID
function VOID (line 747) | VOID
function VOID (line 797) | VOID
function VOID (line 847) | VOID
function VOID (line 903) | VOID
function VOID (line 958) | VOID
function VOID (line 1013) | VOID
function VOID (line 1086) | VOID
function VOID (line 1162) | VOID
function BOOLEAN (line 1189) | BOOLEAN
function VOID (line 1262) | VOID
function VOID (line 1289) | VOID
function VOID (line 1318) | VOID
FILE: hyperdbg/hyperkd/code/debugger/events/DebuggerEvents.c
function VOID (line 19) | VOID
function VOID (line 30) | VOID
function VOID (line 41) | VOID
function VOID (line 52) | VOID
function BOOLEAN (line 67) | BOOLEAN
function BOOLEAN (line 113) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/events/Termination.c
function VOID (line 23) | VOID
function VOID (line 107) | VOID
function VOID (line 134) | VOID
function VOID (line 172) | VOID
function VOID (line 212) | VOID
function VOID (line 296) | VOID
function VOID (line 380) | VOID
function VOID (line 464) | VOID
function VOID (line 555) | VOID
function VOID (line 646) | VOID
function VOID (line 689) | VOID
function VOID (line 745) | VOID
function VOID (line 788) | VOID
function VOID (line 872) | VOID
function VOID (line 956) | VOID
function VOID (line 1040) | VOID
function VOID (line 1124) | VOID
function VOID (line 1215) | VOID
function BOOLEAN (line 1307) | BOOLEAN
function BOOLEAN (line 1380) | BOOLEAN
function BOOLEAN (line 1432) | BOOLEAN
function BOOLEAN (line 1470) | BOOLEAN
function BOOLEAN (line 1521) | BOOLEAN
function BOOLEAN (line 1559) | BOOLEAN
function BOOLEAN (line 1592) | BOOLEAN
function BOOLEAN (line 1647) | BOOLEAN
function BOOLEAN (line 1712) | BOOLEAN
function VOID (line 1781) | VOID
FILE: hyperdbg/hyperkd/code/debugger/events/ValidateEvents.c
function BOOLEAN (line 25) | BOOLEAN
function BOOLEAN (line 136) | BOOLEAN
function BOOLEAN (line 175) | BOOLEAN
function BOOLEAN (line 212) | BOOLEAN
function BOOLEAN (line 250) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/kernel-level/Kd.c
function VOID (line 21) | VOID
function VOID (line 67) | VOID
function BOOLEAN (line 106) | BOOLEAN
function VOID (line 117) | VOID
function VOID (line 170) | VOID
function VOID (line 188) | VOID
function BOOLEAN (line 205) | BOOLEAN
function _Use_decl_annotations_ (line 255) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 279) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 357) | _Use_decl_annotations_
function VOID (line 414) | VOID
function VOID (line 468) | VOID
function VOID (line 559) | VOID
function VOID (line 598) | VOID
function _Use_decl_annotations_ (line 624) | _Use_decl_annotations_
function VOID (line 658) | VOID
function BOOLEAN (line 680) | BOOLEAN
function VOID (line 752) | VOID
function VOID (line 771) | VOID
function _Use_decl_annotations_ (line 794) | _Use_decl_annotations_
function VOID (line 820) | VOID
function VOID (line 844) | VOID
function VOID (line 868) | VOID
function _Use_decl_annotations_ (line 886) | _Use_decl_annotations_
function VOID (line 937) | VOID
function VOID (line 1006) | VOID
function _Use_decl_annotations_ (line 1067) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1086) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1157) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1265) | _Use_decl_annotations_
function _Use_decl_annotations_ (line 1308) | _Use_decl_annotations_
function VOID (line 1350) | VOID
function BOOLEAN (line 1397) | BOOLEAN
function BOOLEAN (line 1460) | BOOLEAN
function BOOLEAN (line 1512) | BOOLEAN
function VOID (line 1551) | VOID
function BOOLEAN (line 1577) | BOOLEAN
function BOOLEAN (line 1610) | BOOLEAN
function VOID (line 1638) | VOID
function VOID (line 1688) | VOID
function BOOLEAN (line 1701) | BOOLEAN
function BOOLEAN (line 1715) | BOOLEAN
function VOID (line 1763) | VOID
function VOID (line 1933) | VOID
function BOOLEAN (line 1960) | BOOLEAN
function VOID (line 2168) | VOID
function BOOLEAN (line 3090) | BOOLEAN
function VOID (line 3145) | VOID
function VOID (line 3344) | VOID
function VOID (line 3359) | VOID
FILE: hyperdbg/hyperkd/code/debugger/memory/Allocations.c
function BOOLEAN (line 20) | BOOLEAN
function VOID (line 48) | VOID
function BOOLEAN (line 60) | BOOLEAN
function VOID (line 87) | VOID
FILE: hyperdbg/hyperkd/code/debugger/meta-events/MetaDispatch.c
function VOID (line 21) | VOID
FILE: hyperdbg/hyperkd/code/debugger/meta-events/Tracing.c
function VOID (line 21) | VOID
function VOID (line 42) | VOID
function VOID (line 67) | VOID
function VOID (line 93) | VOID
function VOID (line 111) | VOID
function VOID (line 134) | VOID
FILE: hyperdbg/hyperkd/code/debugger/objects/Process.c
function VOID (line 21) | VOID
function BOOLEAN (line 41) | BOOLEAN
function BOOLEAN (line 74) | BOOLEAN
function VOID (line 137) | VOID
function VOID (line 176) | VOID
function VOID (line 219) | VOID
function BOOLEAN (line 263) | BOOLEAN
function BOOLEAN (line 339) | BOOLEAN
function BOOLEAN (line 524) | BOOLEAN
function BOOLEAN (line 615) | BOOLEAN
function BOOLEAN (line 648) | BOOLEAN
function BOOLEAN (line 674) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/objects/Thread.c
function BOOLEAN (line 21) | BOOLEAN
function BOOLEAN (line 57) | BOOLEAN
function BOOLEAN (line 121) | BOOLEAN
function BOOLEAN (line 324) | BOOLEAN
function VOID (line 423) | VOID
function VOID (line 555) | VOID
function VOID (line 596) | VOID
function BOOLEAN (line 635) | BOOLEAN
function BOOLEAN (line 668) | BOOLEAN
function BOOLEAN (line 694) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/script-engine/ScriptEngine.c
function UINT64 (line 20) | UINT64
function UINT64 (line 45) | UINT64
function VOID (line 57) | VOID
function UINT64 (line 86) | UINT64
function UINT64 (line 108) | UINT64
FILE: hyperdbg/hyperkd/code/debugger/tests/KernelTests.c
function VOID (line 21) | VOID
FILE: hyperdbg/hyperkd/code/debugger/user-level/Attaching.c
function BOOLEAN (line 21) | BOOLEAN
function UINT64 (line 98) | UINT64
function PUSERMODE_DEBUGGING_PROCESS_DETAILS (line 160) | PUSERMODE_DEBUGGING_PROCESS_DETAILS
function PUSERMODE_DEBUGGING_PROCESS_DETAILS (line 183) | PUSERMODE_DEBUGGING_PROCESS_DETAILS
function PUSERMODE_DEBUGGING_PROCESS_DETAILS (line 206) | PUSERMODE_DEBUGGING_PROCESS_DETAILS
function VOID (line 225) | VOID
function BOOLEAN (line 253) | BOOLEAN
function BOOLEAN (line 296) | BOOLEAN
function BOOLEAN (line 344) | BOOLEAN
function VOID (line 440) | VOID
function BOOLEAN (line 561) | BOOLEAN
function BOOLEAN (line 624) | BOOLEAN
function BOOLEAN (line 686) | BOOLEAN
function BOOLEAN (line 752) | BOOLEAN
function BOOLEAN (line 775) | BOOLEAN
function BOOLEAN (line 975) | BOOLEAN
function BOOLEAN (line 997) | BOOLEAN
function BOOLEAN (line 1058) | BOOLEAN
function BOOLEAN (line 1083) | BOOLEAN
function BOOLEAN (line 1127) | BOOLEAN
function BOOLEAN (line 1219) | BOOLEAN
function BOOLEAN (line 1272) | BOOLEAN
function BOOLEAN (line 1366) | BOOLEAN
function BOOLEAN (line 1392) | BOOLEAN
function VOID (line 1424) | VOID
FILE: hyperdbg/hyperkd/code/debugger/user-level/ThreadHolder.c
function VOID (line 20) | VOID
function BOOLEAN (line 41) | BOOLEAN
function BOOLEAN (line 76) | BOOLEAN
function BOOLEAN (line 107) | BOOLEAN
function PUSERMODE_DEBUGGING_THREAD_DETAILS (line 144) | PUSERMODE_DEBUGGING_THREAD_DETAILS
function PUSERMODE_DEBUGGING_THREAD_DETAILS (line 192) | PUSERMODE_DEBUGGING_THREAD_DETAILS
function PUSERMODE_DEBUGGING_PROCESS_DETAILS (line 240) | PUSERMODE_DEBUGGING_PROCESS_DETAILS
function PUSERMODE_DEBUGGING_THREAD_DETAILS (line 292) | PUSERMODE_DEBUGGING_THREAD_DETAILS
function BOOLEAN (line 399) | BOOLEAN
function VOID (line 500) | VOID
function UINT32 (line 526) | UINT32
function VOID (line 584) | VOID
FILE: hyperdbg/hyperkd/code/debugger/user-level/Ud.c
function BOOLEAN (line 20) | BOOLEAN
function VOID (line 89) | VOID
function BOOLEAN (line 121) | BOOLEAN
function VOID (line 179) | VOID
function VOID (line 194) | VOID
function VOID (line 207) | VOID
function VOID (line 226) | VOID
function BOOLEAN (line 266) | BOOLEAN
function VOID (line 302) | VOID
function VOID (line 358) | VOID
function VOID (line 402) | VOID
function BOOLEAN (line 486) | BOOLEAN
function BOOLEAN (line 557) | BOOLEAN
function BOOLEAN (line 641) | BOOLEAN
function VOID (line 733) | VOID
function VOID (line 777) | VOID
function BOOLEAN (line 811) | BOOLEAN
FILE: hyperdbg/hyperkd/code/debugger/user-level/UserAccess.c
function BOOLEAN (line 27) | BOOLEAN
function BOOLEAN (line 171) | BOOLEAN
function BOOLEAN (line 244) | BOOLEAN
function BOOLEAN (line 338) | BOOLEAN
function BOOLEAN (line 487) | BOOLEAN
function BOOLEAN (line 626) | BOOLEAN
function BOOLEAN (line 710) | BOOLEAN
function BOOLEAN (line 752) | BOOLEAN
function BOOLEAN (line 778) | BOOLEAN
function BOOLEAN (line 853) | BOOLEAN
FILE: hyperdbg/hyperkd/code/driver/Driver.c
function NTSTATUS (line 23) | NTSTATUS
function VOID (line 94) | VOID
function NTSTATUS (line 116) | NTSTATUS
function NTSTATUS (line 188) | NTSTATUS
function NTSTATUS (line 212) | NTSTATUS
function NTSTATUS (line 236) | NTSTATUS
function NTSTATUS (line 262) | NTSTATUS
FILE: hyperdbg/hyperkd/code/driver/Ioctl.c
function NTSTATUS (line 22) | NTSTATUS
FILE: hyperdbg/hyperkd/code/driver/Loader.c
function BOOLEAN (line 18) | BOOLEAN
function VOID (line 169) | VOID
FILE: hyperdbg/hyperkd/header/common/Common.h
type NT_KPROCESS (line 47) | typedef struct _NT_KPROCESS
type PROCESS_KILL_METHODS (line 63) | typedef enum _PROCESS_KILL_METHODS
FILE: hyperdbg/hyperkd/header/debugger/core/Debugger.h
type DEBUGGER_CORE_EVENTS (line 36) | typedef struct _DEBUGGER_CORE_EVENTS
type DEBUGGER_EVENT_ACTION (line 79) | typedef struct _DEBUGGER_EVENT_ACTION
type DEBUGGER_EVENT (line 108) | typedef struct _DEBUGGER_EVENT
type UINT64 (line 159) | typedef UINT64
type PVOID (line 175) | typedef PVOID
FILE: hyperdbg/hyperkd/header/debugger/core/State.h
type PROCESSOR_DEBUGGING_MSR_READ_OR_WRITE (line 22) | typedef struct _PROCESSOR_DEBUGGING_MSR_READ_OR_WRITE
type DEBUGGEE_INSTRUMENTATION_STEP_IN_TRACE (line 34) | typedef struct _DEBUGGEE_INSTRUMENTATION_STEP_IN_TRACE
type DEBUGGEE_PROCESS_OR_THREAD_TRACING_DETAILS (line 45) | typedef struct _DEBUGGEE_PROCESS_OR_THREAD_TRACING_DETAILS
type DEBUGGEE_BP_DESCRIPTOR (line 71) | typedef struct _DEBUGGEE_BP_DESCRIPTOR
type KD_NMI_STATE (line 93) | typedef struct _KD_NMI_STATE
type DEBUGGER_PROCESS_THREAD_INFORMATION (line 104) | typedef struct _DEBUGGER_PROCESS_THREAD_INFORMATION
type DEBUGGER_TRAP_FLAG_STATE (line 124) | typedef struct _DEBUGGER_TRAP_FLAG_STATE
type DEBUGGEE_HALTED_CORE_TASK (line 135) | typedef struct _DEBUGGEE_HALTED_CORE_TASK
type DATE_TIME_HOLDER (line 149) | typedef struct _DATE_TIME_HOLDER
type PROCESSOR_DEBUGGING_STATE (line 163) | typedef struct _PROCESSOR_DEBUGGING_STATE
FILE: hyperdbg/hyperkd/header/debugger/kernel-level/Kd.h
type DEBUGGEE_REQUEST_TO_CHANGE_PROCESS (line 38) | typedef struct _DEBUGGEE_REQUEST_TO_CHANGE_PROCESS
type DEBUGGEE_REQUEST_TO_CHANGE_THREAD (line 49) | typedef struct _DEBUGGEE_REQUEST_TO_CHANGE_THREAD
type DEBUGGEE_REQUEST_TO_IGNORE_BREAKS_UNTIL_AN_EVENT (line 60) | typedef struct _DEBUGGEE_REQUEST_TO_IGNORE_BREAKS_UNTIL_AN_EVENT
type HARDWARE_DEBUG_REGISTER_DETAILS (line 72) | typedef struct _HARDWARE_DEBUG_REGISTER_DETAILS
FILE: hyperdbg/hyperkd/header/debugger/memory/Memory.h
type PAGE_ENTRY (line 22) | typedef struct _PAGE_ENTRY
FILE: hyperdbg/hyperkd/header/debugger/user-level/ThreadHolder.h
type USERMODE_DEBUGGING_THREAD_DETAILS (line 32) | typedef struct _USERMODE_DEBUGGING_THREAD_DETAILS
type USERMODE_DEBUGGING_THREAD_HOLDER (line 48) | typedef struct _USERMODE_DEBUGGING_THREAD_HOLDER
FILE: hyperdbg/hyperkd/header/debugger/user-level/Ud.h
type USERMODE_DEBUGGING_PROCESS_DETAILS (line 23) | typedef struct _USERMODE_DEBUGGING_PROCESS_DETAILS
FILE: hyperdbg/hyperkd/header/debugger/user-level/UserAccess.h
type PEB_LDR_DATA (line 22) | typedef struct _PEB_LDR_DATA
type RTL_USER_PROCESS_PARAMETERS (line 36) | typedef struct _RTL_USER_PROCESS_PARAMETERS
type PEB (line 54) | typedef struct _PEB
type PEB32 (line 81) | typedef struct _PEB32
type PEB_LDR_DATA32 (line 107) | typedef struct _PEB_LDR_DATA32
type LDR_DATA_TABLE_ENTRY32 (line 121) | typedef struct _LDR_DATA_TABLE_ENTRY32
type LDR_DATA_TABLE_ENTRY (line 142) | typedef struct _LDR_DATA_TABLE_ENTRY
type NTSTATUS (line 168) | typedef NTSTATUS (*ZwQueryInformationProcess)(
FILE: hyperdbg/hyperlog/code/Logging.c
function BOOLEAN (line 19) | BOOLEAN inline LogCheckVmxOperation()
function BOOLEAN (line 43) | BOOLEAN inline LogCheckImmediateSend(UINT32 OperationCode)
function BOOLEAN (line 70) | BOOLEAN inline LogSendImmediateMessage(CHAR * OptionalBuffer,
function BOOLEAN (line 97) | BOOLEAN
function VOID (line 210) | VOID
function BOOLEAN (line 261) | BOOLEAN
function _Use_decl_annotations_ (line 348) | _Use_decl_annotations_
function UINT32 (line 568) | UINT32
function BOOLEAN (line 707) | BOOLEAN
function BOOLEAN (line 932) | BOOLEAN
function BOOLEAN (line 986) | BOOLEAN
function BOOLEAN (line 1177) | BOOLEAN
function BOOLEAN (line 1213) | BOOLEAN
function VOID (line 1360) | VOID
function BOOLEAN (line 1474) | BOOLEAN
function BOOLEAN (line 1593) | BOOLEAN
FILE: hyperdbg/hyperlog/code/UnloadDll.c
function NTSTATUS (line 21) | NTSTATUS
function NTSTATUS (line 30) | NTSTATUS
FILE: hyperdbg/hyperlog/header/Logging.h
type NOTIFY_RECORD (line 39) | typedef struct _NOTIFY_RECORD
type BUFFER_HEADER (line 57) | typedef struct _BUFFER_HEADER
type LOG_BUFFER_INFORMATION (line 68) | typedef struct _LOG_BUFFER_INFORMATION
FILE: hyperdbg/hypertrace/code/Lbr.c
function VOID (line 91) | VOID
function VOID (line 104) | VOID
function VOID (line 133) | VOID
function VOID (line 161) | VOID
function BOOLEAN (line 199) | BOOLEAN
function BOOLEAN (line 242) | BOOLEAN
function BOOLEAN (line 271) | BOOLEAN
function BOOLEAN (line 366) | BOOLEAN
function LBR_STATE (line 399) | LBR_STATE *
function LBR_STATE (line 441) | LBR_STATE *
function VOID (line 473) | VOID
function VOID (line 493) | VOID
function VOID (line 517) | VOID
function BOOLEAN (line 547) | BOOLEAN
function VOID (line 583) | VOID
function VOID (line 617) | VOID
function BOOLEAN (line 657) | BOOLEAN
FILE: hyperdbg/hypertrace/code/Tracing.c
function VOID (line 22) | VOID
function BOOLEAN (line 63) | BOOLEAN
FILE: hyperdbg/hypertrace/code/UnloadDll.c
function NTSTATUS (line 21) | NTSTATUS
function NTSTATUS (line 30) | NTSTATUS
FILE: hyperdbg/hypertrace/header/Lbr.h
type LBR_STACK_ENTRY (line 31) | typedef struct _LBR_STACK_ENTRY
type LBR_DATA (line 38) | typedef struct _LBR_DATA
type LBR_CONFIG (line 45) | typedef struct _LBR_CONFIG
type LBR_STATE (line 52) | typedef struct _LBR_STATE
type LBR_IOCTL_REQUEST (line 61) | typedef struct _LBR_IOCTL_REQUEST
type XIOCTL_REQUEST (line 68) | typedef struct _XIOCTL_REQUEST
type CPU_LBR_MAP (line 128) | typedef struct _CPU_LBR_MAP
FILE: hyperdbg/include/SDK/headers/BasicTypes.h
type QWORD (line 20) | typedef unsigned long long QWORD;
type UINT64 (line 21) | typedef unsigned __int64 UINT64, *PUINT64;
type DWORD (line 22) | typedef unsigned long DWORD;
type BOOL (line 23) | typedef int BOOL;
type BYTE (line 24) | typedef unsigned char BYTE;
type WORD (line 25) | typedef unsigned short WORD;
type INT (line 26) | typedef int INT;
type UINT (line 27) | typedef unsigned int UINT;
type ULONG64 (line 29) | typedef unsigned __int64 ULONG64, *PULONG64;
type DWORD64 (line 30) | typedef unsigned __int64 DWORD64, *PDWORD64;
type CHAR (line 31) | typedef char CHAR;
type wchar_t (line 32) | typedef wchar_t WCHAR;
type UCHAR (line 35) | typedef unsigned char UCHAR;
type USHORT (line 36) | typedef unsigned short USHORT;
type ULONG (line 37) | typedef unsigned long ULONG;
type UCHAR (line 39) | typedef UCHAR BOOLEAN;
type BOOLEAN (line 40) | typedef BOOLEAN * PBOOLEAN;
type INT8 (line 42) | typedef signed char INT8, *PINT8;
type INT16 (line 43) | typedef signed short INT16, *PINT16;
type INT32 (line 44) | typedef signed int INT32, *PINT32;
type INT64 (line 45) | typedef signed __int64 INT64, *PINT64;
type UINT8 (line 46) | typedef unsigned char UINT8, *PUINT8;
type UINT16 (line 47) | typedef unsigned short UINT16, *PUINT16;
type UINT32 (line 48) | typedef unsigned int UINT32, *PUINT32;
type UINT64 (line 49) | typedef unsigned __int64 UINT64, *PUINT64;
type GUEST_REGS (line 70) | typedef struct GUEST_REGS
type XMM_REG (line 100) | typedef struct XMM_REG
type GUEST_XMM_REGS (line 108) | typedef struct GUEST_XMM_REGS
type GUEST_EXTRA_REGISTERS (line 142) | typedef struct GUEST_EXTRA_REGISTERS
type SCRIPT_ENGINE_GENERAL_REGISTERS (line 157) | typedef struct _SCRIPT_ENGINE_GENERAL_REGISTERS
type CR3_TYPE (line 170) | typedef struct _CR3_TYPE
FILE: hyperdbg/include/SDK/headers/Connection.h
type DEBUGGEE_PAUSING_REASON (line 18) | typedef enum _DEBUGGEE_PAUSING_REASON
type DEBUGGER_REMOTE_PACKET_REQUESTED_ACTION (line 55) | typedef enum _DEBUGGER_REMOTE_PACKET_REQUESTED_ACTION
type DEBUGGER_REMOTE_PACKET_TYPE (line 158) | typedef enum _DEBUGGER_REMOTE_PACKET_TYPE
type DEBUGGER_REMOTE_PACKET (line 192) | typedef struct _DEBUGGER_REMOTE_PACKET
FILE: hyperdbg/include/SDK/headers/Constants.h
type SEGMENT_REGISTERS (line 584) | typedef enum _SEGMENT_REGISTERS
FILE: hyperdbg/include/SDK/headers/DataTypes.h
type PAGING_LEVEL (line 23) | typedef enum _PAGING_LEVEL
type POOL_ALLOCATION_INTENTION (line 39) | typedef enum _POOL_ALLOCATION_INTENTION
type DEBUG_REGISTER_TYPE (line 68) | typedef enum _DEBUG_REGISTER_TYPE
type VMX_EXECUTION_MODE (line 80) | typedef enum _VMX_EXECUTION_MODE
type VMM_CALLBACK_EVENT_CALLING_STAGE_TYPE (line 90) | typedef enum _VMM_CALLBACK_EVENT_CALLING_STAGE_TYPE
type DEBUGGER_THREAD_PROCESS_TRACING (line 103) | typedef enum _DEBUGGER_THREAD_PROCESS_TRACING
type DEBUGGEE_USER_INPUT_PACKET (line 139) | typedef struct _DEBUGGEE_USER_INPUT_PACKET
type DEBUGGEE_EVENT_AND_ACTION_HEADER_FOR_REMOTE_PACKET (line 155) | typedef struct _DEBUGGEE_EVENT_AND_ACTION_HEADER_FOR_REMOTE_PACKET
type DEBUGGER_PAUSE_PACKET_RECEIVED (line 177) | typedef struct _DEBUGGER_PAUSE_PACKET_RECEIVED
type DEBUGGER_TRIGGERED_EVENT_DETAILS (line 191) | typedef struct _DEBUGGER_TRIGGERED_EVENT_DETAILS
type DEBUGGEE_KD_PAUSED_PACKET (line 206) | typedef struct _DEBUGGEE_KD_PAUSED_PACKET
type DEBUGGEE_UD_PAUSED_PACKET (line 228) | typedef struct _DEBUGGEE_UD_PAUSED_PACKET
type NOTIFY_TYPE (line 252) | typedef enum _NOTIFY_TYPE
type DEBUGGEE_MESSAGE_PACKET (line 266) | typedef struct _DEBUGGEE_MESSAGE_PACKET
type REGISTER_NOTIFY_BUFFER (line 277) | typedef struct _REGISTER_NOTIFY_BUFFER
type DIRECT_VMCALL_PARAMETERS (line 292) | typedef struct _DIRECT_VMCALL_PARAMETERS
type SYSCALL_CALLBACK_CONTEXT_PARAMS (line 308) | typedef struct _SYSCALL_CALLBACK_CONTEXT_PARAMS
type DEBUGGER_HOOK_MEMORY_TYPE (line 325) | typedef enum _DEBUGGER_HOOK_MEMORY_TYPE
type EPT_HOOKS_CONTEXT (line 335) | typedef struct _EPT_HOOKS_CONTEXT
type EPT_HOOKS_ADDRESS_DETAILS_FOR_MEMORY_MONITOR (line 346) | typedef struct _EPT_HOOKS_ADDRESS_DETAILS_FOR_MEMORY_MONITOR
type EPT_HOOKS_ADDRESS_DETAILS_FOR_EPTHOOK2 (line 362) | typedef struct _EPT_HOOKS_ADDRESS_DETAILS_FOR_EPTHOOK2
type EPT_SINGLE_HOOK_UNHOOKING_DETAILS (line 373) | typedef struct _EPT_SINGLE_HOOK_UNHOOKING_DETAILS
type VMX_SEGMENT_ACCESS_RIGHTS_TYPE (line 392) | typedef union
type VMX_SEGMENT_SELECTOR (line 451) | typedef struct _VMX_SEGMENT_SELECTOR
FILE: hyperdbg/include/SDK/headers/Events.h
type EXCEPTION_VECTORS (line 22) | typedef enum _EXCEPTION_VECTORS
type VMM_CALLBACK_TRIGGERING_EVENT_STATUS_TYPE (line 76) | typedef enum _VMM_CALLBACK_TRIGGERING_EVENT_STATUS_TYPE
type VMM_EVENT_TYPE_ENUM (line 94) | typedef enum _VMM_EVENT_TYPE_ENUM
type DEBUGGER_EVENT_ACTION_TYPE_ENUM (line 183) | typedef enum _DEBUGGER_EVENT_ACTION_TYPE_ENUM
type DEBUGGER_EVENT_SYSCALL_SYSRET_TYPE (line 195) | typedef enum _DEBUGGER_EVENT_SYSCALL_SYSRET_TYPE
type DEBUGGER_EVENT_MODE_TYPE (line 208) | typedef enum _DEBUGGER_EVENT_MODE_TYPE
type DEBUGGER_EVENT_TRACE_TYPE (line 221) | typedef enum _DEBUGGER_EVENT_TRACE_TYPE
type DEBUGGER_MODIFY_EVENTS_TYPE (line 234) | typedef enum _DEBUGGER_MODIFY_EVENTS_TYPE
type DEBUGGER_MODIFY_EVENTS (line 246) | typedef struct _DEBUGGER_MODIFY_EVENTS
type DEBUGGER_SHORT_CIRCUITING_EVENT (line 260) | typedef struct _DEBUGGER_SHORT_CIRCUITING_EVENT
type DEBUGGER_EVENT_OPTIONS (line 275) | typedef struct _DEBUGGER_EVENT_OPTIONS
type PROTECTED_HV_RESOURCES_PASSING_OVERS (line 294) | typedef enum _PROTECTED_HV_RESOURCES_PASSING_OVERS
type PROTECTED_HV_RESOURCES_TYPE (line 329) | typedef enum _PROTECTED_HV_RESOURCES_TYPE
type DEBUGGER_GENERAL_EVENT_DETAIL (line 354) | typedef struct _DEBUGGER_GENERAL_EVENT_DETAIL
type DEBUGGER_GENERAL_ACTION (line 410) | typedef struct _DEBUGGER_GENERAL_ACTION
type DEBUGGER_EVENT_AND_ACTION_RESULT (line 427) | typedef struct _DEBUGGER_EVENT_AND_ACTION_RESULT
FILE: hyperdbg/include/SDK/headers/HardwareDebugger.h
type HWDBG_ACTION_ENUMS (line 65) | typedef enum _HWDBG_ACTION_ENUMS
type HWDBG_RESPONSE_ENUMS (line 77) | typedef enum _HWDBG_RESPONSE_ENUMS
type HWDBG_SUCCESS_OR_ERROR_ENUMS (line 89) | typedef enum _HWDBG_SUCCESS_OR_ERROR_ENUMS
type HWDBG_PORT_INFORMATION_ITEMS (line 104) | typedef struct _HWDBG_PORT_INFORMATION_ITEMS
type HWDBG_INSTANCE_INFORMATION (line 115) | typedef struct _HWDBG_INSTANCE_INFORMATION
type HWDBG_SCRIPT_BUFFER (line 194) | typedef struct _HWDBG_SCRIPT_BUFFER
FILE: hyperdbg/include/SDK/headers/Pcie.h
type PORTABLE_PCI_COMMON_HEADER (line 49) | typedef struct _PORTABLE_PCI_COMMON_HEADER
type PORTABLE_PCI_DEVICE_HEADER (line 67) | typedef union _PORTABLE_PCI_DEVICE_HEADER
type PORTABLE_PCI_CONFIG_SPACE_HEADER_MINIMAL (line 118) | typedef struct _PORTABLE_PCI_CONFIG_SPACE_HEADER_MINIMAL
type PCI_DEV_MINIMAL (line 132) | typedef struct _PCI_DEV_MINIMAL
type PCI_DEV_MMIOBAR_INFO (line 144) | typedef struct _PCI_DEV_MMIOBAR_INFO
type PORTABLE_PCI_CONFIG_SPACE_HEADER (line 156) | typedef struct _PORTABLE_PCI_CONFIG_SPACE_HEADER
type PCI_DEV (line 166) | typedef struct _PCI_DEV
FILE: hyperdbg/include/SDK/headers/RequestStructures.h
type DEBUGGER_READ_PAGE_TABLE_ENTRIES_DETAILS (line 22) | typedef struct _DEBUGGER_READ_PAGE_TABLE_ENTRIES_DETAILS
type DEBUGGER_VA2PA_AND_PA2VA_COMMANDS (line 54) | typedef struct _DEBUGGER_VA2PA_AND_PA2VA_COMMANDS
type DEBUGGER_PAGE_IN_REQUEST (line 73) | typedef struct _DEBUGGER_PAGE_IN_REQUEST
type REVERSING_MACHINE_RECONSTRUCT_MEMORY_MODE (line 90) | typedef enum _REVERSING_MACHINE_RECONSTRUCT_MEMORY_MODE
type REVERSING_MACHINE_RECONSTRUCT_MEMORY_TYPE (line 101) | typedef enum _REVERSING_MACHINE_RECONSTRUCT_MEMORY_TYPE
type REVERSING_MACHINE_RECONSTRUCT_MEMORY_REQUEST (line 115) | typedef struct _REVERSING_MACHINE_RECONSTRUCT_MEMORY_REQUEST
type DEBUGGER_DT_COMMAND_OPTIONS (line 135) | typedef struct _DEBUGGER_DT_COMMAND_OPTIONS
type DEBUGGER_PREALLOC_COMMAND_TYPE (line 154) | typedef enum _DEBUGGER_PREALLOC_COMMAND_TYPE
type DEBUGGER_PREALLOC_COMMAND (line 174) | typedef struct _DEBUGGER_PREALLOC_COMMAND
type DEBUGGER_PREACTIVATE_COMMAND_TYPE (line 189) | typedef enum _DEBUGGER_PREACTIVATE_COMMAND_TYPE
type DEBUGGER_PREACTIVATE_COMMAND (line 202) | typedef struct _DEBUGGER_PREACTIVATE_COMMAND
type DEBUGGER_READ_READING_TYPE (line 218) | typedef enum _DEBUGGER_READ_READING_TYPE
type DEBUGGER_READ_MEMORY_TYPE (line 228) | typedef enum _DEBUGGER_READ_MEMORY_TYPE
type DEBUGGER_READ_MEMORY_ADDRESS_MODE (line 238) | typedef enum _DEBUGGER_READ_MEMORY_ADDRESS_MODE
type DEBUGGER_SHOW_MEMORY_STYLE (line 250) | typedef enum _DEBUGGER_SHOW_MEMORY_STYLE
type DEBUGGER_READ_MEMORY (line 266) | typedef struct _DEBUGGER_READ_MEMORY
type DEBUGGER_FLUSH_LOGGING_BUFFERS (line 294) | typedef struct _DEBUGGER_FLUSH_LOGGING_BUFFERS
type DEBUGGER_TEST_QUERY_STATE (line 312) | typedef enum _DEBUGGER_TEST_QUERY_STATE
type DEBUGGER_DEBUGGER_TEST_QUERY_BUFFER (line 333) | typedef struct _DEBUGGER_DEBUGGER_TEST_QUERY_BUFFER
type DEBUGGER_PERFORM_KERNEL_TESTS (line 351) | typedef struct _DEBUGGER_PERFORM_KERNEL_TESTS
type DEBUGGER_SEND_COMMAND_EXECUTION_FINISHED_SIGNAL (line 367) | typedef struct _DEBUGGER_SEND_COMMAND_EXECUTION_FINISHED_SIGNAL
type DEBUGGEE_SEND_GENERAL_PACKET_FROM_DEBUGGEE_TO_DEBUGGER (line 384) | typedef struct _DEBUGGEE_SEND_GENERAL_PACKET_FROM_DEBUGGEE_TO_DEBUGGER
type DEBUGGER_SEND_USERMODE_MESSAGES_TO_DEBUGGER (line 408) | typedef struct _DEBUGGER_SEND_USERMODE_MESSAGES_TO_DEBUGGER
type DEBUGGER_MSR_ACTION_TYPE (line 430) | typedef enum _DEBUGGER_MSR_ACTION_TYPE
type DEBUGGER_READ_AND_WRITE_ON_MSR (line 440) | typedef struct _DEBUGGER_READ_AND_WRITE_ON_MSR
type DEBUGGER_EDIT_MEMORY_TYPE (line 461) | typedef enum _DEBUGGER_EDIT_MEMORY_TYPE
type DEBUGGER_EDIT_MEMORY_BYTE_SIZE (line 471) | typedef enum _DEBUGGER_EDIT_MEMORY_BYTE_SIZE
type DEBUGGER_EDIT_MEMORY (line 482) | typedef struct _DEBUGGER_EDIT_MEMORY
type DEBUGGER_SEARCH_MEMORY_TYPE (line 503) | typedef enum _DEBUGGER_SEARCH_MEMORY_TYPE
type DEBUGGER_SEARCH_MEMORY_BYTE_SIZE (line 515) | typedef enum _DEBUGGER_SEARCH_MEMORY_BYTE_SIZE
type DEBUGGER_SEARCH_MEMORY (line 527) | typedef struct _DEBUGGER_SEARCH_MEMORY
type SYSTEM_CALL_NUMBERS_INFORMATION (line 550) | typedef struct _SYSTEM_CALL_NUMBERS_INFORMATION
type DEBUGGER_HIDE_AND_TRANSPARENT_DEBUGGER_MODE (line 578) | typedef struct _DEBUGGER_HIDE_AND_TRANSPARENT_DEBUGGER_MODE
type DEBUGGER_PREPARE_DEBUGGEE (line 612) | typedef struct _DEBUGGER_PREPARE_DEBUGGEE
type DEBUGGEE_CHANGE_CORE_PACKET (line 629) | typedef struct _DEBUGGEE_CHANGE_CORE_PACKET
type DEBUGGER_ATTACH_DETACH_USER_MODE_PROCESS_ACTION_TYPE (line 645) | typedef enum _DEBUGGER_ATTACH_DETACH_USER_MODE_PROCESS_ACTION_TYPE
type DEBUGGER_ATTACH_DETACH_USER_MODE_PROCESS (line 662) | typedef struct _DEBUGGER_ATTACH_DETACH_USER_MODE_PROCESS
type DEBUGGER_QUERY_ACTIVE_PROCESSES_OR_THREADS_TYPES (line 690) | typedef enum _DEBUGGER_QUERY_ACTIVE_PROCESSES_OR_THREADS_TYPES
type DEBUGGER_QUERY_ACTIVE_PROCESSES_OR_THREADS_ACTIONS (line 705) | typedef enum _DEBUGGER_QUERY_ACTIVE_PROCESSES_OR_THREADS_ACTIONS
type DEBUGGEE_PROCESS_LIST_NEEDED_DETAILS (line 718) | typedef struct _DEBUGGEE_PROCESS_LIST_NEEDED_DETAILS
type DEBUGGEE_THREAD_LIST_NEEDED_DETAILS (line 732) | typedef struct _DEBUGGEE_THREAD_LIST_NEEDED_DETAILS
type DEBUGGEE_PROCESS_LIST_DETAILS_ENTRY (line 748) | typedef struct _DEBUGGEE_PROCESS_LIST_DETAILS_ENTRY
type DEBUGGEE_THREAD_LIST_DETAILS_ENTRY (line 762) | typedef struct _DEBUGGEE_THREAD_LIST_DETAILS_ENTRY
type DEBUGGER_QUERY_ACTIVE_PROCESSES_OR_THREADS (line 776) | typedef struct _DEBUGGER_QUERY_ACTIVE_PROCESSES_OR_THREADS
type DEBUGGER_SINGLE_CALLSTACK_FRAME (line 795) | typedef struct _DEBUGGER_SINGLE_CALLSTACK_FRAME
type DEBUGGER_CALLSTACK_DISPLAY_METHOD (line 812) | typedef enum _DEBUGGER_CALLSTACK_DISPLAY_METHOD
type DEBUGGER_CALLSTACK_REQUEST (line 823) | typedef struct _DEBUGGER_CALLSTACK_REQUEST
type USERMODE_DEBUGGING_THREAD_OR_PROCESS_STATE_DETAILS (line 844) | typedef struct _USERMODE_DEBUGGING_THREAD_OR_PROCESS_STATE_DETAILS
type DEBUGGER_EVENT_ACTION_RUN_SCRIPT_CONFIGURATION (line 860) | typedef struct _DEBUGGER_EVENT_ACTION_RUN_SCRIPT_CONFIGURATION
type DEBUGGER_EVENT_REQUEST_BUFFER (line 874) | typedef struct _DEBUGGER_EVENT_REQUEST_BUFFER
type DEBUGGER_EVENT_REQUEST_CUSTOM_CODE (line 886) | typedef struct _DEBUGGER_EVENT_REQUEST_CUSTOM_CODE
type DEBUGGER_UD_COMMAND_ACTION_TYPE (line 901) | typedef enum _DEBUGGER_UD_COMMAND_ACTION_TYPE
type DEBUGGER_UD_COMMAND_ACTION (line 915) | typedef struct _DEBUGGER_UD_COMMAND_ACTION
type DEBUGGER_UD_COMMAND_PACKET (line 929) | typedef struct _DEBUGGER_UD_COMMAND_PACKET
type DEBUGGEE_DETAILS_AND_SWITCH_PROCESS_TYPE (line 947) | typedef enum _DEBUGGEE_DETAILS_AND_SWITCH_PROCESS_TYPE
type DEBUGGEE_DETAILS_AND_SWITCH_PROCESS_PACKET (line 961) | typedef struct _DEBUGGEE_DETAILS_AND_SWITCH_PROCESS_PACKET
type DEBUGGEE_DETAILS_AND_SWITCH_THREAD_TYPE (line 987) | typedef enum _DEBUGGEE_DETAILS_AND_SWITCH_THREAD_TYPE
type DEBUGGEE_DETAILS_AND_SWITCH_THREAD_PACKET (line 1000) | typedef struct _DEBUGGEE_DETAILS_AND_SWITCH_THREAD_PACKET
type DEBUGGER_REMOTE_STEPPING_REQUEST (line 1028) | typedef enum _DEBUGGER_REMOTE_STEPPING_REQUEST
type DEBUGGEE_STEP_PACKET (line 1044) | typedef struct _DEBUGGEE_STEP_PACKET
type DEBUGGER_APIC_REQUEST_TYPE (line 1069) | typedef enum _DEBUGGER_APIC_REQUEST_TYPE
type DEBUGGER_APIC_REQUEST (line 1080) | typedef struct _DEBUGGER_APIC_REQUEST
type LAPIC_PAGE (line 1107) | typedef struct _LAPIC_PAGE
type IO_APIC_ENTRY_PACKETS (line 1213) | typedef struct _IO_APIC_ENTRY_PACKETS
type SMI_OPERATION_REQUEST_TYPE (line 1238) | typedef enum _SMI_OPERATION_REQUEST_TYPE
type SMI_OPERATION_PACKETS (line 1249) | typedef struct _SMI_OPERATION_PACKETS
type INTERRUPT_DESCRIPTOR_TABLE_ENTRIES_PACKETS (line 1277) | typedef struct _INTERRUPT_DESCRIPTOR_TABLE_ENTRIES_PACKETS
type DEBUGGEE_FORMATS_PACKET (line 1305) | typedef struct _DEBUGGEE_FORMATS_PACKET
type DEBUGGEE_SYMBOL_REQUEST_PACKET (line 1319) | typedef struct _DEBUGGEE_SYMBOL_REQUEST_PACKET
type DEBUGGEE_BP_PACKET (line 1332) | typedef struct _DEBUGGEE_BP_PACKET
type DEBUGGEE_BREAKPOINT_MODIFICATION_REQUEST (line 1355) | typedef enum _DEBUGGEE_BREAKPOINT_MODIFICATION_REQUEST
type DEBUGGEE_BP_LIST_OR_MODIFY_PACKET (line 1369) | typedef struct _DEBUGGEE_BP_LIST_OR_MODIFY_PACKET
type DEBUGGER_CONDITIONAL_JUMP_STATUS (line 1384) | typedef enum _DEBUGGER_CONDITIONAL_JUMP_STATUS
type DEBUGGEE_SCRIPT_PACKET (line 1401) | typedef struct _DEBUGGEE_SCRIPT_PACKET
type DEBUGGEE_RESULT_OF_SEARCH_PACKET (line 1422) | typedef struct _DEBUGGEE_RESULT_OF_SEARCH_PACKET
type DEBUGGEE_REGISTER_READ_DESCRIPTION (line 1436) | typedef struct _DEBUGGEE_REGISTER_READ_DESCRIPTION
type DEBUGGEE_REGISTER_WRITE_DESCRIPTION (line 1451) | typedef struct _DEBUGGEE_REGISTER_WRITE_DESCRIPTION
type DEBUGGEE_PCITREE_REQUEST_RESPONSE_PACKET (line 1469) | typedef struct _DEBUGGEE_PCITREE_REQUEST_RESPONSE_PACKET
type DEBUGGEE_PCIDEVINFO_REQUEST_RESPONSE_PACKET (line 1494) | typedef struct _DEBUGGEE_PCIDEVINFO_REQUEST_RESPONSE_PACKET
FILE: hyperdbg/include/SDK/headers/ScriptEngineCommonDefinitions.h
type SYMBOL (line 5) | typedef struct SYMBOL
type HWDBG_SHORT_SYMBOL (line 15) | typedef struct HWDBG_SHORT_SYMBOL
type SYMBOL_BUFFER (line 22) | typedef struct SYMBOL_BUFFER {
type SYMBOL_MAP (line 29) | typedef struct SYMBOL_MAP
type ACTION_BUFFER (line 35) | typedef struct ACTION_BUFFER {
type REGS_ENUM (line 303) | typedef enum REGS_ENUM {
FILE: hyperdbg/include/SDK/headers/Symbols.h
type MODULE_SYMBOL_DETAIL (line 23) | typedef struct _MODULE_SYMBOL_DETAIL
type USERMODE_LOADED_MODULE_SYMBOLS (line 38) | typedef struct _USERMODE_LOADED_MODULE_SYMBOLS
type USERMODE_LOADED_MODULE_DETAILS (line 46) | typedef struct _USERMODE_LOADED_MODULE_DETAILS
type VOID (line 65) | typedef VOID (*SymbolMapCallback)(UINT64 Address, char * ModuleName, cha...
type DEBUGGER_UPDATE_SYMBOL_TABLE (line 72) | typedef struct _DEBUGGER_UPDATE_SYMBOL_TABLE
type DEBUGGEE_SYMBOL_UPDATE_RESULT (line 88) | typedef struct _DEBUGGEE_SYMBOL_UPDATE_RESULT
FILE: hyperdbg/include/SDK/imports/kernel/HyperDbgHyperLogIntrinsics.h
type LOG_TYPE (line 21) | typedef enum _LOG_TYPE
FILE: hyperdbg/include/SDK/modules/HyperEvade.h
type BOOLEAN (line 23) | typedef BOOLEAN (*LOG_CALLBACK_PREPARE_AND_SEND_MESSAGE_TO_QUEUE)(UINT32...
type BOOLEAN (line 34) | typedef BOOLEAN (*LOG_CALLBACK_SEND_MESSAGE_TO_QUEUE)(UINT32 OperationCo...
type BOOLEAN (line 40) | typedef BOOLEAN (*LOG_CALLBACK_SEND_BUFFER)(_In_ UINT32 ...
type BOOLEAN (line 49) | typedef BOOLEAN (*LOG_CALLBACK_CHECK_IF_BUFFER_IS_FULL)(BOOLEAN Priority);
type BOOLEAN (line 55) | typedef BOOLEAN (*CHECK_ACCESS_VALIDITY_AND_SAFETY)(UINT64 TargetAddress...
type BOOLEAN (line 61) | typedef BOOLEAN (*MEMORY_MAPPER_READ_MEMORY_SAFE_ON_TARGET_PROCESS)(UINT...
type BOOLEAN (line 67) | typedef BOOLEAN (*MEMORY_MAPPER_WRITE_MEMORY_SAFE_ON_TARGET_PROCESS)(UIN...
type PCHAR (line 73) | typedef PCHAR (*COMMON_GET_PROCESS_NAME_FROM_PROCESS_CONTROL_BLOCK)(PVOI...
type BOOLEAN (line 79) | typedef BOOLEAN (*SYSCALL_CALLBACK_SET_TRAP_FLAG_AFTER_SYSCALL)(GUEST_RE...
type VOID (line 89) | typedef VOID (*HV_HANDLE_TRAPFLAG)();
type VOID (line 95) | typedef VOID (*EVENT_INJECT_GENERAL_PROTECTION)();
type HYPEREVADE_CALLBACKS (line 105) | typedef struct _HYPEREVADE_CALLBACKS
FILE: hyperdbg/include/SDK/modules/HyperLog.h
type BOOLEAN (line 23) | typedef BOOLEAN (*CHECK_VMX_OPERATION)();
type BOOLEAN (line 30) | typedef BOOLEAN (*CHECK_IMMEDIATE_MESSAGE_SENDING)(UINT32 OperationCode);
type BOOLEAN (line 36) | typedef BOOLEAN (*SEND_IMMEDIATE_MESSAGE)(CHAR * OptionalBuffer,
type MESSAGE_TRACING_CALLBACKS (line 48) | typedef struct _MESSAGE_TRACING_CALLBACKS
FILE: hyperdbg/include/SDK/modules/HyperTrace.h
type BOOLEAN (line 23) | typedef BOOLEAN (*LOG_CALLBACK_PREPARE_AND_SEND_MESSAGE_TO_QUEUE)(UINT32...
type BOOLEAN (line 34) | typedef BOOLEAN (*LOG_CALLBACK_SEND_MESSAGE_TO_QUEUE)(UINT32 OperationCo...
type BOOLEAN (line 40) | typedef BOOLEAN (*LOG_CALLBACK_SEND_BUFFER)(_In_ UINT32 ...
type BOOLEAN (line 49) | typedef BOOLEAN (*LOG_CALLBACK_CHECK_IF_BUFFER_IS_FULL)(BOOLEAN Priority);
type BOOLEAN (line 55) | typedef BOOLEAN (*CHECK_ACCESS_VALIDITY_AND_SAFETY)(UINT64 TargetAddress...
type BOOLEAN (line 61) | typedef BOOLEAN (*MEMORY_MAPPER_READ_MEMORY_SAFE_ON_TARGET_PROCESS)(UINT...
type BOOLEAN (line 67) | typedef BOOLEAN (*MEMORY_MAPPER_WRITE_MEMORY_SAFE_ON_TARGET_PROCESS)(UIN...
type PCHAR (line 73) | typedef PCHAR (*COMMON_GET_PROCESS_NAME_FROM_PROCESS_CONTROL_BLOCK)(PVOI...
type HYPERTRACE_CALLBACKS (line 83) | typedef struct _HYPERTRACE_CALLBACKS
FILE: hyperdbg/include/SDK/modules/VMM.h
type BOOLEAN (line 23) | typedef BOOLEAN (*LOG_CALLBACK_PREPARE_AND_SEND_MESSAGE_TO_QUEUE)(UINT32...
type BOOLEAN (line 34) | typedef BOOLEAN (*LOG_CALLBACK_SEND_MESSAGE_TO_QUEUE)(UINT32 OperationCo...
type BOOLEAN (line 40) | typedef BOOLEAN (*LOG_CALLBACK_SEND_BUFFER)(_In_ UINT32 ...
type BOOLEAN (line 49) | typedef BOOLEAN (*LOG_CALLBACK_CHECK_IF_BUFFER_IS_FULL)(BOOLEAN Priority);
type VMM_CALLBACK_TRIGGERING_EVENT_STATUS_TYPE (line 55) | typedef VMM_CALLBACK_TRIGGERING_EVENT_STATUS_TYPE (*VMM_CALLBACK_TRIGGER...
type BOOLEAN (line 65) | typedef BOOLEAN (*DEBUGGING_CALLBACK_HANDLE_BREAKPOINT_EXCEPTION)(UINT32...
type BOOLEAN (line 71) | typedef BOOLEAN (*DEBUGGING_CALLBACK_HANDLE_DEBUG_BREAKPOINT_EXCEPTION)(...
type BOOLEAN (line 77) | typedef BOOLEAN (*DEBUGGING_CALLBACK_CHECK_THREAD_INTERCEPTION)(UINT32 C...
type VOID (line 83) | typedef VOID (*VMM_CALLBACK_REGISTERED_MTF_HANDLER)(UINT32 CoreId);
type BOOLEAN (line 89) | typedef BOOLEAN (*VMM_CALLBACK_RESTORE_EPT_STATE)(UINT32 CoreId);
type BOOLEAN (line 95) | typedef BOOLEAN (*VMM_CALLBACK_CHECK_UNHANDLED_EPT_VIOLATION)(UINT32 Cor...
type VOID (line 101) | typedef VOID (*INTERCEPTION_CALLBACK_TRIGGER_CR3_CHANGE)(UINT32 CoreId);
type BOOLEAN (line 107) | typedef BOOLEAN (*INTERCEPTION_CALLBACK_TRIGGER_CLOCK_AND_IPI)(_In_ UINT...
type BOOLEAN (line 113) | typedef BOOLEAN (*BREAKPOINT_CHECK_AND_HANDLE_REAPPLYING_BREAKPOINT)(UIN...
type VOID (line 119) | typedef VOID (*VMM_CALLBACK_NMI_BROADCAST_REQUEST_HANDLER)(UINT32 CoreId...
type BOOLEAN (line 125) | typedef BOOLEAN (*KD_CHECK_AND_HANDLE_NMI_CALLBACK)(UINT32 CoreId);
type VOID (line 131) | typedef VOID (*VMM_CALLBACK_SET_LAST_ERROR)(UINT32 LastError);
type BOOLEAN (line 137) | typedef BOOLEAN (*VMM_CALLBACK_QUERY_TERMINATE_PROTECTED_RESOURCE)(UINT3...
type BOOLEAN (line 146) | typedef BOOLEAN (*KD_QUERY_DEBUGGER_THREAD_OR_PROCESS_TRACING_DETAILS_BY...
type BOOLEAN (line 152) | typedef BOOLEAN (*VMM_CALLBACK_VMCALL_HANDLER)(UINT32 CoreId,
type VMM_CALLBACKS (line 166) | typedef struct _VMM_CALLBACKS
FILE: hyperdbg/include/components/interface/HyperLogCallback.c
function BOOLEAN (line 27) | BOOLEAN
function BOOLEAN (line 70) | BOOLEAN
function BOOLEAN (line 99) | BOOLEAN
function BOOLEAN (line 122) | BOOLEAN
FILE: hyperdbg/include/components/optimizations/code/BinarySearch.c
function VOID (line 22) | VOID
function BOOLEAN (line 45) | BOOLEAN
FILE: hyperdbg/include/components/optimizations/code/InsertionSort.c
function BOOLEAN (line 25) | BOOLEAN
function BOOLEAN (line 68) | BOOLEAN
FILE: hyperdbg/include/components/optimizations/code/OptimizationsExamples.c
function VOID (line 26) | VOID
FILE: hyperdbg/include/components/spinlock/code/Spinlock.c
function BOOLEAN (line 40) | BOOLEAN
function SpinlockLock (line 51) | void
function SpinlockInterlockedCompareExchange (line 87) | void
function SpinlockLockWithCustomWait (line 124) | void
function SpinlockUnlock (line 157) | void
function BOOLEAN (line 168) | BOOLEAN
FILE: hyperdbg/include/hyper-v/HypervTlfs.h
type hv_isolation_type (line 154) | enum hv_isolation_type
type HV_X64_MSR_STIMER_CONFIG_CONTENTS (line 279) | typedef struct _HV_X64_MSR_STIMER_CONFIG_CONTENTS
type hv_mem_host_visibility (line 300) | enum hv_mem_host_visibility
type hv_gpa_range_for_visibility (line 309) | struct hv_gpa_range_for_visibility
type hv_reenlightenment_control (line 343) | struct hv_reenlightenment_control
type hv_tsc_emulation_control (line 352) | struct hv_tsc_emulation_control
type hv_tsc_emulation_status (line 358) | struct hv_tsc_emulation_status
type hv_nested_enlightenments_control (line 389) | struct hv_nested_enlightenments_control
type hv_vp_assist_page (line 403) | struct hv_vp_assist_page
type hv_enlightened_vmcs (line 414) | struct hv_enlightened_vmcs
type hv_partition_assist_pg (line 622) | struct hv_partition_assist_pg
type hv_interrupt_type (line 627) | enum hv_interrupt_type
FILE: hyperdbg/include/keystone/arm.h
type ks_err_asm_arm (line 13) | typedef enum ks_err_asm_arm {
FILE: hyperdbg/include/keystone/arm64.h
type ks_err_asm_arm64 (line 13) | typedef enum ks_err_asm_arm64 {
FILE: hyperdbg/include/keystone/evm.h
type ks_err_asm_evm (line 13) | typedef enum ks_err_asm_evm {
FILE: hyperdbg/include/keystone/hexagon.h
type ks_err_asm_hexagon (line 13) | typedef enum ks_err_asm_hexagon {
FILE: hyperdbg/include/keystone/keystone.h
type ks_struct (line 37) | struct ks_struct
type ks_engine (line 38) | typedef struct ks_struct ks_engine;
type ks_arch (line 56) | typedef enum ks_arch
type ks_mode (line 72) | typedef enum ks_mode
type ks_err (line 110) | typedef enum ks_err
type ks_opt_type (line 175) | typedef enum ks_opt_type
type ks_opt_value (line 182) | typedef enum ks_opt_value
FILE: hyperdbg/include/keystone/mips.h
type ks_err_asm_mips (line 13) | typedef enum ks_err_asm_mips {
FILE: hyperdbg/include/keystone/ppc.h
type ks_err_asm_ppc (line 13) | typedef enum ks_err_asm_ppc {
FILE: hyperdbg/include/keystone/riscv.h
type ks_err_asm_riscv (line 13) | typedef enum ks_err_asm_riscv {
FILE: hyperdbg/include/keystone/sparc.h
type ks_err_asm_sparc (line 13) | typedef enum ks_err_asm_sparc {
FILE: hyperdbg/include/keystone/systemz.h
type ks_err_asm_systemz (line 13) | typedef enum ks_err_asm_systemz {
FILE: hyperdbg/include/keystone/x86.h
type ks_err_asm_x86 (line 13) | typedef enum ks_err_asm_x86 {
FILE: hyperdbg/include/platform/kernel/code/PlatformMem.c
function PLAT_PTR (line 36) | PLAT_PTR
function PlatformFreeMemory (line 71) | void
function PLAT_STATUS (line 93) | PLAT_STATUS
function PlatformSetMemory (line 120) | void
function PLAT_PTR (line 149) | PLAT_PTR
function PLAT_PTR (line 173) | PLAT_PTR
function PLAT_PTR (line 194) | PLAT_PTR
function PLAT_PTR (line 216) | PLAT_PTR
function PLAT_PTR (line 239) | PLAT_PTR
FILE: hyperdbg/include/platform/kernel/header/PlatformTypes.h
type PVOID (line 23) | typedef PVOID PLAT_PTR;
type ULONG (line 24) | typedef ULONG PLAT_U32;
type ULONGLONG (line 25) | typedef ULONGLONG PLAT_U64;
type SIZE_T (line 26) | typedef SIZE_T PLAT_SIZE;
type NTSTATUS (line 27) | typedef NTSTATUS PLAT_STATUS;
type u32 (line 39) | typedef u32 PLAT_U32;
type u64 (line 40) | typedef u64 PLAT_U64;
type PLAT_SIZE (line 41) | typedef size_t PLAT_SIZE;
type PLAT_STATUS (line 42) | typedef long PLAT_STATUS;
FILE: hyperdbg/include/platform/user/header/Windows.h
type RTL_PROCESS_MODULE_INFORMATION (line 18) | typedef struct _RTL_PROCESS_MODULE_INFORMATION
type RTL_PROCESS_MODULES (line 32) | typedef struct _RTL_PROCESS_MODULES
function FORCEINLINE (line 40) | FORCEINLINE VOID
function BOOLEAN (line 48) | BOOLEAN
function FORCEINLINE (line 55) | FORCEINLINE BOOLEAN
function FORCEINLINE (line 70) | FORCEINLINE PLIST_ENTRY
function FORCEINLINE (line 85) | FORCEINLINE PLIST_ENTRY
function FORCEINLINE (line 100) | FORCEINLINE VOID
function FORCEINLINE (line 114) | FORCEINLINE VOID
function FORCEINLINE (line 128) | FORCEINLINE VOID
function FORCEINLINE (line 141) | FORCEINLINE PSINGLE_LIST_ENTRY
function FORCEINLINE (line 155) | FORCEINLINE VOID
type SYSTEM_INFORMATION_CLASS2 (line 174) | typedef enum _SYSTEM_INFORMATION_CLASS2
FILE: hyperdbg/kdserial/apm88xxxx.c
function BOOLEAN (line 59) | BOOLEAN
function BOOLEAN (line 105) | BOOLEAN
FILE: hyperdbg/kdserial/bcm2835.c
function BOOLEAN (line 49) | BOOLEAN
function BOOLEAN (line 128) | BOOLEAN
function UART_STATUS (line 166) | UART_STATUS
function UART_STATUS (line 221) | UART_STATUS
function BOOLEAN (line 289) | BOOLEAN
FILE: hyperdbg/kdserial/common.c
function NTSTATUS (line 14) | NTSTATUS
function NTSTATUS (line 22) | NTSTATUS
FILE: hyperdbg/kdserial/ioaccess.c
function UCHAR (line 20) | UCHAR
function USHORT (line 27) | USHORT
function ULONG (line 34) | ULONG
function VOID (line 41) | VOID
function VOID (line 49) | VOID
function VOID (line 57) | VOID
function UCHAR (line 65) | UCHAR
function USHORT (line 72) | USHORT
function ULONG (line 79) | ULONG
function VOID (line 86) | VOID
function VOID (line 94) | VOID
function VOID (line 102) | VOID
FILE: hyperdbg/kdserial/msm8974.c
function BOOLEAN (line 245) | BOOLEAN
function BOOLEAN (line 320) | BOOLEAN
function UART_STATUS (line 415) | UART_STATUS
function UART_STATUS (line 540) | UART_STATUS
function BOOLEAN (line 599) | BOOLEAN
FILE: hyperdbg/kdserial/msm8x60.c
function BOOLEAN (line 246) | BOOLEAN
function BOOLEAN (line 321) | BOOLEAN
function UART_STATUS (line 416) | UART_STATUS
function UART_STATUS (line 541) | UART_STATUS
function BOOLEAN (line 600) | BOOLEAN
FILE: hyperdbg/kdserial/mx6uart.c
type MX6_UART_REGISTERS (line 54) | typedef struct _MX6_UART_REGISTERS
function BOOLEAN (line 83) | BOOLEAN
function BOOLEAN (line 170) | BOOLEAN
function UART_STATUS (line 209) | UART_STATUS
function UART_STATUS (line 275) | UART_STATUS
function BOOLEAN (line 341) | BOOLEAN
FILE: hyperdbg/kdserial/nvidia.c
function BOOLEAN (line 54) | BOOLEAN
FILE: hyperdbg/kdserial/omap.c
function BOOLEAN (line 54) | BOOLEAN
function BOOLEAN (line 148) | BOOLEAN
FILE: hyperdbg/kdserial/pl011.c
function BOOLEAN (line 94) | BOOLEAN
function BOOLEAN (line 214) | BOOLEAN
function BOOLEAN (line 321) | BOOLEAN
function BOOLEAN (line 362) | BOOLEAN
function UART_STATUS (line 399) | UART_STATUS
function UART_STATUS (line 472) | UART_STATUS
function BOOLEAN (line 542) | BOOLEAN
FILE: hyperdbg/kdserial/sam5250.c
function BOOLEAN (line 49) | BOOLEAN
function BOOLEAN (line 134) | BOOLEAN
function UART_STATUS (line 171) | UART_STATUS
function UART_STATUS (line 240) | UART_STATUS
function BOOLEAN (line 300) | BOOLEAN
FILE: hyperdbg/kdserial/sdm845.c
type FIFO_TX_BLOCK (line 937) | typedef struct _FIFO_TX_BLOCK
function BOOLEAN (line 959) | BOOLEAN
function BOOLEAN (line 1047) | BOOLEAN
function BOOLEAN (line 1096) | BOOLEAN
function UART_STATUS (line 1186) | UART_STATUS
function UART_STATUS (line 1302) | UART_STATUS
function BOOLEAN (line 1362) | BOOLEAN
FILE: hyperdbg/kdserial/spimax311.c
type DW_APB_SSI_REGISTERS (line 182) | typedef struct _DW_APB_SSI_REGISTERS
type SERIAL_PORT_MAX311XE (line 218) | typedef struct _SERIAL_PORT_MAX311XE
function VOID (line 239) | VOID
function UINT16 (line 339) | UINT16
function VOID (line 416) | VOID
function BOOLEAN (line 454) | BOOLEAN
function BOOLEAN (line 519) | BOOLEAN
function BOOLEAN (line 588) | BOOLEAN
function UART_STATUS (line 703) | UART_STATUS
function UART_STATUS (line 787) | UART_STATUS
function BOOLEAN (line 873) | BOOLEAN
FILE: hyperdbg/kdserial/uart16550.c
function VOID (line 52) | static VOID
function UCHAR (line 65) | static UCHAR
function VOID (line 76) | VOID
function VOID (line 103) | VOID
function VOID (line 118) | VOID
function BOOLEAN (line 124) | BOOLEAN
function BOOLEAN (line 136) | BOOLEAN
function BOOLEAN (line 238) | BOOLEAN
function BOOLEAN (line 310) | BOOLEAN
function BOOLEAN (line 388) | BOOLEAN
function BOOLEAN (line 435) | BOOLEAN
function BOOLEAN (line 513) | BOOLEAN
function UART_STATUS (line 545) | UART_STATUS
function UART_STATUS (line 644) | UART_STATUS
function BOOLEAN (line 751) | BOOLEAN
FILE: hyperdbg/kdserial/uartio.c
function VOID (line 44) | static VOID
function UCHAR (line 57) | static UCHAR
function VOID (line 68) | static VOID
function UCHAR (line 81) | static UCHAR
function VOID (line 92) | static VOID
function UCHAR (line 105) | static UCHAR
function VOID (line 118) | static VOID
function UCHAR (line 131) | static UCHAR
function VOID (line 150) | static VOID
function UCHAR (line 163) | static UCHAR
function VOID (line 174) | static VOID
function UCHAR (line 187) | static UCHAR
function VOID (line 198) | static VOID
function UCHAR (line 211) | static UCHAR
function BOOLEAN (line 224) | BOOLEAN
FILE: hyperdbg/kdserial/uartp.h
type ACPI_GENERIC_ACCESS_SIZE (line 48) | typedef enum _ACPI_GENERIC_ACCESS_SIZE
FILE: hyperdbg/kdserial/usif.c
function BOOLEAN (line 29) | BOOLEAN
function BOOLEAN (line 78) | BOOLEAN
function UART_STATUS (line 115) | UART_STATUS
function UART_STATUS (line 173) | UART_STATUS
function BOOLEAN (line 230) | BOOLEAN
FILE: hyperdbg/kdserial/win11sdk.h
function HviGetDebugDeviceOptions (line 7) | inline void
function HviGetHypervisorFeatures (line 12) | inline void
function HviIsHypervisorVendorMicrosoft (line 17) | inline void
FILE: hyperdbg/libhyperdbg/code/app/dllmain.cpp
function BOOL (line 22) | BOOL APIENTRY
FILE: hyperdbg/libhyperdbg/code/app/libhyperdbg.cpp
function VOID (line 47) | VOID
function PVOID (line 60) | PVOID
function VOID (line 83) | VOID
function VOID (line 98) | VOID
function VOID (line 172) | VOID
function DWORD (line 498) | DWORD WINAPI
function BOOLEAN (line 516) | BOOLEAN
function INT (line 562) | INT
function HyperDbgStopDriver (line 608) | int
function INT (line 630) | INT
function HyperDbgUninstallDriver (line 642) | int
function INT (line 664) | INT
function INT (line 676) | INT
function INT (line 753) | INT
function INT (line 858) | INT
FILE: hyperdbg/libhyperdbg/code/common/common.cpp
function string (line 26) | string
function VOID (line 46) | VOID
function BOOL (line 72) | BOOL
function VOID (line 90) | VOID
function Split (line 116) | const vector<string>
function BOOLEAN (line 144) | BOOLEAN
function BOOLEAN (line 161) | BOOLEAN
function BOOLEAN (line 188) | BOOLEAN
function HexToBytes (line 215) | vector<char>
function BOOLEAN (line 239) | BOOLEAN
function BOOLEAN (line 346) | BOOLEAN
function BOOLEAN (line 446) | BOOLEAN
function GetCaseSensitiveStringFromCommandToken (line 466) | std::string
function GetLowerStringFromCommandToken (line 483) | std::string
function BOOLEAN (line 502) | BOOLEAN
function BOOLEAN (line 523) | BOOLEAN
function BOOLEAN (line 545) | BOOLEAN
function BOOLEAN (line 568) | BOOLEAN
function BOOLEAN (line 589) | BOOLEAN
function BOOLEAN (line 625) | BOOLEAN
function BOOL (line 642) | BOOL
function ltrim (line 690) | static inline void
function rtrim (line 701) | static inline void
function Trim (line 714) | void
function RemoveSpaces (line 726) | std::string
function BOOLEAN (line 739) | BOOLEAN
function BOOLEAN (line 752) | BOOLEAN
function BOOLEAN (line 764) | BOOLEAN
function VOID (line 791) | VOID
function ListDirectory (line 819) | std::vector<std::string>
function VOID (line 849) | VOID
function FindCaseInsensitive (line 865) | size_t
function FindCaseInsensitiveW (line 884) | size_t
function VOID (line 922) | VOID
function UINT32 (line 933) | UINT32
function BOOLEAN (line 951) | BOOLEAN
function BOOLEAN (line 992) | BOOLEAN
function BOOLEAN (line 1048) | BOOLEAN
function BOOLEAN (line 1086) | BOOLEAN
function UINT32 (line 1264) | UINT32
FILE: hyperdbg/libhyperdbg/code/common/spinlock.cpp
function BOOLEAN (line 40) | BOOLEAN
function SpinlockLock (line 51) | void
function SpinlockLockWithCustomWait (line 85) | void
function SpinlockUnlock (line 118) | void
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/a.cpp
class _CMD (line 16) | class _CMD
method _CMD (line 25) | _CMD() = default;
method isEmpty (line 27) | bool isEmpty() const
function VOID (line 42) | VOID
function _CMD (line 65) | _CMD
method _CMD (line 25) | _CMD() = default;
method isEmpty (line 27) | bool isEmpty() const
function VOID (line 181) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/bc.cpp
function VOID (line 24) | VOID
function VOID (line 44) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/bd.cpp
function VOID (line 24) | VOID
function VOID (line 44) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/be.cpp
function VOID (line 24) | VOID
function VOID (line 44) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/bl.cpp
function VOID (line 24) | VOID
function VOID (line 40) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/bp.cpp
function VOID (line 26) | VOID
function BOOLEAN (line 54) | BOOLEAN
function BOOLEAN (line 118) | BOOLEAN
function VOID (line 167) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/continue.cpp
function VOID (line 27) | VOID
function VOID (line 40) | VOID
function VOID (line 54) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/core.cpp
function VOID (line 25) | VOID
function VOID (line 46) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/cpu.cpp
function VOID (line 19) | VOID
function VOID (line 35) | VOID
class InstructionSet (line 49) | class InstructionSet
class InstructionSet_Internal (line 54) | class InstructionSet_Internal
method InstructionSet_Internal (line 133) | InstructionSet_Internal() :
method Vendor (line 60) | static std::string Vendor(void) { return CPU_Rep.vendor_; }
method Brand (line 61) | static std::string Brand(void) { return CPU_Rep.brand_; }
method SSE3 (line 63) | static bool SSE3(void) { return CPU_Rep.f_1_ECX_[0]; }
method PCLMULQDQ (line 64) | static bool PCLMULQDQ(void) { return CPU_Rep.f_1_ECX_[1]; }
method MONITOR (line 65) | static bool MONITOR(void) { return CPU_Rep.f_1_ECX_[3]; }
method SSSE3 (line 66) | static bool SSSE3(void) { return CPU_Rep.f_1_ECX_[9]; }
method FMA (line 67) | static bool FMA(void) { return CPU_Rep.f_1_ECX_[12]; }
method CMPXCHG16B (line 68) | static bool CMPXCHG16B(void) { return CPU_Rep.f_1_ECX_[13]; }
method SSE41 (line 69) | static bool SSE41(void) { return CPU_Rep.f_1_ECX_[19]; }
method SSE42 (line 70) | static bool SSE42(void) { return CPU_Rep.f_1_ECX_[20]; }
method MOVBE (line 71) | static bool MOVBE(void) { return CPU_Rep.f_1_ECX_[22]; }
method POPCNT (line 72) | static bool POPCNT(void) { return CPU_Rep.f_1_ECX_[23]; }
method AES (line 73) | static bool AES(void) { return CPU_Rep.f_1_ECX_[25]; }
method XSAVE (line 74) | static bool XSAVE(void) { return CPU_Rep.f_1_ECX_[26]; }
method OSXSAVE (line 75) | static bool OSXSAVE(void) { return CPU_Rep.f_1_ECX_[27]; }
method AVX (line 76) | static bool AVX(void) { return CPU_Rep.f_1_ECX_[28]; }
method F16C (line 77) | static bool F16C(void) { return CPU_Rep.f_1_ECX_[29]; }
method RDRAND (line 78) | static bool RDRAND(void) { return CPU_Rep.f_1_ECX_[30]; }
method MSR (line 80) | static bool MSR(void) { return CPU_Rep.f_1_EDX_[5]; }
method CX8 (line 81) | static bool CX8(void) { return CPU_Rep.f_1_EDX_[8]; }
method SEP (line 82) | static bool SEP(void) { return CPU_Rep.f_1_EDX_[11]; }
method CMOV (line 83) | static bool CMOV(void) { return CPU_Rep.f_1_EDX_[15]; }
method CLFSH (line 84) | static bool CLFSH(void) { return CPU_Rep.f_1_EDX_[19]; }
method MMX (line 85) | static bool MMX(void) { return CPU_Rep.f_1_EDX_[23]; }
method FXSR (line 86) | static bool FXSR(void) { return CPU_Rep.f_1_EDX_[24]; }
method SSE (line 87) | static bool SSE(void) { return CPU_Rep.f_1_EDX_[25]; }
method SSE2 (line 88) | static bool SSE2(void) { return CPU_Rep.f_1_EDX_[26]; }
method FSGSBASE (line 90) | static bool FSGSBASE(void) { return CPU_Rep.f_7_EBX_[0]; }
method BMI1 (line 91) | static bool BMI1(void) { return CPU_Rep.f_7_EBX_[3]; }
method HLE (line 92) | static bool HLE(void) { return CPU_Rep.isIntel_ && CPU_Rep.f_7_EBX_[4]; }
method AVX2 (line 93) | static bool AVX2(void) { return CPU_Rep.f_7_EBX_[5]; }
method BMI2 (line 94) | static bool BMI2(void) { return CPU_Rep.f_7_EBX_[8]; }
method ERMS (line 95) | static bool ERMS(void) { return CPU_Rep.f_7_EBX_[9]; }
method INVPCID (line 96) | static bool INVPCID(void) { return CPU_Rep.f_7_EBX_[10]; }
method RTM (line 97) | static bool RTM(void) { return CPU_Rep.isIntel_ && CPU_Rep.f_7_EBX_[11...
method AVX512F (line 98) | static bool AVX512F(void) { return CPU_Rep.f_7_EBX_[16]; }
method RDSEED (line 99) | static bool RDSEED(void) { return CPU_Rep.f_7_EBX_[18]; }
method ADX (line 100) | static bool ADX(void) { return CPU_Rep.f_7_EBX_[19]; }
method AVX512PF (line 101) | static bool AVX512PF(void) { return CPU_Rep.f_7_EBX_[26]; }
method AVX512ER (line 102) | static bool AVX512ER(void) { return CPU_Rep.f_7_EBX_[27]; }
method AVX512CD (line 103) | static bool AVX512CD(void) { return CPU_Rep.f_7_EBX_[28]; }
method SHA (line 104) | static bool SHA(void) { return CPU_Rep.f_7_EBX_[29]; }
method PREFETCHWT1 (line 106) | static bool PREFETCHWT1(void) { return CPU_Rep.f_7_ECX_[0]; }
method LAHF (line 108) | static bool LAHF(void) { return CPU_Rep.f_81_ECX_[0]; }
method LZCNT (line 109) | static bool LZCNT(void) { return CPU_Rep.isIntel_ && CPU_Rep.f_81_ECX_...
method ABM (line 110) | static bool ABM(void) { return CPU_Rep.isAMD_ && CPU_Rep.f_81_ECX_[5]; }
method SSE4a (line 111) | static bool SSE4a(void) { return CPU_Rep.isAMD_ && CPU_Rep.f_81_ECX_[6...
method XOP (line 112) | static bool XOP(void) { return CPU_Rep.isAMD_ && CPU_Rep.f_81_ECX_[11]; }
method TBM (line 113) | static bool TBM(void) { return CPU_Rep.isAMD_ && CPU_Rep.f_81_ECX_[21]; }
method SYSCALL (line 115) | static bool SYSCALL(void)
method MMXEXT (line 119) | static bool MMXEXT(void) { return CPU_Rep.isAMD_ && CPU_Rep.f_81_EDX_[...
method RDTSCP (line 120) | static bool RDTSCP(void) { return CPU_Rep.isIntel_ && CPU_Rep.f_81_EDX...
method _3DNOWEXT (line 121) | static bool _3DNOWEXT(void)
method _3DNOW (line 125) | static bool _3DNOW(void) { return CPU_Rep.isAMD_ && CPU_Rep.f_81_EDX_[...
class InstructionSet_Internal (line 130) | class InstructionSet_Internal
method InstructionSet_Internal (line 133) | InstructionSet_Internal() :
function VOID (line 251) | VOID
function ReadCpuDetails (line 263) | int
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/d-u.cpp
function VOID (line 25) | VOID
function VOID (line 72) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/dt-struct.cpp
function VOID (line 25) | VOID
function VOID (line 62) | VOID
function BOOLEAN (line 92) | BOOLEAN
function BOOLEAN (line 315) | BOOLEAN
function VOID (line 428) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/e.cpp
function VOID (line 25) | VOID
function BOOLEAN (line 63) | BOOLEAN
function BOOLEAN (line 192) | BOOLEAN
function VOID (line 265) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/eval.cpp
function VOID (line 25) | VOID
function BOOLEAN (line 42) | BOOLEAN
function VOID (line 195) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/events.cpp
function VOID (line 31) | VOID
function VOID (line 65) | VOID
function BOOLEAN (line 186) | BOOLEAN
function VOID (line 229) | VOID
function BOOLEAN (line 288) | BOOLEAN
function BOOLEAN (line 338) | BOOLEAN
function BOOLEAN (line 388) | BOOLEAN
function VOID (line 472) | VOID
function VOID (line 501) | VOID
function BOOLEAN (line 656) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/exit.cpp
function VOID (line 26) | VOID
function VOID (line 43) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/flush.cpp
function VOID (line 24) | VOID
function VOID (line 38) | VOID
function VOID (line 109) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/g.cpp
function VOID (line 27) | VOID
function VOID (line 40) | VOID
function VOID (line 93) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/gg.cpp
function VOID (line 19) | VOID
function VOID (line 40) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/gu.cpp
function VOID (line 28) | VOID
function VOID (line 51) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/i.cpp
function VOID (line 26) | VOID
function VOID (line 55) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/k.cpp
function VOID (line 25) | VOID
function VOID (line 55) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/lm.cpp
function VOID (line 26) | VOID
function CommandLmConvertWow64CompatibilityPaths (line 50) | std::wstring
function BOOLEAN (line 82) | BOOLEAN
function BOOLEAN (line 273) | BOOLEAN
function VOID (line 356) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/load.cpp
function VOID (line 27) | VOID
function VOID (line 46) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/output.cpp
function VOID (line 25) | VOID
function VOID (line 57) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/p.cpp
function VOID (line 26) | VOID
function VOID (line 52) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/pause.cpp
function VOID (line 26) | VOID
function VOID (line 39) | VOID
function VOID (line 70) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/preactivate.cpp
function VOID (line 19) | VOID
function VOID (line 42) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/prealloc.cpp
function VOID (line 19) | VOID
function VOID (line 54) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/print.cpp
function VOID (line 22) | VOID
function VOID (line 41) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/r.cpp
function VOID (line 151) | VOID
function BOOLEAN (line 174) | BOOLEAN
function BOOLEAN (line 267) | BOOLEAN
function BOOLEAN (line 321) | BOOLEAN
function BOOLEAN (line 353) | BOOLEAN
function BOOLEAN (line 423) | BOOLEAN
function VOID (line 451) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/rdmsr.cpp
function VOID (line 19) | VOID
function SIZE_T (line 42) | static SIZE_T
function SIZE_T (line 59) | static SIZE_T
function VOID (line 114) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/s.cpp
function VOID (line 25) | VOID
function VOID (line 61) | VOID
function VOID (line 138) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/settings.cpp
function VOID (line 28) | VOID
function BOOLEAN (line 59) | BOOLEAN
function VOID (line 114) | VOID
function VOID (line 160) | VOID
function VOID (line 273) | VOID
function VOID (line 340) | VOID
function VOID (line 405) | VOID
function VOID (line 470) | VOID
function VOID (line 552) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/sleep.cpp
function VOID (line 19) | VOID
function VOID (line 37) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/t.cpp
function VOID (line 26) | VOID
function VOID (line 52) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/test.cpp
function VOID (line 24) | VOID
function BOOLEAN (line 48) | BOOLEAN
function VOID (line 103) | VOID
function VOID (line 133) | VOID
function BOOLEAN (line 155) | BOOLEAN
function VOID (line 248) | VOID
function VOID (line 269) | VOID
function VOID (line 290) | VOID
function VOID (line 312) | VOID
function VOID (line 334) | VOID
function VOID (line 355) | VOID
function VOID (line 383) | VOID
function VOID (line 414) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/unload.cpp
function VOID (line 27) | VOID
function VOID (line 48) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/wrmsr.cpp
function VOID (line 19) | VOID
function VOID (line 41) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/x.cpp
function VOID (line 19) | VOID
function VOID (line 40) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/apic.cpp
function VOID (line 24) | VOID
function BOOLEAN (line 45) | BOOLEAN
function BOOLEAN (line 167) | BOOLEAN
function VOID (line 184) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/cpuid.cpp
function VOID (line 19) | VOID
function VOID (line 47) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/crwrite.cpp
function VOID (line 19) | VOID
function VOID (line 46) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/dr.cpp
function VOID (line 19) | VOID
function VOID (line 45) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/epthook.cpp
function VOID (line 19) | VOID
function VOID (line 47) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/epthook2.cpp
function VOID (line 19) | VOID
function VOID (line 48) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/exception.cpp
function VOID (line 19) | VOID
function VOID (line 50) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/hide.cpp
function VOID (line 33) | VOID
function BOOLEAN (line 59) | BOOLEAN
function BOOLEAN (line 240) | BOOLEAN
function VOID (line 371) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/idt.cpp
function VOID (line 25) | VOID
function BOOLEAN (line 44) | BOOLEAN
function VOID (line 113) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/interrupt.cpp
function VOID (line 19) | VOID
function VOID (line 48) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/ioapic.cpp
function VOID (line 24) | VOID
function BOOLEAN (line 42) | BOOLEAN
function ULONG (line 64) | ULONG
function VOID (line 145) | VOID
function VOID (line 198) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/ioin.cpp
function VOID (line 19) | VOID
function VOID (line 47) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/ioout.cpp
function VOID (line 19) | VOID
function VOID (line 47) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/measure.cpp
function VOID (line 32) | VOID
function VOID (line 55) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/mode.cpp
function VOID (line 19) | VOID
function VOID (line 48) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/monitor.cpp
function VOID (line 19) | VOID
function VOID (line 61) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/msrread.cpp
function VOID (line 19) | VOID
function VOID (line 46) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/msrwrite.cpp
function VOID (line 19) | VOID
function VOID (line 46) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/pa2va.cpp
function VOID (line 25) | VOID
function VOID (line 48) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/pcicam.cpp
function VOID (line 24) | VOID
function VOID (line 45) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/pcitree.cpp
function VOID (line 24) | VOID
function VOID (line 43) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/pmc.cpp
function VOID (line 19) | VOID
function VOID (line 45) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/pte.cpp
function VOID (line 25) | VOID
function VOID (line 46) | VOID
function VOID (line 91) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/rev.cpp
function VOID (line 27) | VOID
function VOID (line 51) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/smi.cpp
function VOID (line 24) | VOID
function BOOLEAN (line 44) | BOOLEAN
function BOOLEAN (line 107) | BOOLEAN
function VOID (line 121) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/syscall-sysret.cpp
function VOID (line 19) | VOID
function VOID (line 53) | VOID
function VOID (line 84) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/trace.cpp
function VOID (line 19) | VOID
function VOID (line 50) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/tsc.cpp
function VOID (line 19) | VOID
function VOID (line 45) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/unhide.cpp
function VOID (line 19) | VOID
function BOOLEAN (line 35) | BOOLEAN
function VOID (line 94) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/va2pa.cpp
function VOID (line 25) | VOID
function VOID (line 49) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/vmcall.cpp
function VOID (line 19) | VOID
function VOID (line 45) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/extension-commands/xsetbv.cpp
function VOID (line 19) | VOID
function VOID (line 46) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/hwdbg-commands/hw.cpp
function VOID (line 25) | VOID
function VOID (line 46) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/hwdbg-commands/hw_clk.cpp
function VOID (line 24) | VOID
function BOOLEAN (line 46) | BOOLEAN
function VOID (line 153) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/attach.cpp
function VOID (line 25) | VOID
function VOID (line 44) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/cls.cpp
function VOID (line 19) | VOID
function VOID (line 35) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/connect.cpp
function VOID (line 30) | VOID
function VOID (line 49) | VOID
function BOOLEAN (line 60) | BOOLEAN
function VOID (line 106) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/debug.cpp
function VOID (line 28) | VOID
function BOOLEAN (line 62) | BOOLEAN
function BOOLEAN (line 95) | BOOLEAN
function BOOLEAN (line 119) | BOOLEAN
function BOOLEAN (line 160) | BOOLEAN
function BOOLEAN (line 174) | BOOLEAN
function BOOLEAN (line 214) | BOOLEAN
function VOID (line 238) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/detach.cpp
function VOID (line 25) | VOID
function VOID (line 38) | VOID
function VOID (line 71) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/disconnect.cpp
function VOID (line 27) | VOID
function VOID (line 44) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/dump.cpp
function VOID (line 35) | VOID
function VOID (line 61) | VOID
function VOID (line 302) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/formats.cpp
function VOID (line 19) | VOID
function VOID (line 42) | VOID
function VOID (line 105) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/help.cpp
function VOID (line 21) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/kill.cpp
function VOID (line 25) | VOID
function VOID (line 41) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/listen.cpp
function VOID (line 28) | VOID
function VOID (line 53) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/logclose.cpp
function VOID (line 25) | VOID
function VOID (line 41) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/logopen.cpp
function VOID (line 27) | VOID
function VOID (line 47) | VOID
function VOID (line 109) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/pagein.cpp
function VOID (line 25) | VOID
function BOOLEAN (line 80) | BOOLEAN
function VOID (line 170) | VOID
function VOID (line 264) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/pe.cpp
function VOID (line 21) | VOID
function VOID (line 42) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/process.cpp
function VOID (line 24) | VOID
function VOID (line 56) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/restart.cpp
function VOID (line 28) | VOID
function VOID (line 46) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/script.cpp
function VOID (line 26) | VOID
function VOID (line 47) | VOID
function VOID (line 107) | VOID
function INT (line 224) | INT
function VOID (line 262) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/start.cpp
function VOID (line 27) | VOID
function VOID (line 47) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/status.cpp
function VOID (line 30) | VOID
function VOID (line 50) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/switch.cpp
function VOID (line 25) | VOID
function VOID (line 50) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/sym.cpp
function VOID (line 25) | VOID
function VOID (line 55) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/sympath.cpp
function VOID (line 23) | VOID
function VOID (line 44) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/thread.cpp
function VOID (line 24) | VOID
function BOOLEAN (line 49) | BOOLEAN
function VOID (line 119) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/communication/forwarding.cpp
function UINT64 (line 27) | UINT64
function DEBUGGER_OUTPUT_SOURCE_STATUS (line 39) | DEBUGGER_OUTPUT_SOURCE_STATUS
function DEBUGGER_OUTPUT_SOURCE_STATUS (line 109) | DEBUGGER_OUTPUT_SOURCE_STATUS
function VOID (line 214) | VOID *
function BOOLEAN (line 342) | BOOLEAN
function BOOLEAN (line 438) | BOOLEAN
function BOOLEAN (line 500) | BOOLEAN
function BOOLEAN (line 561) | BOOLEAN
function BOOLEAN (line 594) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/communication/namedpipe.cpp
function HANDLE (line 34) | HANDLE
function BOOLEAN (line 65) | BOOLEAN
function UINT32 (line 95) | UINT32
function BOOLEAN (line 130) | BOOLEAN
function VOID (line 163) | VOID
function HANDLE (line 186) | HANDLE
function HANDLE (line 233) | HANDLE
function BOOLEAN (line 291) | BOOLEAN
function UINT32 (line 330) | UINT32
function VOID (line 364) | VOID
function NamedPipeServerExample (line 381) | int
function NamedPipeClientExample (line 452) | int
FILE: hyperdbg/libhyperdbg/code/debugger/communication/remote-connection.cpp
function VOID (line 39) | VOID
function DWORD (line 210) | DWORD WINAPI
function VOID (line 314) | VOID
function RemoteConnectionSendCommand (line 444) | int
function RemoteConnectionSendResultsToHost (line 480) | int
function RemoteConnectionCloseTheConnectionWithDebuggee (line 503) | int
FILE: hyperdbg/libhyperdbg/code/debugger/communication/tcpclient.cpp
function CommunicationClientConnectToServer (line 22) | int
function CommunicationClientSendMessage (line 110) | int
function CommunicationClientShutdownConnection (line 136) | int
function CommunicationClientReceiveMessage (line 172) | int
function CommunicationClientCleanup (line 215) | int
FILE: hyperdbg/libhyperdbg/code/debugger/communication/tcpserver.cpp
function CommunicationServerCreateServerAndWaitForClient (line 30) | int
function CommunicationServerReceiveMessage (line 146) | int
function CommunicationServerSendMessage (line 187) | int
function CommunicationServerShutdownAndCleanupConnection (line 215) | int
FILE: hyperdbg/libhyperdbg/code/debugger/core/break-control.cpp
function BOOL (line 33) | BOOL
FILE: hyperdbg/libhyperdbg/code/debugger/core/debugger.cpp
function BOOLEAN (line 37) | BOOLEAN
function UINT64 (line 587) | UINT64
function UINT64 (line 619) | UINT64
function BOOLEAN (line 643) | BOOLEAN
function BOOLEAN (line 694) | BOOLEAN
function BOOLEAN (line 745) | BOOLEAN
function BOOLEAN (line 788) | BOOLEAN
function BOOLEAN (line 946) | BOOLEAN
function BOOLEAN (line 1175) | BOOLEAN
function BOOLEAN (line 1288) | BOOLEAN
function BOOLEAN (line 1405) | BOOLEAN
function UINT64 (line 1599) | UINT64
function VOID (line 1611) | VOID
function BOOLEAN (line 1659) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/core/interpreter.cpp
class CommandParser (line 40) | class CommandParser
method Parse (line 49) | std::vector<CommandToken> Parse(const std::string & ConstInput)
method TokenTypeToString (line 474) | std::string TokenTypeToString(CommandParsingTokenType Type)
method VOID (line 501) | VOID PrintTokens(const std::vector<CommandToken> & Tokens)
method ToLower (line 587) | std::string ToLower(const std::string & str) const
method VOID (line 602) | VOID AddToken(std::vector<CommandToken> & tokens, std::string & str)
method VOID (line 629) | VOID AddStringToken(std::vector<CommandToken> & tokens, std::string & ...
method VOID (line 661) | VOID AddBracketStringToken(std::vector<CommandToken> & tokens, const s...
function FindDifferencePosition (line 674) | int
function BOOLEAN (line 716) | BOOLEAN
function VOID (line 779) | VOID
function INT (line 804) | INT
function VOID (line 1024) | VOID
function VOID (line 1090) | VOID
function BOOLEAN (line 1136) | BOOLEAN
function BOOLEAN (line 1233) | BOOLEAN
function UINT64 (line 1259) | UINT64
function VOID (line 1292) | VOID
function VOID (line 1342) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/core/steppings.cpp
function BOOLEAN (line 25) | BOOLEAN
function BOOLEAN (line 52) | BOOLEAN
function BOOLEAN (line 79) | BOOLEAN
function BOOLEAN (line 116) | BOOLEAN
function BOOLEAN (line 154) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/driver-loader/install.cpp
function BOOLEAN (line 22) | BOOLEAN
function BOOLEAN (line 149) | BOOLEAN
function BOOLEAN (line 253) | BOOLEAN
function BOOLEAN (line 312) | BOOLEAN
function BOOLEAN (line 409) | BOOLEAN
function BOOLEAN (line 471) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/kernel-level/kd.cpp
function BOOLEAN (line 55) | BOOLEAN
function BOOLEAN (line 100) | BOOLEAN
function BYTE (line 120) | BYTE
function VOID (line 139) | VOID
function BOOLEAN (line 154) | BOOLEAN
function BOOLEAN (line 180) | BOOLEAN
function BOOLEAN (line 225) | BOOLEAN
function BOOLEAN (line 264) | BOOLEAN
function BOOLEAN (line 313) | BOOLEAN
function BOOLEAN (line 347) | BOOLEAN
function BOOLEAN (line 424) | BOOLEAN
function BOOLEAN (line 459) | BOOLEAN
function BOOLEAN (line 492) | BOOLEAN
function BOOLEAN (line 526) | BOOLEAN
function BOOLEAN (line 561) | BOOLEAN
function BOOLEAN (line 596) | BOOLEAN
function BOOLEAN (line 632) | BOOLEAN
function PDEBUGGER_EVENT_AND_ACTION_RESULT (line 669) | PDEBUGGER_EVENT_AND_ACTION_RESULT
function PDEBUGGER_EVENT_AND_ACTION_RESULT (line 736) | PDEBUGGER_EVENT_AND_ACTION_RESULT
function BOOLEAN (line 804) | BOOLEAN
function BOOLEAN (line 857) | BOOLEAN
function BOOLEAN (line 906) | BOOLEAN
function BOOLEAN (line 935) | BOOLEAN
function BOOLEAN (line 964) | BOOLEAN
function BOOLEAN (line 994) | BOOLEAN
function BOOLEAN (line 1030) | BOOLEAN
function BOOLEAN (line 1064) | BOOLEAN
function BOOLEAN (line 1098) | BOOLEAN
function BOOLEAN (line 1127) | BOOLEAN
function BOOLEAN (line 1160) | BOOLEAN
function BOOLEAN (line 1224) | BOOLEAN
function BOOLEAN (line 1282) | BOOLEAN
function BOOLEAN (line 1310) | BOOLEAN
function BOOLEAN (line 1391) | BOOLEAN
function BOOLEAN (line 1419) | BOOLEAN
function BOOLEAN (line 1487) | BOOLEAN
function BOOLEAN (line 1577) | BOOLEAN
function BOOLEAN (line 1683) | BOOLEAN
function BOOLEAN (line 1808) | BOOLEAN
function BOOLEAN (line 1855) | BOOLEAN
function VOID (line 1925) | VOID
function VOID (line 1957) | VOID
function VOID (line 1976) | VOID
function BOOLEAN (line 2006) | BOOLEAN
function VOID (line 2036) | VOID
function BOOLEAN (line 2060) | BOOLEAN
function BOOLEAN (line 2209) | BOOLEAN
function BOOLEAN (line 2353) | BOOLEAN
function BOOLEAN (line 2796) | BOOLEAN
function BOOLEAN (line 2900) | BOOLEAN
function BOOLEAN (line 2941) | BOOLEAN
function BOOLEAN (line 3029) | BOOLEAN
function BOOLEAN (line 3083) | BOOLEAN
function BOOLEAN (line 3133) | BOOLEAN
function VOID (line 3193) | VOID
function VOID (line 3249) | VOID
function VOID (line 3309) | VOID
function VOID (line 3359) | VOID
function BOOLEAN (line 3477) | BOOLEAN
function BOOLEAN (line 3506) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/kernel-level/kernel-listening.cpp
function BOOLEAN (line 43) | BOOLEAN
function BOOLEAN (line 1394) | BOOLEAN
function DWORD (line 1567) | DWORD WINAPI
function DWORD (line 1584) | DWORD WINAPI
FILE: hyperdbg/libhyperdbg/code/debugger/misc/assembler.cpp
function VOID (line 19) | VOID
function INT (line 118) | INT
function AssembleData (line 180) | AssembleData *
function BOOLEAN (line 195) | BOOLEAN
function BOOLEAN (line 233) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/misc/callstack.cpp
function BOOLEAN (line 29) | BOOLEAN
function VOID (line 211) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/misc/disassembler.cpp
type ZydisSymbol_ (line 49) | struct ZydisSymbol_
function ZyanStatus (line 71) | static ZyanStatus
function VOID (line 118) | VOID
function ZydisTest (line 270) | int
function HyperDbgDisassembler64 (line 332) | int
function HyperDbgDisassembler32 (line 372) | int
function DEBUGGER_CONDITIONAL_JUMP_STATUS (line 409) | DEBUGGER_CONDITIONAL_JUMP_STATUS
function BOOLEAN (line 754) | BOOLEAN
function UINT32 (line 855) | UINT32
function ZyanStatus (line 925) | static ZyanStatus
function BOOLEAN (line 982) | BOOLEAN
function BOOLEAN (line 1094) | BOOLEAN
function UINT32 (line 1183) | UINT32
FILE: hyperdbg/libhyperdbg/code/debugger/misc/pci-id.cpp
function Vendor (line 89) | Vendor *
function FreeVendor (line 259) | void
function FreePciIdDatabase (line 287) | void
function Vendor (line 304) | Vendor *
function Device (line 338) | Device *
function SubDevice (line 367) | SubDevice *
FILE: hyperdbg/libhyperdbg/code/debugger/misc/readmem.cpp
function BOOLEAN (line 35) | BOOLEAN
function VOID (line 192) | VOID
function ShowMemoryCommandDB (line 417) | void
function ShowMemoryCommandDC (line 485) | void
function ShowMemoryCommandDD (line 554) | void
function ShowMemoryCommandDQ (line 603) | void
FILE: hyperdbg/libhyperdbg/code/debugger/script-engine/script-engine-wrapper.cpp
type _ALLOCATED_MEMORY_FOR_SCRIPT_ENGINE_CASTING (line 31) | struct _ALLOCATED_MEMORY_FOR_SCRIPT_ENGINE_CASTING
function UINT64 (line 54) | UINT64
function UINT32 (line 68) | UINT32
function VOID (line 81) | VOID
function UINT32 (line 92) | UINT32
function UINT32 (line 104) | UINT32
function UINT32 (line 117) | UINT32
function BOOLEAN (line 132) | BOOLEAN
function BOOLEAN (line 147) | BOOLEAN
function BOOLEAN (line 160) | BOOLEAN
function BOOLEAN (line 174) | BOOLEAN
function BOOLEAN (line 192) | BOOLEAN
function BOOLEAN (line 213) | BOOLEAN
function VOID (line 229) | VOID
function BOOLEAN (line 246) | BOOLEAN
function PVOID (line 268) | PVOID
function VOID (line 302) | VOID
function VOID (line 315) | VOID
function BOOLEAN (line 467) | BOOLEAN
function PVOID (line 501) | PVOID
function VOID (line 644) | VOID
function VOID (line 722) | VOID
function UINT64 (line 750) | UINT64
function UINT64 (line 773) | UINT64
function UINT32 (line 785) | UINT32
function UINT32 (line 799) | UINT32
function VOID (line 811) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/script-engine/script-engine.cpp
function UINT64 (line 30) | UINT64
function BOOLEAN (line 99) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/script-engine/symbol.cpp
function VOID (line 33) | VOID
function BOOLEAN (line 49) | BOOLEAN
function VOID (line 69) | VOID
function VOID (line 88) | VOID
function BOOLEAN (line 138) | BOOLEAN
function BOOLEAN (line 161) | BOOLEAN
function VOID (line 263) | VOID
function BOOLEAN (line 298) | BOOLEAN
function BOOLEAN (line 359) | BOOLEAN
function BOOLEAN (line 432) | BOOLEAN
function BOOLEAN (line 471) | BOOLEAN
function BOOLEAN (line 911) | BOOLEAN
function BOOLEAN (line 975) | BOOLEAN
function BOOLEAN (line 1004) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/tests/tests.cpp
function BOOLEAN (line 25) | BOOLEAN
function BOOLEAN (line 110) | BOOLEAN
function BOOLEAN (line 311) | BOOLEAN
function VOID (line 367) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/transparency/gaussian-rng.cpp
function Median (line 21) | double
function T (line 52) | T
function T (line 77) | T
function MedianAbsoluteDeviationTest (line 96) | double
function Randn (line 120) | double
function VOID (line 157) | VOID
function VOID (line 223) | VOID
FILE: hyperdbg/libhyperdbg/code/debugger/transparency/transparency.cpp
function TransparentModeRdtscDiffVmexit (line 21) | unsigned long long
function TransparentModeRdtscVmexitTracing (line 69) | unsigned long long
function TransparentModeCpuidTimeStampCounter (line 108) | int
function TransparentModeRdtscEmulationDetection (line 150) | int
function BOOLEAN (line 193) | BOOLEAN
function BOOLEAN (line 223) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/user-level/pe-parser.cpp
function INT (line 27) | INT
function VOID (line 89) | VOID
function VOID (line 138) | VOID
function DecryptRichHeader (line 196) | int
function VOID (line 255) | VOID
function BOOLEAN (line 307) | BOOLEAN
function BOOLEAN (line 769) | BOOLEAN
function UINT32 (line 900) | UINT32
FILE: hyperdbg/libhyperdbg/code/debugger/user-level/ud.cpp
function VOID (line 31) | VOID
function VOID (line 64) | VOID
function VOID (line 110) | VOID
function VOID (line 150) | VOID
function VOID (line 165) | VOID
function BOOLEAN (line 204) | BOOLEAN
function BOOLEAN (line 264) | BOOLEAN
function BOOLEAN (line 327) | BOOLEAN
function BOOLEAN (line 370) | BOOLEAN
function BOOLEAN (line 589) | BOOLEAN
function BOOLEAN (line 626) | BOOLEAN
function BOOLEAN (line 654) | BOOLEAN
function BOOLEAN (line 686) | BOOLEAN
function BOOLEAN (line 784) | BOOLEAN
function BOOLEAN (line 863) | BOOLEAN
function BOOLEAN (line 931) | BOOLEAN
function BOOLEAN (line 1008) | BOOLEAN
function BOOLEAN (line 1140) | BOOLEAN
function BOOLEAN (line 1174) | BOOLEAN
function BOOLEAN (line 1244) | BOOLEAN
function BOOLEAN (line 1312) | BOOLEAN
function BOOLEAN (line 1395) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/debugger/user-level/user-listening.cpp
function VOID (line 28) | VOID
FILE: hyperdbg/libhyperdbg/code/export/export.cpp
function BOOLEAN (line 26) | BOOLEAN
function VOID (line 38) | VOID
function INT (line 49) | INT
function INT (line 60) | INT
function INT (line 71) | INT
function INT (line 82) | INT
function INT (line 93) | INT
function INT (line 104) | INT
function BOOLEAN (line 119) | BOOLEAN
function VOID (line 136) | VOID
function VOID (line 147) | VOID
function VOID (line 161) | VOID
function PVOID (line 175) | PVOID
function VOID (line 187) | VOID
function INT (line 200) | INT
function BOOLEAN (line 214) | BOOLEAN
function BOOLEAN (line 227) | BOOLEAN
function VOID (line 238) | VOID
function BOOLEAN (line 251) | BOOLEAN
function VOID (line 262) | VOID
function VOID (line 273) | VOID
function BOOLEAN (line 288) | BOOLEAN
function BOOLEAN (line 302) | BOOLEAN
function VOID (line 340) | VOID
function BOOLEAN (line 364) | BOOLEAN
function VOID (line 391) | VOID
function BOOLEAN (line 410) | BOOLEAN
function BOOLEAN (line 423) | BOOLEAN
function BOOLEAN (line 436) | BOOLEAN
function BOOLEAN (line 447) | BOOLEAN
function BOOLEAN (line 459) | BOOLEAN
function BOOLEAN (line 475) | BOOLEAN
function UINT64 (line 490) | UINT64
function BOOLEAN (line 505) | BOOLEAN
function BOOLEAN (line 519) | BOOLEAN
function BOOLEAN (line 530) | BOOLEAN
function BOOLEAN (line 544) | BOOLEAN
function BOOLEAN (line 557) | BOOLEAN
function BOOLEAN (line 574) | BOOLEAN
function BOOLEAN (line 592) | BOOLEAN
function BOOLEAN (line 608) | BOOLEAN
function BOOLEAN (line 624) | BOOLEAN
function BOOLEAN (line 635) | BOOLEAN
function BOOLEAN (line 646) | BOOLEAN
function BOOLEAN (line 657) | BOOLEAN
function BOOLEAN (line 668) | BOOLEAN
function BOOLEAN (line 681) | BOOLEAN
function BOOLEAN (line 697) | BOOLEAN
function BOOLEAN (line 710) | BOOLEAN
function BOOLEAN (line 723) | BOOLEAN
function BOOLEAN (line 736) | BOOLEAN
function BOOLEAN (line 752) | BOOLEAN
function VOID (line 771) | VOID
function BOOLEAN (line 786) | BOOLEAN
function BOOLEAN (line 797) | BOOLEAN
function BOOLEAN (line 811) | BOOLEAN
function UINT64 (line 826) | UINT64
FILE: hyperdbg/libhyperdbg/code/hwdbg/hwdbg-interpreter.cpp
function BOOLEAN (line 28) | BOOLEAN
function HwdbgParseStringMemoryLine (line 153) | std::vector<UINT32>
function BOOLEAN (line 183) | BOOLEAN
function BOOLEAN (line 241) | BOOLEAN
function SIZE_T (line 329) | SIZE_T
function BOOLEAN (line 397) | BOOLEAN
function VOID (line 531) | VOID
function BOOLEAN (line 574) | BOOLEAN
function BOOLEAN (line 611) | BOOLEAN
function BOOLEAN (line 647) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/hwdbg/hwdbg-scripts.cpp
function VOID (line 28) | VOID
function BOOLEAN (line 60) | BOOLEAN
function VOID (line 149) | VOID
function BOOLEAN (line 190) | BOOLEAN
function BOOLEAN (line 232) | BOOLEAN
function BOOLEAN (line 335) | BOOLEAN
function BOOLEAN (line 390) | BOOLEAN
function BOOLEAN (line 459) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/objects/objects.cpp
function BOOLEAN (line 25) | BOOLEAN
function BOOLEAN (line 137) | BOOLEAN
FILE: hyperdbg/libhyperdbg/code/rev/rev-ctrl.cpp
function BOOLEAN (line 22) | BOOLEAN
FILE: hyperdbg/libhyperdbg/header/assembler.h
function class (line 15) | class AssembleData
FILE: hyperdbg/libhyperdbg/header/commands.h
type CommandParsingTokenType (line 165) | typedef enum
type std (line 177) | typedef std::tuple<CommandParsingTokenType, std::string, std::string> Co...
type VOID (line 183) | typedef VOID (*CommandFuncTypeParser)(vector<CommandToken> CommandTokens...
type VOID (line 189) | typedef VOID (*CommandHelpFuncType)();
type COMMAND_DETAIL (line 195) | typedef struct _COMMAND_DETAIL
type std (line 207) | typedef std::map<std::string, COMMAND_DETAIL> CommandType;
FILE: hyperdbg/libhyperdbg/header/debugger.h
type DEBUGGER_EVENT_PARSING_ERROR_CAUSE (line 73) | typedef enum _DEBUGGER_EVENT_PARSING_ERROR_CAUSE
type DEBUGGER_SYNCRONIZATION_EVENTS_STATE (line 114) | typedef struct _DEBUGGER_SYNCRONIZATION_EVENTS_STATE
FILE: hyperdbg/libhyperdbg/header/forwarding.h
type DEBUGGER_EVENT_FORWARDING_TYPE (line 38) | typedef enum _DEBUGGER_EVENT_FORWARDING_TYPE
type DEBUGGER_EVENT_FORWARDING_STATE (line 51) | typedef enum _DEBUGGER_EVENT_FORWARDING_STATE
type DEBUGGER_OUTPUT_SOURCE_STATUS (line 65) | typedef enum _DEBUGGER_OUTPUT_SOURCE_STATUS
type DEBUGGER_EVENT_FORWARDING (line 79) | typedef struct _DEBUGGER_EVENT_FORWARDING
FILE: hyperdbg/libhyperdbg/header/inipp.h
function namespace (line 40) | namespace inipp {
FILE: hyperdbg/libhyperdbg/header/kd.h
type HKeyHolder (line 18) | struct HKeyHolder
FILE: hyperdbg/libhyperdbg/header/pci-id.h
type SubDevice (line 17) | typedef struct SubDevice
type Device (line 25) | typedef struct Device
type Vendor (line 33) | typedef struct Vendor
FILE: hyperdbg/libhyperdbg/header/pe-parser.h
type RICH_HEADER_INFO (line 18) | typedef struct _RICH_HEADER_INFO
type RICH_HEADER_ENTRY (line 25) | typedef struct _RICH_HEADER_ENTRY
type RICH_HEADER (line 32) | typedef struct _RICH_HEADER
FILE: hyperdbg/libhyperdbg/header/symbol.h
type LOCAL_FUNCTION_DESCRIPTION (line 22) | typedef struct _LOCAL_FUNCTION_DESCRIPTION
FILE: hyperdbg/libhyperdbg/header/ud.h
type ACTIVE_DEBUGGING_PROCESS (line 23) | typedef struct _ACTIVE_DEBUGGING_PROCESS
FILE: hyperdbg/libhyperdbg/pch.h
type RFLAGS (line 34) | typedef RFLAGS * PRFLAGS;
type wchar_t (line 49) | typedef const wchar_t *LPCWCHAR, *PCWCHAR;
FILE: hyperdbg/linux/mock/mock.c
function mock_init (line 43) | static int __init mock_init(void)
function mock_exit (line 76) | static void __exit mock_exit(void)
FILE: hyperdbg/script-engine/code/common.c
function PSCRIPT_ENGINE_TOKEN (line 19) | PSCRIPT_ENGINE_TOKEN
function PSCRIPT_ENGINE_TOKEN (line 68) | PSCRIPT_ENGINE_TOKEN
function RemoveToken (line 114) | void
function PrintToken (line 129) | void
function AppendByte (line 239) | void
function AppendWchar (line 280) | void
function PSCRIPT_ENGINE_TOKEN (line 320) | PSCRIPT_ENGINE_TOKEN
function PSCRIPT_ENGINE_TOKEN_LIST (line 358) | PSCRIPT_ENGINE_TOKEN_LIST
function RemoveTokenList (line 395) | void
function PrintTokenList (line 415) | void
function PSCRIPT_ENGINE_TOKEN_LIST (line 433) | PSCRIPT_ENGINE_TOKEN_LIST
function PSCRIPT_ENGINE_TOKEN (line 494) | PSCRIPT_ENGINE_TOKEN
function PSCRIPT_ENGINE_TOKEN (line 515) | PSCRIPT_ENGINE_TOKEN
function PSCRIPT_ENGINE_TOKEN (line 534) | PSCRIPT_ENGINE_TOKEN
function IsHex (line 550) | char
function IsDecimal (line 565) | char
function IsLetter (line 580) | char
function IsUnderscore (line 597) | char
function IsBinary (line 614) | char
function IsOctal (line 631) | char
function PSCRIPT_ENGINE_TOKEN (line 646) | PSCRIPT_ENGINE_TOKEN
function FreeTemp (line 683) | void
function IsType1Func (line 699) | char
function IsType2Func (line 719) | char
function IsTwoOperandOperator (line 739) | char
function IsOneOperandOperator (line 759) | char
function IsType4Func (line 779) | char
function IsType5Func (line 799) | char
function IsType6Func (line 819) | char
function IsType7Func (line 839) | char
function IsType8Func (line 859) | char
function IsType9Func (line 879) | char
function IsType10Func (line 899) | char
function IsType11Func (line 919) | char
function IsType12Func (line 939) | char
function IsType13Func (line 959) | char
function IsType14Func (line 979) | char
function IsType15Func (line 999) | char
function IsType16Func (line 1019) | char
function IsAssignmentOperator (line 1039) | char
function IsNoneTerminal (line 1060) | char
function IsSemanticRule (line 1076) | char
function GetNonTerminalId (line 1091) | int
function GetTerminalId (line 1108) | int
function LalrGetNonTerminalId (line 1217) | int
function LalrGetTerminalId (line 1234) | int
function IsEqual (line 1337) | char
function SetType (line 1381) | void
function DecimalToInt (line 1393) | unsigned long long
function DecimalToSignedInt (line 1414) | unsigned long long
function HexToInt (line 1448) | unsigned long long
function OctalToInt (line 1481) | unsigned long long
function BinaryToInt (line 1503) | unsigned long long
function RotateLeftStringOnce (line 1524) | void
FILE: hyperdbg/script-engine/code/hardware.c
function VOID (line 21) | VOID
function BOOLEAN (line 81) | BOOLEAN
function BOOLEAN (line 440) | BOOLEAN
function BOOLEAN (line 522) | BOOLEAN
function VOID (line 705) | VOID
FILE: hyperdbg/script-engine/code/parse-table.c
type _SCRIPT_ENGINE_TOKEN (line 2) | struct _SCRIPT_ENGINE_TOKEN
type _SCRIPT_ENGINE_TOKEN (line 277) | struct _SCRIPT_ENGINE_TOKEN
type _SCRIPT_ENGINE_TOKEN (line 1634) | struct _SCRIPT_ENGINE_TOKEN
type _SCRIPT_ENGINE_TOKEN (line 1746) | struct _SCRIPT_ENGINE_TOKEN
type _SCRIPT_ENGINE_TOKEN (line 2700) | struct _SCRIPT_ENGINE_TOKEN
FILE: hyperdbg/script-engine/code/scanner.c
function PSCRIPT_ENGINE_TOKEN (line 21) | PSCRIPT_ENGINE_TOKEN
function PSCRIPT_ENGINE_TOKEN (line 975) | PSCRIPT_ENGINE_TOKEN
function sgetc (line 1041) | char
function IsKeyword (line 1063) | char
function IsRegister (line 1092) | char
function IsVariableType (line 1106) | char
function IsId (line 1126) | char
FILE: hyperdbg/script-engine/code/script-engine.c
function VOID (line 31) | VOID
function UINT64 (line 67) | UINT64
function UINT32 (line 87) | UINT32
function VOID (line 102) | VOID
function UINT32 (line 121) | UINT32
function UINT32 (line 136) | UINT32
function UINT32 (line 151) | UINT32
function BOOLEAN (line 168) | BOOLEAN
function BOOLEAN (line 184) | BOOLEAN
function BOOLEAN (line 199) | BOOLEAN
function BOOLEAN (line 215) | BOOLEAN
function BOOLEAN (line 234) | BOOLEAN
function BOOLEAN (line 257) | BOOLEAN
function VOID (line 275) | VOID
function BOOLEAN (line 294) | BOOLEAN
function PVOID (line 309) | PVOID
function CodeGen (line 673) | void
function UINT64 (line 3403) | UINT64
function ScriptEngineBooleanExpresssionParse (line 3454) | void
function PSYMBOL (line 3630) | PSYMBOL
function PSYMBOL (line 3656) | PSYMBOL
function PSYMBOL (line 3683) | PSYMBOL
function GetSymbolHeapSize (line 3716) | unsigned int
function RemoveSymbol (line 3728) | void
function PrintSymbol (line 3741) | void
function PSYMBOL (line 3779) | PSYMBOL
function PSYMBOL_BUFFER (line 3887) | PSYMBOL_BUFFER
function RemoveSymbolBuffer (line 3913) | void
function PSYMBOL_BUFFER (line 3930) | PSYMBOL_BUFFER
function PrintSymbolBuffer (line 4047) | void
function RegisterToInt (line 4076) | unsigned long long int
function PseudoRegToInt (line 4177) | unsigned long long int
function SemanticRuleToInt (line 4196) | unsigned long long int
function GetGlobalIdentifierVal (line 4326) | int
function GetLocalIdentifierVal (line 4347) | int
function NewGlobalIdentifier (line 4368) | int
function VOID (line 4381) | VOID
function VARIABLE_TYPE (line 4400) | VARIABLE_TYPE *
function NewLocalIdentifier (line 4421) | unsigned long long
function VOID (line 4437) | VOID
function VARIABLE_TYPE (line 4457) | VARIABLE_TYPE *
function NewFunctionParameterIdentifier (line 4478) | int
function GetFunctionParameterIdentifier (line 4492) | int
function PUSER_DEFINED_FUNCTION_NODE (line 4513) | PUSER_DEFINED_FUNCTION_NODE
function LalrGetRhsSize (line 4535) | int
function BOOL (line 4556) | BOOL
function BOOLEAN (line 4628) | BOOLEAN
function BOOLEAN (line 4652) | BOOLEAN
FILE: hyperdbg/script-engine/code/type.c
function VARIABLE_TYPE (line 27) | VARIABLE_TYPE *
function VARIABLE_TYPE (line 167) | VARIABLE_TYPE *
FILE: hyperdbg/script-engine/header/common.h
type SCRIPT_ENGINE_TOKEN_TYPE (line 36) | typedef enum _SCRIPT_ENGINE_TOKEN_TYPE
type SCRIPT_ENGINE_TOKEN (line 70) | typedef struct _SCRIPT_ENGINE_TOKEN
type SCRIPT_ENGINE_TOKEN_LIST (line 83) | typedef struct _SCRIPT_ENGINE_TOKEN_LIST
type USER_DEFINED_FUNCTION_NODE (line 276) | typedef struct _USER_DEFINED_FUNCTION_NODE
type INCLUDE_NODE (line 293) | typedef struct _INCLUDE_NODE
FILE: hyperdbg/script-engine/header/parse-table.h
type _SCRIPT_ENGINE_TOKEN (line 32) | struct _SCRIPT_ENGINE_TOKEN
type _SCRIPT_ENGINE_TOKEN (line 33) | struct _SCRIPT_ENGINE_TOKEN
type _SCRIPT_ENGINE_TOKEN (line 68) | struct _SCRIPT_ENGINE_TOKEN
type _SCRIPT_ENGINE_TOKEN (line 69) | struct _SCRIPT_ENGINE_TOKEN
type _SCRIPT_ENGINE_TOKEN (line 75) | struct _SCRIPT_ENGINE_TOKEN
FILE: hyperdbg/script-engine/header/script-engine.h
type SCRIPT_ENGINE_ERROR_TYPE (line 19) | typedef enum _SCRIPT_ENGINE_ERROR_TYPE
FILE: hyperdbg/script-engine/header/type.h
type VARIABLE_TYPE_KIND (line 6) | typedef enum
type VARIABLE_TYPE (line 27) | typedef struct VARIABLE_TYPE
FILE: hyperdbg/script-engine/python/generator.py
class Generator (line 20) | class Generator():
method __init__ (line 21) | def __init__(self):
method Run (line 29) | def Run(self):
method WriteCommonHeader (line 53) | def WriteCommonHeader(self):
method Parse (line 206) | def Parse(self, Tokens):
FILE: hyperdbg/script-engine/python/lalr1_parser.py
class LALR1Parser (line 21) | class LALR1Parser:
method __init__ (line 22) | def __init__(self, SourceFile, HeaderFile):
method Run (line 62) | def Run(self):
method WriteLhsList (line 95) | def WriteLhsList(self):
method WriteRhsList (line 108) | def WriteRhsList(self):
method WriteRhsSize (line 131) | def WriteRhsSize(self):
method WriteTerminalList (line 144) | def WriteTerminalList(self):
method WriteNoneTermianlList (line 156) | def WriteNoneTermianlList(self):
method WriteSemanticRules (line 169) | def WriteSemanticRules(self):
method GetType (line 193) | def GetType(self,Var):
method ReadGrammar (line 210) | def ReadGrammar(self):
method FillActionTable (line 297) | def FillActionTable(self):
method FillGotoTable (line 318) | def FillGotoTable(self):
method WriteParseTable (line 330) | def WriteParseTable(self):
method WriteActionTable (line 343) | def WriteActionTable(self):
method WriteGotoTable (line 363) | def WriteGotoTable(self):
method Parse (line 388) | def Parse(self, Tokens, InputSize):
method IsNoneTerminal (line 572) | def IsNoneTerminal(self,X):
method IsSemanticRule (line 578) | def IsSemanticRule(self, X):
method GetNoneTerminalId (line 584) | def GetNoneTerminalId(self, NonTerminal):
method GetTerminalId (line 590) | def GetTerminalId(self, Terminal):
function describe_grammar (line 602) | def describe_grammar(gr):
function describe_parsing_table (line 613) | def describe_parsing_table(table):
function get_grammar (line 629) | def get_grammar(parser):
function main (line 663) | def main():
FILE: hyperdbg/script-engine/python/lalr_parsing/grammar.py
class NonTerminal (line 1) | class NonTerminal:
method __init__ (line 2) | def __init__(self, name, productions):
method __repr__ (line 16) | def __repr__(self):
method __str__ (line 19) | def __str__(self):
method stringify (line 22) | def stringify(self, pretty=True):
class Grammar (line 38) | class Grammar:
method __init__ (line 39) | def __init__(self, nonterms, start_nonterminal=None):
method first_set (line 88) | def first_set(self, x):
method __build_first_sets (line 110) | def __build_first_sets(self):
method stringify (line 146) | def stringify(self, indexes=True):
method __str__ (line 153) | def __str__(self):
FILE: hyperdbg/script-engine/python/lalr_parsing/lalr_one.py
class ParsingTable (line 6) | class ParsingTable:
method __init__ (line 7) | def __init__(self, gr):
method __setup_from_grammar (line 38) | def __setup_from_grammar(self, gr):
method __stringify_action_entries (line 89) | def __stringify_action_entries(term, ent):
method __stringify_goto_entry (line 94) | def __stringify_goto_entry(nt, sid):
method __stringify_lr_zero_item (line 97) | def __stringify_lr_zero_item(self, item):
method stringify_state (line 108) | def stringify_state(self, state_id):
method stringify (line 132) | def stringify(self):
method __get_entry_status (line 137) | def __get_entry_status(e):
method get_single_state_conflict_status (line 144) | def get_single_state_conflict_status(self, state_id):
method get_conflict_status (line 148) | def get_conflict_status(self):
method is_lalr_one (line 151) | def is_lalr_one(self):
method save_to_csv (line 155) | def save_to_csv(self, filepath):
class LrZeroItemTableEntry (line 182) | class LrZeroItemTableEntry:
method __init__ (line 183) | def __init__(self):
method __repr__ (line 187) | def __repr__(self):
function get_canonical_collection (line 192) | def get_canonical_collection(gr):
function closure (line 261) | def closure(gr, item_set):
function goto (line 290) | def goto(gr, item_set, inp):
function kernels (line 305) | def kernels(item_set):
function drop_itemset_lookaheads (line 309) | def drop_itemset_lookaheads(itemset):
FILE: hyperdbg/script-engine/python/lalr_parsing/lr_zero.py
class Automaton (line 1) | class Automaton:
method __init__ (line 2) | def __init__(self):
function get_automaton (line 8) | def get_automaton(gr):
function closure (line 43) | def closure(gr, item_set):
function goto (line 68) | def goto(gr, item_set, inp):
function kernels (line 80) | def kernels(item_set):
FILE: hyperdbg/script-engine/python/ll1_parser.py
class LL1Parser (line 20) | class LL1Parser:
method __init__ (line 21) | def __init__(self, SourceFile, HeaderFile, CommonHeaderFile, CommonHea...
method Run (line 74) | def Run(self):
method SetLalr (line 166) | def SetLalr(self, Lalr, LalrParseTable):
method Parse (line 172) | def Parse(self, Tokens):
method ReadGrammar (line 342) | def ReadGrammar(self):
method WriteSemanticMaps (line 438) | def WriteSemanticMaps(self):
method WriteRegisterMaps (line 537) | def WriteRegisterMaps(self):
method WritePseudoRegMaps (line 578) | def WritePseudoRegMaps(self):
method WriteVariableTypeList (line 597) | def WriteVariableTypeList(self):
method WriteKeywordList (line 610) | def WriteKeywordList(self):
method WriteOperatorsList (line 623) | def WriteOperatorsList(self):
method WriteMaps (line 662) | def WriteMaps(self):
method WriteLhsList (line 680) | def WriteLhsList(self):
method GetType (line 693) | def GetType(self,Var):
method WriteRhsList (line 710) | def WriteRhsList(self):
method WriteRhsSize (line 733) | def WriteRhsSize(self):
method WriteTerminalList (line 746) | def WriteTerminalList(self):
method WriteNoneTermianlList (line 758) | def WriteNoneTermianlList(self):
method WriteParseTable (line 770) | def WriteParseTable(self):
method FindAllFirsts (line 793) | def FindAllFirsts(self):
method PrintFirsts (line 833) | def PrintFirsts(self):
method GetNoneTerminalId (line 840) | def GetNoneTerminalId(self, nonterminal):
method GetTerminalId (line 846) | def GetTerminalId(self, Terminal):
method FillParseTable (line 853) | def FillParseTable(self):
method PrintParseTable (line 878) | def PrintParseTable(self):
method FindAllPredicts (line 893) | def FindAllPredicts(self):
method print_predicts (line 924) | def print_predicts(self):
method FindAllFollows (line 933) | def FindAllFollows(self):
method GetNextVar (line 988) | def GetNextVar(self, Rhs, p):
method PrintFollows (line 997) | def PrintFollows(self):
method IsNoneTerminal (line 1004) | def IsNoneTerminal(self,X):
method IsSemanticRule (line 1010) | def IsSemanticRule(self, X):
method IsNullable (line 1016) | def IsNullable(self, s):
FILE: hyperdbg/script-engine/python/util.py
function GetTop (line 2) | def GetTop(L):
function Read (line 6) | def Read(Tokens):
FILE: hyperdbg/script-engine/script_include.c
function Ltrim (line 4) | static void
function Rtrim (line 16) | static void
function Trim (line 27) | static void
function BOOLEAN (line 56) | BOOLEAN
function ResolveIncludePath (line 69) | void
function BOOLEAN (line 94) | BOOLEAN
function BOOLEAN (line 108) | BOOLEAN
FILE: hyperdbg/script-eval/code/Functions.c
function BOOLEAN (line 47) | BOOLEAN
function BOOLEAN (line 86) | BOOLEAN
function BOOLEAN (line 125) | BOOLEAN
function BOOLEAN (line 164) | BOOLEAN
function BOOLEAN (line 206) | BOOLEAN
function BOOLEAN (line 248) | BOOLEAN
function BOOLEAN (line 289) | BOOLEAN
function VOID (line 322) | VOID
function VOID (line 441) | VOID
function UINT64 (line 537) | UINT64
function UINT64 (line 561) | UINT64
function VOID (line 587) | VOID
function VOID (line 615) | VOID
function VOID (line 637) | VOID
function VOID (line 666) | VOID
function VOID (line 696) | VOID
function UINT64 (line 724) | UINT64
function UINT64 (line 747) | UINT64
function UINT64 (line 768) | UINT64
function VOID (line 785) | VOID
function VOID (line 813) | VOID
function UINT64 (line 829) | UINT64
function UINT64 (line 839) | UINT64
function ScriptEngineFunctionInterlockedExchange (line 854) | long long
function ScriptEngineFunctionInterlockedExchangeAdd (line 884) | long long
function ScriptEngineFunctionInterlockedIncrement (line 913) | long long
function ScriptEngineFunctionInterlockedDecrement (line 941) | long long
function ScriptEngineFunctionInterlockedCompareExchange (line 971) | long long
function VOID (line 1002) | VOID
function VOID (line 1024) | VOID
function VOID (line 1046) | VOID
function VOID (line 1077) | VOID
function VOID (line 1151) | VOID
function VOID (line 1176) | VOID
function VOID (line 1214) | VOID
function UINT32 (line 1252) | UINT32
function BOOLEAN (line 1286) | BOOLEAN
function VOID (line 1320) | VOID
function WcharToChar (line 1357) | size_t
function BOOLEAN (line 1399) | BOOLEAN
function VOID (line 1559) | VOID
function VOID (line 1786) | VOID
function VOID (line 1824) | VOID
function UINT64 (line 1861) | UINT64
function UINT64 (line 1885) | UINT64
function UINT64 (line 1908) | UINT64
function UINT64 (line 1932) | UINT64
function UINT64 (line 1955) | UINT64
function VOID (line 1975) | VOID
function VOID (line 1999) | VOID
FILE: hyperdbg/script-eval/code/Keywords.c
function UINT64 (line 32) | UINT64
function WORD (line 66) | WORD
function WORD (line 100) | WORD
function BYTE (line 134) | BYTE
function DWORD (line 168) | DWORD
function WORD (line 202) | WORD
function QWORD (line 236) | QWORD
function UINT64 (line 276) | UINT64
function WORD (line 313) | WORD
function WORD (line 350) | WORD
function BYTE (line 387) | BYTE
function DWORD (line 424) | DWORD
function WORD (line 461) | WORD
function QWORD (line 498) | QWORD
FILE: hyperdbg/script-eval/code/PseudoRegisters.c
function UINT64 (line 24) | UINT64
function UINT64 (line 41) | UINT64
function UINT64 (line 58) | UINT64
function CHAR (line 75) | CHAR *
function UINT64 (line 124) | UINT64
function UINT64 (line 141) | UINT64
function UINT64 (line 158) | UINT64
function UINT64 (line 288) | UINT64
function UINT64 (line 305) | UINT64
function UINT64 (line 326) | UINT64
function UINT64 (line 347) | UINT64
function UINT64 (line 365) | UINT64
function UINT64 (line 383) | UINT64
function UINT64 (line 400) | UINT64
function UINT64 (line 421) | UINT64
FILE: hyperdbg/script-eval/code/Regs.c
function UINT64 (line 26) | UINT64
function UINT64 (line 39) | UINT64
function BOOLEAN (line 986) | BOOLEAN
function BOOLEAN (line 1002) | BOOLEAN
function BOOLEAN (line 2034) | BOOLEAN
FILE: hyperdbg/script-eval/code/ScriptEngineEval.c
function UINT64 (line 23) | UINT64
function UINT64 (line 91) | UINT64
function VOID (line 184) | VOID
function VOID (line 232) | VOID
function BOOL (line 296) | BOOL
FILE: hyperdbg/symbol-parser/code/casting.cpp
type _UNICODE_STRING (line 24) | struct _UNICODE_STRING
type _STUPID_STRUCT1 (line 31) | struct _STUPID_STRUCT1
type _STUPID_STRUCT2 (line 39) | struct _STUPID_STRUCT2
function BOOLEAN (line 71) | BOOLEAN
function BOOLEAN (line 247) | BOOLEAN
function main (line 285) | int
FILE: hyperdbg/symbol-parser/code/common-utils.cpp
function BOOLEAN (line 21) | BOOLEAN
function BOOLEAN (line 33) | BOOLEAN
function BOOLEAN (line 53) | BOOLEAN
function VOID (line 77) | VOID
function Split (line 149) | const std::vector<std::string>
FILE: hyperdbg/symbol-parser/code/symbol-parser.cpp
function SymSetTextMessageCallback (line 31) | void
function VOID (line 47) | VOID
function PSYMBOL_LOADED_MODULE_DETAILS (line 83) | PSYMBOL_LOADED_MODULE_DETAILS
function BOOLEAN (line 201) | BOOLEAN
function BOOLEAN (line 330) | BOOLEAN
function BOOLEAN (line 374) | BOOLEAN
function BOOLEAN (line 426) | BOOLEAN
function BOOLEAN (line 485) | BOOLEAN
function UINT32 (line 531) | UINT32
function UINT32 (line 666) | UINT32
function UINT32 (line 725) | UINT32
function UINT64 (line 803) | UINT64
function BOOLEAN (line 941) | BOOLEAN
function BOOLEAN (line 1030) | BOOLEAN
function UINT32 (line 1099) | UINT32
function BOOLEAN (line 1146) | BOOLEAN
function string (line 1197) | string
function BOOL (line 1219) | BOOL
function BOOL (line 1273) | BOOL
function VOID (line 1331) | VOID
function BOOL (line 1481) | BOOL CALLBACK
function BOOL (line 1504) | BOOL CALLBACK
function VOID (line 1528) | VOID
function BOOLEAN (line 1686) | BOOLEAN
function VOID (line 1751) | VOID
function BOOLEAN (line 1790) | BOOLEAN
function BOOLEAN (line 1863) | BOOLEAN
function BOOLEAN (line 2075) | BOOLEAN
function VOID (line 2131) | VOID
function BOOLEAN (line 2153) | BOOLEAN
FILE: hyperdbg/symbol-parser/header/symbol-parser.h
type SYMBOL_LOADED_MODULE_DETAILS (line 28) | typedef struct _SYMBOL_LOADED_MODULE_DETAILS
FILE: hyperdbg/symbol-parser/pch.h
type RFLAGS (line 46) | typedef RFLAGS * PRFLAGS;
FILE: utils/counter.py
function CountLines (line 3) | def CountLines(start, lines=0, header=True, begin_start=None):
FILE: utils/test-environment.py
function copy_dir (line 4) | def copy_dir(from_dir, to_dir) :
function main (line 13) | def main():
Condensed preview — 723 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (7,467K chars).
[
{
"path": ".gitattributes",
"chars": 482,
"preview": "# Auto detect text files and perform LF normalization\n* text=auto\n\n# Custom for Visual Studio\n*.cs diff=csharp\n*.sln"
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.md",
"chars": 1412,
"preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Note**\nWe're f"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.md",
"chars": 1399,
"preview": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Note**\nWe'r"
},
{
"path": ".github/git/git-help.md",
"chars": 1545,
"preview": "## Removing submodules\nTo remove a submodule you need to:\n\n- Delete the relevant section from the `.gitmodules` file.\n- "
},
{
"path": ".github/pull_request_template.md",
"chars": 601,
"preview": "# Description\n\nPlease include a summary of the change and which issue is fixed. \n\nFixes # (issue)\n\n## Type of change\n\nPl"
},
{
"path": ".github/workflows/vs2022.yml",
"chars": 3394,
"preview": "name: vs2022-ci\n\non:\n push:\n branches:\n - master\n - dev\n tags:\n - 'v*'\n paths-ignore:\n - '"
},
{
"path": ".gitignore",
"chars": 7123,
"preview": "## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n##\n## G"
},
{
"path": ".gitmodules",
"chars": 668,
"preview": "[submodule \"hyperdbg/dependencies/pdbex\"]\n\tpath = hyperdbg/dependencies/pdbex\n\turl = https://github.com/HyperDbg/pdbex.g"
},
{
"path": "CHANGELOG.md",
"chars": 43851,
"preview": "# Changelog\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changel"
},
{
"path": "CITATION.cff",
"chars": 839,
"preview": "cff-version: 1.2.0\nmessage: \"In case you use one of HyperDbg's components for your work, please consider citing our pape"
},
{
"path": "CODE_OF_CONDUCT.md",
"chars": 3349,
"preview": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, w"
},
{
"path": "CONTRIBUTING.md",
"chars": 7394,
"preview": "# Contribution\n\nFirst off, thanks for taking the time to contribute! ❤️\n\nHyperDbg is a large-scale project that requires"
},
{
"path": "CREDITS.md",
"chars": 2259,
"preview": "# Contributors\n\nThe list provided comprises individuals who have made significant contributions to the [HyperDbg](https:"
},
{
"path": "HOWTO.md",
"chars": 560,
"preview": "# HOWTO\r\nHow to do different tasks in HyperDbg\r\n\r\n## Automatic testing for the script engine\r\nThere is an automatic test"
},
{
"path": "LICENSE",
"chars": 35149,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "README.md",
"chars": 20963,
"preview": "<p align=\"left\">\n<a href=\"https://hyperdbg.org\"><img src=\"https://raw.githubusercontent.com/HyperDbg/graphics/master/Bad"
},
{
"path": "doxyfile",
"chars": 111175,
"preview": "# Doxyfile 1.8.17\n\n# This file describes the settings to be used by the documentation system\n# doxygen (www.doxygen.org)"
},
{
"path": "examples/README.md",
"chars": 145,
"preview": "# User-Mode and Kernel-Mode Examples\n\nExamples for user-mode and kernel-mode are **NOT** yet completed and are currently"
},
{
"path": "examples/kernel/README.md",
"chars": 188,
"preview": "NOTE\n============\nBuild it directly from the main HyperDbg solution file. Do not build it independently, as it requires "
},
{
"path": "examples/kernel/hyperdbg_driver/CMakeLists.txt",
"chars": 436,
"preview": "# Code generated by Visual Studio kit, DO NOT EDIT.\nset(SourceFiles\n \"header/core/Core.h\"\n \"header/driver/Driver.h"
},
{
"path": "examples/kernel/hyperdbg_driver/code/core/Core.c",
"chars": 388,
"preview": "/**\n * @file Core.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief The functions used in core of reversing machi"
},
{
"path": "examples/kernel/hyperdbg_driver/code/driver/Driver.c",
"chars": 6846,
"preview": "/**\n * @file Driver.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief The project entry (RM)\n * @details\n *\n * @v"
},
{
"path": "examples/kernel/hyperdbg_driver/code/driver/Ioctl.c",
"chars": 2935,
"preview": "/**\n * @file Ioctl.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief IOCTL Functions form user mode and other par"
},
{
"path": "examples/kernel/hyperdbg_driver/code/driver/Loader.c",
"chars": 2914,
"preview": "/**\n * @file Loader.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief The functions used in loading the VMM and R"
},
{
"path": "examples/kernel/hyperdbg_driver/header/core/Core.h",
"chars": 436,
"preview": "/**\n * @file Loader.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Routines for perform initial VMM and RM\n * "
},
{
"path": "examples/kernel/hyperdbg_driver/header/driver/Driver.h",
"chars": 967,
"preview": "/**\n * @file Driver.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Header for WDK driver functions for RM\n * @"
},
{
"path": "examples/kernel/hyperdbg_driver/header/driver/Loader.h",
"chars": 481,
"preview": "/**\n * @file Loader.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Routines for perform initial VMM and RM\n * "
},
{
"path": "examples/kernel/hyperdbg_driver/header/misc/Global.h",
"chars": 548,
"preview": "/**\n * @file Global.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Headers for global variables\n * @version 0."
},
{
"path": "examples/kernel/hyperdbg_driver/header/pch.h",
"chars": 1184,
"preview": "/**\n * @file pch.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Pre-compiled headers for RM\n * @details\n * @ve"
},
{
"path": "examples/kernel/hyperdbg_driver/hyperdbg_driver.vcxproj",
"chars": 5679,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"12.0\" xmlns=\"http://schemas.micros"
},
{
"path": "examples/kernel/hyperdbg_driver/hyperdbg_driver.vcxproj.filters",
"chars": 2137,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
},
{
"path": "examples/user/README.md",
"chars": 188,
"preview": "NOTE\n============\nBuild it directly from the main HyperDbg solution file. Do not build it independently, as it requires "
},
{
"path": "examples/user/hyperdbg_app/CMakeLists.txt",
"chars": 279,
"preview": "# Code generated by Visual Studio kit, DO NOT EDIT.\nset(SourceFiles\n \"../../../platform/user/header/Environment.h\"\n "
},
{
"path": "examples/user/hyperdbg_app/code/hyperdbg-app.cpp",
"chars": 2787,
"preview": "/**\n * @file hyperdbg-app.cpp\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Controller of the reversing machine"
},
{
"path": "examples/user/hyperdbg_app/header/pch.h",
"chars": 670,
"preview": "/**\n * @file pch.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Pre-compiled headers for reversing machine's m"
},
{
"path": "examples/user/hyperdbg_app/hyperdbg_app.vcxproj",
"chars": 5540,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msb"
},
{
"path": "examples/user/hyperdbg_app/hyperdbg_app.vcxproj.filters",
"chars": 916,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
},
{
"path": "hwdbg/.github/workflows/test.yml",
"chars": 1861,
"preview": "name: Continuous Integration\n\non:\n push:\n tags: ['*']\n branches: ['main']\n pull_request:\n workflow_dispatch:\n\ne"
},
{
"path": "hwdbg/.gitignore",
"chars": 4708,
"preview": "### Project Specific stuff\ntest_run_dir/*\n### XilinxISE template\n# intermediate build files\n*.bgn\n*.bit\n*.bld\n*.cmd_log\n"
},
{
"path": "hwdbg/.mill-version",
"chars": 7,
"preview": "0.11.5\n"
},
{
"path": "hwdbg/.scalafmt.conf",
"chars": 116,
"preview": "version = \"3.8.1\"\nrunner.dialect = scala213\nmaxColumn = 150\ndocstrings.style = Asterisk\ndocstrings.oneline = unfold\n"
},
{
"path": "hwdbg/CODE_OF_CONDUCT.md",
"chars": 3349,
"preview": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, w"
},
{
"path": "hwdbg/LICENSE",
"chars": 35149,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "hwdbg/README.md",
"chars": 6138,
"preview": "<p align=\"center\">\n <img alt=\"hwdbg\" title=\"hwdbg\" src=\"https://github.com/HyperDbg/graphics/blob/master/Logos/hwdbg/h"
},
{
"path": "hwdbg/build.sbt",
"chars": 821,
"preview": "// See README.md for license details.\n\nThisBuild / scalaVersion := \"2.13.12\"\nThisBuild / version := \"0.1.0\"\nThisBuild / "
},
{
"path": "hwdbg/build.sc",
"chars": 771,
"preview": "// import Mill dependency\nimport mill._\nimport mill.define.Sources\nimport mill.modules.Util\nimport mill.scalalib.TestMod"
},
{
"path": "hwdbg/project/build.properties",
"chars": 20,
"preview": "sbt.version = 1.9.7\n"
},
{
"path": "hwdbg/project/metals.sbt",
"chars": 193,
"preview": "// format: off\n// DO NOT EDIT! This file is auto-generated.\n\n// This file enables sbt-bloop to create bloop config files"
},
{
"path": "hwdbg/project/plugins.sbt",
"chars": 23,
"preview": "logLevel := Level.Warn\n"
},
{
"path": "hwdbg/project/project/metals.sbt",
"chars": 193,
"preview": "// format: off\n// DO NOT EDIT! This file is auto-generated.\n\n// This file enables sbt-bloop to create bloop config files"
},
{
"path": "hwdbg/project/project/project/metals.sbt",
"chars": 193,
"preview": "// format: off\n// DO NOT EDIT! This file is auto-generated.\n\n// This file enables sbt-bloop to create bloop config files"
},
{
"path": "hwdbg/sim/.gitignore",
"chars": 3128,
"preview": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packagi"
},
{
"path": "hwdbg/sim/hwdbg/DebuggerModuleTestingBRAM/Makefile",
"chars": 1245,
"preview": "# Makefile\n\nTOPLEVEL_LANG = verilog\n\nVERILOG_SOURCES += $(shell pwd)/../../../generated/DebuggerModuleTestingBRAM.sv\nVER"
},
{
"path": "hwdbg/sim/hwdbg/DebuggerModuleTestingBRAM/bram_instance_info.txt",
"chars": 4937,
"preview": "Content of BRAM after emulation:\n\nPS to PL area:\nmem_0: 0000005a | Checksum\nmem_1: 00000000 | Checksum\nmem_2: "
},
{
"path": "hwdbg/sim/hwdbg/DebuggerModuleTestingBRAM/script_buffer_response.txt",
"chars": 4937,
"preview": "Content of BRAM after emulation:\n\nPS to PL area:\nmem_0: 00000017 | Checksum\nmem_1: 00000000 | Checksum\nmem_2: "
},
{
"path": "hwdbg/sim/hwdbg/DebuggerModuleTestingBRAM/test.sh",
"chars": 24,
"preview": "make SIM=icarus WAVES=1\n"
},
{
"path": "hwdbg/sim/hwdbg/DebuggerModuleTestingBRAM/test_DebuggerModuleTestingBRAM.py",
"chars": 19660,
"preview": "##\n# @file test_DebuggerModuleTestingBRAM.py\n#\n# @author Sina Karvandi (sina@hyperdbg.org)\n#\n# @brief Testing module for"
},
{
"path": "hwdbg/sim/hwdbg/communication/DebuggerPacketReceiver/Makefile",
"chars": 243,
"preview": "# Makefile\n\nTOPLEVEL_LANG = verilog\nVERILOG_SOURCES = $(shell pwd)/../../../../generated/DebuggerPacketReceiver.sv\nTOPLE"
},
{
"path": "hwdbg/sim/hwdbg/communication/DebuggerPacketReceiver/test.sh",
"chars": 24,
"preview": "make SIM=icarus WAVES=1\n"
},
{
"path": "hwdbg/sim/hwdbg/communication/DebuggerPacketReceiver/test_DebuggerPacketReceiver.py",
"chars": 6321,
"preview": "##\n# @file test_DebuggerPacketReceiver.py\n#\n# @author Sina Karvandi (sina@hyperdbg.org)\n#\n# @brief Testing module for De"
},
{
"path": "hwdbg/sim/hwdbg/communication/DebuggerPacketSender/Makefile",
"chars": 237,
"preview": "# Makefile\n\nTOPLEVEL_LANG = verilog\nVERILOG_SOURCES = $(shell pwd)/../../../../generated/DebuggerPacketSender.sv\nTOPLEVE"
},
{
"path": "hwdbg/sim/hwdbg/communication/DebuggerPacketSender/test.sh",
"chars": 24,
"preview": "make SIM=icarus WAVES=1\n"
},
{
"path": "hwdbg/sim/hwdbg/communication/DebuggerPacketSender/test_DebuggerPacketSender.py",
"chars": 4467,
"preview": "##\n# @file test_DebuggerPacketSender.py\n#\n# @author Sina Karvandi (sina@hyperdbg.org)\n#\n# @brief Testing module for Debu"
},
{
"path": "hwdbg/sim/hwdbg/communication/SendReceiveSynchronizer/Makefile",
"chars": 405,
"preview": "# Makefile\n\nTOPLEVEL_LANG = verilog\nVERILOG_SOURCES += $(shell pwd)/../../../../generated/SendReceiveSynchronizer.sv\nVER"
},
{
"path": "hwdbg/sim/hwdbg/communication/SendReceiveSynchronizer/test.sh",
"chars": 24,
"preview": "make SIM=icarus WAVES=1\n"
},
{
"path": "hwdbg/sim/hwdbg/communication/SendReceiveSynchronizer/test_SendReceiveSynchronizer.py",
"chars": 12558,
"preview": "##\n# @file test_SendReceiveSynchronizer.py\n#\n# @author Sina Karvandi (sina@hyperdbg.org)\n#\n# @brief Testing module for S"
},
{
"path": "hwdbg/sim/modelsim/README.md",
"chars": 657,
"preview": "# Automated ModelSim Viewer\n\nFirst of all, make sure to edit the address of the \"ModelSim\" directory in **modelsim.py**."
},
{
"path": "hwdbg/sim/modelsim/modelsim.config",
"chars": 50,
"preview": "module:DebuggerModuleTest\nio_inputPin\nio_outputPin"
},
{
"path": "hwdbg/sim/modelsim/modelsim.py",
"chars": 4369,
"preview": "import os\nimport subprocess\nimport glob\n\nMODELSIM = \"/home/sina/intelFPGA/20.1/modelsim_ase/bin\"\n\n#\n# Check modelsim dir"
},
{
"path": "hwdbg/sim/modelsim/modelsim.tcl",
"chars": 95,
"preview": "add wave -position insertpoint {*io_inputPin*}\nadd wave -position insertpoint {*io_outputPin*}\n"
},
{
"path": "hwdbg/sim/plain-sv/PlainSystemVerilogDUT.sv",
"chars": 4454,
"preview": "//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// Engineer: Sina Karvan"
},
{
"path": "hwdbg/src/main/scala/hwdbg/communication/interpreter/instance_info.scala",
"chars": 10877,
"preview": "/**\n * @file\n * port_information.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Send port info"
},
{
"path": "hwdbg/src/main/scala/hwdbg/communication/interpreter/script_buffer_handler.scala",
"chars": 6983,
"preview": "/**\n * @file\n * script_buffer_handler.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Configure"
},
{
"path": "hwdbg/src/main/scala/hwdbg/communication/interpreter/send_success_or_error.scala",
"chars": 2917,
"preview": "/**\n * @file\n * send_success_or_error.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Send an i"
},
{
"path": "hwdbg/src/main/scala/hwdbg/communication/interpreter.scala",
"chars": 14671,
"preview": "/**\n * @file\n * interpreter.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Remote debugger pac"
},
{
"path": "hwdbg/src/main/scala/hwdbg/communication/receiver.scala",
"chars": 12836,
"preview": "/**\n * @file\n * receiver.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Remote debugger packet"
},
{
"path": "hwdbg/src/main/scala/hwdbg/communication/send_receive_synchronizer.scala",
"chars": 9972,
"preview": "/**\n * @file\n * send_receive_synchronizer.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Send "
},
{
"path": "hwdbg/src/main/scala/hwdbg/communication/sender.scala",
"chars": 13035,
"preview": "/**\n * @file\n * sender.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Remote debugger packet s"
},
{
"path": "hwdbg/src/main/scala/hwdbg/configs/config.json",
"chars": 1443,
"preview": "{\n \"Version\": {\n \"VERSION_MAJOR\": 0,\n \"VERSION_MINOR\": 2,\n \"VERSION_PATCH\": 0\n },\n \"DebuggerConf"
},
{
"path": "hwdbg/src/main/scala/hwdbg/configs/configs.scala",
"chars": 16687,
"preview": "/**\n * @file\n * configs.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Configuration files\n * "
},
{
"path": "hwdbg/src/main/scala/hwdbg/configs/constants.scala",
"chars": 1356,
"preview": "/**\n * @file\n * constants.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Constant values\n * @d"
},
{
"path": "hwdbg/src/main/scala/hwdbg/configs/test_configs.scala",
"chars": 1284,
"preview": "/**\n * @file\n * configs.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Configuration files for"
},
{
"path": "hwdbg/src/main/scala/hwdbg/libs/mem/init_mem.scala",
"chars": 1995,
"preview": "/**\n * @file\n * init_mem.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Initialize SRAM memory"
},
{
"path": "hwdbg/src/main/scala/hwdbg/libs/mem/init_reg_mem_from_file.scala",
"chars": 3472,
"preview": "/**\n * @file\n * init_reg_mem_from_file.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Initiali"
},
{
"path": "hwdbg/src/main/scala/hwdbg/libs/mux/mux_2_to_1_io.scala",
"chars": 1176,
"preview": "/**\n * @file\n * mux_2_to_1_io.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Implementation of"
},
{
"path": "hwdbg/src/main/scala/hwdbg/libs/mux/mux_2_to_1_lookup.scala",
"chars": 1305,
"preview": "/**\n * @file\n * mux_2_to_1_lookup.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Implementatio"
},
{
"path": "hwdbg/src/main/scala/hwdbg/libs/mux/mux_4_to_1_onehot.scala",
"chars": 1512,
"preview": "/**\n * @file\n * mux_4_to_1_onehot.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Implementatio"
},
{
"path": "hwdbg/src/main/scala/hwdbg/main.scala",
"chars": 9362,
"preview": "/**\n * @file\n * main.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * hwdbg's main debugger modu"
},
{
"path": "hwdbg/src/main/scala/hwdbg/script/eval.scala",
"chars": 17486,
"preview": "/**\n * @file\n * eval.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Script execution engine\n *"
},
{
"path": "hwdbg/src/main/scala/hwdbg/script/exec.scala",
"chars": 11196,
"preview": "/**\n * @file\n * exec.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Script execution engine\n *"
},
{
"path": "hwdbg/src/main/scala/hwdbg/script/get_value.scala",
"chars": 6487,
"preview": "/**\n * @file\n * get_value.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Script engine get val"
},
{
"path": "hwdbg/src/main/scala/hwdbg/script/script_definitions.scala",
"chars": 3054,
"preview": "package hwdbg.script\n\nimport chisel3._\nimport chisel3.util._\n\n/**\n * @brief\n * The structure of HWDBG_SHORT_SYMBOL use"
},
{
"path": "hwdbg/src/main/scala/hwdbg/script/set_value.scala",
"chars": 12885,
"preview": "/**\n * @file\n * set_value.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Script engine set val"
},
{
"path": "hwdbg/src/main/scala/hwdbg/types/communication.scala",
"chars": 4073,
"preview": "/**\n * @file\n * communication.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Data types for th"
},
{
"path": "hwdbg/src/main/scala/hwdbg/types/stage.scala",
"chars": 2347,
"preview": "/**\n * @file\n * stage.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Data types related to sta"
},
{
"path": "hwdbg/src/main/scala/hwdbg/utils/utils.scala",
"chars": 1630,
"preview": "/**\n * @file\n * utils.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * Different utilities and f"
},
{
"path": "hwdbg/src/main/scala/top.scala",
"chars": 4078,
"preview": "/**\n * @file\n * top.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * hwdbg's top module\n * @deta"
},
{
"path": "hwdbg/src/main/scala/top_test.scala",
"chars": 4934,
"preview": "/**\n * @file\n * top_test.scala\n * @author\n * Sina Karvandi (sina@hyperdbg.org)\n * @brief\n * hwdbg's top module (wi"
},
{
"path": "hwdbg/src/main/systemverilog/sensors/constraints/top.xdc",
"chars": 461119,
"preview": "set_property ALLOW_COMBINATORIAL_LOOPS true [get_nets UART_FF_INS/RO[0]/ro_fanout_ins[0]/ro_inst[0]/x[2]]\nset_property A"
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/PL_CORE.v",
"chars": 1626,
"preview": "`timescale 1ns / 1ps\n//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/ff_fanout.sv",
"chars": 1910,
"preview": "`timescale 1ns / 1ps\n//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/freq_generator.sv",
"chars": 2337,
"preview": "`timescale 1ns / 1ps\n//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/inverter.v",
"chars": 626,
"preview": "`timescale 1ns / 1ps\n//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/inverter_chain.v",
"chars": 1605,
"preview": "`timescale 1ns / 1ps\n//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/multibyte_uart_rx.sv",
"chars": 2196,
"preview": "module multibyte_uart_rx \n#(\n parameter SYSTEMCLOCK = 100_000_000, \n parameter BAUDRATE = 1"
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/multibyte_uart_tx.sv",
"chars": 4110,
"preview": "module multibyte_uart_tx \n#(\n parameter SYSTEMCLOCK = 100_000_000, \n parameter BAUDRATE "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/not_gate_simple.v",
"chars": 694,
"preview": "`timescale 1ps / 1ps\n//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/ro.v",
"chars": 908,
"preview": "`timescale 1ns/1ps\n\n\nmodule ro(\n// input ck_io41,\n// output ck_io33\n input wire R_in,\n output wire R_out);\nwire a "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/ro_core.sv",
"chars": 1074,
"preview": "`timescale 1ns / 1ps\n//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/ro_fanout.sv",
"chars": 1149,
"preview": "`timescale 1ns / 1ps\n//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/ro_sensor.sv",
"chars": 3521,
"preview": "`timescale 1ns / 1ps\n//////////////////////////////////////////////////////////////////////////////////\n// Company: \n// "
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/top.sv",
"chars": 47568,
"preview": "`timescale 1ns/1ps\n\nmodule UART_FF\n(\n input logic clk,\n input logic rst,\n input logic uart_rx_line,\n i"
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/uart_rx.sv",
"chars": 3535,
"preview": "module uart_rx \n#(\n parameter SYSTEMCLOCK = 100_000_000, \n parameter BAUDRATE = 1"
},
{
"path": "hwdbg/src/main/systemverilog/sensors/src/uart_tx.sv",
"chars": 3638,
"preview": "module uart_tx \n#(\n parameter SYSTEMCLOCK = 100_000_000, \n parameter BAUDRATE = 1"
},
{
"path": "hwdbg/src/test/bram/instance_info.hex.txt",
"chars": 4700,
"preview": "0000005a ; +0x0 | Checksum\n00000000 ; +0x4 | Checksum\n52444247 ; +0x8 | Indicator\n48595045 ; +0xc | Indicator\n00"
},
{
"path": "hwdbg/src/test/bram/script_buffer.hex.txt",
"chars": 4726,
"preview": "000000b9 ; +0x0 | Checksum\n00000000 ; +0x4 | Checksum\n52444247 ; +0x8 | Indicator\n48595045 ; +0xc | Indicator\n00"
},
{
"path": "hyperdbg/.clang-format",
"chars": 6000,
"preview": "Language: C\nBasedOnStyle: webkit\nAccessModifierOffset: -4\n\nAlignAfterOpenBracket: Align\nAlignConsecutiveAssignments: tru"
},
{
"path": "hyperdbg/CMakeLists.txt",
"chars": 2148,
"preview": "# Code generated by Visual Studio kit, DO NOT EDIT.\ncmake_minimum_required(VERSION 3.28)\nproject(hyperdbg C CXX)\nset(CMA"
},
{
"path": "hyperdbg/FindWdk.cmake",
"chars": 7960,
"preview": "# Redistribution and use is allowed under the OSI-approved 3-clause BSD license.\n# Copyright (c) 2018 Sergey Podobry (se"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/arm.h",
"chars": 381,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016 */\n\n#ifndef KEYSTONE_ARM_H\n#define KEYSTONE_ARM_H\n\n#ifdef _"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/arm64.h",
"chars": 395,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016 */\n\n#ifndef KEYSTONE_ARM64_H\n#define KEYSTONE_ARM64_H\n\n#ifd"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/evm.h",
"chars": 386,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016-2018 */\n\n#ifndef KEYSTONE_EVM_H\n#define KEYSTONE_EVM_H\n\n#if"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/hexagon.h",
"chars": 410,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016 */\n\n#ifndef KEYSTONE_HEXAGON_H\n#define KEYSTONE_HEXAGON_H\n\n"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/keystone.h",
"chars": 11962,
"preview": "/* Keystone Assembler Engine (www.keystone-engine.org) */\n/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2016 */\n\n#ifndef KE"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/mips.h",
"chars": 388,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016 */\n\n#ifndef KEYSTONE_MIPS_H\n#define KEYSTONE_MIPS_H\n\n#ifdef"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/ppc.h",
"chars": 382,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016 */\n\n#ifndef KEYSTONE_PPC_H\n#define KEYSTONE_PPC_H\n\n#ifdef _"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/riscv.h",
"chars": 426,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016 */\n/* Added by Mark Juvan, 2023*/\n#ifndef KEYSTONE_RISCV_H\n"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/sparc.h",
"chars": 396,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016 */\n\n#ifndef KEYSTONE_SPARC_H\n#define KEYSTONE_SPARC_H\n\n#ifd"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/systemz.h",
"chars": 410,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016 */\n\n#ifndef KEYSTONE_SYSTEMZ_H\n#define KEYSTONE_SYSTEMZ_H\n\n"
},
{
"path": "hyperdbg/dependencies/keystone/include/keystone/x86.h",
"chars": 381,
"preview": "/* Keystone Assembler Engine */\n/* By Nguyen Anh Quynh, 2016 */\n\n#ifndef KEYSTONE_X86_H\n#define KEYSTONE_X86_H\n\n#ifdef _"
},
{
"path": "hyperdbg/hyperdbg-cli/CMakeLists.txt",
"chars": 251,
"preview": "# Code generated by Visual Studio kit, DO NOT EDIT.\nset(SourceFiles\n \"hyperdbg-cli.cpp\"\n \"../include/platform/user"
},
{
"path": "hyperdbg/hyperdbg-cli/hyperdbg-cli.cpp",
"chars": 3802,
"preview": "/**\n * @file hyperdbg-cli.cpp\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Main HyperDbg Cli source coede\n * "
},
{
"path": "hyperdbg/hyperdbg-cli/hyperdbg-cli.vcxproj",
"chars": 7958,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msb"
},
{
"path": "hyperdbg/hyperdbg-cli/hyperdbg-cli.vcxproj.filters",
"chars": 900,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
},
{
"path": "hyperdbg/hyperdbg-test/CMakeLists.txt",
"chars": 438,
"preview": "# Code generated by Visual Studio kit, DO NOT EDIT.\nset(SourceFiles\n \"code/tests/hyperdbg-test.cpp\"\n \"code/tests/n"
},
{
"path": "hyperdbg/hyperdbg-test/code/assembly/asm-test.asm",
"chars": 517,
"preview": "PUBLIC AsmTest\n\n.code _text\n\n;------------------------------------------------------------------------\n; Note : Right-cl"
},
{
"path": "hyperdbg/hyperdbg-test/code/hardware/hwdbg-tests.cpp",
"chars": 7217,
"preview": "/**\n * @file hwdbg-tests.cpp\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Test cases for testing hwdbg\n * @det"
},
{
"path": "hyperdbg/hyperdbg-test/code/main.cpp",
"chars": 1883,
"preview": "/**\n * @file main.cpp\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief perform tests\n * @details\n * @version 0.11\n"
},
{
"path": "hyperdbg/hyperdbg-test/code/namedpipe.cpp",
"chars": 15536,
"preview": "/**\n * @file namedpipe.cpp\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Server and Client communication over N"
},
{
"path": "hyperdbg/hyperdbg-test/code/tests/test-parser.cpp",
"chars": 10646,
"preview": "/**\n * @file test-parser.cpp\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Perform test on command parser\n * @d"
},
{
"path": "hyperdbg/hyperdbg-test/code/tests/test-semantic-scripts.cpp",
"chars": 3441,
"preview": "/**\n * @file test-semanitc-scripts.cpp\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Perform test on semantic s"
},
{
"path": "hyperdbg/hyperdbg-test/code/tools.cpp",
"chars": 740,
"preview": "/**\n * @file tools.cpp\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief general functions used in test project\n * "
},
{
"path": "hyperdbg/hyperdbg-test/header/hwdbg-tests.h",
"chars": 448,
"preview": "/**\n * @file hwdbg-tests.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Headers for the hardware tests for hwd"
},
{
"path": "hyperdbg/hyperdbg-test/header/namedpipe.h",
"chars": 1525,
"preview": "/**\n * @file namedpipe.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Named pipe communication headers\n * @det"
},
{
"path": "hyperdbg/hyperdbg-test/header/routines.h",
"chars": 1211,
"preview": "/**\n * @file routines.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief header for testing routines\n * @details\n "
},
{
"path": "hyperdbg/hyperdbg-test/header/testcases.h",
"chars": 449,
"preview": "/**\n * @file testcases.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief header for test cases\n * @details\n * @ve"
},
{
"path": "hyperdbg/hyperdbg-test/hyperdbg-test.vcxproj",
"chars": 6792,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msb"
},
{
"path": "hyperdbg/hyperdbg-test/hyperdbg-test.vcxproj.filters",
"chars": 2521,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
},
{
"path": "hyperdbg/hyperdbg-test/pch.cpp",
"chars": 237,
"preview": "/**\n * @file pch.cpp\n * @author Sina Karvandi (sina@hyperdbg.org)\n *\n * @details Pre-compiled headers\n * @version 0.1\n *"
},
{
"path": "hyperdbg/hyperdbg-test/pch.h",
"chars": 970,
"preview": "/**\n * @file pch.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief pre-compiled headers\n * @details\n * @version 0"
},
{
"path": "hyperdbg/hyperdbg.sln",
"chars": 21700,
"preview": "\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio Version 17\nVisualStudioVersion = 17.2.3260"
},
{
"path": "hyperdbg/hyperevade/CMakeLists.txt",
"chars": 584,
"preview": "# Code generated by Visual Studio kit, DO NOT EDIT.\nset(SourceFiles\n \"../include/components/spinlock/code/Spinlock.c\""
},
{
"path": "hyperdbg/hyperevade/code/SyscallFootprints.c",
"chars": 71239,
"preview": "/**\n * @file SyscallFootprints.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Try to hide SYSCALL methods from"
},
{
"path": "hyperdbg/hyperevade/code/Transparency.c",
"chars": 20512,
"preview": "/**\n * @file Transparency.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Try to hide the debugger from anti-de"
},
{
"path": "hyperdbg/hyperevade/code/UnloadDll.c",
"chars": 708,
"preview": "/**\n * @file UnloadDll.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Unloading DLL in the target Windows\n *\n "
},
{
"path": "hyperdbg/hyperevade/code/VmxFootprints.c",
"chars": 4199,
"preview": "/**\n * @file VmxFootprints.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Try to hide VMX methods from anti-de"
},
{
"path": "hyperdbg/hyperevade/header/SyscallFootprints.h",
"chars": 13192,
"preview": "/**\n * @file SyscallFootprints.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Hide the debugger from SYSCALL a"
},
{
"path": "hyperdbg/hyperevade/header/Transparency.h",
"chars": 1651,
"preview": "/**\n * @file Transparency.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief hide the debugger from anti-debugging"
},
{
"path": "hyperdbg/hyperevade/header/VmxFootprints.h",
"chars": 380,
"preview": "/**\n * @file VmxFootprint.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Hide the debugger from VMX-footrpints"
},
{
"path": "hyperdbg/hyperevade/header/pch.h",
"chars": 2020,
"preview": "/**\n * @file pch.h\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Headers of Message logging and tracing\n * @det"
},
{
"path": "hyperdbg/hyperevade/hyperevade.def",
"chars": 76,
"preview": "LIBRARY hyperevade\n\nEXPORTS\n\n DllInitialize PRIVATE\n DllUnload PRIVATE"
},
{
"path": "hyperdbg/hyperevade/hyperevade.vcxproj",
"chars": 6490,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project DefaultTargets=\"Build\" ToolsVersion=\"12.0\" xmlns=\"http://schemas.micros"
},
{
"path": "hyperdbg/hyperevade/hyperevade.vcxproj.filters",
"chars": 4192,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuil"
},
{
"path": "hyperdbg/hyperhv/CMakeLists.txt",
"chars": 6655,
"preview": "# Code generated by Visual Studio kit, DO NOT EDIT.\nset(SourceFiles\n \"../include/components/optimizations/code/AvlTre"
},
{
"path": "hyperdbg/hyperhv/code/assembly/AsmCommon.asm",
"chars": 1600,
"preview": "PUBLIC AsmStiInstruction\nPUBLIC AsmCliInstruction\nPUBLIC AsmGetRflags\nPUBLIC AsmReloadGdtr\nPUBLIC AsmReloadIdtr\n\n.code _"
},
{
"path": "hyperdbg/hyperhv/code/assembly/AsmEpt.asm",
"chars": 1084,
"preview": "PUBLIC AsmInvept\n\n.code _text\n\n;------------------------------------------------------------------------\n\n; Error codes "
},
{
"path": "hyperdbg/hyperhv/code/assembly/AsmHooks.asm",
"chars": 1304,
"preview": "PUBLIC AsmGeneralDetourHook\nEXTERN EptHook2GeneralDetourEventHandler:PROC\n\n.code _text\n\n;-------------------------------"
},
{
"path": "hyperdbg/hyperhv/code/assembly/AsmInterruptHandlers.asm",
"chars": 3996,
"preview": "; This file was copied and modified from: https://github.com/jonomango/hv/blob/main/hv/interrupt-handlers.asm\n\nEXTERN Id"
},
{
"path": "hyperdbg/hyperhv/code/assembly/AsmSegmentRegs.asm",
"chars": 3019,
"preview": "PUBLIC AsmGetCs\nPUBLIC AsmGetDs\nPUBLIC AsmSetDs\nPUBLIC AsmGetEs\nPUBLIC AsmSetEs\nPUBLIC AsmGetSs\nPUBLIC AsmSetSs\nPUBLIC A"
},
{
"path": "hyperdbg/hyperhv/code/assembly/AsmVmexitHandler.asm",
"chars": 6875,
"preview": "PUBLIC AsmVmexitHandler\nPUBLIC AsmVmxoffRestoreXmmRegs\n\nEXTERN VmxVmexitHandler:PROC\nEXTERN VmxVmresume:PROC\nEXTERN VmxR"
},
{
"path": "hyperdbg/hyperhv/code/assembly/AsmVmxContextState.asm",
"chars": 1463,
"preview": "PUBLIC AsmVmxSaveState\nPUBLIC AsmVmxRestoreState\n\nEXTERN VmxVirtualizeCurrentSystem:PROC\n\n.code _text\n\n;----------------"
},
{
"path": "hyperdbg/hyperhv/code/assembly/AsmVmxOperation.asm",
"chars": 3267,
"preview": "PUBLIC AsmEnableVmxOperation\nPUBLIC AsmVmxVmcall\nPUBLIC AsmHypervVmcall\nPUBLIC AsmVmfunc\n\n.code _text\n\n;----------------"
},
{
"path": "hyperdbg/hyperhv/code/broadcast/Broadcast.c",
"chars": 10921,
"preview": "/**\n * @file Broadcast.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Broadcast debugger function to all logic"
},
{
"path": "hyperdbg/hyperhv/code/broadcast/DpcRoutines.c",
"chars": 43765,
"preview": "/**\n * @file DpcRoutines.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief All the dpc routines which relates to "
},
{
"path": "hyperdbg/hyperhv/code/common/Bitwise.c",
"chars": 878,
"preview": "/**\n * @file Bitwise.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Functions for bit-level operations\n *\n * @"
},
{
"path": "hyperdbg/hyperhv/code/common/Common.c",
"chars": 5849,
"preview": "/**\n * @file Common.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Common functions that needs to be used in a"
},
{
"path": "hyperdbg/hyperhv/code/common/UnloadDll.c",
"chars": 708,
"preview": "/**\n * @file UnloadDll.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Unloading DLL in the target Windows\n *\n "
},
{
"path": "hyperdbg/hyperhv/code/components/registers/DebugRegisters.c",
"chars": 8185,
"preview": "/**\n * @file DebugRegisters.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Implementation of debug registers f"
},
{
"path": "hyperdbg/hyperhv/code/devices/Apic.c",
"chars": 11696,
"preview": "/**\n * @file Apic.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Routines for Advanced Programmable Interrupt "
},
{
"path": "hyperdbg/hyperhv/code/devices/Pci.c",
"chars": 3286,
"preview": "/**\n * @file Pci.c\n * @author Bjrn Ruytenberg (bjorn@bjornweb.nl)\n * @brief Routines for interacting with PCI(e) fabric\n"
},
{
"path": "hyperdbg/hyperhv/code/disassembler/Disassembler.c",
"chars": 10637,
"preview": "/**\n * @file Diassembler.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Disassembler functions in kernel-mode\n"
},
{
"path": "hyperdbg/hyperhv/code/disassembler/ZydisKernel.c",
"chars": 7677,
"preview": "/***************************************************************************************************\n\n Zyan Disassemble"
},
{
"path": "hyperdbg/hyperhv/code/features/CompatibilityChecks.c",
"chars": 5374,
"preview": "/**\n * @file CompatibilityChecks.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Checks for processor compatibi"
},
{
"path": "hyperdbg/hyperhv/code/features/DirtyLogging.c",
"chars": 7272,
"preview": "/**\n * @file DirtyLogging.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Implementation of memory hooks functi"
},
{
"path": "hyperdbg/hyperhv/code/globals/GlobalVariableManagement.c",
"chars": 1084,
"preview": "/**\n * @file GlobalVariableManagement.c\n * @author Behrooz Abbassi (BehroozAbbassi@hyperdbg.org)\n * @brief Management of"
},
{
"path": "hyperdbg/hyperhv/code/hooks/ept-hook/EptHook.c",
"chars": 88387,
"preview": "/**\n * @file EptHook.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Implementation of different EPT hidden hoo"
},
{
"path": "hyperdbg/hyperhv/code/hooks/ept-hook/ExecTrap.c",
"chars": 23786,
"preview": "/**\n * @file ExecTrap.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief The reversing machine's routines\n * @deta"
},
{
"path": "hyperdbg/hyperhv/code/hooks/ept-hook/ModeBasedExecHook.c",
"chars": 6958,
"preview": "/**\n * @file ModeBasedExecHook.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Implementation of hooks based on"
},
{
"path": "hyperdbg/hyperhv/code/hooks/syscall-hook/EferHook.c",
"chars": 12236,
"preview": "/**\n * @file EferHook.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Implementation of the functions related t"
},
{
"path": "hyperdbg/hyperhv/code/hooks/syscall-hook/SyscallCallback.c",
"chars": 11653,
"preview": "/**\n * @file SyscallCallback.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Implementation of the functions re"
},
{
"path": "hyperdbg/hyperhv/code/interface/Callback.c",
"chars": 6521,
"preview": "/**\n * @file Callback.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief VMM callback interface routines\n * @detai"
},
{
"path": "hyperdbg/hyperhv/code/interface/Configuration.c",
"chars": 17430,
"preview": "/**\n * @file Configuration.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Configuration interface for hypervis"
},
{
"path": "hyperdbg/hyperhv/code/interface/DirectVmcall.c",
"chars": 14922,
"preview": "/**\n * @file DirectVmcall.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Direct VMCALL routines\n * @details\n *"
},
{
"path": "hyperdbg/hyperhv/code/interface/Dispatch.c",
"chars": 51477,
"preview": "/**\n * @file Dispatch.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Implementation of debugger functions for "
},
{
"path": "hyperdbg/hyperhv/code/interface/Export.c",
"chars": 16916,
"preview": "/**\n * @file Export.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Implementation of exported functions from h"
},
{
"path": "hyperdbg/hyperhv/code/interface/HyperEvade.c",
"chars": 3742,
"preview": "/**\n * @file HyperEvade.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Hyperevade function wrappers\n * @detail"
},
{
"path": "hyperdbg/hyperhv/code/memory/AddressCheck.c",
"chars": 9527,
"preview": "/**\n * @file Conversion.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Functions for address checks\n *\n * @ver"
},
{
"path": "hyperdbg/hyperhv/code/memory/Conversion.c",
"chars": 6982,
"preview": "/**\n * @file Conversion.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Functions for memory conversions\n *\n * "
},
{
"path": "hyperdbg/hyperhv/code/memory/Layout.c",
"chars": 2303,
"preview": "/**\n * @file Layout.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Functions for working with memory layouts\n "
},
{
"path": "hyperdbg/hyperhv/code/memory/MemoryManager.c",
"chars": 7121,
"preview": "/**\n * @file MemoryManager.c\n * @author Sina Karvandi (sina@hyperdbg.org)\n * @brief Reading/Writing memory and all memor"
}
]
// ... and 523 more files (download for full content)
About this extraction
This page contains the full source code of the HyperDbg/HyperDbg GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 723 files (41.5 MB), approximately 1.8M tokens, and a symbol index with 2931 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.