mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
45 lines
1.3 KiB
Ruby
45 lines
1.3 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 "LetoDMS"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2012-08-24
|
|
]
|
|
version "0.1"
|
|
description "LetoDMS is an open-source document-management-system based on PHP and MySQL published under the GPL."
|
|
website "http://www.letodms.com/"
|
|
|
|
# ShodanHQ results as at 2012-08-24 #
|
|
# 30 for out/out.ViewFolder.php
|
|
|
|
# Google results as at 2012-08-24 #
|
|
# 84 for "letoDMS free document management system - www.letodms.com" "This is a classified area. Access is permitted only to authorized personnel"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"letoDMS free document management system - www.letodms.com" "This is a classified area. Access is permitted only to authorized personnel"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Login Page # Disclaimer Footer
|
|
{ :text=>'<div class="disclaimer">This is a classified area. Access is permitted only to authorized personnel. Any violation will be prosecuted according to the national and international laws.</div>' },
|
|
|
|
# Footer
|
|
{ :text=>'letoDMS free document management system - www.letodms.com</div></body>' },
|
|
|
|
# Location Header
|
|
{ :search=>"headers[location]", :regexp=>/out\/out\.ViewFolder\.php/ },
|
|
|
|
]
|
|
|
|
end
|
|
|