Skip to content

Commit

Permalink
fix -M ipv6
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Nov 1, 2021
1 parent 13db28f commit 9b05528
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES
Expand Up @@ -8,6 +8,7 @@ Release 9.3-dev
* fix for rdp to detect empty passwords
* for vnc/cisco/... protocols that only check for a password, skip host
after the password is found
* fixe to support IPv6 addresses in -M
* added "make uninstall"


Expand Down
2 changes: 1 addition & 1 deletion hydra.c
Expand Up @@ -3586,7 +3586,7 @@ int main(int argc, char *argv[]) {
}
} else
hydra_targets[i]->target = tmpptr;
if ((tmpptr2 = strchr(hydra_targets[i]->target, ':')) != NULL) {
if ((tmpptr2 = strchr(tmpptr, ':')) != NULL) {
*tmpptr2++ = 0;
tmpptr = tmpptr2;
hydra_targets[i]->port = atoi(tmpptr2);
Expand Down

0 comments on commit 9b05528

Please sign in to comment.