Quick Install
Choose your preferred installation method
Popular
๐บ
Homebrew
macOS / Linux
brew install pentoraPopular
๐
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 releasesDirect Downloads
Download pre-compiled binaries for your platform
๐ง
Linux
๐ช
Windows
Quick Start Guide
Get scanning in 3 simple steps
1
Install Pentora
Choose your preferred installation method from above
brew install pentora2
Verify Installation
Check that Pentora is installed correctly
pentora --version3
Run Your First Scan
Start scanning a target host
pentora scan 192.168.1.1 --vulnUsage Examples
Common scanning scenarios to get you started
Basic Port Scan
Scan common ports on a target
pentora scan 192.168.1.1Custom Port Range
Scan specific port range
pentora scan 192.168.1.1 --ports 1-1000Service Detection
Detect services and grab banners
pentora scan 192.168.1.1 --service-detectionVulnerability Scanning
Include CVE matching
pentora scan 192.168.1.1 --vulnJSON Output
Export results as JSON
pentora scan 192.168.1.1 --output json --file results.jsonMultiple Targets
Scan multiple hosts
pentora scan 192.168.1.1,192.168.1.2,192.168.1.3CIDR Range
Scan entire subnet
pentora scan 192.168.1.0/24Specific Ports
Scan only specific ports
pentora scan 192.168.1.1 --ports 22,80,443,8080