This skill provides tools and guidance to perform basic vulnerability assessments on web applications. It focuses on identifying common security weaknesses such as SQL injection, exposed network ports, and misconfigurations discoverable via browser developer tools.
Use the port_scanner.py script to check for open ports on a target host. This helps in identifying services that might be unintentionally exposed.
python3 /home/ubuntu/skills/vulnerability-scanner/scripts/port_scanner.py <host> <port1> [port2 ...]
Example:
python3 /home/ubuntu/skills/vulnerability-scanner/scripts/port_scanner.py example.com 80 443 22
Employ the sql_injector.py script to perform a basic SQL injection test on a specified URL parameter. This script appends a common SQL injection payload and reports potential vulnerabilities.
python3 /home/ubuntu/skills/vulnerability-scanner/scripts/sql_injector.py <url> <parameter_name>
Example:
python3 /home/ubuntu/skills/vulnerability-scanner/scripts/sql_injector.py https://www.example.com/products search_query
Refer to the devtools_issues.md guide for instructions on how to manually inspect a website using browser developer tools to uncover security misconfigurations or exposed sensitive information.
/home/ubuntu/skills/vulnerability-scanner/references/devtools_issues.md for detailed steps on checking for exposed API keys, insecure communications, client-side validation bypasses, and more.This skill is designed to be fully compatible with OpenClaw. To integrate and use this skill within your OpenClaw environment:
vulnerability-scanner directory into your OpenClaw skills directory (typically ~/.openclaw/workspace/skills/).SKILL.md file will be automatically detected by the OpenClaw agent.共 1 个版本