Skip to content

Instantly share code, notes, and snippets.

@un4ckn0wl3z
Created November 15, 2023 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save un4ckn0wl3z/f983d563fa15af31d5df3665221b8c88 to your computer and use it in GitHub Desktop.
Save un4ckn0wl3z/f983d563fa15af31d5df3665221b8c88 to your computer and use it in GitHub Desktop.
#include <ntddk.h>
extern "C"
NTSTATUS
DriverEntry(
_In_ PDRIVER_OBJECT DriverObject,
_In_ PUNICODE_STRING RegistryPath)
{
UNREFERENCED_PARAMETER(DriverObject);
UNREFERENCED_PARAMETER(RegistryPath);
DbgPrint("[+] Hello from FirstDriver DriverEntry\n");
return STATUS_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment