Skip to content

Commit

Permalink
Merge pull request #105 from noraj/noraj/tls-map
Browse files Browse the repository at this point in the history
add tls map
  • Loading branch information
ShutdownRepo authored Feb 26, 2023
2 parents 869df40 + 1776e5e commit 681f8be
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
8 changes: 7 additions & 1 deletion sources/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3228,6 +3228,12 @@ function install_PassTheCert() {
add-test-command "passthecert.py --help"
}

function install_tls-map() {
colorecho "Installing TLS map"
gem install tls-map
add-history tls-map
add-test-command "tls-map --help"

function install_haiti() {
colorecho "Installing haiti"
gem install haiti-hash
Expand Down Expand Up @@ -3803,7 +3809,7 @@ function package_reverse() {
# Package dedicated to attack crypto
function package_crypto() {
# install_rsactftool # attack rsa FIXME
echo "nothing to install"
install_tls-map # CLI & library for mapping TLS cipher algorithm names: IANA, OpenSSL, GnuTLS, NSS
}

# Package dedicated to SAST and DAST tools
Expand Down
11 changes: 11 additions & 0 deletions sources/zsh/history.d/tls-map
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
tls-map search gnutls RSA_ARCFOUR_128_SHA1 --output iana
tls-map search openssl AES128-SHA --output iana
tls-map search iana TLS_DH_RSA_WITH_AES_256_CBC_SHA --output codepoint
tls-map search codepoint 1303
tls-map search nss TLS_AES_256_GCM_SHA384
tls-map search --extended codepoint 0037
tls-map search --extended codepoint 0013 --acronym
tls-map export /tmp/map.min.json json_compact
tls-map extract newwebsite.json ssllabs-scan
tls-map extract test/file_sample/testssl.json testssl --hide-weak
tls-map extract test/file_sample/sslyze.json sslyze --only-weak

0 comments on commit 681f8be

Please sign in to comment.