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.
# http://www.morningstarsecurity.com/research/whatweb
##
Plugin.define "phpRemoteView" do
author "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
|