HyperDbg/hyperdbg/linux/mock/user
2026-05-08 18:58:20 +02:00
..
Makefile fix compiling error for user and kernel intrinsics in Linux 2026-05-08 18:58:20 +02:00
mock.c fix compiling error for user and kernel intrinsics in Linux 2026-05-08 18:58:20 +02:00
pch.h add user level modifications for intrinsics support in mock 2026-05-06 00:50:29 +02:00
README.md compile HyperDbg SDK for Linux (user-mode) 2026-04-28 17:17:45 +02:00

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