mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
47 lines
1.9 KiB
Ruby
47 lines
1.9 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 "Easy-Site-Edit"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-08-22
|
|
]
|
|
version "0.1"
|
|
description "EasySiteEdit CMS"
|
|
website "http://www.easysiteedit.com/"
|
|
|
|
# Local file path and FTP username:password are disclosed by install.php #
|
|
|
|
# Google results as at 2011-08-22 #
|
|
# 4 for "Powered by Easy Site-Edit"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Powered by Easy Site-Edit"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Powered by text
|
|
{ :regexp=>/Powered by <a href="http:\/\/www\.easysiteedit\.com" class="link(tahoma11)?[^"]*" target="_blank">Easy Site-Edit<\/a>/ },
|
|
|
|
# FTP username # install.php
|
|
{ :account=>/<TD bgcolor=#(F7FDFF|FFFFFF)>FTP User Name<\/TD>[\s]+<TD bgcolor=#(F7FDFF|FFFFFF)><INPUT TYPE="text" NAME="user_name" value="([^"]+)" class="textboxset(enlarge)?">(<p>\[ Note: Ftp user name to login into the server \]<\/p>| \(Ftp user name to login into the server\))<\/TD>/, :offset=>2 },
|
|
|
|
# FTP password # install.php
|
|
{ :account=>/<TD bgcolor=#(F7FDFF|FFFFFF)>FTP User Password<\/TD>[\s]+<TD bgcolor=#(F7FDFF|FFFFFF)><INPUT TYPE="password" NAME="user_pass" value="([^"]+)" class="textboxset(enlarge)?">( \(Ftp password to login into the server\)|<p>[ Note: Ftp password to login into the server ]<\/p>)<\/TD>/, :offset=>2 },
|
|
|
|
# Filepath # install.php
|
|
{ :filepath=>/<TD bgcolor=#(F7FDFF|FFFFFF)>FTP Directory of CMS<\/TD>[\s]+<TD bgcolor=#(F7FDFF|FFFFFF)><INPUT TYPE="text" NAME="dir_cms" value="([^"]+)" class="textboxset(enlarge)?">( \(Directory path of cms in the remote server.\)|<p>\[ Note: Directory path of cms in the remote server \]<\/p>)<\/TD>/, :offset=>2 },
|
|
|
|
]
|
|
|
|
end
|
|
|