more pre-8.0 fixes
5
CHANGES
|
@ -1,9 +1,9 @@
|
|||
Changelog for hydra
|
||||
-------------------
|
||||
|
||||
Release 7.7
|
||||
Release 8.0
|
||||
* Added module for redis (submitted by Alejandro Ramos, thanks!)
|
||||
* Added patch which adds Unicode support for the SMB module (thanks to Max Kosmach")
|
||||
* Added patch which adds Unicode support for the SMB module (thanks to Max Kosmach)
|
||||
* Added initial interactive password authentication test for ssh (thanks to Joshua Houghton for submitting)
|
||||
* Bugfixes for -x option:
|
||||
- password tries were lost when connection errors happened (thanks to Vineet Kumar for reporting)
|
||||
|
@ -13,6 +13,7 @@ Release 7.7
|
|||
* Added gcc compilation security options (if detected to be supported by configure script)
|
||||
* Enhancements to the secure compilation options
|
||||
* Checked code with cppcheck and fixed some minor issues. surprised it were so few and unlikely stuff :-)
|
||||
* Checked code with Coverity. Fixed a lot of small and medium issues.
|
||||
|
||||
|
||||
Release 7.6
|
||||
|
|
36
TODO
Normal file
|
@ -0,0 +1,36 @@
|
|||
Restore Session/s with use This -M command
|
||||
|
||||
Prio 1:
|
||||
* hydra-oracle support service names (often SIDs do not work anymore)
|
||||
* hydra-smb more than 1 connection?
|
||||
* add help hints?
|
||||
* test teamspeak, icq
|
||||
* check all modules to ensure no check is lost because of a timeout, buf == NULL etc.
|
||||
* optimize smtp module
|
||||
* optimize ssl performance
|
||||
* add snmpv3 privacy support
|
||||
* http: option to specify an url for testing if the login was right or wrong
|
||||
* add missing services to xhydra, e.g. sshkey and s7-300
|
||||
|
||||
|
||||
Prio 2:
|
||||
* support different ports in the -M input file for each target
|
||||
* add support for IPv6 Link Local Addresses like fe80::1%eth0 for Solaris and *BSD
|
||||
* add crack info when key is pressed
|
||||
* hydra-smb support NTLMv2 (when its fixed)
|
||||
* support for 802.1x EAP via libpcap
|
||||
* TN3270, and TN3270 user enumeration
|
||||
* CIDR support -> hydra -l admin -p test 192.168.0.0/24 smb
|
||||
|
||||
|
||||
Prio 3:
|
||||
* Specify user-agent for http-form module as extra optional option
|
||||
* ipv6 support for sip
|
||||
* add RIP, OSPF, BGP, PIM
|
||||
* add diameter support
|
||||
* round robin proxy support ?
|
||||
* clean main dir
|
||||
* add support for hybrid pass crack
|
||||
* add tn5250 support
|
||||
* Add Sybase support, using freetds lib (can be used for ms-sql)
|
||||
* Add Informix ?
|
|
@ -5,7 +5,7 @@
|
|||
#endif
|
||||
|
||||
extern char *HYDRA_EXIT;
|
||||
char *buf;
|
||||
char *buf = NULL;
|
||||
|
||||
int start_cisco(int s, char *ip, int port, unsigned char options, char *miscptr, FILE * fp) {
|
||||
char *empty = "";
|
||||
|
@ -25,6 +25,8 @@ int start_cisco(int s, char *ip, int port, unsigned char options, char *miscptr,
|
|||
}
|
||||
sleep(1);
|
||||
do {
|
||||
if (buf != NULL)
|
||||
free(buf);
|
||||
if ((buf = hydra_receive_line(s)) == NULL)
|
||||
return 3;
|
||||
if (buf[strlen(buf) - 1] == '\n')
|
||||
|
|
|
@ -80,6 +80,7 @@ int start_http_proxy_urlenum(int s, char *ip, int port, unsigned char options, c
|
|||
hydra_report(stderr, "C:%s\n", buffer);
|
||||
if (hydra_send(s, buffer, strlen(buffer), 0) < 0)
|
||||
return 1;
|
||||
free(buf);
|
||||
buf = hydra_receive_line(s);
|
||||
while (buf != NULL && strstr(buf, "HTTP/1.") == NULL) {
|
||||
free(buf);
|
||||
|
|
|
@ -39,7 +39,8 @@ int start_rlogin(int s, char *ip, int port, unsigned char options, char *miscptr
|
|||
return 4;
|
||||
}
|
||||
buffer[0] = 0;
|
||||
ret = hydra_recv(s, buffer, sizeof(buffer) - 1);
|
||||
if ((ret = hydra_recv(s, buffer, sizeof(buffer) - 1)) >= 0)
|
||||
buffer[ret] = 0;
|
||||
/* 0x00 is sent but hydra_recv transformed it */
|
||||
if (strlen(buffer) == 0) {
|
||||
ret = hydra_recv(s, buffer, sizeof(buffer) - 1);
|
||||
|
|
|
@ -34,7 +34,7 @@ ssize_t read_safe(int fd, void *buffer, size_t len) {
|
|||
struct timeval tv;
|
||||
int ret = 0;
|
||||
|
||||
fcntl(fd, F_SETFL, O_NONBLOCK);
|
||||
(void)fcntl(fd, F_SETFL, O_NONBLOCK);
|
||||
do {
|
||||
FD_ZERO(&fr);
|
||||
FD_SET(fd, &fr);
|
||||
|
|
686
web/CHANGES
Executable file
|
@ -0,0 +1,686 @@
|
|||
Changelog for hydra
|
||||
-------------------
|
||||
|
||||
Release 7.6
|
||||
* Added a wizard script for hydra based on a script by Shivang Desai <shivang.ice.2010@gmail.com>
|
||||
* Added module for Siemens S7-300 (submitted by Alexander Timorin and Sergey Gordeychik, thanks!)
|
||||
* HTTP HEAD/GET: MD5 digest auth was not working, fixed (thanks to Paul Kenyon)
|
||||
* SMTP Enum: HELO is now always sent, better 500 error detection
|
||||
* hydra main:
|
||||
- fixed a bug in the IPv6 address parsing when a port was supplied
|
||||
- added info message for pop3, imap and smtp protocol usage
|
||||
* hydra GTK: missed some services, added
|
||||
* dpl4hydra.sh:
|
||||
- added Siemens S7-300 common passwords to default password list
|
||||
- more broad searching in the list
|
||||
* Performed code indention on all C files :-)
|
||||
* Makefile patch to ensure .../etc directory is there (thanks to vonnyfly)
|
||||
|
||||
|
||||
Release 7.5
|
||||
* Moved the license from GPLv3 to AGPLv3 (see LICENSE file)
|
||||
* Added module for Asterisk Call Manager
|
||||
* Added support for Android where some functions are not available
|
||||
* hydra main:
|
||||
- reduced the screen output if run without -h, full screen with -h
|
||||
- fix for IPv6 and port parsing with service://[ipv6address]:port/OPTIONS
|
||||
- fixed -o output (thanks to www417)
|
||||
- warning if HYDRA_PROXY is defined but the module does not use it
|
||||
- fixed an issue with large input files and long entries
|
||||
* hydra library:
|
||||
- SSL connections are now fixed to SSLv3 as some SSL servers fail otherwise, report if this gives you problems
|
||||
- removed support for old OPENSSL libraries
|
||||
* HTTP Form module:
|
||||
- login and password values are now encoded if special characters are present
|
||||
- ^USER^ and ^PASS^ are now also supported in H= header values
|
||||
- if you the colon as a value in your option string, you can now escape it with \: - but do not encode a \ with \\
|
||||
* Mysql module: protocol 10 is now supported
|
||||
* SMTP, POP3, IMAP modules: Disabled the TLS in default. TLS must now be
|
||||
defined as an option "TLS" if required. This increases performance.
|
||||
* Cisco module: fixed a small bug (thanks to Vitaly McLain)
|
||||
* Postgres module: libraries on Cygwin are buggy at the moment, module is therefore
|
||||
disabled on Cygwin
|
||||
|
||||
|
||||
Release 7.4.3 FIX RELEASES for bugs introduced in 7.4
|
||||
* Quickfix for people who do not have libssh installed (won't compile otherwise)
|
||||
* Quickfix for http-get/http-head and irc module which would not run due a new feature.
|
||||
* Fix for the ssh module that breaks an endless loop if a service becomes unavailable (thanks to shark0der(at)gmail(dot)com for reporting)
|
||||
|
||||
|
||||
Release 7.4
|
||||
* New module: SSHKEY - for testing for ssh private keys (thanks to deadbyte(at)toucan-system(dot)com!)
|
||||
* Added support for win8 and win2012 server to the RDP module
|
||||
* Better target distribution if -M is used
|
||||
* Added colored output (needs libcurses)
|
||||
* Better library detection for current Cygwin and OS X
|
||||
* Fixed the -W option
|
||||
* Fixed a bug when the -e option was used without -u, -l, -L or -C, only half of the logins were tested
|
||||
* Fixed HTTP Form module false positive when no answer was received from the server
|
||||
* Fixed SMB module return code for invalid hours logon and LM auth disabled
|
||||
* Fixed http-{get|post-form} from xhydra
|
||||
* Added OS/390 mainframe 64bit support (thanks to dan(at)danny(dot)cz)
|
||||
* Added limits to input files for -L, -P, -C and -M - people were using unhealthy large files! ;-)
|
||||
* Added debug mode option to usage (thanks to Anold Black)
|
||||
|
||||
|
||||
Release 7.3
|
||||
* Hydra main:
|
||||
- Added -F switch to quit all targets if one pair was found (for -M)
|
||||
- Fixed a bug where hydra would terminate after reporting a successful
|
||||
login when an account would accept any password
|
||||
- Fixed a bug with very large wordlists (thanks to sheepdestroyer for reporting!)
|
||||
- Enhanced the module help
|
||||
* configure script:
|
||||
- Added fix Oracle library inclusion, thanks to Brandon Archer!
|
||||
- Added --nostrip option to prevent binary stripping (requested by Fedora
|
||||
maintainer)
|
||||
* Added a Makefile patch by the Debian maintainers to support their
|
||||
SecurityHardeningBuildFlags for the wheezy build as requested
|
||||
* dpl4hydra: added install directory support
|
||||
* All code: message cleanups
|
||||
* SNMP module
|
||||
- originally already supported write and v2 although this was not in the
|
||||
module help output. Added :-)
|
||||
- added SNMPv3 MD5/SHA1 authentication support, though beta still
|
||||
* HTTP module:
|
||||
- fixed HTTP NTLM auth session
|
||||
- implemented errata fix for HTTP digest md5-sess algorithm
|
||||
- set default path to /
|
||||
* HTTP Form module:
|
||||
- set default path to /
|
||||
- support HTTP/1.0 redirects
|
||||
- fix failed condition check when pcre is not used
|
||||
* IMAP module: fixed auth detection
|
||||
* POP3 module: Updated auth and capability detection
|
||||
* Oracle module: fixed bad handling
|
||||
* Oracle listener module: fixed hash size handling
|
||||
* Telnet/Cisco/Cisco-enable modules: support "press ENTER" prompts
|
||||
* FTP module:
|
||||
- Fixed a bug where 530 messages were incorrectly handled
|
||||
- Clarification for the usage of ftps
|
||||
* Mysql module: added patch from Redhat/Fedora that fixes compile problems
|
||||
* Added IDN and PCRE support for Cygwin
|
||||
|
||||
|
||||
Release 7.2
|
||||
* Speed-up http modules auth mechanism detection
|
||||
* Fixed -C colonfile mode when empty login/passwords were used (thanks to
|
||||
will(at)configitnow(dot)com for reporting)
|
||||
* The -f switch was not working for postgres, afp, socks5, firebird and ncp,
|
||||
thanks to Richard Whitcroft for reporting!
|
||||
* Fixed NTLM auth in http-proxy/http-proxy-url module
|
||||
* Fixed URL when being redirected in http-form module, thanks to gash(at)chaostreff(dot)at
|
||||
* Fix MSSQL success login condition, thanks to whistle_master(at)live(dot)com
|
||||
* Fix http form module: optional headers and 3xx status redirect, thx to Gash
|
||||
* Fix in configure script for --prefix option, thanks to dazzlepod
|
||||
* Update of the dpl4hydra script by Roland Kessler, thanks!
|
||||
* Small fix for hydra man page, thanks to brad(at)comstyle(dot)com
|
||||
|
||||
|
||||
Release 7.1
|
||||
* Added HTTP Proxy URL enumeration module
|
||||
* Added SOCKS4/SOCKS5 proxy support with authentication
|
||||
* Added IPv6 support for SOCKS5 module
|
||||
* Added -e r option to try the reversed login as password
|
||||
* Rewrote -x functionality as the code caused too much trouble (thanks to
|
||||
murder.net7(at)gmail.com for reporting one of the issues)
|
||||
* Fixed a bug with multiple hosts (-M) and http modules against targets that
|
||||
are virtual servers. Well spotted by Tyler Krpata!
|
||||
* Fixed SVN IPv6 support and updated deprecated calls
|
||||
* Fixed RDP failed child connection returned value and false positive issues
|
||||
reported by Wangchaohui, thanks!
|
||||
* Fixed restore file functionality, was not working together with -o option
|
||||
* Fix in http-form module for bug introduced in 7.0
|
||||
* Fixed xhydra specific parameter value for http-proxy module
|
||||
* minor enhancements
|
||||
|
||||
|
||||
Release 7.0
|
||||
* New main engine for hydra: better performance, flexibility and stability
|
||||
* New option -u - loop around users, not passwords
|
||||
* Option -e now also works with -x and -C
|
||||
* Added RDP module, domain can be passed as argument
|
||||
* Added other_domain option to smb module to test trusted domains
|
||||
* Small enhancement for http and http-proxy module for standard ignoring servers
|
||||
* Lots of bugfixes, especially with many tasks, multiple targets and restore file
|
||||
* Fixes for a few http-form issues
|
||||
* Fix smb module NTLM hash use
|
||||
* Fixed Firebird module deprecated API call
|
||||
* Fixed for dpl4hydra to work on old sed implementations (OS/X ...)
|
||||
* Fixed makefile to install dpl4hydra (thx @sitecrea)
|
||||
* Fixed local buffer overflow in debug output function (required -d to be used)
|
||||
* Fixed xhydra running warnings and correct quit action event
|
||||
|
||||
|
||||
Release 6.5
|
||||
* Improved HTTP form module: getting cookie, fail or success condition, follow
|
||||
multiple redirections, support cookie gathering URL, multiple user defined
|
||||
headers
|
||||
* Added interface support for IPv6, needed for connecting to link local fe80::
|
||||
addresses. Works only on Linux and OS/X. Information for Solaris and *BSD welcome
|
||||
* Added -W waittime between connects option
|
||||
* The -x bruteforce mode now allows for generated password amounts > 2 billion
|
||||
* Fix if -L was used together with -x
|
||||
* Fixes for http- modules when the http-...://target/options format was used
|
||||
* Fixed a bug in the restore file write function that could lead to a crash
|
||||
* Fixed XMPP module jabber init request and challenge response check, thx "F e L o R e T"
|
||||
* Fix: if a proxy was used, unresolveable targets were disabled. now its fine
|
||||
* Fix for service://host/ usage if a colon was used after the URI without a
|
||||
port defined
|
||||
|
||||
|
||||
Release 6.4
|
||||
* Update SIP module to extract and use external IP addr return from server error to bypass NAT
|
||||
* Update SIP module to use SASL lib
|
||||
* Update email modules to check clear mode when TLS mode failed
|
||||
* Update Oracle Listener module to work with Oracle DB 9.2
|
||||
* Update LDAP module to support Windows 2008 active directory simple auth
|
||||
* Fix to the connection adaptation engine which would loose planned attempts
|
||||
* Fix make script for CentOS, reported by ya0wei
|
||||
* Print error when a service limits connections and few pairs have to be tested
|
||||
* Improved Mysql module to only init/close when needed
|
||||
* Added patch from the FreeBSD maintainers
|
||||
* Module usage help does not need a target to be specified anymore
|
||||
* Configure script now honors /etc/ld.so.conf.d/ directory
|
||||
* Add more SMB dialects
|
||||
|
||||
|
||||
Release 6.3
|
||||
* Added patch by Petar(dot)Kaley(at)gmail.com which adds nice icons to cygwin hydra files
|
||||
* Added patch by Gauillaume Rousse which fixes a warning display
|
||||
* New Oracle module (for databases via OCI, for TNS Listener passwd, for SID enumeration)
|
||||
* New SMTP user enum module (using VRFY, EXPN or RCPT command)
|
||||
* Memory leak fix for -x bruteforcing option reported by Alex Lau
|
||||
* Fix for svn module, for some versions it needs one more lib, thanks to the
|
||||
Debian team for reporting!
|
||||
* Fix ssh module, on connection refused a credential could be lost
|
||||
* Fix http-form module, a redirect was not always followed
|
||||
* QA on all modules for memory leaks
|
||||
* Better gtk detection (to not even try xhydra compilation when its useless)
|
||||
* First blant attempt for configuring to x64 systems (Linux and *BSD)
|
||||
* Updated network password cracker comparison on the web page (for hydra and new ncrack)
|
||||
* Indented all source code
|
||||
|
||||
|
||||
Release 6.2
|
||||
* Added a patch by Jan Dlabal which adds password generation bruteforcing (no more password files :-) )
|
||||
* Forgot to rename ssh2 to ssh in xhydra, fixed
|
||||
* Add support for CRAM-MD5 and DIGEST-MD5 auth to ldap module
|
||||
* Fix SASL PLAIN auth method issue
|
||||
* Add TLS negotiation support for smtp-auth, pop3, imap, ftp and ldap
|
||||
* Added man pages from Debian maintainers
|
||||
* Checked Teamspeak module, works on TS2 protocol
|
||||
* Add support for SCRAM-SHA1 (RFC 5802), first auth cracker to support it, yeah !
|
||||
* New module: XMPP with TLS negotiation and LOGIN, PLAIN, CRAM-MD5, DIGEST-MD5, SCRAM-SHA1 support
|
||||
* Add SCRAM-SHA1 auth to IMAP module
|
||||
* Add module usage help (-U)
|
||||
* Add support for RFC 4013: Internationalized Strings in SASL ("SASLPrep")
|
||||
* Rename smtpauth module to smtp
|
||||
* Add SASL + TLS support for NNTP
|
||||
* Bugfix SASL DIGEST-MD5, response could be wrong sometime, mainly on 64bits systems
|
||||
* Bugfix rlogin module, some auth failure could not be detected accurately
|
||||
* Bugfix rsh module, some auth failure could not be detected accurately
|
||||
* New module: IRC is not dead ! use to find general server password and /oper credential
|
||||
* Add SSL support for VMware Authentication Daemon module
|
||||
* Bugfix CVS module, should work now, why does nobody report this ??
|
||||
* Bugfix Telnet module, when line mode is not available
|
||||
* Add support for new syntax <service-name>://<target>[:<port-number>][/<parameters>]
|
||||
* Add TLS support for SIP
|
||||
* STILL OPEN: Fixed a problem in hydra where a login+pw test was lost when an arm/child was quitting
|
||||
|
||||
|
||||
Release 6.1
|
||||
* More license updates for the files for the Debian guys
|
||||
* Fix for the configure script to correctly detect postgresql
|
||||
* Add checks for libssh v0.4 and support for ssh v1
|
||||
* Merge all latest crypto code in sasl files
|
||||
* Fix SVN compilation issue on openSUSE (tested with v11.3)
|
||||
|
||||
|
||||
Release 6.0
|
||||
* Added GPL exception clause to license to allow linking to OpenSSL - Debian people need this
|
||||
* IPv6 support finally added. Note: sip and socks5 modules do not support IPv6 yet
|
||||
* Changes to code and configure script to ensure clean compile on Solaris 11,
|
||||
OSX, FreeBSD 8.1, Cygwin and Linux
|
||||
* Bugfix for SIP module, thanks to yori(at)counterhackchallenges(dot)com
|
||||
* Compile fixes for systems without OpenSSL or old OpenSSL installations
|
||||
* Eliminated compile time warnings
|
||||
* xhydra updates to support the new features (david@)
|
||||
* Added CRAM-MD5, DIGEST-MD5 auth mechanism to the smtp-auth module (david@)
|
||||
* Added LOGIN, PLAIN, CRAM-(MD5,SHA1,SHA256) and DIGEST-MD5 auth mechanisms to the imap and pop3 modules (david@)
|
||||
* Added APOP auth to POP3 module (david@)
|
||||
* Added NTLM and DIGEST-MD5 to http-auth module and DIGEST-MD5 to http-proxy module (david@)
|
||||
* Fixed VNC module for None and VLC auth (david@)
|
||||
* Fixes for LDAP module (david@)
|
||||
* Bugfix Telnet module linemode option negotiation using win7 (david@)
|
||||
* Bugfix SSH module when max auth connection is reached (david@)
|
||||
|
||||
|
||||
Release 5.9
|
||||
* Update for the subversion module for newer SVN versions (thanks to David Maciejak @ GMAIL dot com)
|
||||
* Another patch by David to add the PLAIN auth mechanism to the smtp-auth module
|
||||
* mysql module now has two implementations and uses a library when found (again
|
||||
thanks to David Maciejak @ GMAIL dot com - what would hydra be without him)
|
||||
* camiloculpian @ gmail dot com submitted a logo for hydra - looks cool, thanks!
|
||||
* better FTP 530 error code detection
|
||||
* bugfix for the SVN module for non-standard ports (again david@)
|
||||
|
||||
|
||||
Release 5.8
|
||||
* Added Apple Filing Protocol (thank to "never tired" David Maciejak @ GMAIL dot com)
|
||||
* Fixed a big bug in the SSL option (-S)
|
||||
|
||||
|
||||
Release 5.7
|
||||
* Added ncp support plus minor fixes (by David Maciejak @ GMAIL dot com)
|
||||
* Added an old patch to fix a memory from SSL and speed it up too from kan(at)dcit.cz
|
||||
* Removed unnecessary compiler warnings
|
||||
* Enhanced the SSH2 module based on an old patch from aris(at)0xbadc0de.be
|
||||
* Fixed small local defined overflow in the teamspeak module. Does it still work anyway??
|
||||
|
||||
|
||||
Release 5.6 PRIVATE VERSION
|
||||
###########
|
||||
* Moved to GPLv3 License (lots of people wanted that)
|
||||
* Upgraded ssh2 module to libssh-0.4.x (thanks to aris (at) 0xbadc0de.be for
|
||||
the 0.2 basis)
|
||||
* Added firebird support (by David Maciejak @ GMAIL dot com)
|
||||
* Added SIP MD5 auth patch (by Jean-Baptiste Aviat <jba [at] hsc [dot] `french tld`)
|
||||
* Removed Palm and ARM support
|
||||
* Fix for cygwin which falsely detected postgres library when there was none.
|
||||
* Several small bugfixes
|
||||
|
||||
|
||||
Release 5.4
|
||||
###########
|
||||
* Fixes to the http modules as some Apache installations are picky
|
||||
* The MySQL module also works with mysqld-5.0, updated
|
||||
* Added AS/400 return code checks to pop3 module
|
||||
* Fixed memory leaks in the http-form module.
|
||||
* Implemented a proposal by Jean-Baptiste.BEAUFRETON (at) turbomeca.fr to
|
||||
check for "530 user unknown" message in the ftp module
|
||||
* Added a performance patch by alejandro.mendiondo (at) baicom.com. This one
|
||||
needs stability testing!
|
||||
* Beautification to remove compiler warnings of modern gcc
|
||||
|
||||
|
||||
Release 5.3
|
||||
###########
|
||||
* Added NTLM support modules for pop3, imap, smtp-auth and http-proxy.
|
||||
Work done by ilo (at) reversing.org. THANKS!
|
||||
* Added a http form module, thanks to phil (at) irmplc.com
|
||||
* Fixed a bug in the vnc module (thanks to kan (at) dcit.cz)
|
||||
* Input files may *not* contain null bytes. I might fix that in the future
|
||||
but currently I have enough other things on my todo sheet.
|
||||
Thanks to didiln (at) gmail.com for reporting.
|
||||
|
||||
|
||||
Release 5.2
|
||||
###########
|
||||
* Again again some fixes for the ssh2 module. This is the last try. If it
|
||||
finally does not work reliable, I am throwing out that library!
|
||||
Thanks to bykhe@mymail.ch for the patch
|
||||
* Added a new module: VMWare-Auth! Thanks to david.maciejak@gmail.com!
|
||||
|
||||
|
||||
Release 5.1
|
||||
###########
|
||||
* Again some fixed for the ssh2 module. Sorry. And still it might not work
|
||||
in all occasions. The libssh is not as mature as we all wish it would be :-(
|
||||
* HYDRA_PROXY_AUTH was never used ... weird that nobody reported that. fixed.
|
||||
* Fixed bug in the base64 encoding function
|
||||
* Added an md5.h include which is needed since openssl 0.9.8
|
||||
* Added an enhacement to the FTP module, thanks to piotr_sobolewski@o2.pl
|
||||
* Fixed a bug when not using passwords and just -e n/s
|
||||
|
||||
|
||||
Release 5.0
|
||||
###########
|
||||
! THIS IS A THC - TAX - 10TH ANNIVERSARY RELEASE ! HAVE FUN !
|
||||
* Increadible speed-up for most modules :-)
|
||||
* Added module for PC-Anywhere, thanks to david.maciejak(at)kyxar.fr!
|
||||
* Added module for SVN, thanks to david.maciejak(at)kyxar.fr!
|
||||
* Added --disable-xhydra option to configure, thanks to david.maciejak(at)kyxar.fr!
|
||||
- he is becoming the top supporter :-)
|
||||
* Added module for SIP (VoIP), thanks to gh0st(at)staatsfeind.org
|
||||
* Added support for newer sap r/3 rfcsdk
|
||||
* Added check to the telnet module to work with Cisco AAA
|
||||
* Fix for the VNC module, thanks to xmag
|
||||
* Small enhancement to the mysql plugin by pjohnson(at)bosconet.org
|
||||
|
||||
|
||||
Release 4.7
|
||||
###########
|
||||
* Updated ssh2 support to libssh v0.11 - you *must* use this version if
|
||||
you want to use ssh2! download from http://www.0xbadc0de.be/?part=libssh
|
||||
This hopefully fixes problems on/against Sun machines.
|
||||
After fixing, I also received a patch from david maciejak - thanks :-)
|
||||
* Added an attack module for rlogin and rsh, thanks to
|
||||
david.maciejak(at)kyxar.fr!
|
||||
* Added an attack module for the postgres database, thanks to
|
||||
diaul(at)devilopers.org! (and again: david maciejak sent on in as well)
|
||||
* JoMo-Kun sent in an update for his smbnt module. cool new features:
|
||||
win2k native mode, xp anonymous account detection, machine name as password
|
||||
* Hopefully made VNC 3.7 protocol versions to work. please report.
|
||||
* Switched http and https service module to http-head, http-get and
|
||||
https-get, https-head. Some web servers want HEAD, others only GET
|
||||
* An initial password for cisco-enable is now not required anymore. Some
|
||||
people had console access without password, so this was necessary.
|
||||
* Fixed a bug in xhydra which did not allow custom ports > 100
|
||||
! Soon to come: v5.0 - some cool new features to arrive on your pentest
|
||||
machine!
|
||||
|
||||
|
||||
Release 4.6
|
||||
###########
|
||||
* Snakebyte delivered a module for Teamspeak
|
||||
* Snakebyte updated the rexec module for the Hydra Palm version
|
||||
* Snakebyte updated xhydra to support the new Telnet success response option
|
||||
* Clarified the Licence
|
||||
* Updated the ldap module to support v3, note that "ldap" is now specified as
|
||||
"ldap2" or "ldap3". Added wrong version detection.
|
||||
|
||||
|
||||
Release 4.5
|
||||
###########
|
||||
* The configure script now detects Cygwin automatically :-)
|
||||
* The telnet module now handles the OPT special input. Specify the string
|
||||
which is displayed after successfully a login. Use this if you have false
|
||||
positives.
|
||||
* Made smtp-auth module more flexible in EHLO/HELO handling
|
||||
* Fixed some glitches in the SAP/R3 module (correct sysnr, better port
|
||||
handling) thanks to ngregoire@exaprobe.com !
|
||||
* Fixed some glitches in the http/https module
|
||||
* Fixed a big bug in snakebyte's snmp module
|
||||
* Warning msg is now displayed if the deprecated icq module is used
|
||||
* Added warning message to the ssh2 module during compilation as many people
|
||||
use the newest libssh version which is broken.
|
||||
|
||||
|
||||
Release 4.4
|
||||
###########
|
||||
* Fixed another floating point exception *sigh*
|
||||
* Fixed -C colon mode
|
||||
* Added EHLO support for the smtp-auth module, required for some smtpd
|
||||
|
||||
|
||||
Release 4.3
|
||||
###########
|
||||
* Fixed a divide by zero bug in the status report function
|
||||
* Added functionality for skipping accounts (cvs is so nice to report this)
|
||||
* Snakebyte sent in a patch for cvs for skipping nonexisting accounts
|
||||
* <lerrahn@syss.de> sent in a patch to fix proxy support for the HTTP module
|
||||
without proxy authentication
|
||||
|
||||
|
||||
Release 4.2
|
||||
###########
|
||||
* Snakebyte sent in modules for SNMP and CVS - great work!
|
||||
* Snakebyte also expanded the gtk gui to support the two new modules
|
||||
* Justin <connectjunkie@gmail.com> sent in a module for smtp-auth ... thanks!
|
||||
* master_up@post.cz sent in some few patches to fix small glitches
|
||||
* Incorporated a check from the openbsd port
|
||||
|
||||
|
||||
Release 4.1
|
||||
###########
|
||||
* Snakebyte wrote a very nice GTK GUI for hydra! enjoy!
|
||||
* due a bug, sometimes hydra would kill process -1 ... baaaad boy!
|
||||
* found passwords are now also printed to stdout if -o option is used
|
||||
* <je@sekure.net> reported that hydra wouldn't complain on ssh2 option if
|
||||
compiled without support, fixed
|
||||
* <llevier@argosnet.com> made an official port for FreeBSD and sent me a
|
||||
diff to exchange the MD4 of libdes to openssl
|
||||
* <vh@helith.net> noticed that hydra will crash on big wordlists as
|
||||
the result of the mallocs there were not checked, fixed
|
||||
* Snakebyte expanded his PalmOS Version of hydra to nntp and fixed vnc
|
||||
* Increased the wait time for children from 5 to 15 seconds, as e.g.
|
||||
snakebyte reported detection problems
|
||||
* Fixed some display glitches
|
||||
|
||||
|
||||
Release v4.0
|
||||
############
|
||||
#
|
||||
# This is a summary of changes of the D1 to D5 beta releases and shows
|
||||
# what makes v4.0 different from 3.1.
|
||||
# Have fun. Lots of it.
|
||||
#
|
||||
# By the way: I need someone to program a nice GTK frontend for hydra,
|
||||
# would YOU like to do that and receive the fame? Send an email to vh@thc.org !
|
||||
#
|
||||
* For the first time there is not only a UNIX/source release but additionally:
|
||||
! Windows release (cygwin compile with dll's)
|
||||
! PalmPilot release
|
||||
! ARM processor release (for all your Zaurus, iPaq etc. running Linux)
|
||||
* There are new service attack modules:
|
||||
! ms-sql
|
||||
! sap r/3 (requires a library)
|
||||
! ssh v2 (requires a library)
|
||||
* Enhancements/Fixes to service attack modules:
|
||||
! vnc module didnt work correctly, fixed
|
||||
! mysql module supports newer versions now
|
||||
! http module received a minor fix and has better virtual host support now
|
||||
! http-proxy supports now an optional URL
|
||||
! socks5 checks now for false positives and daemons without authentication
|
||||
* The core code (hydra.c) was rewritten from scratch
|
||||
! rewrote the internal distribution functions from scratch. code is now
|
||||
safer, less error prone, easier to read.
|
||||
! multiple target support rewritten which now includes intelligent load
|
||||
balancing based on success, error and load rate
|
||||
! intelligently detect maximum connect numbers for services (per server if
|
||||
multiple targets are used)
|
||||
! intelligent restore file writing
|
||||
! Faster (up to 15%)
|
||||
! Full Cygwin and Cygwin IPv6 support
|
||||
* added new tool: pw-inspector - it can be used to just try passwords which
|
||||
matches the target's password policy
|
||||
#
|
||||
# This should be more than enough! :-)
|
||||
#
|
||||
|
||||
... the rest below is history ...
|
||||
|
||||
###########################################################################
|
||||
#
|
||||
# New Hydra v4.0 code branch
|
||||
#
|
||||
Release D5
|
||||
* added patches by kan@dcit.cz which enhance the proxy module and provide
|
||||
a small fix for the http module
|
||||
* small beautifcations to make the compiler happy
|
||||
! This is the final beta version before public release
|
||||
- please test everything!
|
||||
|
||||
Release D4
|
||||
* Tick made an update to his configure-arm
|
||||
* snakebyte@gmx.de added imap, vnc and cisco module support to PalmPilot
|
||||
* fixed VNC module
|
||||
* enhanced mysql module to work also with 4.0.x (and all future protocol 10
|
||||
mysql protocol types)
|
||||
* enhanced socks5 module to identify daemons which do not require
|
||||
authentication, and false positive check (otherwise dante would report all
|
||||
tries as successful)
|
||||
* fixed a bug in configure for D3 which resulted in compile problems on
|
||||
several platforms requiring libcrypto
|
||||
|
||||
Release D3
|
||||
* added sapr3 attack module (requires libsdk.a and saprfc.h)
|
||||
* added ssh2 attack module (requires libssh)
|
||||
* snakebyte@gmx.de added telnet module support for PalmPilot
|
||||
* fixed the mssql module, should work now
|
||||
* fixed -e option bug
|
||||
* fixed -C option bug (didnt work at all!!)
|
||||
* fixed double detection (with -e option) plus added simple dictionary
|
||||
double detection
|
||||
* target port is now displayed on start
|
||||
|
||||
Release D2
|
||||
* added better virtual host support to the www/http/https/ssl module
|
||||
(based on a patch from alla@scanit.be)
|
||||
* added ARM support (does not work for libdes yet, ssl works), done by
|
||||
Tick <tick@thc.org>
|
||||
* added Palm support (well, in reality it is more a rewrite which can use
|
||||
the hydra-modules), done by snakebyte <snakebyte@gmx.de>
|
||||
* added ms-sql attack module (code based on perl script form HD Moore
|
||||
<hdm@digitaloffense.net>, thanks for contributing)
|
||||
|
||||
Release D1 (3 March 2003)
|
||||
* rewrote the internal distribution functions from scratch. code is now
|
||||
safer, less error prone, easier to read.
|
||||
* multiple target support rewritten which now includes intelligent load
|
||||
balancing based on success, error and load rate
|
||||
* intelligently detect maximum connect numbers for services (per server if
|
||||
multiple targets are used)
|
||||
* intelligent restore file writing
|
||||
* Faster (up to 15%)
|
||||
* Full Cygwin and Cygwin IPv6 support
|
||||
* added new tool: pw-inspector - it can be used to just try passwords which
|
||||
matches the target's password policy
|
||||
|
||||
###########################################################################
|
||||
|
||||
v3.0 (FEBRUARY 2004) PUBLIC RELEASE
|
||||
* added a restore function to enable you to continue aborted/crashed
|
||||
sessions. Just type "hydra -R" to continue a session.
|
||||
NOTE: this does not work with the -M option! This feature is then disabled!
|
||||
* added a module for http proxy authentication cracking ("http-proxy") :-)
|
||||
* added HTTP and SSL/CONNECT proxy support. SSL/CONNECT proxy support works
|
||||
for *all* TCP protocols, you just need to find a proxy which allows you to
|
||||
CONNECT on port 23 ...
|
||||
The environment variable HYDRA_PROXY_HTTP defines the web proxy. The
|
||||
following syntax is valid: HYDRA_PROXY_HTTP="http://123.45.67.89:8080/"
|
||||
Same for HYDRA_PROXY_CONNECT.
|
||||
If you require authentication for the proxy, use the HYDRA_PROXY_AUTH
|
||||
environment variable:
|
||||
HYDRA_PROXY_AUTH="login:password"
|
||||
* fixed parallel host scanning engine (thanks to m0j0.j0j0 for reporting)
|
||||
* A status, speed and time to completion report is now printed every minute.
|
||||
* finally updated the README
|
||||
|
||||
v2.9 (FEBRUARY 2004) PRIVATE RELEASE
|
||||
...
|
||||
|
||||
v2.8 (JANUARY 2004) PRIVATE RELEASE
|
||||
...
|
||||
|
||||
v2.7 (JANUARY 2004) PUBLIC RELEASE
|
||||
* small fix for the parallel host code (thanks to m0j0@foofus.net)
|
||||
|
||||
v2.6 (DECEMBER 2003) PUBLIC RELEASE
|
||||
* fixed a compiling problem for picky compilers.
|
||||
|
||||
v2.5 (NOVEMBER 2003) PUBLIC RELEASE
|
||||
* added a big patch from m0j0@foofus.net which adds:
|
||||
- AAA authentication to the cisco-enable module
|
||||
- Running the attacks on hosts in parallel
|
||||
- new smbnt module, which uses lanman hashes for authentication, needs libdes
|
||||
! great work and thanks !
|
||||
* changed code to compile easily on FreeBSD
|
||||
* changed configure to compile easily on MacOS X - Panther (cool OS btw ...)
|
||||
|
||||
v2.4 (AUGUST 2003) PUBLIC RELEASE
|
||||
* public release
|
||||
=== 2.3 stuff===
|
||||
* added mysql module (thanks to mcbethh@u-n-f.com)
|
||||
* small fix in vnc (thanks to the Nessus team)
|
||||
* added credits for vnc-module (FX/Phenolite)
|
||||
* new ./configure script for better Solaris and *BSD support (copied from amap)
|
||||
* updated to new email/www addresses => www.thc.org
|
||||
|
||||
v2.2 (OCTOBER 2002) PUBLIC RELEASE
|
||||
* fixed a bug in the -P passwordfile handling ... uhhh ... thanks to all
|
||||
the many people who reported that bug!
|
||||
* added check if a password in -P passwordfile was already done via the
|
||||
-e n|s switch
|
||||
|
||||
v2.1 (APRIL 2002) PUBLIC RELEASE
|
||||
* added ldap cracking mode (thanks to myself, eh ;-)
|
||||
* added -e option to try null passwords ("-e n") and passwords equal to the
|
||||
login ("-e s"). When specifying -e, -p/-P is optional (and vice versa)
|
||||
* when a login is found, hydra will now go on with the next login
|
||||
|
||||
v2.0 (APRIL 2002) PRIVATE RELEASE
|
||||
! with v1.1.14 of Nessus, Hydra is a Nessus plugin!
|
||||
* incorporated code to make hydra a nessus plugin (thanks to deraison@cvs.nessus.org !)
|
||||
* added smb/samba/CIFS cracking mode (thanks to deraison@cvs.nessus.org !)
|
||||
* added cisco-enable cracking mode (thanks to J.Marx@secunet.de !)
|
||||
* minor enhancements and fixes
|
||||
|
||||
v1.7 (MARCH 2002) PRIVATE RELEASE
|
||||
* configure change to better detect OpenSSL
|
||||
* ported to Solaris
|
||||
|
||||
v1.6 (FEBRUARY 2002) PUBLIC RELEASE
|
||||
* added socks5 support (thanks to bigbud@weed.tc !)
|
||||
|
||||
v1.5 (DECEMBER 2001) PRIVATE RELEASE
|
||||
* added -S option for SSL support (for all TCP based protocols)
|
||||
* added -f option to stop attacking once a valid login/pw has been discovered
|
||||
* made modules more hydra-mod compliant
|
||||
* configure stuff thrown out - was not really used and too complicated,
|
||||
wrote my own, lets hope it works everywhere ;-)
|
||||
|
||||
v1.4 (DECEMBER 2001) PUBLIC RELEASE
|
||||
* added REXEC cracking module
|
||||
* added NNTP cracking module
|
||||
* added VNC cracking module (plus the 3DES library, which is needed) - some
|
||||
of the code ripped from FX/Phenolite :-) thanks a lot
|
||||
* added PCNFS cracking module
|
||||
* added ICQ cracking module (thanks to ocsic <pisco@private.as>!!)
|
||||
* for the pcnfs cracking module, I had to add the hydra_connect_udp function
|
||||
* added several compactibility stuff to work with all the M$ crap
|
||||
|
||||
v1.3 (September 2001) PUBLIC RELEASE
|
||||
* uh W2K telnetd sends null bytes in negotiation mode. workaround implemented.
|
||||
* Rewrote the finish functions which would sometimes hang. Shutdowns are faster
|
||||
now as well.
|
||||
* Fixed the line count (it was always one to much)
|
||||
* Put more information in the outpufile (-o)
|
||||
* Removed some configure crap.
|
||||
|
||||
v1.2 (August 2001) PRIVATE RELEASE
|
||||
* Fixed a BIG bug which resulted in accounts being checked serveral times. ugh
|
||||
* Fixed the bug which showed the wrong password for a telnet hack. Works for
|
||||
me. please test.
|
||||
* Added http basic authentication cracking. Works for me. please test.
|
||||
* Fixed the ftp cracker module for occasions where a long welcome message was
|
||||
displayed for ftp.
|
||||
* Removed some compiler warnings.
|
||||
|
||||
v1.1 (May 2001) PUBLIC RELEASE
|
||||
* Added wait+reconnect functionality to hydra-mod
|
||||
* Additional wait+reconnect for cisco module
|
||||
* Added small waittimes to all attack modules to prevent too fast reconnects
|
||||
* Added cisco Username/Password support to the telnet module
|
||||
* Fixed a deadlock in the modules, plus an additional one in the telnet module
|
||||
|
||||
v1.0 (April 2001) PUBLIC RELEASE
|
||||
* Verified that all service modules really work, no fix necessary ;-)
|
||||
... so let's make it public
|
||||
* Changed the LICENCE
|
||||
|
||||
v0.6 (April 2001) PRIVATE RELEASE
|
||||
* Added hydra-cisco.c for the cisco 3 times "Password:" type
|
||||
* Added hydra-imap.c for the imap service
|
||||
* Fixed a bug in hydra-mod.c: empty logins resulted in an empty
|
||||
hydra_get_next_password() :-(, additionally the blocking/recv works better
|
||||
now. (no, not better - perfect ;-)
|
||||
* Fixed a bug in hydra-telnet.c: too many false alarms for success due some
|
||||
mis-thinking on my side and I also implemented a more flexible checking
|
||||
* Fixed hydra-ftp.c to allow more weird reactions
|
||||
* Fixed all ;-) memory leaks
|
||||
|
||||
v0.5 (December 2000) PUBLIC RELEASE
|
||||
* NOTE WE HAVE GOT A NEW WWW ADDRESS -> www.thehackerschoice.com
|
||||
* added telnet protocol
|
||||
* exchanged snprintf with sprintf(%.250s) to let it compile on more platforms
|
||||
but still have buffer overflow protection.
|
||||
* fixed a bug in Makefile.in (introduced by Plasmo ,-)
|
||||
|
||||
v0.4 (August 2000) PUBLIC RELEASE
|
||||
* Plasmoid added a ./configure script. thanks!
|
||||
|
||||
v0.3 (August 2000)
|
||||
* first release
|
232
web/README
Normal file
|
@ -0,0 +1,232 @@
|
|||
|
||||
H Y D R A
|
||||
|
||||
(c) 2001-2014 by van Hauser / THC
|
||||
<vh@thc.org> http://www.thc.org
|
||||
co-maintained by David (dot) Maciejak @ gmail (dot) com
|
||||
BFG code by Jan Dlabal <dlabaljan@gmail.com>
|
||||
|
||||
Licensed under AGPLv3 (see LICENSE file)
|
||||
|
||||
Please do not use in military or secret service organizations,
|
||||
or for illegal purposes.
|
||||
|
||||
|
||||
|
||||
INTRODUCTION
|
||||
------------
|
||||
Number one of the biggest security holes are passwords, as every password
|
||||
security study shows.
|
||||
This tool is a proof of concept code, to give researchers and security
|
||||
consultants the possiblity to show how easy it would be to gain unauthorized
|
||||
access from remote to a system.
|
||||
|
||||
THIS TOOL IS FOR LEGAL PURPOSES ONLY!
|
||||
|
||||
There are already several login hacker tools available, however none does
|
||||
either support more than one protocol to attack or support parallized
|
||||
connects.
|
||||
|
||||
It was tested to compile cleanly on Linux, Windows/Cygwin, Solaris, FreeBSD
|
||||
and OSX.
|
||||
|
||||
Currently this tool supports:
|
||||
|
||||
Asterisk, AFP, Cisco AAA, Cisco auth, Cisco enable, CVS, Firebird, FTP,
|
||||
HTTP-FORM-GET, HTTP-FORM-POST, HTTP-GET, HTTP-HEAD, HTTP-PROXY, HTTPS-FORM-GET,
|
||||
HTTPS-FORM-POST, HTTPS-GET, HTTPS-HEAD, HTTP-Proxy, ICQ, IMAP, IRC, LDAP,
|
||||
MS-SQL, MYSQL, NCP, NNTP, Oracle Listener, Oracle SID, Oracle, PC-Anywhere,
|
||||
PCNFS, POP3, POSTGRES, RDP, Rexec, Rlogin, Rsh, SAP/R3, SIP, SMB, SMTP,
|
||||
SMTP Enum, SNMP v1+v2+v3, SOCKS5, SSH (v1 and v2), SSHKEY, Subversion,
|
||||
Teamspeak (TS2), Telnet, VMware-Auth, VNC and XMPP.
|
||||
|
||||
However the module engine for new services is very easy so it won't take a
|
||||
long time until even more services are supported.
|
||||
Your help in writing, enhancing or fixing modules is highly appreciated!! :-)
|
||||
|
||||
|
||||
|
||||
HOW TO COMPILE
|
||||
--------------
|
||||
For hydra, just type:
|
||||
|
||||
./configure
|
||||
make
|
||||
make install
|
||||
|
||||
If you need ssh module support, you have to setup libssh on your system,
|
||||
get it from http://www.libssh.org, for ssh v1 support you also need to add
|
||||
"-DWITH_SSH1=On" option in the cmake command line.
|
||||
|
||||
If you use Ubuntu, this will install supplementary libraries needed for a
|
||||
few optional modules:
|
||||
apt-get install libssl-dev libssh-dev libidn11-dev libpcre3-dev \
|
||||
libgtk2.0-dev libmysqlclient-dev libpq-dev libsvn-dev \
|
||||
firebird2.1-dev libncp-dev
|
||||
This enables all optional modules and features with the exception of Oracle,
|
||||
SAP R/3 and the apple filing protocol - which you will need to download and
|
||||
install from the vendor's web sites.
|
||||
|
||||
For all other Linux derivates and BSD based systems, use the system
|
||||
software installer and look for similar named libraries like in the
|
||||
comand above. In all other cases you have to download all source libraries
|
||||
and compile them manually.
|
||||
|
||||
|
||||
|
||||
SUPPORTED PLATFORMS
|
||||
-------------------
|
||||
All UNIX platforms (linux, *bsd, solaris, etc.)
|
||||
Mac OS/X
|
||||
Windows with Cygwin (both ipv4 and ipv6)
|
||||
Mobile systems based on Linux or Mac OS/X (e.g. Android, iPhone, Zaurus, iPaq)
|
||||
|
||||
|
||||
|
||||
HOW TO USE
|
||||
----------
|
||||
Type "./configure", followed by "make" to compile hydra and then
|
||||
"./hydra -h" to see the command line options.
|
||||
You make also type "make install" to install hydra to /usr/local/bin.
|
||||
Note that NO login/password file is included. Generate them yourself.
|
||||
For Linux users, a GTK gui is available, try "./xhydra"
|
||||
|
||||
|
||||
|
||||
SPECIAL OPTIONS FOR MODULES
|
||||
---------------------------
|
||||
Via the third command line parameter (TARGET SERVICE OPTIONAL) or the -m
|
||||
commandline option, you can pass one option to a module.
|
||||
Many modules use this, a few require it!
|
||||
|
||||
To see the special option of a module, type:
|
||||
hydra -U <module>
|
||||
e.g.
|
||||
./hydra -U http-post-form
|
||||
|
||||
The special options can be passed via the -m parameter, as 3rd command line
|
||||
option or in the service://target/option format.
|
||||
|
||||
Examples (they are all equal):
|
||||
./hydra -l test -p test -m PLAIN 127.0.0.1 imap
|
||||
./hydra -l test -p test 127.0.0.1 imap PLAIN
|
||||
./hydra -l test -p test imap://127.0.0.1/PLAIN
|
||||
|
||||
|
||||
|
||||
RESTORING AN ABORTED/CRASHED SESSION
|
||||
------------------------------------
|
||||
When hydra is aborted with Control-C, killed or crashs, it leavs a
|
||||
"hydra.restore" file behind which contains all necessary information to
|
||||
restore the session. This session file is written every 5 minutes.
|
||||
NOTE: if you are cracking parallel hosts (-M option), this feature doesnt
|
||||
work, and is therefore disabled!
|
||||
NOTE: the hydra.restore file can NOT be copied to a different platform (e.g.
|
||||
from little indian to big indian, or from solaris to aix)
|
||||
|
||||
|
||||
|
||||
HOW TO SCAN/CRACK OVER A PROXY
|
||||
------------------------------
|
||||
The environment variable HYDRA_PROXY_HTTP defines the web proxy (this works
|
||||
just for the http/www service!).
|
||||
The following syntax is valid:
|
||||
HYDRA_PROXY_HTTP="http://123.45.67.89:8080/"
|
||||
For all other services, use the HYDRA_PROXY variable to scan/crack
|
||||
via by default a web proxy's CONNECT call. It uses the same syntax. eg:
|
||||
HYDRA_PROXY=[http|socks4|socks5]://proxy_addr:proxy_port
|
||||
for example:
|
||||
HYDRA_PROXY=http://proxy.anonymizer.com:8000
|
||||
|
||||
If you require authentication for the proxy, use the HYDRA_PROXY_AUTH
|
||||
environment variable:
|
||||
HYDRA_PROXY_AUTH="the_login:the_password"
|
||||
|
||||
|
||||
|
||||
ADDITIONAL HINTS
|
||||
----------------
|
||||
* sort your password files by likelihood and use the -u option to find
|
||||
passwords much faster!
|
||||
* uniq your dictionary files! this can save you a lot of time :-)
|
||||
cat words.txt | sort | uniq > dictionary.txt
|
||||
* if you know that the target is using a password policy (allowing users
|
||||
only to choose password with a minimum length of 6, containing a least one
|
||||
letter and one number, etc. use the tool pw-inspector which comes along
|
||||
with the hydra package to reduce the password list:
|
||||
cat dictionary.txt | pw-inspector -m 6 -c 2 -n > passlist.txt
|
||||
|
||||
|
||||
|
||||
SPEED
|
||||
-----
|
||||
through the parallizing feature, this password cracker tool can be very
|
||||
fast, however it depends on the protocol. The fastest are generally POP3
|
||||
and FTP.
|
||||
Experiment with the task option (-t) to speed things up! The higher - the
|
||||
faster ;-) (but too high - and it disables the service)
|
||||
|
||||
|
||||
|
||||
STATISTICS
|
||||
----------
|
||||
Run against a SuSE Linux 7.2 on localhost with a "-C FILE" containing
|
||||
295 entries (294 tries invalid logins, 1 valid). Every test was run three
|
||||
times (only for "1 task" just once), and the average noted down.
|
||||
|
||||
P A R A L L E L T A S K S
|
||||
SERVICE 1 4 8 16 32 50 64 100 128
|
||||
------- --------------------------------------------------------------------
|
||||
telnet 23:20 5:58 2:58 1:34 1:05 0:33 0:45* 0:25* 0:55*
|
||||
ftp 45:54 11:51 5:54 3:06 1:25 0:58 0:46 0:29 0:32
|
||||
pop3 92:10 27:16 13:56 6:42 2:55 1:57 1:24 1:14 0:50
|
||||
imap 31:05 7:41 3:51 1:58 1:01 0:39 0:32 0:25 0:21
|
||||
|
||||
(*)
|
||||
Note: telnet timings can be VERY different for 64 to 128 tasks! e.g. with
|
||||
128 tasks, running four times resulted in timings between 28 and 97 seconds!
|
||||
The reason for this is unknown...
|
||||
|
||||
guesses per task (rounded up):
|
||||
295 74 38 19 10 6 5 3 3
|
||||
|
||||
guesses possible per connect (depends on the server software and config):
|
||||
telnet 4
|
||||
ftp 6
|
||||
pop3 1
|
||||
imap 3
|
||||
|
||||
|
||||
|
||||
BUGS & FEATURES
|
||||
---------------
|
||||
Hydra:
|
||||
Email me or David if you find bugs or if you have written a new module.
|
||||
vh@thc.org (and put "antispam" in the subject line)
|
||||
David (dot) Maciejak @ gmail (dot) com
|
||||
|
||||
|
||||
Type Bits/KeyID Date User ID
|
||||
pub 2048/CDD6A571 1998/04/27 van Hauser / THC <vh@reptile.rug.ac.be>
|
||||
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
Version: 2.6.3i
|
||||
|
||||
mQENAzVE0A4AAAEIAOzKPhKBDFDyeTvMKQ1xx6781tEdIYgrkrsUEL6VoJ8H8CIU
|
||||
SeXDuCVu3JlMKITD6nPMFJ/DT0iKHgnHUZGdCQEk/b1YHUYOcig1DPGsg3WeTX7L
|
||||
XL1M4DwqDvPz5QUQ+U+VHuNOUzgxfcjhHsjJj2qorVZ/T5x4k3U960CMJ11eOVNC
|
||||
meD/+c6a2FfLZJG0sJ/kIZ9HUkY/dvXDInOJaalQc1mYjkvfcPsSzas4ddiXiDyc
|
||||
QcKX+HAXIdmT7bjq5+JS6yspnBvIZC55tB7ci2axTjwpkdzJBZIkCoBlWsDXNwyq
|
||||
s70Lo3H9dcaNt4ubz5OMVIvJHFMCEtIGS83WpXEABRG0J3ZhbiBIYXVzZXIgLyBU
|
||||
SEMgPHZoQHJlcHRpbGUucnVnLmFjLmJlPokAlQMFEDVE0D7Kb9wCOxiMfQEBvpAD
|
||||
/3UCDgJs1CNg/zpLhRuUBlYsZ1kimb9cbB/ufL1I4lYM5WMyw+YfGN0p02oY4pVn
|
||||
CQN6ca5OsqeXHWfn7LxBT3lXEPCckd+vb9LPPCzuDPS/zYnOkUXgUQdPo69B04dl
|
||||
C9C1YXcZjplYso2q3NYnuc0lu7WVD0qT52snNUDkd19ciQEVAwUQNUTQDhLSBkvN
|
||||
1qVxAQGRTwgA05OmurXHVByFcvDaBRMhX6pKbTiVKh8HdJa8IdvuqHOcYFZ2L+xZ
|
||||
PAQy2WCqeakvss9Xn9I28/PQZ+6TmqWUmG0qgxe5MwkaXWxszKwRsQ8hH+bcppsZ
|
||||
2/Q3BxSfPege4PPwFWsajnymsnmhdVvvrt69grzJDm+iMK0WR33+RvtgjUj+i22X
|
||||
lpt5hLHufDatQzukMu4R84M1tbGnUCNF0wICrU4U503yCA4DT/1eMoDXI0BQXmM/
|
||||
Ygk9bO2Icy+lw1WPodrWmg4TJhdIgxuYlNLIu6TyqDYxjA/c525cBbdqwoE+YvUI
|
||||
o7CN/bJN0bKg1Y/BMTHEK3mpRLLWxVMRYw==
|
||||
=MdzX
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
195
web/index.html
Executable file
|
@ -0,0 +1,195 @@
|
|||
<html><head><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
||||
<meta name="keywords" content="Network Login Authentication Password Cracker Bruteforce THC Hydra">
|
||||
<title>THC-HYDRA - fast and flexible network login hacker</title></head>
|
||||
<body bgcolor="#ffffff">
|
||||
<pre>
|
||||
<table border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<img src="xhydra.png" width=300 height=300>
|
||||
</td>
|
||||
<td>
|
||||
<pre>
|
||||
<h2> THC-Hydra</h2>
|
||||
<h4>
|
||||
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>
|
||||
</h4><h3>
|
||||
Current Version: 7.6
|
||||
Last update 2014-02-xx
|
||||
</h3>
|
||||
</pre>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</pre><pre>
|
||||
|
||||
[0x00] News and Changelog
|
||||
|
||||
<b> Check out the feature sets and services coverage <a href="network_password_cracker_comparison.html">page</a> - including a speed comparison against ncrack and medusa (yes, we win :-) )
|
||||
|
||||
Read below for Linux compilation notes.
|
||||
And there is a new section below for online tutorials.
|
||||
</b>
|
||||
|
||||
CHANGELOG for 7.6
|
||||
===================
|
||||
* Added a wizard script for hydra based on a script by Shivang Desai <shivang.ice.2010@gmail.com>
|
||||
* Added module for Siemens S7-300 (submitted by Alexander Timorin and Sergey Gordeychik, thanks!)
|
||||
* HTTP HEAD/GET: MD5 digest auth was not working, fixed (thanks to Paul Kenyon)
|
||||
* SMTP Enum: HELO is now always sent, better 500 error detection
|
||||
* hydra main:
|
||||
- fixed a bug in the IPv6 address parsing when a port was supplied
|
||||
- added info message for pop3, imap and smtp protocol usage
|
||||
* hydra GTK: missed some services, added
|
||||
* dpl4hydra.sh:
|
||||
- added Siemens S7-300 common passwords to default password list
|
||||
- more broad searching in the list
|
||||
* Performed code indention on all C files :-)
|
||||
* Makefile patch to ensure .../etc directory is there (thanks to vonnyfly)
|
||||
|
||||
You can also take a look at the full <a href="CHANGES">CHANGES</a> file
|
||||
|
||||
|
||||
[0x01] Introduction
|
||||
|
||||
Welcome to the mini website of the THC Hydra project.
|
||||
|
||||
Number one of the biggest security holes are passwords, as every password security study shows.
|
||||
Hydra is a parallized login cracker which supports numerous protocols to attack. New modules
|
||||
are easy to add, beside that, it is flexible and very fast.
|
||||
|
||||
Hydra was tested to compile on Linux, Windows/Cygwin, Solaris 11, FreeBSD 8.1 and OSX, and
|
||||
is made available under GPLv3 with a special OpenSSL license expansion.
|
||||
|
||||
Currently this tool supports:
|
||||
Asterisk, AFP, Cisco AAA, Cisco auth, Cisco enable, CVS, Firebird, FTP, HTTP-FORM-GET, HTTP-FORM-POST,
|
||||
HTTP-GET, HTTP-HEAD, HTTP-PROXY, HTTPS-FORM-GET, HTTPS-FORM-POST, HTTPS-GET, HTTPS-HEAD,
|
||||
HTTP-Proxy, ICQ, IMAP, IRC, LDAP, MS-SQL, MYSQL, NCP, NNTP, Oracle Listener, Oracle SID, Oracle,
|
||||
PC-Anywhere, PCNFS, POP3, POSTGRES, RDP, Rexec, Rlogin, Rsh, S7-300, SAP/R3, SIP, SMB, SMTP, SMTP Enum,
|
||||
SNMP, SOCKS5, SSH (v1 and v2), Subversion, Teamspeak (TS2), Telnet, VMware-Auth, VNC and XMPP.
|
||||
|
||||
For HTTP, POP3, IMAP and SMTP, several login mechanisms like plain and MD5 digest etc. are supported.
|
||||
|
||||
This tool is a proof of concept code, to give researchers and security consultants the
|
||||
possiblity to show how easy it would be to gain unauthorized access from remote to a system.
|
||||
|
||||
The program is maintained by van Hauser and David Maciejak.
|
||||
|
||||
|
||||
[0x02] Documentation
|
||||
|
||||
Hydra comes with a rather long <a href="README">README file</a> that describes the
|
||||
details about the usage and special options.
|
||||
|
||||
But sometimes detailed online help can vastly improve your efficency.
|
||||
The following links on the global internet are a recommended read.
|
||||
|
||||
General usage and options: <a target="_blank" href="http://www.aldeid.com/wiki/Thc-hydra">http://www.aldeid.com/wiki/Thc-hydra</a>
|
||||
<a target="_blank" href="http://resources.infosecinstitute.com/online-dictionary-attack-with-hydra/">http://resources.infosecinstitute.com/online-dictionary-attack-with-hydra/</a>
|
||||
|
||||
HTTP basic auth: <a target="_blank" href="https://www.owasp.org/index.php/Testing_for_Brute_Force_%28OWASP-AT-004%29">https://www.owasp.org/index.php/Testing_for_Brute_Force_%28OWASP-AT-004%29</a>
|
||||
<a target="_blank" href="http://www.sillychicken.co.nz/Security/how-to-brute-force-your-router-in-windows.html">http://www.sillychicken.co.nz/Security/how-to-brute-force-your-router-in-windows.html</a>
|
||||
|
||||
HTTP form based auth: <a target="_blank" href="http://www.art0.org/security/performing-a-dictionary-attack-on-an-http-login-form-using-hydra">http://www.art0.org/security/performing-a-dictionary-attack-on-an-http-login-form-using-hydra</a>
|
||||
<a target="_blank" href="http://insidetrust.blogspot.com/2011/08/using-hydra-to-dictionary-attack-web.html">http://insidetrust.blogspot.com/2011/08/using-hydra-to-dictionary-attack-web.html</a>
|
||||
<a target="_blank" href="http://www.sillychicken.co.nz/Security/how-to-brute-force-http-forms-in-windows.html">http://www.sillychicken.co.nz/Security/how-to-brute-force-http-forms-in-windows.html</a>
|
||||
<a target="_blank" href="https://www.owasp.org/index.php/Testing_for_Brute_Force_%28OWASP-AT-004%29">https://www.owasp.org/index.php/Testing_for_Brute_Force_%28OWASP-AT-004%29</a>
|
||||
|
||||
Multiple protocols: <a target="_blank" href="http://wiki.bywire.org/Hydra">http://wiki.bywire.org/Hydra</a>
|
||||
<a target="_blank" href="http://www.attackvector.org/brute-force-with-thc-hydra/">http://www.attackvector.org/brute-force-with-thc-hydra/</a>
|
||||
<a target="_blank" href="http://www.madirish.net/content/hydra-brute-force-utility">http://www.madirish.net/content/hydra-brute-force-utility</a>
|
||||
|
||||
Telnet: <a target="_blank" href="http://www.theprohack.com/2009/04/basics-of-cracking-ftp-and-telnet.html">http://www.theprohack.com/2009/04/basics-of-cracking-ftp-and-telnet.html</a>
|
||||
<a target="_blank" href="http://www.adeptus-mechanicus.com/codex/bflog/bflog.html">http://www.adeptus-mechanicus.com/codex/bflog/bflog.html</a>
|
||||
|
||||
For those people testing with <a href="http://www.dvwa.co.uk/">DVWA</a>, this is what you want:
|
||||
hydra -l admin -p password <TARGET> http-get-form "/dvwa/login.php:username=^USER^&password=^PASS^&submit=Login:Login failed"
|
||||
|
||||
If you find other good ones, just email them in ( vh(at)thc(dot)org ).
|
||||
|
||||
|
||||
[0x03] Compilation Help
|
||||
|
||||
Hydry compiles fine on all platforms that have gcc - Linux, all BSD, Mac OS/X, Cygwin on Windows, Solaris, etc.
|
||||
It should even compile on historical SunOS, Ultrix etc. platforms :-)
|
||||
|
||||
There are many optional modules for network protocols like SSH, SVN etc. that require libraries.
|
||||
If they are not found, these optional libraries will not be supported in your binary.
|
||||
|
||||
If you are on Linux, the following commands install all necessary libraries:
|
||||
|
||||
Ubuntu/Debian: apt-get install libssl-dev libssh-dev libidn11-dev libpcre3-dev libgtk2.0-dev libmysqlclient-dev libpq-dev libsvn-dev firebird2.1-dev libncp-dev libncurses5-dev
|
||||
Redhat/Fedora: yum install openssl-devel pcre-devel ncpfs-devel postgresql-devel libssh-devel subversion-devel libncurses-devel
|
||||
OpenSuSE: zypper install libopenssl-devel pcre-devel libidn-devel ncpfs-devel libssh-devel postgresql-devel subversion-devel libncurses-devel
|
||||
|
||||
This enables all optional modules and features with the exception of Oracle, SAP R/3 and the
|
||||
Apple filing protocol - which you will need to download and install from the vendor's web sites.
|
||||
For Oracle this is (install the basic and SDK packages): <a href="http://www.oracle.com/technetwork/database/features/instant-client/index.html">http://www.oracle.com/technetwork/database/features/instant-client/index.html</a>
|
||||
|
||||
For all other Linux derivates and BSD based systems, use the system software installer and look for
|
||||
similar named libraries like in the command above.
|
||||
In all other cases you have to download all source libraries and compile them manually;
|
||||
the configure script output tells you what is missing and where to get it from.
|
||||
|
||||
|
||||
[0x04] Disclaimer
|
||||
|
||||
1. This tool is for legal purposes only!
|
||||
2. The Affero General Public License Version 3 (AGPLv3) applies to this code.
|
||||
3. A special license expansion for OpenSSL is included which is required for the Debian people
|
||||
|
||||
|
||||
[0x05] Development & Contributions
|
||||
|
||||
Your contributions are more than welcomed!
|
||||
|
||||
If you find bugs, coded enhancements or wrote a new attack module for a service,
|
||||
please send them to vh (at) thc (dot) org
|
||||
|
||||
Interesting attack modules would be:
|
||||
OSPF, BGP, PIM, PPTP, ...
|
||||
(or anything else you might be able to do (and is not there yet))
|
||||
|
||||
|
||||
[0x06] Screenshots
|
||||
|
||||
<a href="hydra_target.jpg"><img src="hydra_target.jpg"></a>
|
||||
(1) Target selection
|
||||
|
||||
<a href="hydra_pass.jpg"><img src="hydra_pass.jpg"></a>
|
||||
(2) Login/Password setup
|
||||
|
||||
<a href="hydra_start.jpg"><img src="hydra_start.jpg"></a>
|
||||
(3) Hydra start and output
|
||||
|
||||
|
||||
[0x07] The Art of Downloading: Source and Binaries
|
||||
|
||||
1. The source code of state-of-the-art Hydra: <a href="http://www.thc.org/releases/hydra-7.6.tar.gz">hydra-7.6.tar.gz</a>
|
||||
(compiles on all UNIX based platforms - even MacOS X, Cygwin on Windows, ARM-Linux, Android, etc.)
|
||||
|
||||
2. The source code of an old, deprecated version of Hydra <b>ONLY in case v7.x gives you problems</b> on unusual and old platforms:
|
||||
<a href="http://www.thc.org/releases/hydra-5.9.1-src.tar.gz">hydra-5.9.1-src.tar.gz</a>
|
||||
|
||||
3. The Win32/Cywin binary release: --- not anymore ---
|
||||
Install cygwin from <a href="http://www.cygwin.com/">http://www.cygwin.com</a>
|
||||
and compile it yourself. If you do not have cygwin installed - how
|
||||
do you think you will do proper securiy testing? duh ...
|
||||
|
||||
4. ARM and Palm binaries here are old and not longer maintained:
|
||||
ARM: <a href="http://www.thc.org/thc-hydra/hydra-5.0-arm.tar.gz">hydra-5.0-arm.tar.gz</a>
|
||||
Palm: <a href="http://www.thc.org/thc-hydra/hydra-4.6-palm.zip">hydra-4.6-palm.zip</a>
|
||||
|
||||
|
||||
Comments and suggestions are welcome.
|
||||
|
||||
Yours sincerly,
|
||||
|
||||
van Hauser
|
||||
The Hackers Choice
|
||||
http://www.thc.org/thc-hydra
|
||||
|
||||
</pre>
|
||||
</body></html>
|
848
web/network_password_cracker_comparison.html
Executable file
|
@ -0,0 +1,848 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html dir="ltr" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en"><head>
|
||||
|
||||
<!-- inspired from http://wiki.inspircd.org/Comparison_Of_Features and MediaWiki-->
|
||||
<!-- Author David Maciejak, for any inquiries please contact us -->
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
||||
<meta name="keywords" content="Comparison Of Features,Comparison Of Services, Network Authentication Password Cracker Bruteforce THC">
|
||||
<link rel="shortcut icon" href="http://www.thc.org/favicon.ico">
|
||||
<link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html">
|
||||
<title>State of network password cracker art - Comparison Of Features and Services - hydra</title>
|
||||
|
||||
<link rel="stylesheet" href="commonPrint.css" type="text/css" media="print">
|
||||
<link rel="stylesheet" href="main.css" type="text/css" media="screen">
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<div id="globalWrapper">
|
||||
<div id="column-content">
|
||||
<div id="content">
|
||||
<a name="top" id="top"></a>
|
||||
<h1 class="firstHeading">Comparison of Features and Services Coverage</h1>
|
||||
|
||||
|
||||
|
||||
<div id="bodyContent">
|
||||
<div id="contentSub"></div>
|
||||
<table id="toc" class="toc" summary="Contents"><tbody><tr><td><div id="toctitle"><h2>Contents</h2></div>
|
||||
<ul>
|
||||
<li class="toclevel-1"><a href="#Introduction"><span class="tocnumber">1</span> <span class="toctext">Introduction</span></a>
|
||||
<ul>
|
||||
<li class="toclevel-2"><a href="#Code_Comparison"><span class="tocnumber">1.1</span> <span class="toctext">Code Comparison</span></a></li>
|
||||
<li class="toclevel-2"><a href="#Feature_table"><span class="tocnumber">1.2</span> <span class="toctext">Features Table</span></a></li>
|
||||
<li class="toclevel-2"><a href="#Services_Support"><span class="tocnumber">1.3</span> <span class="toctext">Services Coverage</span></a></li>
|
||||
<li class="toclevel-2"><a href="#Speed_Comparison"><span class="tocnumber">1.4</span> <span class="toctext">Speed Comparison</span></a></li>
|
||||
<li class="toclevel-2"><a href="#Notes"><span class="tocnumber">1.5</span> <span class="toctext">Notes</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</td></tr></tbody></table>
|
||||
<a name="Introduction" id="Introduction"></a><h2> <span class="mw-headline"> Introduction </span></h2>
|
||||
<p>Hydra is born more than 10 years ago, this page is used as a recap of the functionalities it provides, but also
|
||||
the differences in feature sets, services coverage and code between the most
|
||||
popular network authentication cracker tools available. Each feature is compared against
|
||||
<a href="http://www.thc.org/thc-hydra/" title="Hydra">Hydra</a> as of the current version. This table is updated as new
|
||||
features are added to the project. If you find any inaccuracies
|
||||
on this page please do not hesitate to contact us.
|
||||
<p>Below, <img alt="Yes" src="Tick.png" border="0" height="17" width="20"></a> means it is supported, <img alt="No" src="Cross.png" border="0" height="18" width="22"></a> means it is not supported, <img alt="Unknown" src="Unknown.png" border="0" height="22" width="22"></a> means the support is partial
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<a name="Code_Comparison" id="Code_Comparison"></a><h3> <span class="mw-headline"> Code Comparison </span></h3>
|
||||
<p>This table just lists latest available versions and platforms compatibility.</p>
|
||||
<table style="background-color: rgb(250, 250, 250); color: black; border: 1px solid rgb(204, 204, 204); border-collapse: collapse; border-spacing: 0pt;">
|
||||
<tbody><tr>
|
||||
<td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Code
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Hydra
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Medusa
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Ncrack
|
||||
</td></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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> 7.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;"> 0.4 alpha
|
||||
</td></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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> December 2013
|
||||
</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;"> April 2011
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Supported Platforms
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> Linux, *BSD, Solaris, Mac OS X, any Unix, Windows (Cygwin)
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> Linux, *BSD, Solaris and Mac OS X
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> Linux, *BSD, Mac OS X, Windows
|
||||
</td></tr>
|
||||
<tr>
|
||||
</tbody></table><br>
|
||||
|
||||
<a name="Feature_table" id="Feature_table"></a><h3> <span class="mw-headline"> Features Table </span></h3>
|
||||
<p>This table lists the feature sets of each tools.
|
||||
</p>
|
||||
<table style="background-color: rgb(250, 250, 250); color: black; border: 1px solid rgb(204, 204, 204); border-collapse: collapse; border-spacing: 0pt;">
|
||||
<tbody><tr>
|
||||
<td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Feature
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Hydra
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Medusa
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Ncrack
|
||||
</td></tr>
|
||||
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> License
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> AGPLv3
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> GPLv2
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> GPLv2 + Nmap terms
|
||||
</td></tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> IPv6 Support
|
||||
</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></tr>
|
||||
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Graphic User Interface
|
||||
</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="Yes" src="Tick.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>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Internationalized support (RFC 4013)
|
||||
</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>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> HTTP proxy support
|
||||
</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="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></tr>
|
||||
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> SOCKS proxy support
|
||||
</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>
|
||||
|
||||
</tbody></table><br>
|
||||
|
||||
<a name="Services_Support" id="Services_Support"></a><h3> <span class="mw-headline"> Services Coverage </span></h3>
|
||||
<p>This table lists the services coverage of each tools. For each services, many authentication methods are possible. If you require other ways or find issues in Hydra, please
|
||||
contact us as the service depends on RFC implementations, some adjustements may be needed.
|
||||
</p>
|
||||
<table style="background-color: rgb(250, 250, 250); color: black; border: 1px solid rgb(204, 204, 204); border-collapse: collapse; border-spacing: 0pt;">
|
||||
<tbody><tr>
|
||||
<td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Service
|
||||
</td>
|
||||
<td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Details
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Hydra
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Medusa
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Ncrack
|
||||
</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="Apple Filing Protocol">AFP</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="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></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="Asterisk Call Manager">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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> CVS
|
||||
</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="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></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;"> Firebird
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=2> <a title="File Transfer Protocol">FTP</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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL support</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>AUTH TLS & FTP over SSL</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>AUTH TLS & FTP over SSL</font>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=5> <a title="Hypertext Transfer Protocol">HTTP</a>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Method(s)</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">GET, HEAD
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">GET
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">GET
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Basic Auth</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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">DIGEST-MD5 Auth</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">NTLM Auth</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL support</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">HTTPS
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">HTTPS
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">HTTPS
|
||||
</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;" ROWSPAN=2> HTTP Form
|
||||
<td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Method(s)</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">GET, POST
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">GET, POST
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL support</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">HTTPS
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">HTTPS
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=5> HTTP Proxy
|
||||
<td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Basic Auth</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">DIGEST-MD5 Auth</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">NTLM Auth</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL support</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">HTTPS
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">URL Enumeration</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> ICQ
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v5
|
||||
</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"> <sup>1</sup>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=2> <a title="Internet Relay Chat">IRC</a>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">General server password
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">OPER mode password
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=10> <a title="Internet Message Access Protocol">IMAP</a>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">LOGIN support</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="Yes" src="Tick.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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH LOGIN support</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH PLAIN support</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH CRAM-MD5 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH CRAM-SHA1 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH CRAM-SHA256 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH DIGEST-MD5 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH NTLM support</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH SCRAM-SHA1 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL support</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>IMAPS & STARTTLS</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>IMAPS & STARTTLS</font>
|
||||
</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"></a>
|
||||
</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;" ROWSPAN=4> <a title="Lightweight Directory Access Protocol">LDAP</a>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v2, Simple support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v3, Simple support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v3, AUTH CRAM-MD5 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v3, AUTH DIGEST-MD5 support</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> MS-SQL
|
||||
</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="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></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;" ROWSPAN=3> MySQL
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v3.x
|
||||
</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v4.x
|
||||
</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v5.x
|
||||
</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="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></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="NetWare Core Protocol for Novell">NCP</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="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></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;" ROWSPAN=7> <a title="Network News Transfer Protocol">NNTP</a>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">USER support
|
||||
</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH LOGIN support
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH PLAIN support
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH CRAM-MD5 support
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH DIGEST-MD5 support
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH NTLM support
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL support
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>STARTTLS & NNTP over SSL</font>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=3> Oracle
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Database</td></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="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="18" width="22"> <sup>2</sup>
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">TNS Listener</td></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="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><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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SID Enumeration</td></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="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><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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> <a title="PC-Network File System">PC-NFS</a>
|
||||
</td><td></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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=10> POP3
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">USER support</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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">APOP support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH LOGIN support</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH PLAIN support</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH CRAM-MD5 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH CRAM-SHA1 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH CRAM-SHA256 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH DIGEST-MD5 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH NTLM support</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL Support</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>POP3S & STARTTLS</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>POP3S & STARTTLS</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>POP3S</font>
|
||||
</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;" ROWSPAN=2> pcAnywhere
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Native Authentication
|
||||
</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"> <sup>1</sup>
|
||||
</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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">OS Based Authentication (MS)
|
||||
</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></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;"> PostgreSQL
|
||||
</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="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></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;"> REXEC
|
||||
</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="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></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;" 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;"><img alt="Yes" src="Tick.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="18" width="22"> <sup>2</sup>
|
||||
</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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Windows Server
|
||||
</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="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="18" width="22"> <sup>2</sup>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="Partial" src="Unknown.png" border="0" height="18" width="22">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Domain Auth
|
||||
</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="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="18" width="22"> <sup>2</sup>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> RLOGIN
|
||||
</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="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></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;"> RSH
|
||||
</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="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></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;"> SAP R/3
|
||||
</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"> <sup>1</sup>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Siemens S7-300
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=2> <a title="Session Initiation Protocol">SIP</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"> <sup>1</sup>
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL support</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>SIP over SSL</font>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=8> SMB
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">NetBIOS Mode</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="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="17" width="20">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">W2K Native Mode</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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Hash mode</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="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="17" width="20">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">Clear Text Auth</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">LMv1 Auth</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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">LMv2 Auth</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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">NTLMv1 Auth</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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</td></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">NTLMv2 Auth</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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</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;" ROWSPAN=6> <a title="Simple Mail Transfer Protocol">SMTP</a>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH LOGIN support</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH PLAIN support</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH CRAM-MD5 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH DIGEST-MD5 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH NTLM support</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL support</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>SMTPS & STARTTLS</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><font color=green>SMTPS & STARTTLS</font>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=3> SMTP User Enum
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">VRFY 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="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></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">
|
||||
</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><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="No" src="Cross.png" border="0" height="18" width="22">
|
||||
</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;" ROWSPAN=3> SNMP
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v1
|
||||
</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v2c
|
||||
</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="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="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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v3
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"><img alt="Partial (MD5/SHA1 auth only)" src="Unknown.png" border="0" height="18" width="22"><font color=green>(MD5/SHA1 auth only)</font>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> SOCKS
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v5, Password Auth
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=2> SSH
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v1</td></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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v2</td></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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</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;"> SSH Keys
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v1, v2
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Subversion (SVN)
|
||||
</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="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></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;"> TeamSpeak
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">TS2
|
||||
</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"> <sup>1</sup>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> Telnet
|
||||
</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="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="Yes" src="Tick.png" border="0" height="17" width="20">
|
||||
</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;" ROWSPAN=4> <a title="Virtual Network Computing">VNC</a>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">RFB 3.x password support
|
||||
</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="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></tr>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">RFB 3.x user+password support
|
||||
</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="Partial" src="Unknown.png" border="0" height="18" width="22"><font color=green>(UltraVNC only)</font>
|
||||
</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">RFB 4.x password support
|
||||
</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">RFB 4.x user+password support
|
||||
</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="Partial" src="Unknown.png" border="0" height="18" width="22"><font color=green>(UltraVNC only)</font>
|
||||
</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);">
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;" ROWSPAN=2> VMware Auth Daemon
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">v1.00 / v1.10
|
||||
</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="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></tr>
|
||||
<tr><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">SSL support
|
||||
</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="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></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;" ROWSPAN=5> <a title="Extensible Messaging and Presence Protocol">XMPP</a>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH LOGIN support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH PLAIN support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH CRAM-MD5 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH DIGEST-MD5 support</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><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;">AUTH SCRAM-SHA1 support</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>
|
||||
|
||||
</tbody></table><br>
|
||||
|
||||
<a name="Speed_Comparison" id="Speed_Comparison"></a><h3> <span class="mw-headline"> Speed Comparison </span></h3>
|
||||
<p>This table gives some speed data (in second) for 2 popular services supported by each cracking tool (as of September 2011). The value displayed is the min value of 3 consecutive runs.
|
||||
Each tool was configured to run 1, 4 and 16 task(s)/job(s) at a time. A login and password lists corresponding to 20 attempts was used. The smaller the value the better.</p>
|
||||
<table style="background-color: rgb(250, 250, 250); color: black; border: 1px solid rgb(204, 204, 204); border-collapse: collapse; border-spacing: 0pt;">
|
||||
<tbody><tr>
|
||||
<td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Speed (in s)
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Hydra
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Medusa
|
||||
</td><td style="padding: 2px 4px; background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); text-align: center; font-weight: bold;"> Ncrack
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> 1 Task / FTP module
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=green>11.93</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=darkorange>12.97</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=red>18.01</font>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> 4 Tasks / FTP module
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=green>4.20</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=darkorange>5.24</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=red>9.01</font>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> 16 Tasks / FTP module
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=green>2.44</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=darkorange>2.71</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=red>12.01</font>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> 1 Task / SSH v2 module
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=green>32.56</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=darkorange>33.84</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=red>45.02</font>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> 4 Tasks / SSH v2 module
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=green>10.95</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=red>Broken</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=red>Missed</font>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td style="background-color: rgb(236, 236, 236); border: 1px solid rgb(204, 204, 204); padding: 2px 4px; font-weight: bold;"> 16 Tasks / SSH v2 module
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=green>5.14</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=red>Broken</font>
|
||||
</td><td style="border: 1px solid rgb(204, 204, 204); padding: 2px 4px; text-align: center;"> <font color=red>Missed</font>
|
||||
</td></tr>
|
||||
|
||||
</tbody></table><br>
|
||||
|
||||
|
||||
<a name="Notes" id="Notes"></a><h3> <span class="mw-headline"> Notes </span></h3>
|
||||
<ol><li>These Hydra modules have not been checked with latest version of softwares/protocols available.
|
||||
</li>
|
||||
<li>Medusa support is relying on a script or a wrapper.
|
||||
</li></ol>
|
||||
|
||||
<div class="printfooter">
|
||||
|
||||
<div class="visualClear"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="visualClear"></div>
|
||||
<div id="footer">
|
||||
<div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="gnu-fdl.png" alt="GNU Free Documentation License 1.2"></a></div>
|
||||
<ul id="f-list">
|
||||
<li id="lastmod"> Modified May 2012</li>
|
||||
<li id="copyright">Licensed under GNU FDL 1.2</li>
|
||||
<li id="about"><a href="http://www.thc.org/thc-hydra/" title="Hydra">Back to Hydra main site</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body></html>
|
267
web/webfiles/css/commonPrint.css
Executable file
|
@ -0,0 +1,267 @@
|
|||
/*
|
||||
** MediaWiki Print style sheet for CSS2-capable browsers.
|
||||
** Copyright Gabriel Wicke, http://www.aulinx.de/
|
||||
**
|
||||
** Derived from the plone (http://plone.org/) styles
|
||||
** Copyright Alexander Limi
|
||||
*/
|
||||
|
||||
/* Thanks to A List Apart (http://alistapart.com/) for useful extras */
|
||||
a.stub,
|
||||
a.new{ color:#ba0000; text-decoration:none; }
|
||||
|
||||
#toc {
|
||||
/*border:1px solid #2f6fab;*/
|
||||
border:1px solid #aaaaaa;
|
||||
background-color:#f9f9f9;
|
||||
padding:5px;
|
||||
}
|
||||
.tocindent {
|
||||
margin-left: 2em;
|
||||
}
|
||||
.tocline {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
/* images */
|
||||
div.floatright {
|
||||
float: right;
|
||||
clear: right;
|
||||
margin: 0;
|
||||
position:relative;
|
||||
border: 0.5em solid White;
|
||||
border-width: 0.5em 0 0.8em 1.4em;
|
||||
}
|
||||
div.floatright p { font-style: italic;}
|
||||
div.floatleft {
|
||||
float: left;
|
||||
margin: 0.3em 0.5em 0.5em 0;
|
||||
position:relative;
|
||||
border: 0.5em solid White;
|
||||
border-width: 0.5em 1.4em 0.8em 0;
|
||||
}
|
||||
div.floatleft p { font-style: italic; }
|
||||
/* thumbnails */
|
||||
div.thumb {
|
||||
margin-bottom: 0.5em;
|
||||
border-style: solid; border-color: White;
|
||||
width: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
div.thumb div {
|
||||
border:1px solid #cccccc;
|
||||
padding: 3px !important;
|
||||
background-color:#f9f9f9;
|
||||
font-size: 94%;
|
||||
text-align: center;
|
||||
}
|
||||
div.thumb div a img {
|
||||
border:1px solid #cccccc;
|
||||
}
|
||||
div.thumb div div.thumbcaption {
|
||||
border: none;
|
||||
padding: 0.3em 0 0.1em 0;
|
||||
}
|
||||
div.magnify { display: none; }
|
||||
div.tright {
|
||||
float: right;
|
||||
clear: right;
|
||||
border-width: 0.5em 0 0.8em 1.4em;
|
||||
}
|
||||
div.tleft {
|
||||
float: left;
|
||||
margin-right:0.5em;
|
||||
border-width: 0.5em 1.4em 0.8em 0;
|
||||
}
|
||||
img.thumbborder {
|
||||
border: 1px solid #dddddd;
|
||||
}
|
||||
|
||||
/* table standards */
|
||||
table.rimage {
|
||||
float:right;
|
||||
width:1pt;
|
||||
position:relative;
|
||||
margin-left:1em;
|
||||
margin-bottom:1em;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
body {
|
||||
background: White;
|
||||
/*font-size: 11pt !important;*/
|
||||
color: Black;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.noprint,
|
||||
div#jump-to-nav,
|
||||
div.top,
|
||||
div#column-one,
|
||||
#colophon,
|
||||
.editsection,
|
||||
.toctoggle,
|
||||
.tochidden,
|
||||
div#f-poweredbyico,
|
||||
div#f-copyrightico,
|
||||
li#viewcount,
|
||||
li#about,
|
||||
li#disclaimer,
|
||||
li#privacy {
|
||||
/* Hides all the elements irrelevant for printing */
|
||||
display: none;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: square;
|
||||
}
|
||||
|
||||
#content {
|
||||
background: none;
|
||||
border: none ! important;
|
||||
padding: 0 ! important;
|
||||
margin: 0 ! important;
|
||||
}
|
||||
#footer {
|
||||
background : white;
|
||||
color : black;
|
||||
border-top: 1px solid black;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
p, .documentDescription {
|
||||
margin: 1em 0 ! important;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
.tocindent p {
|
||||
margin: 0 0 0 0 ! important;
|
||||
}
|
||||
|
||||
pre {
|
||||
border: 1pt dashed black;
|
||||
white-space: pre;
|
||||
font-size: 8pt;
|
||||
overflow: auto;
|
||||
padding: 1em 0;
|
||||
background : white;
|
||||
color : black;
|
||||
}
|
||||
|
||||
table.listing,
|
||||
table.listing td {
|
||||
border: 1pt solid black;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
a {
|
||||
color: Black !important;
|
||||
background: none !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
a:link, a:visited {
|
||||
color: #520;
|
||||
background: transparent;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#content a.external.text:after, #content a.external.autonumber:after {
|
||||
/* Expand URLs for printing */
|
||||
content: " (" attr(href) ") ";
|
||||
}
|
||||
|
||||
#globalWrapper {
|
||||
width: 100% !important;
|
||||
min-width: 0 !important;
|
||||
}
|
||||
|
||||
#content {
|
||||
background : white;
|
||||
color : black;
|
||||
}
|
||||
|
||||
#column-content {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
#column-content #content {
|
||||
padding: 1em;
|
||||
margin: 0 !important;
|
||||
}
|
||||
/* MSIE/Win doesn't understand 'inherit' */
|
||||
a, a.external, a.new, a.stub {
|
||||
color: black ! important;
|
||||
text-decoration: none ! important;
|
||||
}
|
||||
|
||||
/* Continue ... */
|
||||
a, a.external, a.new, a.stub {
|
||||
color: inherit ! important;
|
||||
text-decoration: inherit ! important;
|
||||
}
|
||||
|
||||
img { border: none; }
|
||||
img.tex { vertical-align: middle; }
|
||||
span.texhtml { font-family: serif; }
|
||||
|
||||
#siteNotice { display: none; }
|
||||
|
||||
table.gallery {
|
||||
border: 1px solid #cccccc;
|
||||
margin: 2px;
|
||||
padding: 2px;
|
||||
background-color:#ffffff;
|
||||
}
|
||||
|
||||
table.gallery tr {
|
||||
vertical-align:top;
|
||||
}
|
||||
|
||||
div.gallerybox {
|
||||
border: 1px solid #cccccc;
|
||||
margin: 2px;
|
||||
background-color:#f9f9f9;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
div.gallerybox div.thumb {
|
||||
text-align: center;
|
||||
border: 1px solid #cccccc;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
div.gallerytext {
|
||||
font-size: 94%;
|
||||
padding: 2px 4px;
|
||||
}
|
||||
|
||||
/*
|
||||
** Diff rendering
|
||||
*/
|
||||
table.diff { background:white; }
|
||||
td.diff-otitle { background:#ffffff; }
|
||||
td.diff-ntitle { background:#ffffff; }
|
||||
td.diff-addedline {
|
||||
background:#ccffcc;
|
||||
font-size: smaller;
|
||||
border: solid 2px black;
|
||||
}
|
||||
td.diff-deletedline {
|
||||
background:#ffffaa;
|
||||
font-size: smaller;
|
||||
border: dotted 2px black;
|
||||
}
|
||||
td.diff-context {
|
||||
background:#eeeeee;
|
||||
font-size: smaller;
|
||||
}
|
||||
.diffchange {
|
||||
color: silver;
|
||||
font-weight: bold;
|
||||
text-decoration: underline;
|
||||
}
|
2
web/webfiles/css/index.css
Executable file
|
@ -0,0 +1,2 @@
|
|||
/* generated user stylesheet */
|
||||
a.new, #quickbar a.new { color: #CC2200; }
|
1
web/webfiles/css/index_002.css
Executable file
|
@ -0,0 +1 @@
|
|||
/* CSS placed here will affect the print output */
|
1
web/webfiles/css/index_003.css
Executable file
|
@ -0,0 +1 @@
|
|||
/** CSS placed here will be applied to all skins */
|
20
web/webfiles/css/index_004.css
Executable file
|
@ -0,0 +1,20 @@
|
|||
/** <pre><nowiki> */
|
||||
#footer { text-align: center; border: none; padding: 0; }
|
||||
#p-cactions li.selected { border-color: #708090; padding: 0 0 .2em 0; font-weight: bold; }
|
||||
pre
|
||||
{
|
||||
generic-family: "Envy Code R", "Liberation Mono", Consolas, "Lucida Console", monospace;
|
||||
|
||||
/* border: 1px solid #dbdbdb; */
|
||||
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: #fefefe;
|
||||
line-height: 1.1em;
|
||||
padding: 0.55em;
|
||||
/*
|
||||
-moz-border-radius-topright: 0.5em;
|
||||
-webkit-border-top-right-radius: 0.5em;
|
||||
border-radius-topright: 0.5em;
|
||||
*/
|
||||
}
|
||||
/** </nowiki></pre> */
|
1461
web/webfiles/css/main.css
Executable file
320
web/webfiles/css/shared.css
Executable file
|
@ -0,0 +1,320 @@
|
|||
/**
|
||||
* CSS in this file is used by *all* skins (that have any CSS at all). Be
|
||||
* careful what you put in here, since what looks good in one skin may not in
|
||||
* another, but don't ignore the poor non-Monobook users either.
|
||||
*/
|
||||
.mw-plusminus-null { color: #aaa; }
|
||||
|
||||
.texvc { direction: ltr; unicode-bidi: embed; }
|
||||
img.tex { vertical-align: middle; }
|
||||
span.texhtml { font-family: serif; }
|
||||
|
||||
/* add a bit of margin space between the preview and the toolbar */
|
||||
/* this replaces the ugly <p><br /></p> we used to insert into the page source */
|
||||
#wikiPreview.ontop { margin-bottom: 1em; }
|
||||
|
||||
/* Stop floats from intruding into edit area in previews */
|
||||
#toolbar, #wpTextbox1 { clear: both; }
|
||||
|
||||
div#mw-js-message {
|
||||
margin: 1em 5%;
|
||||
padding: 0.5em 2.5%;
|
||||
border: solid 1px #ddd;
|
||||
background-color: #fcfcfc;
|
||||
}
|
||||
|
||||
/* Edit section links */
|
||||
.editsection {
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
/**
|
||||
* File histories
|
||||
*/
|
||||
table.filehistory {
|
||||
border:1px solid #ccc;
|
||||
border-collapse:collapse;
|
||||
}
|
||||
|
||||
table.filehistory th,
|
||||
table.filehistory td {
|
||||
padding: 0 0.2em 0 0.2em;
|
||||
vertical-align:top;
|
||||
border:1px solid #ccc;
|
||||
}
|
||||
table.filehistory th {
|
||||
text-align: left;
|
||||
}
|
||||
table.filehistory td.mw-imagepage-filesize,
|
||||
table.filehistory th.mw-imagepage-filesize {
|
||||
white-space:nowrap;
|
||||
}
|
||||
|
||||
table.filehistory td.filehistory-selected {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/*
|
||||
* rev_deleted stuff
|
||||
*/
|
||||
li span.deleted, span.history-deleted {
|
||||
text-decoration: line-through;
|
||||
color: #888;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Forms
|
||||
*/
|
||||
body.ltr td.mw-label { text-align: right; }
|
||||
body.ltr td.mw-input { text-align: left; }
|
||||
body.ltr td.mw-submit { text-align: left; }
|
||||
body.rtl td.mw-label { text-align: left; }
|
||||
body.rtl td.mw-input { text-align: right; }
|
||||
body.rtl td.mw-submit { text-align: right; }
|
||||
|
||||
td.mw-label { vertical-align: top; }
|
||||
td.mw-submit { white-space: nowrap; }
|
||||
|
||||
/**
|
||||
* Image captions
|
||||
*/
|
||||
body.rtl .thumbcaption { text-align:right; }
|
||||
body.rtl .magnify { float:left; }
|
||||
|
||||
body.ltr .thumbcaption { text-align:left; }
|
||||
body.ltr .magnify { float:right; }
|
||||
|
||||
/**
|
||||
* Hidden categories
|
||||
*/
|
||||
.mw-hidden-cats-hidden { display: none; }
|
||||
.catlinks-allhidden { display: none; }
|
||||
|
||||
/* Convenience links to edit block, delete and protect reasons */
|
||||
p.mw-ipb-conveniencelinks, p.mw-protect-editreasons,
|
||||
p.mw-filedelete-editreasons, p.mw-delete-editreasons {
|
||||
font-size: 90%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Search results */
|
||||
div.searchresult {
|
||||
font-size: 95%;
|
||||
width:38em;
|
||||
}
|
||||
.mw-search-results li {
|
||||
padding-bottom: 1em;
|
||||
list-style:none;
|
||||
}
|
||||
.mw-search-result-data {
|
||||
color: green;
|
||||
font-size: 97%;
|
||||
}
|
||||
|
||||
td#mw-search-menu {
|
||||
padding-left:6em;
|
||||
font-size:85%;
|
||||
}
|
||||
|
||||
div#mw-search-interwiki {
|
||||
float: right;
|
||||
width: 18em;
|
||||
border-style: solid;
|
||||
border-color: #AAAAAA;
|
||||
border-width: 1px;
|
||||
margin-top: 2ex;
|
||||
}
|
||||
|
||||
div#mw-search-interwiki li {
|
||||
font-size: 95%;
|
||||
}
|
||||
|
||||
.mw-search-interwiki-more {
|
||||
float: right;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
span.searchalttitle {
|
||||
font-size: 95%;
|
||||
}
|
||||
|
||||
div.searchdidyoumean {
|
||||
font-size: 127%;
|
||||
margin-bottom: 1ex;
|
||||
margin-top: 1ex;
|
||||
/* Note that this color won't affect the link, as desired. */
|
||||
color: #c00;
|
||||
}
|
||||
|
||||
div.searchdidyoumean em {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.searchmatch {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.searchresults {
|
||||
border:1px solid darkblue;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
/*
|
||||
* UserRights stuff
|
||||
*/
|
||||
.mw-userrights-disabled {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
table.mw-userrights-groups * td,table.mw-userrights-groups * th {
|
||||
padding-right: 1.5em;
|
||||
}
|
||||
|
||||
/*
|
||||
* OpenSearch ajax suggestions
|
||||
*/
|
||||
.os-suggest {
|
||||
overflow: auto;
|
||||
overflow-x: hidden;
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
width: 0px;
|
||||
background-color: white;
|
||||
background-color: Window;
|
||||
border-style: solid;
|
||||
border-color: #AAAAAA;
|
||||
border-width: 1px;
|
||||
z-index:99;
|
||||
visibility:hidden;
|
||||
font-size:95%;
|
||||
}
|
||||
|
||||
table.os-suggest-results {
|
||||
font-size: 95%;
|
||||
cursor: pointer;
|
||||
border: 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
td.os-suggest-result, td.os-suggest-result-hl {
|
||||
white-space: nowrap;
|
||||
background-color: white;
|
||||
background-color: Window;
|
||||
color: black;
|
||||
color: WindowText;
|
||||
padding: 2px;
|
||||
}
|
||||
td.os-suggest-result-hl,
|
||||
td.os-suggest-result-hl-webkit {
|
||||
background-color: #4C59A6;
|
||||
color: white;
|
||||
}
|
||||
td.os-suggest-result-hl {
|
||||
/* System colors are misimplemented in Safari 3.0 and earlier,
|
||||
making highlighted text illegible... */
|
||||
background-color: Highlight;
|
||||
color: HighlightText;
|
||||
}
|
||||
|
||||
.os-suggest-toggle {
|
||||
position: relative;
|
||||
left: 1ex;
|
||||
font-size: 65%;
|
||||
}
|
||||
.os-suggest-toggle-def {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
font-size: 65%;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/* Page history styling */
|
||||
/* the auto-generated edit comments */
|
||||
.autocomment { color: gray; }
|
||||
#pagehistory .history-user {
|
||||
margin-left: 0.4em;
|
||||
margin-right: 0.2em;
|
||||
}
|
||||
#pagehistory span.minor { font-weight: bold; }
|
||||
#pagehistory li { border: 1px solid white; }
|
||||
#pagehistory li.selected {
|
||||
background-color: #f9f9f9;
|
||||
border: 1px dashed #aaa;
|
||||
}
|
||||
|
||||
/*
|
||||
* Special:ListGroupRights styling
|
||||
* Special:Statistics styling
|
||||
*/
|
||||
|
||||
table.mw-listgrouprights-table,
|
||||
table.mw-statistics-table {
|
||||
border: 1px solid #ccc;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.mw-listgrouprights-table tr {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table.mw-listgrouprights-table td, table.mw-listgrouprights-table th,
|
||||
table.mw-statistics-table td, table.mw-statistics-table th {
|
||||
padding: 0.5em 0.2em 0.5em 0.2em;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
td.mw-statistics-numbers {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* Special:SpecialPages styling */
|
||||
h4.mw-specialpagesgroup {
|
||||
background-color: #dcdcdc;
|
||||
padding: 2px;
|
||||
margin: .3em 0em 0em 0em;
|
||||
}
|
||||
.mw-specialpagerestricted {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#shared-image-dup, #shared-image-conflict {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* Special:EmailUser styling */
|
||||
table.mw-emailuser-table {
|
||||
width: 98%;
|
||||
}
|
||||
td#mw-emailuser-sender, td#mw-emailuser-recipient {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/*
|
||||
* Recreating deleted page warning
|
||||
* Reupload file warning
|
||||
* Page protection warning
|
||||
* incl. log entries for these warnings
|
||||
*/
|
||||
div.mw-warning-with-logexcerpt {
|
||||
padding: 3px;
|
||||
margin-bottom: 3px;
|
||||
border: 2px solid #2F6FAB;
|
||||
}
|
||||
div.mw-warning-with-logexcerpt ul li {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
/* (show/hide) revision deletion links */
|
||||
span.mw-revdelundel-link,
|
||||
strong.mw-revdelundel-link {
|
||||
font-family: monospace;
|
||||
font-size: smaller
|
||||
}
|
BIN
web/webfiles/img/Cross.png
Executable file
After Width: | Height: | Size: 1,002 B |
BIN
web/webfiles/img/Tick.png
Executable file
After Width: | Height: | Size: 871 B |
BIN
web/webfiles/img/Unknown.png
Executable file
After Width: | Height: | Size: 1.3 KiB |
BIN
web/webfiles/img/gnu-fdl.png
Executable file
After Width: | Height: | Size: 1.7 KiB |
BIN
web/webfiles/img/hydra_pass.jpg
Executable file
After Width: | Height: | Size: 34 KiB |
BIN
web/webfiles/img/hydra_start.jpg
Executable file
After Width: | Height: | Size: 49 KiB |
BIN
web/webfiles/img/hydra_target.jpg
Executable file
After Width: | Height: | Size: 28 KiB |
BIN
web/webfiles/img/xhydra.png
Executable file
After Width: | Height: | Size: 213 KiB |
BIN
web/xhydra.png
Executable file
After Width: | Height: | Size: 213 KiB |