wpscan_analyze
Analyzes WordPress sites for security vulnerabilities using WPScan to identify plugin, theme, and core weaknesses for bug bounty assessments.
Instructions
Execute WPScan for WordPress vulnerability analysis.
Args: url: WordPress site URL enumerate: Enumeration options (ap=all plugins, at=all themes, etc.) update: Update WPScan database random_user_agent: Use random User-Agent api_token: WPVulnDB API token threads: Number of threads additional_args: Additional WPScan arguments
Returns: WordPress vulnerability analysis results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
additional_args | No | ||
api_token | No | ||
enumerate | No | ap,at,cb,dbe | |
random_user_agent | No | ||
threads | No | ||
update | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"additional_args": {
"default": "",
"title": "Additional Args",
"type": "string"
},
"api_token": {
"default": "",
"title": "Api Token",
"type": "string"
},
"enumerate": {
"default": "ap,at,cb,dbe",
"title": "Enumerate",
"type": "string"
},
"random_user_agent": {
"default": true,
"title": "Random User Agent",
"type": "boolean"
},
"threads": {
"default": 5,
"title": "Threads",
"type": "integer"
},
"update": {
"default": true,
"title": "Update",
"type": "boolean"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}