mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-18 05:24:47 +00:00
132 lines
3.8 KiB
C
132 lines
3.8 KiB
C
/**
|
|
* @file Definition.h
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief Header files for global definitions
|
|
* @details This file contains definitions that are use in both user mode and
|
|
* kernel mode Means that if you change the following files, structures or
|
|
* enums, then these settings apply to both usermode and kernel mode
|
|
* @version 0.1
|
|
* @date 2020-04-10
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
//////////////////////////////////////////////////
|
|
// Config File //
|
|
//////////////////////////////////////////////////
|
|
|
|
/**
|
|
* @brief Config file name for HyperDbg
|
|
*
|
|
*/
|
|
#define CONFIG_FILE_NAME L"config.ini"
|
|
|
|
//////////////////////////////////////////////////
|
|
// Installer //
|
|
//////////////////////////////////////////////////
|
|
|
|
/**
|
|
* @brief name of HyperDbg's VMM driver
|
|
*
|
|
*/
|
|
#define VMM_DRIVER_NAME "hyperhv"
|
|
|
|
/**
|
|
* @brief name of HyperDbg's debugger driver
|
|
*
|
|
*/
|
|
#define KERNEL_DEBUGGER_DRIVER_NAME "hyperkd"
|
|
|
|
/**
|
|
* @brief name of HyperDbg's debugger driver + extension
|
|
*
|
|
*/
|
|
#define KERNEL_DEBUGGER_DRIVER_NAME_AND_EXTENSION "hyperkd.sys"
|
|
|
|
//////////////////////////////////////////////////
|
|
// Test Cases //
|
|
//////////////////////////////////////////////////
|
|
|
|
/**
|
|
* @brief Default named pipe name for communication between debugger and debuggee process
|
|
*/
|
|
#define TEST_DEFAULT_NAMED_PIPE "\\\\.\\pipe\\HyperDbgPipe"
|
|
|
|
/**
|
|
* @brief Maximum buffer to communicate between debugger and debuggee process
|
|
*/
|
|
#define TEST_CASE_MAXIMUM_BUFFERS_TO_COMMUNICATE 0x1000
|
|
|
|
/**
|
|
* @brief Maximum hwdbg testing pins count (for emulating the script behavior)
|
|
*/
|
|
#define MAX_HWDBG_TESTING_PIN_COUNT 500
|
|
|
|
/**
|
|
* @brief Test cases file name for command parser
|
|
*/
|
|
#define COMMAND_PARSER_TEST_CASES_FILE "..\\..\\..\\tests\\command-parser\\command-parser-testcases.txt"
|
|
|
|
/**
|
|
* @brief Test case parameter for testing main command parser
|
|
*/
|
|
#define TEST_HWDBG_FUNCTIONALITIES "test-hwdbg-functionalities"
|
|
|
|
/**
|
|
* @brief Test case parameter for testing main command parser
|
|
*/
|
|
#define TEST_CASE_PARAMETER_FOR_MAIN_COMMAND_PARSER "test-command-parser"
|
|
|
|
/**
|
|
* @brief Test case parameter for testing PE parser
|
|
*/
|
|
#define TEST_CASE_PARAMETER_FOR_PE_PARSER "test-pe-parser"
|
|
|
|
/**
|
|
* @brief Test case parameter for testing CodeView RSDS parser
|
|
*/
|
|
#define TEST_CASE_PARAMETER_FOR_CODEVIEW_RSDS_PARSER "test-codeview-rsds-parser"
|
|
|
|
/**
|
|
* @brief Test case parameter for testing semantic script tests
|
|
*/
|
|
#define TEST_CASE_PARAMETER_FOR_SCRIPT_SEMANTIC_TEST_CASES "test-script-semantic-test-cases"
|
|
|
|
/**
|
|
* @brief Test cases file name
|
|
*/
|
|
#define SCRIPT_ENGINE_TEST_CASES_DIRECTORY "script-test-cases"
|
|
|
|
/**
|
|
* @brief Test cases directory name for script semantic tests
|
|
*/
|
|
#define SCRIPT_SEMANTIC_TEST_CASE_DIRECTORY "..\\..\\..\\tests\\script-engine-test\\semantic-test-cases"
|
|
|
|
/**
|
|
* @brief Test cases directory name for hwdbg script (code) tests
|
|
*/
|
|
#define HWDBG_SCRIPT_TEST_CASE_CODE_DIRECTORY "..\\..\\..\\tests\\hwdbg-tests\\scripts\\codes"
|
|
|
|
/**
|
|
* @brief Test cases directory name for hwdbg script (compiled-scripts) tests
|
|
*/
|
|
#define HWDBG_SCRIPT_TEST_CASE_COMPILED_SCRIPTS_DIRECTORY "..\\..\\..\\tests\\hwdbg-tests\\scripts\\compiled-scripts"
|
|
|
|
/**
|
|
* @brief Test cases directory name for hwdbg script (sample-tests) tests
|
|
*/
|
|
#define HWDBG_SCRIPT_TEST_CASE_SAMPLE_TESTS_DIRECTORY "..\\..\\..\\tests\\hwdbg-tests\\scripts\\sample-tests"
|
|
|
|
//////////////////////////////////////////////////
|
|
// Delay Speeds //
|
|
//////////////////////////////////////////////////
|
|
|
|
/**
|
|
* @brief The speed delay for showing messages from kernel-mode
|
|
* to user-mode in VMI-mode, using a lower value causes the
|
|
* HyperDbg to show messages faster but you should keep in mind,
|
|
* not to eat all of the CPU
|
|
*/
|
|
#define DefaultSpeedOfReadingKernelMessages 30
|