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
|
##
# 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 "Subsonic"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-08-07
]
version "0.1"
description "Subsonic is a free, web-based media streamer, providing ubiquitous access to your music. Based on Java technology, Subsonic runs on most platforms, including Windows, Mac, Linux and Unix variants."
website "http://www.subsonic.org/pages/index.jsp"
# Google results as at 2011-08-07 #
# 13 for intitle:"Subsonic" +Username +Password "Remember me" inurl:login.view
# Dorks #
dorks [
'intitle:"Subsonic" "Username" "Password" "Remember me" inurl:login.view'
]
# Matches #
matches [
# input type="checkbox" name="_acegi_security_remember_me"
{ :text=>'<input type="checkbox" name="_acegi_security_remember_me" id="remember" class="checkbox" tabindex="3">' },
# Form HTML
{ :text=>'<form action="/j_acegi_security_check" method="POST">' },
]
end
|