Project

wappalyzer

0.02
No commit activity in last 3 years
No release in over 3 years
This analyzes a url and tries to guess what software it uses (like server software, CMS, framework, programming language).
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.11
>= 12.3.3
~> 3.0

Runtime

>= 0.2.4
 Project Readme

Wappalyzer

This is merely a port of the javascript parts of Wappalyzer extension for Firefox and Chrome. It analyzes a url and tries to guess what software it uses (like server software, CMS, framework, programming language).

Installation

Add this line to your application's Gemfile:

gem 'wappalyzer'

And then execute:

$ bundle

Or install it yourself as:

$ gem install wappalyzer

Usage

url = "https://www.heroku.com/"
Wappalyzer::Detector.new.analyze(url)

Output

{
  "Cowboy" => {
    "categories" => [
      [0] "web-frameworks",
      [1] "web-servers"
    ],
    "confidence" => 100,
    "version" => ""
  },
  "Google Tag Manager" => {
    "categories" => [
      [0] "tag-managers"
    ],
    "confidence" => 100,
      "version" => ""
  },
  "Ruby on Rails" => {
    "categories" => [
      [0] "web-frameworks"
    ],
    "confidence" => 50,
    "version" => ""
  },
  "Erlang" => {
    "categories" => [
      [0] "programming-languages"
    ],
    "confidence" => 100,
      "version" => ""
  },
  "Ruby" => {
    "categories" => [
      [0] "programming-languages"
    ],
    "confidence" => 50,
      "version" => ""
  }
}

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/pulkit21/wappalyzer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.