Sha256: b40fe11f6d467627c3daa538263310787a6bba40d21dfe4230dca20025185010

Contents?: true

Size: 1.84 KB

Versions: 6

Compression:

Stored size: 1.84 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
##
WhatWeb::Plugin.define "Kloxo-Single-Server" do # aka HyperVM aka LxAdmin
  @author = "Brendan Coles <bcoles@gmail.com>" # 2010-06-01
  @version = "0.1"
  @description = "Kloxo (aka HyperVM aka LxAdmin) is a fully scriptable, distributed and a 100% object oriented hosting platform"
  @website = "http://www.lxcenter.org/kloxo.htm"

  # 70 results for "Use a valid username and password to gain access to the console" -lxcenter.org @ 2010-05-09

  # Dorks #
  @dorks = [
    '"Use a valid username and password to gain access to the console" -lxcenter.org'
  ]

  # Matches #
  @matches = [

    { text: "<title> HyperVM 2.0 </title>" },

    { text: "<title> Kloxo </title>" },

    # default lxadmin title",
    { text: "<title> Lxadmin </title>" },

    # default logo html
    { text: '<img id=main_logo width=84 height=23 src="/img/hypervm-logo.gif">' },

    # login text # joomla and mambo use this string but without "</b>"
    { certainty: 75, text: "Use a valid username and password to gain access to the console</b>" },

    # login css # fairly specific directory structure - no false positives on google
    { text: '@import url("/htmllib/lib/admin_login.css");' },

    # fairly specific directory structure - no false positives on google
    { name: "login javascript",
      text: '<script language=javascript src="/htmllib/js/preop.js"></script>' },

    # fairly specific HTML structure - no false positives on google
    { name: "login form",
      text: '<form name=loginform action="/htmllib/phplib/" onsubmit="encode_url(loginform) ; return fieldcheck(this);" method=post>' }

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/kloxo-single-server.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/kloxo-single-server.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/kloxo-single-server.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/kloxo-single-server.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/kloxo-single-server.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/kloxo-single-server.rb