Sha256: f51ddc4cdb0904b9a5e1ba388da633211364d59d8f01d409179a6af64f2aa3c4

Contents?: true

Size: 1.53 KB

Versions: 6

Compression:

Stored size: 1.53 KB

Contents

# frozen_string_literal: true

##
# This file is part of WhatWeb and may be subject to
# redistribution and commercial restrictions. Please see the WhatWeb
# web site for more information on licensing and terms of use.
# http://www.morningstarsecurity.com/research/whatweb
##
WhatWeb::Plugin.define "acarsd" do
  @author = "Andrew Horton"
  @version = "0.1"
  @description = "acarsd is an Aircraft Communication Addressing and Reporting System (ACARS) decoder for a LINUX or Windows. It decodes ACARS transmissions collected from a radio scanner in real-time using sound cards. acarsd also provides realtime webserver."
  @website = "http://www.acarsd.org/"

  # More examples here: http://www.acarsd.org/webservers.html
  # Google results as at 2012-02-21 #
  # 11 for intitle:"RealTime Web ACARS" "ACARS decoder for Linux and Windows" "Help" "Map" "Reports" "Search"

  # Dorks #
  @dorks = [
    'intitle:"RealTime Web ACARS" "ACARS decoder for Linux and Windows" "Help" "Map" "Reports" "Search"'
  ]

  # Matches #
  @matches = [

    # HTTP Server Header # Version Detection
    { search: "headers[server]", version: /^acarsd\/([^\s]+)$/ },

    # Meta Author
    { certainty: 75, text: '<meta name="author" content="KjM <acarsd@acarsd.org>">' },

    # Title
    { certainty: 75, regexp: /<title>[^<]*RealTime Web ACARS/ },

    # HTML Comment
    { certainty: 75, text: '<!-- MAIN PART OF WEBACARS -->' },

    # Meta Description # Location
    { string: /<meta name="description" content="Realtime Web ACARS - [^\s]+ Location: ([^\.^\"^>]+)\./ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/acarsd.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/acarsd.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/acarsd.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/acarsd.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/acarsd.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/acarsd.rb