File: request-tracker.rb

package info (click to toggle)
whatweb 0.4.9-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 21,188 kB
  • sloc: ruby: 33,652; sh: 614; makefile: 42
file content (67 lines) | stat: -rw-r--r-- 2,810 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
##
# 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
##
Plugin.define "Request-Tracker" do
author "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=>/&#187;&#124;&#171; 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