PHPackages                             steverobbins/magescan - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. steverobbins/magescan

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

steverobbins/magescan
=====================

Scan a Magento application for information

v1.12.9(7y ago)4571.1k110[6 issues](https://github.com/steverobbins/magescan/issues)[2 PRs](https://github.com/steverobbins/magescan/pulls)CC-BY-4.0PHP

Since Mar 12Pushed 6y ago30 watchersCompare

[ Source](https://github.com/steverobbins/magescan)[ Packagist](https://packagist.org/packages/steverobbins/magescan)[ RSS](/packages/steverobbins-magescan/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (6)Versions (63)Used By (0)

Mage Scan
=========

[](#mage-scan)

[![Join the chat at https://gitter.im/steverobbins/magescan](https://camo.githubusercontent.com/abe08b740a4156153736f791393ec4da6619c4be73212e75769f52edacc0e2b5/68747470733a2f2f6261646765732e6769747465722e696d2f4a6f696e253230436861742e737667)](https://gitter.im/steverobbins/magescan?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

[![Master Build Status](https://camo.githubusercontent.com/6cd529a4ec7b14f8f19a0149c8293acc821e94ce14ceae113b0a08b642f551ee/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f7374657665726f6262696e732f6d6167657363616e2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/steverobbins/magescan)[![Master Code Quality](https://camo.githubusercontent.com/9395a3072eeb8a75ed5c5d3037497c2586ede012c73a9b6fb827ece927f6d7bd/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f7374657665726f6262696e732f6d6167657363616e2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/steverobbins/magescan/?branch=master)[![Master Code Coverage](https://camo.githubusercontent.com/a21df526bc1621c70ae7497d422249a2f7f6bb1170519819ae068c8431b7c2de/68747470733a2f2f636f6465636f762e696f2f67682f7374657665726f6262696e732f6d6167657363616e2f6272616e63682f6d61737465722f67726170682f62616467652e737667)](https://codecov.io/gh/steverobbins/magescan)[![Latest Stable Version](https://camo.githubusercontent.com/1142cd79a0505436e875fe6ed2d7f42720005c24a726bec1ee972e900ff0bacc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7374657665726f6262696e732f6d6167657363616e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/steverobbins/magescan)[![Master Dependancies](https://camo.githubusercontent.com/5121d81903284d298a3b3020b032149778ecef1b1f2b3f19cbb7121d2dc79964/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f757365722f70726f6a656374732f3535653462666563386330663632303031633030303035322f62616467652e7376673f7374796c653d666c61742d737175617265)](https://www.versioneye.com/user/projects/55e4bfec8c0f62001c000052)

The idea behind this is to evaluate the quality and security of a Magento site you don't have access to. The scenario when you're interviewing a potential developer or vetting a new client and want to have an idea of what you're getting into.

[![Screenshot](https://camo.githubusercontent.com/9419ed65d315082588a1bb50676aae76790251c0cc24c2680dc2a9cad55a6864/68747470733a2f2f692e696d6775722e636f6d2f48665569454b392e706e67)](https://camo.githubusercontent.com/9419ed65d315082588a1bb50676aae76790251c0cc24c2680dc2a9cad55a6864/68747470733a2f2f692e696d6775722e636f6d2f48665569454b392e706e67)

Installation
============

[](#installation)

### .phar

[](#phar)

- Download the [`magescan.phar` file from the releases page](https://github.com/steverobbins/magescan/releases)
- Run in command line with the `php` command

```
php magescan.phar scan:all www.example.com

```

### Source

[](#source)

- Clone this repository
- Install with composer

```
git clone https://github.com/steverobbins/magescan magescan
cd magescan
curl -sS https://getcomposer.org/installer | php
php composer.phar install
bin/magescan scan:all www.example.com

```

### n98-magerun

[](#n98-magerun)

Clone into your `~/.n98-magerun/modules` directory

```
mkdir -p ~/.n98-magerun/modules
git clone https://github.com/steverobbins/magescan ~/.n98-magerun/modules/magescan
magerun magescan:scan store.example.com

```

### Composer

[](#composer)

```
composer require steverobbins/magescan --dev

```

### Include in your project

[](#include-in-your-project)

Add the following to your `composer.json`

```
"require": {
    "steverobbins/magescan": "dev-master"
}

```

Usage
=====

[](#usage)

```
$ magescan.phar scan:all store.example.com

```

Commands
--------

[](#commands)

### `scan:all`

[](#scanall)

```
$ magescan.phar scan:all [--insecure|-k] [--show-modules]

```

Run all scans on the given ``.

#### Options

[](#options)

##### `--format=FORMAT`

[](#--formatformat)

Specify a different output format. Possible values:

- `default`
- `json`

##### `--insecure`, `-k`

[](#--insecure--k)

If set, SSL certificates won't be validated

##### `--show-modules`

[](#--show-modules)

Lists all modules searched for, not just those found

### `scan:catalog`

[](#scancatalog)

```
$ magescan.phar scan:catalog [--insecure|-k]

```

Get catalog information

### `scan:modules`

[](#scanmodules)

```
$ magescan.phar scan:modules [--insecure|-k] [--show-modules]

```

Get installed modules

### `scan:patch`

[](#scanpatch)

```
$ magescan.phar scan:patch [--insecure|-k]

```

Get patch information

### `scan:server`

[](#scanserver)

```
$ magescan.phar scan:server [--insecure|-k]

```

Check server technology

### `scan:sitemap`

[](#scansitemap)

```
$ magescan.phar scan:sitemap [--insecure|-k]

```

Check sitemap

### `scan:unreachable`

[](#scanunreachable)

```
$ magescan.phar scan:unreachable [--insecure|-k]

```

Check unreachable paths

### `scan:version`

[](#scanversion)

```
$ magescan.phar scan:version [--insecure|-k]

```

Get the version of a Magento installation

Show all modules that we tried to detect, not just those that were found

Disclaimer
==========

[](#disclaimer)

Since we can't see the code base, this tool makes assumptions and takes guesses. Information reported isn't guaranteed to be correct.

For in depth analyses, consider:

- [mageaudit](https://github.com/steverobbins/mageaudit)
- [Magento Project Mess Detector (for n98-magerun)](https://github.com/AOEpeople/mpmd)
- [magniffer](https://github.com/magento-ecg/magniffer)
- [Magento Coding Standard](https://github.com/magento-ecg/coding-standard)
- [magecheck](https://github.com/gknoppe-guidance/magecheck)
- [magento-check](http://www.magentocommerce.com/knowledge-base/entry/how-do-i-know-if-my-server-is-compatible-with-magento)

Support
=======

[](#support)

Please [create an issue](https://github.com/steverobbins/magescan/issues/new) for all bugs and feature requests

Contributing
============

[](#contributing)

Fork this repository and send a pull request to the `dev` branch

License
=======

[](#license)

[Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/)

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity38

Limited adoption so far

Community29

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 91.1% 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 ~24 days

Recently: every ~211 days

Total

59

Last Release

2644d ago

Major Versions

v0.7.7 → v1.02015-05-07

### Community

Maintainers

![](https://www.gravatar.com/avatar/75f626109c9c7bdb7ecbbd6a838ea38d9ed4e014a166f1fa3bbb9fa17f9e1e36?d=identicon)[steverobbins](/maintainers/steverobbins)

---

Top Contributors

[![steverobbins](https://avatars.githubusercontent.com/u/3498562?v=4)](https://github.com/steverobbins "steverobbins (286 commits)")[![rutgerrademaker](https://avatars.githubusercontent.com/u/912316?v=4)](https://github.com/rutgerrademaker "rutgerrademaker (5 commits)")[![pocallaghan](https://avatars.githubusercontent.com/u/708624?v=4)](https://github.com/pocallaghan "pocallaghan (3 commits)")[![colinodell](https://avatars.githubusercontent.com/u/202034?v=4)](https://github.com/colinodell "colinodell (3 commits)")[![dardoguidobono](https://avatars.githubusercontent.com/u/5889242?v=4)](https://github.com/dardoguidobono "dardoguidobono (3 commits)")[![adamlevenson](https://avatars.githubusercontent.com/u/1684237?v=4)](https://github.com/adamlevenson "adamlevenson (2 commits)")[![euperia](https://avatars.githubusercontent.com/u/2648745?v=4)](https://github.com/euperia "euperia (2 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (2 commits)")[![cmuench](https://avatars.githubusercontent.com/u/211294?v=4)](https://github.com/cmuench "cmuench (2 commits)")[![will-b](https://avatars.githubusercontent.com/u/1074708?v=4)](https://github.com/will-b "will-b (1 commits)")[![gitter-badger](https://avatars.githubusercontent.com/u/8518239?v=4)](https://github.com/gitter-badger "gitter-badger (1 commits)")[![gwillem](https://avatars.githubusercontent.com/u/1145479?v=4)](https://github.com/gwillem "gwillem (1 commits)")[![jhoelzl](https://avatars.githubusercontent.com/u/638936?v=4)](https://github.com/jhoelzl "jhoelzl (1 commits)")[![lenlorijn](https://avatars.githubusercontent.com/u/4076882?v=4)](https://github.com/lenlorijn "lenlorijn (1 commits)")[![salt-lick](https://avatars.githubusercontent.com/u/3297736?v=4)](https://github.com/salt-lick "salt-lick (1 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/steverobbins-magescan/health.svg)

```
[![Health](https://phpackages.com/badges/steverobbins-magescan/health.svg)](https://phpackages.com/packages/steverobbins-magescan)
```

###  Alternatives

[shlinkio/shlink

A self-hosted and PHP-based URL shortener application with CLI and REST interfaces

4.8k4.3k](/packages/shlinkio-shlink)[glhd/conveyor-belt

14797.0k](/packages/glhd-conveyor-belt)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)[php-soap/wsdl

Deals with WSDLs

173.5M12](/packages/php-soap-wsdl)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[eliashaeussler/typo3-solver

Extension for TYPO3 CMS to extend TYPO3's exception handling with AI generated solutions

292.1k](/packages/eliashaeussler-typo3-solver)

PHPackages © 2026

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