GithubHelp home page GithubHelp logo

piloteers / wappalyzer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from juliopontes/wappalyzer

0.0 2.0 1.0 39.25 MB

Cross-platform utility that uncovers the technologies used on websites.

Home Page: https://www.wappalyzer.com

JavaScript 100.00%

wappalyzer's Introduction

Wappalyzer

Wappalyzer is a cross-platform utility that uncovers the technologies used on websites. It detects content management systems, eCommerce platforms, web servers, JavaScript frameworks, analytics tools and many more.

Installation

$ npm i wappalyzer

Run from the command line

node index.js [url] [options]

Options

  --chunk-size=num     Process links in chunks.
  --debug=0|1          Output debug messages.
  --delay=ms           Wait for ms milliseconds between requests.
  --max-depth=num      Don't analyse pages more than num levels deep.
  --max-urls=num       Exit when num URLs have been analysed.
  --max-wait=ms        Wait no more than ms milliseconds for page resources to load.
  --recursive=0|1      Follow links on pages (crawler).
  --user-agent=str     Set the user agent string.
  --html-max-cols=num  Limit the number of HTML characters per line processed.
  --html-max-rows=num  Limit the number of HTML lines processed.

Run from a script

const options = {
  debug: false,
  delay: 500,
  maxDepth: 3,
  maxUrls: 10,
  maxWait: 5000,
  recursive: true,
  userAgent: 'Wappalyzer',
  htmlMaxCols: 2000,
  htmlMaxRows: 2000,
};

const wappalyzer = new Wappalyzer('https://www.wappalyzer.com', options);

wappalyzer.analyze()
  .then(json => {
    process.stdout.write(JSON.stringify(json, null, 2) + '\n')

    process.exit(0);
  })
  .catch(error => {
    process.stderr.write(error + '\n')

    process.exit(1);
});

wappalyzer's People

Contributors

aliasio avatar jvoisin avatar q-- avatar gadcam avatar daawesomep avatar craiglondon avatar hannolans avatar seralf avatar alexbyte avatar kkadosh avatar benoitpointet avatar pilotloef avatar mxschmitt avatar sebastianlopienski avatar johanndutoit avatar kolen avatar timweprovide avatar smant avatar donaldgoose avatar hadifarnoud avatar alepore avatar wardoost avatar patrocle avatar test-ac avatar fpoumian avatar samanbaboli avatar totpero avatar rugk avatar foadabdollahi avatar jpbede avatar

Watchers

James Cloos avatar  avatar

Forkers

floef98

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.