Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamesconlan96/tssl
A wrapper around testssl.sh and aha to aid in TLS/SSL testing
https://github.com/jamesconlan96/tssl
aha pentesting ssl testssl tls
Last synced: 4 days ago
JSON representation
A wrapper around testssl.sh and aha to aid in TLS/SSL testing
- Host: GitHub
- URL: https://github.com/jamesconlan96/tssl
- Owner: JamesConlan96
- Created: 2024-02-20T10:09:28.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-29T09:15:45.000Z (9 months ago)
- Last Synced: 2024-02-29T18:57:33.567Z (9 months ago)
- Topics: aha, pentesting, ssl, testssl, tls
- Language: Python
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TSSL
A wrapper around testssl.sh and aha to aid in TLS/SSL testing
## Usage
~~~
usage: tssl [-h] [-d DIRECTORY] [-e] [-f FILE] [-H HEADER] [-l LABEL] [-o | -s] [-t TIMEOUT] [-u URL] [-v] [-z]options:
-h, --help show this help message and exit
-d DIRECTORY, --directory DIRECTORY
directory to save output to instead of the current working directory
-e, --encrypt compress output directory into an AES256 encrypted zip archive (includes existing files)
-f FILE, --file FILE newline delimited file containing URLs to scan (can be specified multiple times per command)
-H HEADER, --header HEADER
HTTP header to add to all requests in the form ': ' (can be specified multiple times per command)
-l LABEL, --label LABEL
add a label to output files
-o, --overwrite overwrite existing results
-s, --skip skip targets for which matching output files already exist
-t TIMEOUT, --timeout TIMEOUT
number of seconds a scan has to hang for in order to time out (default: 60)
-u URL, --url URL URL to scan (can be specified multiple times per command)
-v, --verbose display verbose output
-z, --zip compress output directory into an unencrypted zip archive (includes existing files)
~~~## Installation
### Pipx (recommended)
~~~
pipx install 'git+https://github.com/JamesConlan96/tssl.git'
~~~### Docker
Note that the following is a guideline only and you may need to adjust the docker commands to fit your use case:
~~~
docker build -t tssl 'https://github.com/JamesConlan96/tssl.git#main' --network=host
docker run -it -v "$(pwd)/test:/tssl_out" --network=host tssl
~~~## Requirements
- testssl.sh
- aha
- A web browser (not supported when running with Docker)