diff --git a/hydra.c b/hydra.c index 5e1dd87..2883b2f 100644 --- a/hydra.c +++ b/hydra.c @@ -619,6 +619,10 @@ void module_usage() { "%s:\n================================================================" "============\n", hydra_options.service); + if (strcmp(hydra_options.service, "https-post-form") == 0) + strcpy(hydra_options.service, "http-post-form"); + else if (strcmp(hydra_options.service, "https-get-form") == 0) + strcpy(hydra_options.service, "http-get-form"); for (i = 0; i < sizeof(services) / sizeof(services[0]); i++) { if (strcmp(hydra_options.service, services[i].name) == 0) { if (services[i].usage) {