1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7Plugin.define "NinkoBB" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-02-27
9version "0.1"
10description "NinkoBB"
11website "http://ninkobb.com/"
12
13# Google results as at 2011-02-27 #
14# 55 for "Powered by NinkoBB"
15
16# Dorks #
17dorks [
18'"Powered by NinkoBB"'
19]
20
21
22
23# Matches #
24matches [
25
26# Default Stylesheet
27{ :regexp=>/<link href="[^"]*\/assets\/css\/ninko.css" rel="stylesheet" type="text\/css" \/>/ },
28
29# Powered by text
30{ :text=>'Powered by <a href="http://ninkobb.com">NinkoBB</a>' },
31
32# Version Detection # Powered by text
33{ :version=>/Powered by <a href="http:\/\/ninkobb.com\/">NinkoBB<\/a> v. ([\d\.]{1,5}) t./ },
34
35]
36
37end
38
39
40