OXO is a security scanning framework built for modularity, scalability, and simplicity.
OXO Engine combines specialized tools to work cohesively to find vulnerabilities and perform actions like recon, enumeration, and fingerprinting.
- Modular & Scalable: Easily combine multiple specialized agents to perform comprehensive scans.
- Broad Asset Support: Scan anything from IP addresses and domains to mobile applications (Android, iOS, HarmonyOS) and API schemas.
- Agent Store: Access a growing library of community and official agents for popular security tools.
- Extensible: Built-in support for creating and publishing your own agents using a simple Python-based framework.
- API First: Features a GraphQL API for easy integration into CI/CD pipelines and other automated workflows.
Docker is required to run scans locally. To install Docker, please follow these instructions.
OXO ships as a Python package on PyPI. To install it, simply run the following command if you have pip already
installed.
pip install -U ostorlabOXO ships with a store that boasts dozens of agents, from network scanning agents like Nmap, Nuclei, or Tsunami, web scanners like ZAP, web fingerprinting tools like WhatWeb and Wappalyzer, DNS brute-forcing tools like Subfinder and Dnsx, malware file scanning like VirusTotal, and much more.
To run any of these tools combined, simply run the following command:
OXO CLI is accessible using the
oxoorostorlabcommands.
oxo scan run --install --agent agent/ostorlab/nmap --agent agent/ostorlab/tsunami --agent agent/ostorlab/nuclei ip 8.8.8.8This command will download and install the following scanning agents:
It will scan the target IP address 8.8.8.8.
Agents are shipped as standard Docker images.
To check the scan status, run:
oxo scan listOnce the scan has completed, to access the scan results, run:
oxo vulnz list --scan-id <scan-id>
oxo vulnz describe --vuln-id <vuln-id>To stop a running scan, run:
oxo scan stop --scan-id <scan-id>To run oxo in a container, you may use the publicly available image and run the following command:
docker run -v /var/run/docker.sock:/var/run/docker.sock ostorlab/oxo:latest scan run --install --agent agent/ostorlab/nmap ip 8.8.8.8Notes:
- The command starts directly with:
scan run, this is because theostorlab/oxoimage hasoxoas anentrypoint. - It is important to mount the Docker socket so OXO can create agents on the host machine.
When running OXO as an on-prem scanner, use --persist-logs to write scanner logs to disk:
oxo scanner --scanner-id <scanner-uuid> --persist-logsBy default, logs are written to ~/.ostorlab/scanner.log. To choose another file:
oxo scanner --scanner-id <scanner-uuid> --persist-logs --log-file /var/log/ostorlab/scanner.logTo change the persisted log verbosity:
oxo scanner --scanner-id <scanner-uuid> --persist-logs --log-level DEBUGOXO supports scanning multiple asset types, allowing for comprehensive security coverage across different platforms and protocols.
| Category | Asset | Description |
|---|---|---|
| Network | ip |
IP address or IP range (v4 and v6). |
domain-name |
Domain name. | |
| Web | link |
Web link, accepting a URL, method, headers, and request body. |
api-schema |
API schema (OpenAPI, GraphQL, etc.). | |
| Mobile | android-apk / android-aab |
Android package files (.APK, .AAB). |
android-store |
Android app in the Google Play Store. | |
ios-ipa |
iOS package file (.IPA). | |
ios-store |
iOS app in the Apple App Store. | |
ios-testflight |
iOS app in TestFlight. | |
harmonyos-apk / harmonyos-hap |
HarmonyOS package files. | |
| Other | file |
Generic file. |
phone-number |
Phone number. | |
agent |
Meta-scanning of an agent. |
OXO lists all agents on a public store where you can search and also publish your own agents.
To write your first agent, you can check out a full tutorial here.
The steps are basically as follows:
- Clone a template agent with all files already set up.
- Change the
template_agent.pyfile to add your logic. - Change the
Dockerfileby adding any extra building steps. - Change the
ostorlab.yamlby adding selectors, documentation, image, and license. - Publish it on the store.
Once you have written your agent, you can publish it on the store for others to use and discover it. The store will handle agent building and will automatically pick up new releases from your Git repo.
Implementations of popular tools such as:
semgrep for source code scanning.- nbtscan: Scans for open NetBIOS name servers on your target’s network.
- onesixtyone: Fast scanner to find publicly exposed SNMP services.
- Retire.js: Scanner detecting the use of JavaScript libraries with known vulnerabilities.
snallygaster: Finds file leaks and other security problems on HTTP servers.- testssl.sh: Identifies various TLS/SSL weaknesses, including Heartbleed, CRIME, and ROBOT.
TruffleHog: Searches through Git repositories for high-entropystrings and secrets, digging deep into commit history.- cve-bin-tool: Scans binaries for vulnerable components.
- XSStrike: XSS web vulnerability scanner with generative payload.
Subjack: Subdomain takeover scanning tool.- DnsReaper: Subdomain takeover scanning tool.
- Gitleaks: SAST tool for detecting and preventing hardcoded secrets.
- ffuf: Fast web fuzzer written in Go.
- Gobuster: Tool used to brute-force URIs, DNS subdomains, and more.
As an open-source project in a rapidly developing field, we are always open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.
We would like to thank the following contributors for their help in making OXO a better tool:


