Files
passthehashbrowns a7a16853d5 Create example.c
2023-06-27 16:24:18 -05:00

14 lines
368 B
C

#include "bofmask.h"
WINBASEAPI int WINAPI USER32$MessageBoxA(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType);
void go(char* args, int len){
GetBeaconBaseAddress();
//You can use Beacon APIs here!
MaskBeacon();
//DON'T CALL ANY BEACON APIS HERE!
USER32$MessageBoxA(NULL, "HI!", "HI!", MB_OK);
UnmaskBeacon();
//You can use Beacon APIs again!
}