penta: Open source all-in-one CLI tool to automate pentesting

automate pentesting

Penta (PENTest + Automation tool)

Penta is a Pentest automation tool using Python3.

Main menu

  1. Port scanning
    To check ports for a target. Log output supported.
  2. Nmap
    To check ports by additional means using nmap
  3. Check HTTP option methods
    To check the methods (e.g. GET, POST) for a target.
  4. Grab DNS server info
    To show the info about DNS server.
  5. Shodan host search To collect host service info from Shodan. Request Shodan API key to enable the feature.
  6. FTP connect with anonymous To check if it has anonymous access activated in port 21. FTP users can authenticate themselves using the plain text sign-in protocol (Typically username and password format), but they can connect anonymously if the server is configured to allow it. Anyone can log in to the server if the administrator has allowed an FTP connection with anonymous login.
  7. SSH connect with Brute Force To check ssh connection to scan with Brute Force. Dictionary data is in data/dict.

Install

git clone https://github.com/takuzoo3868/penta.git
pip install -r requirements.txt

Use

$ pipenv run start -h

usage: penta.py [-h] [-target TARGET] [-ports PORTS] [-proxy PROXY]

Penta is Pentest automation tool

optional arguments:
-h, --help show this help message and exit
-target TARGET Specify target IP / domain
-ports PORTS Please, specify the target port(s) separated by comma.
Default: 21,22,25,80,110,443,8080
-proxy PROXY Proxy[IP:PORT]

Copyright (c) 2019 takuzoo

Source: https://github.com/takuzoo3868/