Skip to main content
The /web command is currently in alpha and should be considered a stub. It is not yet fully implemented and should not be relied upon for production security testing.

Overview

The /web command performs security scanning on web applications to detect OWASP Top 10 vulnerabilities. It’s an alias for /raptor-web and provides automated web application security testing.

Syntax

Parameters

string
required
Full URL of the web application to scan (e.g., https://example.com)
string
Authentication token for authenticated scanning (e.g., Bearer token)
integer
Maximum depth for web crawler (default: 3)
integer
Maximum number of pages to scan

What It Does

  1. Crawls the target web application
  2. Identifies injection points and attack surfaces
  3. Tests for OWASP Top 10 vulnerabilities
  4. Generates detailed vulnerability reports
  5. Provides remediation guidance

Examples

Basic Web Scan

Scans a public web application.

Authenticated Scan

Scans with authentication credentials.

Limited Scope Scan

Limits scan scope for faster results.

Vulnerability Types Detected

  • Injection: SQL injection, command injection, LDAP injection
  • Broken Authentication: Session management issues
  • Sensitive Data Exposure: Unencrypted data transmission
  • XML External Entities (XXE): XML parsing vulnerabilities
  • Broken Access Control: Authorization bypass
  • Security Misconfiguration: Server misconfigurations
  • Cross-Site Scripting (XSS): Reflected, stored, DOM-based
  • Insecure Deserialization: Object injection
  • Using Components with Known Vulnerabilities: Outdated libraries
  • Insufficient Logging & Monitoring: Security logging gaps

Output Structure

Use Cases

  • Web application security auditing
  • OWASP Top 10 compliance testing
  • Pre-production security validation
  • Bug bounty reconnaissance

Ethical Usage

Only scan applications you own or have explicit written permission to test.Unauthorized security testing is illegal and unethical. Always:
  • Obtain written authorization
  • Respect scope limitations
  • Follow responsible disclosure practices
  • Comply with applicable laws and regulations

/scan

Static analysis for source code

/validate

Validate exploitability of findings

/exploit

Generate exploit PoCs

/patch

Generate security patches

Notes

  • This command is currently in alpha development
  • Results are saved to out/web_scan_<timestamp>/
  • For defensive security research and authorized testing only
  • Always follow responsible disclosure practices