Metadata-Version: 2.4
Name: pentest_tls
Version: 0.1.10
Summary: A collection of Python pentest tools
Author-email: Owen Liu <abcd0112014@gmail.com>
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyfiglet>=1.0
Requires-Dist: argparse
Requires-Dist: scapy
Dynamic: license-file

# pentest_tls  

Multiple lightweight pentest tools written in Python  

## Installation
- Installed by pip/pip3 (recommended)
```
pip install pentest-tls
```

## Usage
- ***pentest_tls IP OPTIONS***  

```
IP
    IPv4 address, E.g. 192.168.2.3, this field is required
OPTIONS
    -t, --type. E.g. PS(for port scanner), this field is required
    -p, --ports. E.g. 80,443,8000-8080, this field is optional
```  

- **Basic Usage**  

```
pentest_tls 127.0.0.1 -t PS
pentest_tls 127.0.0.1 -t PS -p 80,443
pentest_tls 127.0.0.1 -t PS -p 8000-8080
pentest_tls 127.0.0.1 -t PS -p 80,443,8000-8080
```

- Help Menu
```
pentest_tls --help
pentest_tls -h
```
