update todo and bfg too many entries message

This commit is contained in:
van Hauser 2020-03-10 09:53:27 +01:00
parent 8426e55939
commit b0fc44daa2
2 changed files with 6 additions and 1 deletions

5
TODO
View file

@ -1,4 +1,9 @@
./configure:
- add test for -march=native
--- this is old ---
Prio 1: Prio 1:
* add cookie support to hydra-http.c * add cookie support to hydra-http.c
* hydra-smb more than 1 connection? * hydra-smb more than 1 connection?

2
bfg.c
View file

@ -191,7 +191,7 @@ uint64_t bf_get_pcount() {
count += (pow((double)bf_options.crs_len, (double)i)); count += (pow((double)bf_options.crs_len, (double)i));
if (count >= 0xffffffff) { if (count >= 0xffffffff) {
fprintf(stderr, "\n[ERROR] definition for password bruteforce (-x) " fprintf(stderr, "\n[ERROR] definition for password bruteforce (-x) "
"generates more than 4 billion passwords\n"); "generates more than 4 billion passwords - this is not a bug in the program, it is just not feasible to try so many attempts. Try a calculator how long that would take. duh.\n");
exit(-1); exit(-1);
} }