Sha256: 8763cabbb627f7836529fdc504bdd9fd666983178c3626d6c973e33b188a202d

Contents?: true

Size: 1.68 KB

Versions: 6

Compression:

Stored size: 1.68 KB

Contents

# frozen_string_literal: true

##
# 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
##
# Version 0.2 # 2011-08-27 #
# Added cookie matches
##
WhatWeb::Plugin.define "DataLife-Engine" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-03-18
  @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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/datalife-engine.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/datalife-engine.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/datalife-engine.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/datalife-engine.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/datalife-engine.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/datalife-engine.rb