-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathexterns.h
72 lines (59 loc) · 1.37 KB
/
externs.h
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// config extern globals for module use
extern char botid[];
extern char version[];
extern char password[];
extern char server[];
extern int port;
extern char serverpass[];
extern char channel[];
extern char chanpass[];
extern char server2[];
extern int port2;
extern char channel2[];
extern char chanpass2[];
extern char filename[];
extern char keylogfile[];
extern char valuename[];
extern char nickconst[];
extern char szLocalPayloadFile[];
extern char modeonconn[];
extern char exploitchan[];
extern char keylogchan[];
extern char psniffchan[];
extern char *authost[];
extern char *versionlist[];
extern char regkey1[];
extern char regkey2[];
extern char regkey3[];
extern char regkey4[];
extern int socks4port;
extern int tftpport;
extern int httpport;
extern int rloginport;
extern BOOL topiccmd;
extern BOOL rndfilename;
extern BOOL AutoStart;
extern char prefix;
extern int maxrand;
extern int nicktype;
extern BOOL nickprefix;
// global threads
extern THREAD threads[MAXTHREADS];
// url visit function
extern HANDLE ih;
// aliases
extern ALIAS aliases[MAXALIASES];
extern int anum;
// passwords
extern char *usernames[];
extern char *passwords[];
// advscan
extern EXPLOIT exploit[];
// misc
extern DWORD started;
#ifdef DEBUG_LOGGING
extern char logfile[];
#endif
#ifdef PLAIN_CRYPT
extern char key[];
#endif