mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
41 lines
1.3 KiB
Ruby
41 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 "MooTools"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-11-02
|
|
]
|
|
version "0.1"
|
|
description "MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write powerful, flexible, and cross-browser code with its elegant, well documented, and coherent API."
|
|
website "http://mootools.net/"
|
|
|
|
# 22 results for ext:js "Copyright (c) 2006-2008 Valerio Proietti" "http://mad4milk.net"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'ext:js "Copyright (c) 2006-2008 Valerio Proietti" "http://mad4milk.net"'
|
|
]
|
|
|
|
|
|
|
|
matches [
|
|
|
|
# mootools.core.js
|
|
{ :regexp=>/^\/\/ Load your build at: http:\/\/mootools.net\/core\// },
|
|
|
|
# Verson Detection # mootools.core.js
|
|
{ :version=>/^MooTools.More[\s]*=[\s]*\{[\s]*version:[\s]*["']?([^\"^\']+)["']?/ },
|
|
{ :version=>/^var MooTools[\s]*=[\s]*\{[\s]*version:[\s]*["']?([^\"^\']+)/ },
|
|
|
|
# mootools.more.js
|
|
{ :regexp=>/^\/\/MooTools More, <http:\/\/mootools.net\/more>. Copyright \(c\) 2006-2008 Valerio Proietti, <http:\/\/mad4milk.net>, MIT Style License./ },
|
|
|
|
]
|
|
|
|
end
|
|
|