mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-20 13:23:57 -07:00
fix
This commit is contained in:
parent
d4ace452c7
commit
3ed91cd18f
4 changed files with 6 additions and 4 deletions
2
hydra.c
2
hydra.c
|
@ -3284,7 +3284,7 @@ int main(int argc, char *argv[]) {
|
|||
if (strstr(hydra_options.miscptr, "\\:") != NULL) {
|
||||
fprintf(stderr, "[INFORMATION] escape sequence \\: detected in module option, no parameter verification is performed.\n");
|
||||
} else {
|
||||
sprintf(bufferurl, "%.6096s", hydra_options.miscptr);
|
||||
sprintf(bufferurl, "%.6000s", hydra_options.miscptr);
|
||||
url = strtok(bufferurl, ":");
|
||||
variables = strtok(NULL, ":");
|
||||
cond = strtok(NULL, ":");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue