mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
70 lines
2.2 KiB
Ruby
70 lines
2.2 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 "CGI:IRC"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-02-08
|
|
]
|
|
version "0.1"
|
|
description "CGI:IRC is a Perl/CGI program to use IRC from a web browser. This plugin extracts the version and the default server, channel and nickname"
|
|
website "http://cgiirc.org/"
|
|
|
|
# Google results as at 2011-02-08 #
|
|
# 224 for intitle:"CGI:IRC Login" Nickname Server Channel
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"CGI:IRC Login" Nickname Server Channel'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Default Title
|
|
{ :text=>"<title>CGI:IRC Login</title>" },
|
|
|
|
# Default Body HTML
|
|
{ :text=>'<body bgcolor="#ffffff" text="#000000" onload="setcharset();">' },
|
|
|
|
# Default Form HTML
|
|
{ :text=>'<form method="post" action="irc.cgi" name="loginform" onsubmit="setjs()">' },
|
|
|
|
# Default Advanced Link
|
|
{ :text=>'<small><a href="irc.cgi?adv=1">Advanced..</a></small>' },
|
|
|
|
# Version Detection # Default HTML Comment
|
|
{ :version=>/^<!-- This is part of CGI:IRC ([\d\.]+)/ },
|
|
|
|
# Version Detection # cgiirc.org build # Powered by text
|
|
{ :version=>/^<small id="ietest"><a href="http:\/\/cgiirc.org\/">CGI:IRC<\/a> ([^<]{3,25})<br \/>/ },
|
|
|
|
# Version Detection # Sourceforge build # Powered by text
|
|
{ :version=>/^<small id="ietest"><a href="http:\/\/cgiirc.sourceforge.net\/">CGI:IRC<\/a> ([^<]{3,25})<br \/>/ },
|
|
|
|
# Nickname Detection
|
|
{ :string=>/^bgcolor="#f1f1f1"><input type="text" name="Nickname" value="([^"]+)"><\/td><\/tr>/ },
|
|
|
|
# Channel Detection # Input HTML
|
|
{ :string=>/^bgcolor="#f1f1f1"><input type="text" name="Channel" value="([^"]+)"[^>]*><\/td><\/tr>/ },
|
|
|
|
# Channel Detection # Select HTML
|
|
{ :string=>/^bgcolor="#f1f1f1"><select name="Channel" style="width: 100%"[^>]*><option[^>]*>([^<]*)<\/option>/ },
|
|
|
|
# Server Detection # Input HTML
|
|
{ :string=>/^bgcolor="#f1f1f1"><input type="text" name="Server" value="([^"]+)"[^>]*><\/td><\/tr>/ },
|
|
|
|
# Server Detection # Select HTML
|
|
{ :string=>/^bgcolor="#f1f1f1"><select name="Server" style="width: 100%"[^>]*><option[^>]*>([^<]*)<\/option>/ },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|