HyperDbg/hyperdbg/hyperdbg-cli/hyperdbg-cli.cpp
Sina Karvandi d2319eb9fd add logo
2020-03-28 02:34:59 -07:00

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;
}