mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
42 lines
1.1 KiB
Ruby
42 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://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "phpRemoteView"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-05-24
|
|
]
|
|
version "0.1"
|
|
description "phpRemoteView - web backdoor - allows users to browse the filesystem, edit files on the server, execute PHP code, or Shell commands, etc. Works on Windows and Unix servers"
|
|
website "http://php.spb.ru/remview/"
|
|
|
|
# Google results as at 2011-05-24 #
|
|
# 72 for intitle:"phpRemoteView: " +perms
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"phpRemoteView: " "perms"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Filepath Detection
|
|
{ :certainty=>75, :filepath=>/<title>phpRemoteView: ([^<]+)<\/title>/ },
|
|
|
|
# Version Detection
|
|
{ :version=>/<font size=1 style='Font: 8pt Verdana'>phpRemoteView © Dmitry Borodin \(version ([\d]{4}-[\d]{2}-[\d]{2})\)<br>/ },
|
|
|
|
# Index of HTML
|
|
{ :certainty=>75, :text=>"'><font face=fixedsys size=+2>*</font></a><font size=5><b>Index of</b></font>" },
|
|
|
|
]
|
|
|
|
end
|
|
|