Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions README
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_
| | version 0.2.0
| | version 0.3.1
___ ___| |_ __ ___ __ _ _ __
/ __/ __| | '_ ` _ \ / _` | '_ \
\__ \__ \ | | | | | | (_| | |_) |
Expand All @@ -12,15 +12,19 @@ The latest version of this document can be obtained from http://thesprawl.org/pr

SSLMap is a lightweight TLS/SSL cipher suite scanner. The tool was designed to meet the need of a simple but reliable way to detect weak ciphers suites enabled on SSL endpoints. SSLMap uses a custom SSL engine to avoid unnecessary limitations imposed by existing libraries, as a result it is capable of detecting uncommon cipher suites (e.g. GOST).

Python2 version was developed by iphelix
Python3 version was ported by daihaminkey

Sample Session
==============

Let's run a sample scan against *thesprawl.org*:

$ python sslmap.py --host thesprawl.org
$ python sslmap_python2.py --host thesprawl.org
$ python sslmap_python3.py --host thesprawl.org

_
| | version 0.2.0
| | version 0.3.1
___ ___| |_ __ ___ __ _ _ __
/ __/ __| | '_ ` _ \ / _` | '_ \
\__ \__ \ | | | | | | (_| | |_) |
Expand Down Expand Up @@ -110,7 +114,8 @@ Help Screen

The help screen shows a brief outline of tool's functionality:

Usage: sslmap.py [options]
Usage: sslmap_python2.py [options]
sslmap_python3.py [options]

Options:
-h, --help show this help message and exit
Expand All @@ -127,7 +132,7 @@ The help screen shows a brief outline of tool's functionality:
--db=ciphers.csv external cipher suite database. DB Format:
cipher_id,name,protocol,Kx,Au,Enc,Bits,Mac,Auth
Strength,Enc Strength,Overall Strength
Usage: sslmap.py [options]
Usage: sslmap_python2.py [options]

Fuzzing
=======
Expand Down
Loading