mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
71 lines
2.8 KiB
Ruby
71 lines
2.8 KiB
Ruby
##
|
|
# 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.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Request-Tracker"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-09-13
|
|
]
|
|
version "0.1"
|
|
description "Request Tracker (RT) is an open-source issue tracking system which thousands of organizations use for bug tracking, help desk ticketing, customer service, workflow processes, change management, network operations, youth counselling and even more."
|
|
website "http://bestpractical.com/rt/ - RT for Incident Response (RTIR) is an open source incident handling system targeted for computer security teams."
|
|
website "http://bestpractical.com/rtir/ - RT FAQ Manager (RTFM) is a knowledge management tool tightly integrated with RT which enables an organization to easily capture and share its employees' collected wisdom."
|
|
website "http://bestpractical.com/rtfm/"
|
|
|
|
# ShodanHQ results as at 2011-09-13 #
|
|
# 1,065 for RT_SID
|
|
|
|
# Google results as at 2011-09-13 #
|
|
# 256 for intitle:"Login" "Best Practical Solutions, LLC" "corporate logo RT for"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"Login" "Best Practical Solutions, LLC" "corporate logo RT for"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# /NoAuth/images/favicon.png
|
|
{ :url=>"/NoAuth/images/favicon.png", :md5=>"1e35f1aa90c98ca2bab85c26ae3e1ba7" },
|
|
|
|
# RT FAQ Manager # StyleSheet
|
|
{ :text=>'<link rel="stylesheet" href="/NoAuth/webrtfm.css" type="text/css" />', :module=>"FAQ Manager" },
|
|
|
|
# RT Incident Response # StyleSheet
|
|
{ :text=>'<link rel="stylesheet" href="/RTIR/NoAuth/webrtir.css" type="text/css">', :module=>"Incident Response" },
|
|
|
|
# RT Incident Response # link rel="shortcut icon"
|
|
{ :text=>'<link rel="shortcut icon" href="/NoAuth/images//favicon.png" type="image/png" />', :module=>"Incident Response" },
|
|
|
|
# link rel="shortcut icon"
|
|
{ :text=>'<link rel="shortcut icon" href="/NoAuth/images/favicon.png" type="image/png" />' },
|
|
|
|
# StyleSheet
|
|
{ :text=>'<link rel="stylesheet" href="/NoAuth/css/print.css" type="text/css" media="print" />' },
|
|
|
|
# p id="bpscredits"
|
|
{ :certainty=>25, :text=>'<p id="bpscredits">' },
|
|
|
|
# span class="rtname" + company name
|
|
{ :regexp=>/<span class="rtname">RT for ([^<]+)<\/span>/ },
|
|
|
|
# Version Detection # div class="titlebox-title"
|
|
{ :version=>/<div class="titlebox-title">[\s]*<span class="left">[\s]*Login[\s]*<\/span>[\s]*<span class="right">[\s]*([^\s]+)[\s]*<\/span>[\s]*<\/div>/ },
|
|
|
|
# Version Detection # Footer
|
|
{ :version=>/»|« RT ([^\s]+) Copyright 1996-20[\d]{2} <a href="http:\/\/www\.bestpractical\.com\?rt=([^\s^"^>]+)">Best Practical Solutions, LLC<\/a>\./ },
|
|
|
|
# RT_SID_* Cookie
|
|
{ :search=>"headers[set-cookie]", :regexp=>/RT_SID_[^\s^=]+=[a-f\d]{32};/ },
|
|
|
|
]
|
|
|
|
end
|
|
|