Skip to content

Commit eb5037b

Browse files
authored
Update head.h
1 parent 2e6fd9a commit eb5037b

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

shellcodeCode/head.h

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,3 +247,22 @@ FARPROC GetProcAddress_Func(ULONG_PTR dwKernelBase) {
247247
#endif
248248
}
249249
}
250+
251+
typedef BOOL(WINAPI* FN_HttpQueryInfoA)(
252+
HINTERNET hRequest,
253+
DWORD dwInfoLevel,
254+
LPVOID lpBuffer,
255+
LPDWORD lpdwBufferLength,
256+
LPDWORD lpdwIndex
257+
);
258+
259+
typedef BOOL(WINAPI* FN_InternetCloseHandle)(
260+
HINTERNET hInternet
261+
);
262+
263+
typedef BOOL(WINAPI* FN_VirtualProtect)(
264+
LPVOID lpAddress,
265+
SIZE_T dwSize,
266+
DWORD flNewProtect,
267+
PDWORD lpflOldProtect
268+
);

0 commit comments

Comments
 (0)