2017 © Pedro Peláez
 

library wmb-scrapper

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 orcomplete list of all years possible.This package can be used to do recon of any target.

image

dawood/wmb-scrapper

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 orcomplete list of all years possible.This package can be used to do recon of any target.

  • Tuesday, February 27, 2018
  • by daudmalik06
  • Repository
  • 1 Watchers
  • 5 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 17 % Grown

The README.md

WMB Scrapper

=========================================, (*1)

Latest Stable Version Total Downloads License, (*2)

Introduction

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., (*3)

Installation

Install the package through composer:, (*4)

composer require dawood/wmb-scrapper

Make sure, that you include the composer autoloader somewhere in your codebase., (*5)

Examples

There are several examples provided in examples folder too., (*6)

Get first/last snapshot year of domain

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;

Get snapshots of any year of domain

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/

Get snapshots of all years of domain

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/

License

The WMB Scrapper is open-sourced software licensed under the MIT license., (*7)

Contribution

Thanks to all of the contributors ,, (*8)

Author

Dawood Ikhlaq and Open source community, (*9)

The Versions

27/02 2018

dev-master

9999999-dev

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 orcomplete list of all years possible.This package can be used to do recon of any target.

  Sources   Download

MIT

by Dawood Ikhlaq

php shell snapshots archive.org waybackmachine

27/02 2018

1.1

1.1.0.0

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 orcomplete list of all years possible.This package can be used to do recon of any target.

  Sources   Download

MIT

by Dawood Ikhlaq

php shell snapshots archive.org waybackmachine

25/02 2018

1.0

1.0.0.0

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 orcomplete list of all years possible.This package can be used to do recon of any target.

  Sources   Download

MIT

The Requires

  • php ^7.0

 

by Dawood Ikhlaq

php shell snapshots archive.org waybackmachine