kirei / sslyze

Fast and full-featured SSL scanner
GNU General Public License v2.0
4 stars 0 forks source link

handling https when using starttls=auto #12

Closed secworks closed 11 years ago

secworks commented 11 years ago

There is a bug runnng --starttls=auto with https.

Example: python sslyze.py --certinfo=basic --regular --starttls=auto www.kirei.se:443

Result: Unhandled exception when processing --compression: exceptions.KeyError - 443

Unhandled exception when processing --reneg: exceptions.KeyError - 443

Unhandled exception when processing --certinfo: exceptions.KeyError - 443

Unhandled exception when processing --tlsv1_2: exceptions.IndexError - tuple index out of range

Unhandled exception when processing --sslv2: exceptions.IndexError - tuple index out of range

Unhandled exception when processing --tlsv1: exceptions.IndexError - tuple index out of range

Unhandled exception when processing --tlsv1_1: exceptions.IndexError - tuple index out of range

Unhandled exception when processing --sslv3: exceptions.IndexError - tuple index out of range

A lot of things that breaks for some reason. There is a new branc - auto_www_bug used to solve this.

secworks commented 11 years ago

Fixed in https://github.com/kirei/sslyze/commit/29084d9e1cea3930a9068289d4502d0d989764b5

Merging.