mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-19 21:03:52 -07:00
2021
This commit is contained in:
parent
6364bf329b
commit
09f6a71e84
5 changed files with 9 additions and 6 deletions
2
CHANGES
2
CHANGES
|
@ -6,6 +6,8 @@ Release 9.2-dev
|
||||||
* fix for http-post-form optional parameters
|
* fix for http-post-form optional parameters
|
||||||
* enable gcc 10 support for xhydra too :)
|
* enable gcc 10 support for xhydra too :)
|
||||||
* msys support
|
* msys support
|
||||||
|
* fix for rain mode (-r)
|
||||||
|
* IPv6 support for Host: header for http based modules
|
||||||
|
|
||||||
|
|
||||||
Release 9.1-dev
|
Release 9.1-dev
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
H Y D R A
|
H Y D R A
|
||||||
|
|
||||||
(c) 2001-2020 by van Hauser / THC
|
(c) 2001-2021 by van Hauser / THC
|
||||||
<vh@thc.org> https://github.com/vanhauser-thc/thc-hydra
|
<vh@thc.org> https://github.com/vanhauser-thc/thc-hydra
|
||||||
many modules were written by David (dot) Maciejak @ gmail (dot) com
|
many modules were written by David (dot) Maciejak @ gmail (dot) com
|
||||||
BFG code by Jan Dlabal <dlabaljan@gmail.com>
|
BFG code by Jan Dlabal <dlabaljan@gmail.com>
|
||||||
|
@ -382,7 +382,7 @@ Version 1.00 example:
|
||||||
"These are very free form"
|
"These are very free form"
|
||||||
],
|
],
|
||||||
"generator": {
|
"generator": {
|
||||||
"built": "2020-03-01 14:44:22",
|
"built": "2021-03-01 14:44:22",
|
||||||
"commandline": "hydra -b jsonv1 -o results.json ... ...",
|
"commandline": "hydra -b jsonv1 -o results.json ... ...",
|
||||||
"jsonoutputversion": "1.00",
|
"jsonoutputversion": "1.00",
|
||||||
"server": "127.0.0.1",
|
"server": "127.0.0.1",
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* Copyright (C) 2020 Karim Kanso, all rights reserved.
|
* Copyright (C) 2021 Karim Kanso, all rights reserved.
|
||||||
* kaz 'dot' kanso 'at' g mail 'dot' com
|
* kaz 'dot' kanso 'at' g mail 'dot' com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
2
hydra.1
2
hydra.1
|
@ -1,4 +1,4 @@
|
||||||
.TH "HYDRA" "1" "01/01/2020"
|
.TH "HYDRA" "1" "01/01/2021"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
hydra \- a very fast network logon cracker which supports many different services
|
hydra \- a very fast network logon cracker which supports many different services
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
5
hydra.c
5
hydra.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* hydra (c) 2001-2020 by van Hauser / THC <vh@thc.org>
|
* hydra (c) 2001-2021 by van Hauser / THC <vh@thc.org>
|
||||||
* https://github.com/vanhauser-thc/thc-hydra
|
* https://github.com/vanhauser-thc/thc-hydra
|
||||||
*
|
*
|
||||||
* Parallized network login hacker.
|
* Parallized network login hacker.
|
||||||
|
@ -11,6 +11,7 @@
|
||||||
*/
|
*/
|
||||||
#include "hydra.h"
|
#include "hydra.h"
|
||||||
#include "bfg.h"
|
#include "bfg.h"
|
||||||
|
#include <strings.h>
|
||||||
|
|
||||||
#ifdef LIBNCURSES
|
#ifdef LIBNCURSES
|
||||||
#include <curses.h>
|
#include <curses.h>
|
||||||
|
@ -2151,7 +2152,7 @@ int main(int argc, char *argv[]) {
|
||||||
struct sockaddr_in6 *ipv6 = NULL;
|
struct sockaddr_in6 *ipv6 = NULL;
|
||||||
struct sockaddr_in *ipv4 = NULL;
|
struct sockaddr_in *ipv4 = NULL;
|
||||||
|
|
||||||
printf("%s %s (c) 2020 by %s & %s - Please do not use in military or secret "
|
printf("%s %s (c) 2021 by %s & %s - Please do not use in military or secret "
|
||||||
"service organizations, or for illegal purposes (this is non-binding, these *** ignore laws and ethics anyway).\n\n",
|
"service organizations, or for illegal purposes (this is non-binding, these *** ignore laws and ethics anyway).\n\n",
|
||||||
PROGRAM, VERSION, AUTHOR, AUTHOR2);
|
PROGRAM, VERSION, AUTHOR, AUTHOR2);
|
||||||
#ifndef LIBAFP
|
#ifndef LIBAFP
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue