Skip to main content
Download

Get started with
Pentora

Install Pentora on your favorite platform and start scanning in minutes. Cross-platform support for macOS, Linux, and Windows.

Quick Install

Choose your preferred installation method

Popular
๐Ÿบ

Homebrew

macOS / Linux

brew install pentora
Popular
๐Ÿ‹

Docker

All Platforms

docker run -it pentoraai/pentora scan 192.168.1.1
๐Ÿ“ฆ

apt

Debian / Ubuntu

curl -fsSL https://get.pentora.ai/apt/gpg | sudo gpg --dearmor -o /usr/share/keyrings/pentora.gpg
echo "deb [signed-by=/usr/share/keyrings/pentora.gpg] https://get.pentora.ai/apt stable main" | sudo tee /etc/apt/sources.list.d/pentora.list
sudo apt update && sudo apt install pentora
๐Ÿ“ฆ

yum

RHEL / CentOS / Fedora

sudo tee /etc/yum.repos.d/pentora.repo <<EOF
[pentora]
name=Pentora Repository
baseurl=https://get.pentora.ai/yum/
enabled=1
gpgcheck=1
gpgkey=https://get.pentora.ai/yum/gpg
EOF
sudo yum install pentora
๐ŸชŸ

Windows

Windows

winget install pentora
โฌ‡๏ธ

Binary

Manual Install

# Download from GitHub releases

Quick Start Guide

Get scanning in 3 simple steps

1

Install Pentora

Choose your preferred installation method from above

brew install pentora
2

Verify Installation

Check that Pentora is installed correctly

pentora --version
3

Run Your First Scan

Start scanning a target host

pentora scan 192.168.1.1 --vuln

Usage Examples

Common scanning scenarios to get you started

Basic Port Scan

Scan common ports on a target

pentora scan 192.168.1.1

Custom Port Range

Scan specific port range

pentora scan 192.168.1.1 --ports 1-1000

Service Detection

Detect services and grab banners

pentora scan 192.168.1.1 --service-detection

Vulnerability Scanning

Include CVE matching

pentora scan 192.168.1.1 --vuln

JSON Output

Export results as JSON

pentora scan 192.168.1.1 --output json --file results.json

Multiple Targets

Scan multiple hosts

pentora scan 192.168.1.1,192.168.1.2,192.168.1.3

CIDR Range

Scan entire subnet

pentora scan 192.168.1.0/24

Specific Ports

Scan only specific ports

pentora scan 192.168.1.1 --ports 22,80,443,8080