PHPackages                             dawood/wmb-scrapper - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. dawood/wmb-scrapper

ActiveLibrary[CLI &amp; Console](/categories/cli)

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.

1.1(8y ago)191211[1 PRs](https://github.com/daudmalik06/WMB-Scrapper/pulls)MITPHP

Since Feb 25Pushed 4y ago2 watchersCompare

[ Source](https://github.com/daudmalik06/WMB-Scrapper)[ Packagist](https://packagist.org/packages/dawood/wmb-scrapper)[ RSS](/packages/dawood-wmb-scrapper/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)DependenciesVersions (3)Used By (0)

WMB Scrapper
------------

[](#wmb-scrapper)

=========================================

[![Latest Stable Version](https://camo.githubusercontent.com/d84083118ebca8437607fbf7288c43a1d32d40d12664e014cc8e36d3f28f653b/68747470733a2f2f706f7365722e707567782e6f72672f6461776f6f642f776d622d73637261707065722f762f737461626c652e737667)](https://packagist.org/packages/dawood/wmb-scrapper)[![Total Downloads](https://camo.githubusercontent.com/9f40a6518a1691bea6647d2cd8a90e23815e2c280c3ca0c7b66b79b012561c88/68747470733a2f2f706f7365722e707567782e6f72672f6461776f6f642f776d622d73637261707065722f646f776e6c6f616473)](https://packagist.org/packages/dawood/wmb-scrapper)[![License](https://camo.githubusercontent.com/d0a2b9f066108510ea7546161efae65f3bfaa14ec01c6a84ef7f9082709d58f0/68747470733a2f2f706f7365722e707567782e6f72672f6461776f6f642f776d622d73637261707065722f6c6963656e73652e737667)](https://packagist.org/packages/dawood/wmb-scrapper)

Introduction
------------

[](#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.**

Installation
------------

[](#installation)

Install the package through [composer](http://getcomposer.org):

```
composer require dawood/wmb-scrapper

```

Make sure, that you include the composer [autoloader](https://getcomposer.org/doc/01-basic-usage.md#autoloading)somewhere in your codebase.

Examples
--------

[](#examples)

There are several examples provided in examples folder too.

### Get first/last snapshot year of domain

[](#get-firstlast-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

[](#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

[](#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
-------

[](#license)

The **WMB Scrapper** is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

Contribution
------------

[](#contribution)

Thanks to all of the contributors ,

Author
------

[](#author)

Dawood Ikhlaq and Open source community

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~2 days

Total

2

Last Release

2994d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6933433cb8dc85ee0936f982f9f5c60a57563e4a61ff01fbe84e8334fdf57ab7?d=identicon)[daudmalik06](/maintainers/daudmalik06)

---

Top Contributors

[![daudmalik06](https://avatars.githubusercontent.com/u/3526480?v=4)](https://github.com/daudmalik06 "daudmalik06 (7 commits)")

---

Tags

hackinghacking-toolphpreconsnapshotsnapshot-urlswayback-archiverwayback-machinewmb-scrapperphpshellsnapshotswayBackMachinearchive.org

### Embed Badge

![Health badge](/badges/dawood-wmb-scrapper/health.svg)

```
[![Health](https://phpackages.com/badges/dawood-wmb-scrapper/health.svg)](https://phpackages.com/packages/dawood-wmb-scrapper)
```

###  Alternatives

[seregazhuk/php-watcher

Automatically restart PHP application once the source code changes

394137.8k4](/packages/seregazhuk-php-watcher)[alecrabbit/php-console-spinner

Extremely flexible spinner for \[async\] php cli applications

24032.0k2](/packages/alecrabbit-php-console-spinner)[dawood/phpchromepdf

A slim PHP wrapper around google-chrome to convert url to pdf or to take screenshots , easy to use and clean OOP interface

14980.5k](/packages/dawood-phpchromepdf)[ollyxar/php-malware-detector

PHP malware detector

12926.4k](/packages/ollyxar-php-malware-detector)[jyxo/php

Jyxo PHP Library

6460.8k](/packages/jyxo-php)[dawood/phpscreenrecorder

A slim PHP wrapper around ffmpeg to record screen,best for recording your acceptance test using selenium, easy to use and clean OOP interface

501.5k](/packages/dawood-phpscreenrecorder)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
