mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-20 06:24:42 +00:00
619 B
619 B
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