motto/wp-scan

Scan a URL to detect and retrieve WordPress data.

0.1.1 2020-05-27 19:14 UTC

This package is auto-updated.

Last update: 2024-04-19 23:49:55 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().