mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-10 09:39:36 +00:00
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
#include <Windows.h>
|
|
#include <conio.h>
|
|
#include <iostream>
|
|
#include "Definitions.h"
|
|
#include "Configuration.h"
|
|
|
|
#pragma comment(lib, "HPRDBGCTRL.lib")
|
|
|
|
// Header file of HPRDBGCTRL
|
|
__declspec(dllimport) int HyperdbgInit();
|
|
|
|
|
|
|
|
void PrintAppearance() {
|
|
|
|
printf("\n"
|
|
|
|
|
|
" _ _ _ _____ ____ _ _ \n"
|
|
" | | | |_ _ _ __ ___ _ ____ _(_)___ ___ _ __ | ___| __ ___ _ __ ___ / ___| ___ _ __ __ _| |_ ___| |__ \n"
|
|
" | |_| | | | | '_ \\ / _ \\ '__\\ \\ / / / __|/ _ \\| '__| | |_ | '__/ _ \\| '_ ` _ \\ \\___ \\ / __| '__/ _` | __/ __| '_ \\ \n"
|
|
" | _ | |_| | |_) | __/ | \\ V /| \\__ \\ (_) | | | _|| | | (_) | | | | | | ___) | (__| | | (_| | || (__| | | |\n"
|
|
" |_| |_|\\__, | .__/ \\___|_| \\_/ |_|___/\\___/|_| |_| |_| \\___/|_| |_| |_| |____/ \\___|_| \\__,_|\\__\\___|_| |_|\n"
|
|
" |___/|_| \n"
|
|
"\n\n");
|
|
}
|
|
|
|
|
|
int main()
|
|
{
|
|
// Print Hypervisor From Scratch Message
|
|
PrintAppearance();
|
|
|
|
//HyperdbgInit();
|
|
|
|
exit(0);
|
|
|
|
return 0;
|
|
}
|
|
|