The pentester's swiss knife.
Project description
The pentester's swiss knife.
Features • Supported commands • Installation • Usage • Documentation • Join us on Discord !
secator is a task and workflow runner used for security assessments. It supports dozens of well-known security tools
and it is designed to improve productivity for pentesters and security researchers.
Features
-
Curated list of commands
-
Unified input options
-
Unified output schema
-
CLI and library usage
-
Distributed options with Celery
-
Complexity from simple tasks to complex workflows
-
Customizable
Supported tools
secator integrates the following tools:
| Name | Description | Category |
|---|---|---|
| arjun | HTTP Parameter Discovery Suite. | url/fuzz/params |
| arp | Display the system ARP cache. | ip/recon |
| arpscan | Scan a CIDR range for alive hosts using ARP. | ip/recon |
| bbot | Multipurpose scanner. | vuln/scan |
| bup | 40X bypasser. | url/bypass |
| cariddi | Crawl endpoints, secrets, api keys, extensions, tokens... | url/crawl |
| dalfox | Powerful open source XSS scanning tool. | url/fuzz |
| dirsearch | Advanced web path brute-forcer. | url/fuzz |
| dnsx | dnsx is a fast and multi-purpose DNS toolkit designed for running various retryabledns library. | dns/fuzz |
| feroxbuster | Simple, fast, recursive content discovery tool written in Rust | url/fuzz |
| ffuf | Fast web fuzzer written in Go. | url/fuzz |
| fping | Send ICMP echo probes to network hosts, similar to ping, but much better. | ip/recon |
| gau | Fetch known URLs from AlienVault's Open Threat Exchange, the Wayback Machine, Common Crawl, and URLScan. | pattern/scan |
| getasn | Get ASN information from IP address. | ip/probe |
| gf | Wrapper around grep, to help you grep for things. | pattern/scan |
| gitleaks | Tool for detecting secrets like passwords, API keys, and tokens in git repos, files, and stdin. | secret/scan |
| gospider | Fast web spider written in Go. | url/crawl |
| grype | Vulnerability scanner for container images and filesystems. | vuln/scan |
| h8mail | Email information and password lookup tool. | user/recon/email |
| httpx | Fast and multi-purpose HTTP toolkit. | url/probe |
| jswhois | WHOIS in JSON format | domain/info |
| katana | Next-generation crawling and spidering framework. | url/crawl |
| maigret | Collect a dossier on a person by username. | user/recon/username |
| mapcidr | Utility program to perform multiple operations for a given subnet/cidr ranges. | ip/recon |
| msfconsole | CLI to access and work with the Metasploit Framework. | exploit/attack |
| naabu | Port scanning tool written in Go. | port/scan |
| nmap | Network Mapper is a free and open source utility for network discovery and security auditing. | port/scan |
| nuclei | Fast and customisable vulnerability scanner based on simple YAML based DSL. | vuln/scan |
| search_vulns | Search for known vulnerabilities in software by product name or CPE. | vuln/recon |
| searchsploit | Exploit searcher based on ExploitDB. | exploit/recon |
| sshaudit | SSH server & client security auditing (banner, key exchange, encryption, mac, compression, etc). | ssh/audit/security |
| subfinder | Fast passive subdomain enumeration tool. | dns/recon |
| testssl | SSL/TLS security scanner, including ciphers, protocols and cryptographic flaws. | dns/recon/tls |
| trivy | Comprehensive and versatile security scanner. | vuln/scan |
| trufflehog | Tool for finding secrets in git repositories and filesystems using TruffleHog. | secret/scan |
| urlfinder | Find URLs in text. | pattern/scan |
| wafw00f | Web Application Firewall Fingerprinting tool. | waf/scan |
| whois | The whois tool retrieves registration information about domain names and IP addresses. | |
| wpprobe | Fast wordpress plugin enumeration tool. | vuln/scan/wordpress |
| wpscan | Wordpress security scanner. | vuln/scan/wordpress |
| x8 | Hidden parameters discovery suite written in Rust. | url/fuzz/params |
| xurlfind3r | Discover URLs for a given domain in a simple, passive and efficient way | url/recon |
Feel free to request new tools to be added by opening an issue, but please
check that the tool complies with our selection criterias before doing so. If it doesn't but you still want to integrate it into secator, you can plug it in (see the dev guide).
Installing secator
Bash
bash -c "$(curl -fsSL https://raw.githubusercontent.com/freelabz/secator/main/scripts/install_universal.sh)"
Pip
pip install secator
Docker
docker run -it --rm --net=host -v ~/.secator:/root/.secator freelabz/secator --help
The volume mount -v is necessary to save all secator reports to your host machine, and--net=host is recommended to grant full access to the host network.
You can alias this command to run it easier:
alias secator="docker run -it --rm --net=host -v ~/.secator:/root/.secator freelabz/secator"
Now you can run secator like if it was installed on baremetal:
secator --help
Docker Compose
git clone https://github.com/freelabz/secator
cd secator
docker-compose up -d
docker-compose exec secator-client secator --help
Note: If you chose the Docker or Docker Compose installation methods, you can skip the next sections and go straight to Usage.
Usage
secator --help
Usage examples
To get a complete cheatsheet of what you can do with secator, please read the output of:
secator cheatsheet
Run a fuzzing task (ffuf):
secator x ffuf http://testphp.vulnweb.com/FUZZ
Run a url crawl workflow:
secator w url_crawl http://testphp.vulnweb.com
Run a host scan:
secator s host mydomain.com
To list all tasks / workflows / scans that you can use:
secator x --help
secator w --help
secator s --help
To figure out which languages or tools are installed on your system (along with their version):
secator health
Shell completion
secator supports shell completion for bash, zsh, and fish. This provides auto-completion for:
- Task names (e.g.,
nmap,httpx,nuclei) - Workflow names (e.g.,
url_crawl,subdomain_recon) - Scan names (e.g.,
host,domain,network) - CLI options like
--profiles,--workspace,--driver,--output
To install shell completion:
Bash:
secator util completion --shell bash --install
source ~/.bashrc
Zsh:
secator util completion --shell zsh --install
source ~/.zshrc
Fish:
secator util completion --shell fish --install
After installation, you can use tab completion:
secator task n<TAB> # completes to nmap, naabu, nuclei, etc.
secator w url_<TAB> # completes to url_crawl, url_fuzz, url_dirsearch, etc.
secator x nmap --profiles ag<TAB> # completes to aggressive
Installing tools
secator auto-installs tools when you first use them.
You can prevent this behavior by setting security.autoinstall_commands to false using either secator config set security.autoinstall_commands false or SECATOR_SECURITY_AUTOINSTALL_COMMANDS=0.
To install all tools, you can still run:
secator install tools
Installing addons
Addons are available for secator, please check our docs for details.
For instance, using the mongodb addon allows you to send runner results to MongoDB.
Learn more
To go deeper with secator, check out:
- Our complete documentation
- Our getting started tutorial video
- Our Medium post
- Follow us on social media: @freelabz on Twitter and @FreeLabz on YouTube
Stats
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file secator-0.25.7.tar.gz.
File metadata
- Download URL: secator-0.25.7.tar.gz
- Upload date:
- Size: 286.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.3 cpython/3.12.3 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c8dd5cb1e789e5cbefecce1fb943535de1116d61a5ac1c6bfdcac198a78fe46
|
|
| MD5 |
2329555b15fd67c071c73a5878bf162f
|
|
| BLAKE2b-256 |
b021ac5ff52f44a4c88aa179aa743c9e1821413d18fd61d59b89e3f25b02c5f8
|
File details
Details for the file secator-0.25.7-py3-none-any.whl.
File metadata
- Download URL: secator-0.25.7-py3-none-any.whl
- Upload date:
- Size: 272.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.3 cpython/3.12.3 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b022e3f8d07eb3cb92674fff6a73c31bed48184211d5846053a664145ac16c58
|
|
| MD5 |
6fd3da0eb0a15ba059314ffb6aaafcaa
|
|
| BLAKE2b-256 |
b1b1f3203fbd8ab4206836a039b9a549085755d45ffc3d3690da8ec2c3dfd2a4
|