Sha256: eb54bef149e11b3e8db5a87830504b52cc402a18a68461f49d544e3e879e1933

Contents?: true

Size: 1.37 KB

Versions: 6

Compression:

Stored size: 1.37 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 "TestLink" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2012-02-21
  @version = "0.1"
  @description = "TestLink - open source test management tool"
  @website = "http://www.teamst.org/"

  # Google results as at 2012-02-21 #
  # 26 for intitle:"TestLink" "New User" "Lost Password" "TestLink project Home" "TestLink is licensed under the GNU GPL"

  # Dorks #
  @dorks = [
    'intitle:"TestLink" "New User" "Lost Password" "TestLink project Home" "TestLink is licensed under the GNU GPL"'
  ]

  # Matches #
  @matches = [

    # Meta Author
    { certainty: 75, text: '<meta name="author" content="Martin Havlat" />' },

    # Login Page # Logo HTML # Version Detection
    { version: /\.png" \/>[\s]*<br \/>TestLink ([^\s^<]+)/ },

    # Login Page # homepage link HTML
    { text: 'TestLink project <a href="http://testlink.sourceforge.net/docs/testLink.php">Home</a><br />' },

    # Redirect Page # Expired session
    { regexp: /<html><head><\/head><body><script type='text\/javascript'>location\.href='https?:\/\/[^\'^\?]+\/login\.php\?note=expired';<\/script><\/body><\/html>/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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