mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
proxy file support implemented
This commit is contained in:
parent
d27e40cd32
commit
bb53072a73
10 changed files with 257 additions and 143 deletions
12
hydra-mod.h
12
hydra-mod.h
|
@ -48,12 +48,14 @@ int debug;
|
|||
int verbose;
|
||||
int waittime;
|
||||
int port;
|
||||
int use_proxy;
|
||||
int found;
|
||||
char proxy_string_ip[36];
|
||||
int proxy_string_port;
|
||||
char proxy_string_type[10];
|
||||
char *proxy_authentication;
|
||||
int proxy_count;
|
||||
int use_proxy;
|
||||
int selected_proxy;
|
||||
char proxy_string_ip[MAX_PROXY_COUNT][36];
|
||||
int proxy_string_port[MAX_PROXY_COUNT];
|
||||
char proxy_string_type[MAX_PROXY_COUNT][10];
|
||||
char *proxy_authentication[MAX_PROXY_COUNT];
|
||||
char *cmdlinetarget;
|
||||
|
||||
typedef int BOOL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue