mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
39 lines
1.1 KiB
Ruby
39 lines
1.1 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://www.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
|
|
|