motto / wp-scan
Scan a URL to detect and retrieve WordPress data.
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 3
pkg:composer/motto/wp-scan
Requires
- guzzlehttp/guzzle: ^6.5
- spatie/ssl-certificate: ^1.19
This package is auto-updated.
Last update: 2025-10-20 03:00:49 UTC
README
Scan a URL to detect and retrieve WordPress data.
Checks
To date, only two types of checks are done: endpoints
and version
You can modify the checks by passing in the configuration to the constructor or using the check()
method:
$checks = ['endpoints'=>false, 'version' => true]; $scan = new WpScan($url, $checks); // OR $scan = new WpScan($url); $scan->checks($checks);
Usage
Run your checks with $scan->run()
and retrieve your results with $scan->get()
. You can also retrieve as Json with $scan->json()
.