mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-20 05:13:51 -07:00
v8.6 release
This commit is contained in:
parent
0a4f0987d1
commit
bd8ec4712f
5 changed files with 38 additions and 22 deletions
2
CHANGES
2
CHANGES
|
@ -3,7 +3,7 @@ Changelog for hydra
|
||||||
|
|
||||||
Release 8.6-dev
|
Release 8.6-dev
|
||||||
* added radmin2 module by catatonic prime - great work!
|
* added radmin2 module by catatonic prime - great work!
|
||||||
* smb module now checks if SMBv1 is supported by the server and now signing is required
|
* smb module now checks if SMBv1 is supported by the server and if signing is required
|
||||||
* http-form module now supports URLs up to 6000 bytes (thanks to petrock6@github for the patch)
|
* http-form module now supports URLs up to 6000 bytes (thanks to petrock6@github for the patch)
|
||||||
* Fix for SSL connections that failed with error:00000000:lib(0):func(0):reason(0) (thanks gaia@github for reporting)
|
* Fix for SSL connections that failed with error:00000000:lib(0):func(0):reason(0) (thanks gaia@github for reporting)
|
||||||
* Added new command line option:
|
* Added new command line option:
|
||||||
|
|
2
hydra.c
2
hydra.c
|
@ -207,7 +207,7 @@ char *SERVICES =
|
||||||
#define RESTOREFILE "./hydra.restore"
|
#define RESTOREFILE "./hydra.restore"
|
||||||
|
|
||||||
#define PROGRAM "Hydra"
|
#define PROGRAM "Hydra"
|
||||||
#define VERSION "v8.6-dev"
|
#define VERSION "v8.6"
|
||||||
#define AUTHOR "van Hauser/THC"
|
#define AUTHOR "van Hauser/THC"
|
||||||
#define EMAIL "<vh@thc.org>"
|
#define EMAIL "<vh@thc.org>"
|
||||||
#define RESOURCE "http://www.thc.org/thc-hydra"
|
#define RESOURCE "http://www.thc.org/thc-hydra"
|
||||||
|
|
10
web/CHANGES
10
web/CHANGES
|
@ -2,7 +2,15 @@ Changelog for hydra
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
Release 8.6-dev
|
Release 8.6-dev
|
||||||
* ...
|
* added radmin2 module by catatonic prime - great work!
|
||||||
|
* smb module now checks if SMBv1 is supported by the server and if signing is required
|
||||||
|
* http-form module now supports URLs up to 6000 bytes (thanks to petrock6@github for the patch)
|
||||||
|
* Fix for SSL connections that failed with error:00000000:lib(0):func(0):reason(0) (thanks gaia@github for reporting)
|
||||||
|
* Added new command line option:
|
||||||
|
-c TIME: seconds between login attempts (over all threads, so -t 1 is recommended)
|
||||||
|
* Options put after -R (for loading a restore file) are now honored (and were disallowed before)
|
||||||
|
* merged several patches by Diadlo@github to make the code easier readable. thanks for that!
|
||||||
|
* merged a patch by Diadlo@github that moves the help output to the invididual module
|
||||||
|
|
||||||
|
|
||||||
Release 8.5
|
Release 8.5
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
A very fast network logon cracker which support many different services.
|
A very fast network logon cracker which support many different services.
|
||||||
See feature sets and services coverage <a href="network_password_cracker_comparison.html">page</a> - incl. a speed comparison against ncrack and medusa<br>
|
See feature sets and services coverage <a href="network_password_cracker_comparison.html">page</a> - incl. a speed comparison against ncrack and medusa<br>
|
||||||
</h4><h3>
|
</h4><h3>
|
||||||
Current Version: 8.5
|
Current Version: 8.6
|
||||||
Last update 2017-05-03
|
Last update 2017-07-21
|
||||||
</h3>
|
</h3>
|
||||||
</pre>
|
</pre>
|
||||||
</td>
|
</td>
|
||||||
|
@ -34,20 +34,20 @@
|
||||||
Read below for Linux compilation notes.
|
Read below for Linux compilation notes.
|
||||||
</b>
|
</b>
|
||||||
|
|
||||||
CHANGELOG for 8.5
|
CHANGELOG for 8.6
|
||||||
===================
|
===================
|
||||||
! Development moved to a public github repository: https://github.com/vanhauser-thc/thc-hydra
|
! Development moved to a public github repository: https://github.com/vanhauser-thc/thc-hydra
|
||||||
|
|
||||||
! Reports came in that the rdp module is not working reliable sometimes, most likely against new Windows versions. please test, report and if possible send a fix
|
! Reports came in that the rdp module is not working reliable sometimes, most likely against new Windows versions. please test, report and if possible send a fix
|
||||||
* New command line option:
|
* added radmin2 module by catatonic prime - great work!
|
||||||
-b : format option for -o output file (json only so far, happy for patches supporting others :) ) - thanks to veggiespam for the patch
|
* smb module now checks if SMBv1 is supported by the server and if signing is required
|
||||||
* ./configure now honors the CC enviroment variable if present
|
* http-form module now supports URLs up to 6000 bytes (thanks to petrock6@github for the patch)
|
||||||
* Fix for the restore file crash on some x64 platforms (finally! thanks to lukas227!)
|
* Fix for SSL connections that failed with error:00000000:lib(0):func(0):reason(0) (thanks gaia@github for reporting)
|
||||||
* Changed the format of the restore file to detect cross platform copies
|
* Added new command line option:
|
||||||
* Fixed a bug in the NCP module
|
-c TIME: seconds between login attempts (over all threads, so -t 1 is recommended)
|
||||||
* Favor strrchr() over rindex()
|
* Options put after -R (for loading a restore file) are now honored (and were disallowed before)
|
||||||
* Added refactoring patch by diadlo
|
* merged several patches by Diadlo@github to make the code easier readable. thanks for that!
|
||||||
* Updated man page with missing command line options
|
* merged a patch by Diadlo@github that moves the help output to the invididual module
|
||||||
|
|
||||||
You can also take a look at the full <a href="CHANGES">CHANGES</a> file
|
You can also take a look at the full <a href="CHANGES">CHANGES</a> file
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@
|
||||||
[0x05] The Art of Downloading: Source and Binaries
|
[0x05] The Art of Downloading: Source and Binaries
|
||||||
|
|
||||||
1. PRODUCTION/RELEASE VERSION:
|
1. PRODUCTION/RELEASE VERSION:
|
||||||
The source code of state-of-the-art Hydra: <a href="http://www.thc.org/releases/hydra-8.5.tar.gz">hydra-8.5.tar.gz</a>
|
The source code of state-of-the-art Hydra: <a href="http://www.thc.org/releases/hydra-8.6.tar.gz">hydra-8.6.tar.gz</a>
|
||||||
(compiles on all UNIX based platforms - even MacOS X, Cygwin on Windows, ARM-Linux, Android, iPhone, Blackberry 10, etc.)
|
(compiles on all UNIX based platforms - even MacOS X, Cygwin on Windows, ARM-Linux, Android, iPhone, Blackberry 10, etc.)
|
||||||
|
|
||||||
2. DEVELOPMENT VERSION:
|
2. DEVELOPMENT VERSION:
|
||||||
|
|
|
@ -62,14 +62,14 @@ features are added to the project. If you find any inaccuracies
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Version
|
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Version
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> 8.5
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> 8.6
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> 2.1
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> 2.2
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> 0.4 alpha
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> 0.4 alpha
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Last Update
|
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Last Update
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> May 2017
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> July 2017
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> April 2012
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> November 2015
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> April 2011
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> April 2011
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -530,6 +530,14 @@ contact us as the service depends on RFC implementations, some adjustements may
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
||||||
</td></tr>
|
</td></tr>
|
||||||
|
|
||||||
|
<tr style="border-top: 2px solid rgb(204, 204, 204);">
|
||||||
|
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"><a title="Radmin2">Asterisk</a>
|
||||||
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">
|
||||||
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||||
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
||||||
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
<tr style="border-top: 2px solid rgb(204, 204, 204);">
|
<tr style="border-top: 2px solid rgb(204, 204, 204);">
|
||||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=3> <a title="Remote Desktop Protocol">RDP</a>
|
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=3> <a title="Remote Desktop Protocol">RDP</a>
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Windows Workstation
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Windows Workstation
|
||||||
|
@ -692,11 +700,11 @@ contact us as the service depends on RFC implementations, some adjustements may
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">EXPN cmd</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="Yes" src="Tick.png" border="0" height="17" width="20">
|
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">EXPN cmd</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">RCPT TO cmd</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="Yes" src="Tick.png" border="0" height="17" width="20">
|
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">RCPT TO cmd</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="No" src="Cross.png" border="0" height="18" width="22">
|
||||||
</td></tr>
|
</td></tr>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue