Skip to content

Instantly share code, notes, and snippets.

View 0xVZ's full-sized avatar
🧑‍🔧

Zaffrani Valentino 0xVZ

🧑‍🔧
  • Argentina
View GitHub Profile
@DownWithUp
DownWithUp / BeepDriverIOCTL.c
Created October 26, 2018 13:48
Use an IOCTL to create a beep from Beep.sys
#include <Windows.h>
#include <stdio.h>
#include <winternl.h>
typedef struct _BEEP_SETTINGS {
ULONG ulFrequency;
ULONG ulDuration;
} BEEP_SETTINGS;
void main() {