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 39 40 41 42 43 44 45 46 47 48 49 50 51
|
##
# 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 "DataLife-Engine"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-03-18
# v0.2 # 2011-08-27 # Added cookie matches.
]
version "0.2"
description "DataLife Engine CMS"
website "http://dle-news.ru"
# ShodanHQ results as at 2011-08-27 #
# 3,348 for dle_hash dle_password dle_user_id
# Google results at 2011-03-18 #
# 374 for "powered by DataLife Engine"
# Dorks #
dorks [
'"powered by DataLife Engine"'
]
# Matches #
matches [
# Meta Generator
{ :text=>'<meta name="generator" content="DataLife Engine (http://dle-news.ru)" />' },
{ :text=>'<meta name="generator" content="DataLife Engine" />' },
# Meta Generator # Nulled
{ :text=>'<meta name="generator" content="DataLife Engine Nulled by M.I.D-Team (http://www.mid-team.ws)" />', :string=>"Nulled by M.I.D-Team" },
# JavaScript
{ :regexp=>/<script language="javascript" type="text\/javascript">[\s]+<!--[\s]+var dle_root = '[^']+';[\s]+var dle_admin = '[^']*';[\s]+var dle_login_hash = '[^']*';[\s]+(var dle_group = [\d]+;[\s]+)?var dle_skin = '[^']*';[\s]+var dle_wysiwyg = '[^']*';[\s]+var quick_wysiwyg = '[^']*';[\s]+/ },
# Cookies
{ :search=>"headers[set-cookie]", :regexp=>/dle_hash=[^;]+;/ },
{ :search=>"headers[set-cookie]", :regexp=>/dle_password=[^;]+;/ },
{ :search=>"headers[set-cookie]", :regexp=>/dle_user_id=[^;]+;/ },
]
end
|