-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathentry.c
56 lines (46 loc) · 1.01 KB
/
entry.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <windows.h>
#include "bofdefs.h"
#include "base.c"
#include <tchar.h>
#include <stdio.h>
void getEnvs() {
LPTSTR lpszVariable;
LPTCH lpvEnv;
// Get a pointer to the environment block.
lpvEnv = KERNEL32$GetEnvironmentStrings();
internal_printf("Gathering Process Environment Variables:\n\n");
// If the returned pointer is NULL, exit.
if (lpvEnv == NULL)
{
BeaconPrintf(CALLBACK_ERROR, "GetEnvironmentStrings failed.");
return;
}
// Variable strings are separated by NULL byte, and the block is
// terminated by a NULL byte.
lpszVariable = (LPTSTR) lpvEnv;
while (*lpszVariable)
{
internal_printf("%s\n", lpszVariable);
lpszVariable += KERNEL32$lstrlenA(lpszVariable) + 1;
}
KERNEL32$FreeEnvironmentStringsA(lpvEnv);
return;
}
#ifdef BOF
VOID go()
{
if(!bofstart())
{
return;
}
getEnvs();
printoutput(TRUE);
bofstop();
};
#else
int main()
{
getEnvs();
return 1;
}
#endif