Skip to content

Commit da37403

Browse files
committed
Update changelog for v0.9
1 parent 0c5aace commit da37403

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
SSLyze Changelog
22
----------------
33

4+
## v0.9
5+
* Experimental support for Heartbleed detection; see --heartbleed. Heartbleed detection has also been added to --regular scans.
6+
* Capped the maximum number of concurrent connections to around 30 per server in order to avoid DOSing the scanned servers. Scans are slightly slower but a lot less aggressive, resulting in better scan results with less timeout and connection errors
7+
* Support for Basic Authentication when tunneling scans through an HTTPS proxy with --https_tunnel
8+
* Bug fixes for IPv6 and XMPP support
9+
* Updated OpenSSL to 1.0.1g
10+
* Updated the Apple, Microsoft, Mozilla and Java trust stores
11+
* Cleaned up the text output of PluginOpenSSLCipherSuites
12+
13+
414
## v0.8
515
* Additional certificate chain validation using the Apple, Microsoft and Java trust stores in addition to Mozilla's
616
* Added support for StartTLS RDP; see --starttls=rdp

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Key features include:
1616
* Multi-processed and multi-threaded scanning (it's fast)
1717
* SSL 2.0/3.0 and TLS 1.0/1.1/1.2 compatibility
1818
* Performance testing: session resumption and TLS tickets support
19-
* Security testing: weak cipher suites, insecure renegotiation, CRIME and more
19+
* Security testing: weak cipher suites, insecure renegotiation, CRIME, Heartbleed and more
2020
* Server certificate validation and revocation checking through OCSP stapling
2121
* Support for StartTLS handshakes on SMTP, XMPP, LDAP, POP, IMAP, RDP and FTP
2222
* Support for client certificates when scanning servers that perform mutual authentication

plugins/PluginHeartbleed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class HeartbleedSent(SSLHandshakeRejected):
132132

133133
def do_handshake_with_heartbleed(self):
134134
# This is nassl's code for do_handshake() modified to send a heartbleed
135-
# payload that will reveal 1 byte of the server's memory
135+
# payload that will send the heartbleed checking payload
136136
# I copied nassl's code here so I could leave anything heartbleed-related
137137
# outside of the nassl code base
138138
try:

0 commit comments

Comments
 (0)