Download .zip |
Info | Example | View files (5) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2018-12-06 (5 days ago) | Not yet rated by the users | Total: Not yet counted | Not yet ranked |
Version | License | PHP version | Categories | |||
wbm-scrapper 1.0 | MIT/X Consortium ... | 5 | PHP 5, Web services |
Description | Author | |
This package can get past versions of pages from Wayback Machine. |
=========================================
A small Php package to fetch archive url snapshots from archive.org. using it you can fetch complete list of snapshot urls of any year or complete list of all years possible. This package can be used to do recon of any target.
Install the package through composer:
composer require dawood/wmb-scrapper
Make sure, that you include the composer autoloader somewhere in your codebase.
There are several examples provided in examples folder too.
include "vendor/autoload.php";
use dawood\WBMScrapper\WBMScrapper;
$url = 'https://github.com/';
$firstSnapShotYear = WBMScrapper::firstSnapshotYear($url);
$lastSnapShotYear = WBMScrapper::lastSnapshotYear($url);
echo $lastSnapShotYear .PHP_EOL;
echo $firstSnapShotYear.PHP_EOL;
include "vendor/autoload.php";
use dawood\WBMScrapper\WBMScrapper;
$url = 'https://github.com/';
$snapshotsOf2012 = WBMScrapper::getSnapShotUrlsOfYear($url, 2012);
print_r(snapshotsOf2012 );
//outputs list of urls of waybackmachin snapshots
e.g
https://web.archive.org/web/20091226225818/http://www.github.com/
include "vendor/autoload.php";
use dawood\WBMScrapper\WBMScrapper;
$url = 'https://github.com/';
$allSnapshots = WBMScrapper::getAllSnapShotUrls($url);
print_r($allSnapshots);
//outputs a complete list of urls of waybackmachin snapshots
e.g
https://web.archive.org/web/20091226225818/http://www.github.com/
The WMB Scrapper is open-sourced software licensed under the MIT license.
Thanks to all of the contributors ,
Dawood Ikhlaq and Open source community
Files |
File | Role | Description | ||
---|---|---|---|---|
examples (1 file) | ||||
src (1 file) | ||||
composer.json | Data | Auxiliary data | ||
index.php | Aux. | Auxiliary script | ||
README.md | Doc. | Documentation |
Version Control | Unique User Downloads | |||||||
100% |
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.