Skip to content

Osmedeus

Fully automated offensive security framework

Description

Osmedeus is a comprehensive offensive security framework that automates the entire recon and vulnerability scanning pipeline. It orchestrates multiple tools (subfinder, httpx, nuclei, nmap, etc.) into configurable workflows, making it a one-command solution for thorough target assessment.

Installation

BASH
# Recommended: install script
bash <(curl -fsSL https://raw.githubusercontent.com/j3ssie/osmedeus/main/install.sh)

# From source
go install github.com/j3ssie/osmedeus@latest
osmedeus health

Basic Usage

BASH
# Full reconnaissance scan
osmedeus scan -t target.com

# Quick scan (faster, fewer checks)
osmedeus scan -f fast -t target.com

# Scan from target list
osmedeus scan -T targets.txt

Advanced Usage

BASH
# Specific workflow
osmedeus scan -f general -t target.com
osmedeus scan -f subdomain -t target.com
osmedeus scan -f vuln -t target.com

# Custom concurrency
osmedeus scan -t target.com -c 30

# Resume previous scan
osmedeus scan -t target.com --resume

# Custom output
osmedeus scan -t target.com -o /path/to/output/

# View results
osmedeus report view -t target.com

Common Workflows

BASH
# Full automated assessment
osmedeus scan -t target.com -f general

# Bug bounty — scan program scope
echo -e "target1.com\ntarget2.com\ntarget3.com" > scope.txt
osmedeus scan -T scope.txt -f general

# Review results
osmedeus report view -t target.com