mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-07-05 20:41:39 -07:00
Merge branch 'master' into master
This commit is contained in:
commit
60a9924547
92 changed files with 7264 additions and 6402 deletions
17
bfg.h
17
bfg.h
|
@ -24,7 +24,9 @@
|
|||
#define BF_WEBSITE "http://houbysoft.com/bfg/"
|
||||
|
||||
#define BF_BUFLEN 1024
|
||||
#define BF_CHARSMAX 256 /* how many max possibilities there are for characters, normally it's 2^8 = 256 */
|
||||
#define BF_CHARSMAX \
|
||||
256 /* how many max possibilities there are for characters, normally it's \
|
||||
2^8 = 256 */
|
||||
|
||||
#define BF_LOWER 1
|
||||
#define BF_UPPER 2
|
||||
|
@ -35,15 +37,16 @@ typedef struct {
|
|||
unsigned char to;
|
||||
unsigned char current;
|
||||
unsigned char state[BF_CHARSMAX]; /* which position has which character */
|
||||
unsigned char pos; /* where in current string length is the position */
|
||||
unsigned char crs_len; /* length of selected charset */
|
||||
char *arg; /* argument received for bfg commandline option */
|
||||
char *crs; /* internal representation of charset */
|
||||
char *ptr; /* ptr to the last generated password */
|
||||
unsigned char pos; /* where in current string length is the position */
|
||||
unsigned char crs_len; /* length of selected charset */
|
||||
char *arg; /* argument received for bfg commandline option */
|
||||
char *crs; /* internal representation of charset */
|
||||
char *ptr; /* ptr to the last generated password */
|
||||
uint32_t disable_symbols;
|
||||
|
||||
uint64_t rotate;
|
||||
uint64_t strafe;
|
||||
/* accumulator for the rain */
|
||||
|
||||
} bf_option;
|
||||
|
||||
extern bf_option bf_options;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue