mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-11 18:19:36 +00:00
| .. | ||
| Makefile | ||
| mock.c | ||
| pch.h | ||
| README.md | ||
mock — HyperDbg Hello World
A minimal user-mode Linux application that prints "Hello world HyperDbg!" to stdout and imports HyperDbg SDK.
Requirements
- GCC (any reasonably recent version)
- GNU Make
- Linux (user-mode, no special privileges needed)
Install on Debian/Ubuntu:
sudo apt update && sudo apt install build-essential
Build
make
This compiles mock.c into an executable called mock.
Run
./mock
Expected output:
Hello world HyperDbg!
Clean
Remove compiled objects and the binary:
make clean