
renaud at nessus
Jan 15, 2003, 3:59 AM
Post #1 of 1
(402 views)
Permalink
|
|
nessus-plugins/plugins/hydra hydra4nessus.c,1.9,1.10
|
|
Update of /usr/local/cvs/nessus-plugins/plugins/hydra In directory raccoon.nessus.org:/tmp/cvs-serv98214 Modified Files: hydra4nessus.c Log Message: bugfix - wrong command line options were bad (bug#58) Index: hydra4nessus.c =================================================================== RCS file: /usr/local/cvs/nessus-plugins/plugins/hydra/hydra4nessus.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- hydra4nessus.c 15 Jan 2003 10:12:51 -0000 1.9 +++ hydra4nessus.c 15 Jan 2003 10:59:00 -0000 1.10 @@ -444,8 +444,8 @@ /* This CLI argument is useful to avoid having login or password files full of entries * with the same information in login and password info (jfs) */ - argv = append_argv(argv, "-n");argc++; - argv = append_argv(argv, "es");argc++; + argv = append_argv(argv, "-e");argc++; + argv = append_argv(argv, "ns");argc++;
|