diff --git a/CHANGELOG.md b/CHANGELOG.md index 22b9181a..a5e59f37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,60 @@ -Version 0.5.5 - ? 2021 +Version 0.5.6 - ?, 2021 + +This release introduces three new search contexts for plugin authors to use: + +- uri.path +- uri.query +- uri.extension + +An example of how to use this is from the PHP plugin. + +``` +# File Extension +{ :name=>"File extension", :regexp=>/^(php|phtml|php3|php4|php5|phps)$/, :search=>"uri.extension" } +``` + +## FIXES +* #311 - JSON Logging fails... UTF-8 can't modify frozen String (@juananpe) + +## MISC +* Refactored Helper::convert_to_utf8. Droped Ruby 2.0 support (@urbanadventurer) +* Added new search contexts for plugins: uri.path, uri.query, uri.extension (@urbanadventurer) + +## NEW PLUGINS +* Plex Media Server (@urbanadventurer) + +## PLUGIN UPDATES +* Adobe-Flash (@urbanadventurer) +* ASP_NET (@urbanadventurer) +* ColdFusion (@urbanadventurer) +* Drupal (@gboddin) +* Java (@urbanadventurer) +* Perl (@urbanadventurer) +* PHP (@urbanadventurer) +* Python (@urbanadventurer) +* Ruby (@urbanadventurer) +* WordPress (@juananpe) + + +Version 0.5.5 - January 16, 2021 + +## FIXES +* #358 Fixed escape_for_sql method (@juananpe) ## NEW PLUGINS * Apache Flink (@juananpe) +* Dell-OpenManage-Switch-Administrator (@themaxdavitt) +* FLIR AX8 (@urbanadventurer) +* Huginn (@urbanadventurer) +* OpenResty (@urbanadventurer) +* Telerik UI (@definity) +* Umbraco (@definity / @ChadBrigance * VMware Horizon (@themaxdavitt) ## PLUGIN UPDATES * Joomla (@juananpe) * phpMyAdmin (@juananpe) +* Microsoft IIS (@themaxdavitt) Version 0.5.4 - December 14, 2020 diff --git a/Gemfile b/Gemfile index 00b25515..c48ac99a 100644 --- a/Gemfile +++ b/Gemfile @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## source 'https://rubygems.org' diff --git a/README.md b/README.md index 82807c56..b8cad9d1 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ -[![License](https://img.shields.io/badge/license-GPLv2-brightgreen.svg)](https://raw.githubusercontent.com/urbanadventurer/whatweb/master/LICENSE) ![Stable Release](https://img.shields.io/badge/stable_release-0.5.5-blue.svg) ![WhatWeb Plugins](https://img.shields.io/badge/plugins-1817-brightgreen.svg) [![Repositories](https://repology.org/badge/tiny-repos/whatweb.svg)](https://repology.org/project/whatweb/versions) +[![License](https://img.shields.io/badge/license-GPLv2-brightgreen.svg)](https://raw.githubusercontent.com/urbanadventurer/whatweb/master/LICENSE) ![Stable Release](https://img.shields.io/badge/stable_release-0.5.5-blue.svg) ![WhatWeb Plugins](https://img.shields.io/badge/plugins-1824-brightgreen.svg) [![Repositories](https://repology.org/badge/tiny-repos/whatweb.svg)](https://repology.org/project/whatweb/versions) -![logo](https://www.morningstarsecurity.com/wp-content/uploads/2019/02/WhatWeb-Logo-800px.png "WhatWeb Logo") +![logo](https://morningstarsecurity.com/wp-content/uploads/2019/02/WhatWeb-Logo-800px.png "WhatWeb Logo") # WhatWeb - Next generation web scanner Developed by Andrew Horton [urbanadventurer](https://github.com/urbanadventurer/) and Brendan Coles [bcoles](https://github.com/bcoles/) -Latest Release: v0.5.5. ?, 2021 +Latest Release: v0.5.5. January 16, 2021 License: GPLv2 This product is subject to the terms detailed in the license agreement. For more information about WhatWeb visit: -Homepage: https://www.morningstarsecurity.com/research/whatweb +Homepage: https://morningstarsecurity.com/research/whatweb Wiki: https://github.com/urbanadventurer/WhatWeb/wiki/ @@ -80,7 +80,7 @@ $$$$$$ $$$$$ $$$$ $$$ $$$$ $$$ $$$$ $$$$$$ $$$$$ $$$$$$$$$ $$$$$$$$$' WhatWeb - Next generation web scanner version 0.5.5. Developed by Andrew Horton (urbanadventurer) and Brendan Coles (bcoles) -Homepage: https://www.morningstarsecurity.com/research/whatweb +Homepage: https://morningstarsecurity.com/research/whatweb Usage: whatweb [options] @@ -392,7 +392,7 @@ Browse the wiki for more documentation and advanced usage techniques. ## Release History -- Version 0.5.5 Released ? 2021 +- Version 0.5.5 Released January 16th, 2021 - Version 0.5.4 Released December 14th, 2020 - Version 0.5.3 Released October 1st, 2020 - Version 0.5.2 Released June 9th, 2020 @@ -489,6 +489,7 @@ Thank you to the following people who have contributed to WhatWeb. + @definity + @huntertl + Max Davitt (@themaxdavitt) ++ Gregory Boddin (@gboddin) It is difficult to keep track of all the people who have contributed to WhatWeb. If your name is missing then please let me know. diff --git a/Rakefile b/Rakefile index 522a8af4..48f475d2 100644 --- a/Rakefile +++ b/Rakefile @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## $DEBUG = false $VERBOSE = false diff --git a/addons/country-scanner b/addons/country-scanner index 8d7e98fd..8e7dd7e7 100755 --- a/addons/country-scanner +++ b/addons/country-scanner @@ -56,7 +56,7 @@ do if [ -z "`which $c`" ]; then echo "$c not found. Aborting" echo "You need to install geoipgen to generate country IP lists" - echo "Visit https://www.morningstarsecurity.com/research/geoipgen" + echo "Visit https://morningstarsecurity.com/research/geoipgen" exit 1 fi done diff --git a/lib/helper.rb b/lib/helper.rb index 2434ae18..db8425ce 100644 --- a/lib/helper.rb +++ b/lib/helper.rb @@ -35,18 +35,19 @@ module Helper end end - # converts a string to UTF-8 + # Converts a string to UTF-8 def self.convert_to_utf8(str) - if defined?(String.new.scrub) # Defined in Ruby 2.1 - str.force_encoding("UTF-8").scrub - else # Ruby 2.0 - str.encode('UTF-16', 'UTF-8', invalid: :replace, replace: '').encode('UTF-8') + begin + if (str.frozen?) + str.dup.force_encoding("UTF-8").scrub + else + str.force_encoding("UTF-8").scrub + end + rescue => e + raise "Can't convert to UTF-8 #{e}" end - rescue => e - raise "Can't convert to UTF-8 #{e}" end - # # Takes an integer of certainty (between 1 - 100) # diff --git a/lib/logging/sql.rb b/lib/logging/sql.rb index 25c0595f..4e6b0881 100644 --- a/lib/logging/sql.rb +++ b/lib/logging/sql.rb @@ -45,11 +45,7 @@ class LoggingSQL < Logging def escape_for_sql(s) s = s.to_s - if s.nil? - "''" - else - "'" + s.tr("'", "\'") + "'" - end + "'" + s.gsub("'"){"\\'"} + "'" end def create_tables diff --git a/lib/plugins.rb b/lib/plugins.rb index ac330151..896dcf2c 100644 --- a/lib/plugins.rb +++ b/lib/plugins.rb @@ -55,6 +55,8 @@ class Plugin p.instance_eval(&block) p.startup # TODO: make sure required attributes are set + + # Freeze the plugin attributes so they cannot be self-modified by a plugin Plugin.attributes.each { |symbol| p.instance_variable_get("@#{symbol}").freeze } Plugin.registered_plugins[p.name] = p end @@ -109,6 +111,13 @@ class ScanContext case match[:search] when 'all' search_context = target.raw_response + when 'uri.path' + search_context = target.uri.path + when 'uri.query' + search_context = target.uri.query + when 'uri.extension' + search_context = target.uri.path.scan(/\.(\w{3,6})$/).flatten.first + return r if search_context.nil? when 'headers' search_context = target.raw_headers when /headers\[(.*)\]/ diff --git a/my-plugins/plugin-tutorial-1.rb b/my-plugins/plugin-tutorial-1.rb index 243bc14d..70fc1a51 100644 --- a/my-plugins/plugin-tutorial-1.rb +++ b/my-plugins/plugin-tutorial-1.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # Plugin.define do name "Plugin-Tutorial-1" diff --git a/my-plugins/plugin-tutorial-2.rb b/my-plugins/plugin-tutorial-2.rb index 67e83916..da600157 100644 --- a/my-plugins/plugin-tutorial-2.rb +++ b/my-plugins/plugin-tutorial-2.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # Plugin.define do name "Plugin-Tutorial-2" diff --git a/my-plugins/plugin-tutorial-3.rb b/my-plugins/plugin-tutorial-3.rb index 8c433c03..9593b4f8 100644 --- a/my-plugins/plugin-tutorial-3.rb +++ b/my-plugins/plugin-tutorial-3.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # Plugin.define do name "Plugin-Tutorial-3" diff --git a/my-plugins/plugin-tutorial-4.rb b/my-plugins/plugin-tutorial-4.rb index 015a97c4..187271ff 100644 --- a/my-plugins/plugin-tutorial-4.rb +++ b/my-plugins/plugin-tutorial-4.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # Plugin.define do name "Plugin-Tutorial-4" diff --git a/my-plugins/plugin-tutorial-5.rb b/my-plugins/plugin-tutorial-5.rb index 71926823..00ee5e52 100644 --- a/my-plugins/plugin-tutorial-5.rb +++ b/my-plugins/plugin-tutorial-5.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # Plugin.define do name "Plugin-Tutorial-5" diff --git a/my-plugins/plugin-tutorial-6.rb b/my-plugins/plugin-tutorial-6.rb index c0d605bc..76b81aa0 100644 --- a/my-plugins/plugin-tutorial-6.rb +++ b/my-plugins/plugin-tutorial-6.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # Plugin.define do name "Plugin-Tutorial-6" diff --git a/my-plugins/plugin-tutorial-7.rb b/my-plugins/plugin-tutorial-7.rb index 2865bce9..1e2c015f 100644 --- a/my-plugins/plugin-tutorial-7.rb +++ b/my-plugins/plugin-tutorial-7.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Plugin-Tutorial-7" diff --git a/plugin-development/migrate-plugins-to-v0.5.rb b/plugin-development/migrate-plugins-to-v0.5.rb index 889d8132..741b0b39 100755 --- a/plugin-development/migrate-plugins-to-v0.5.rb +++ b/plugin-development/migrate-plugins-to-v0.5.rb @@ -86,7 +86,7 @@ puts "[+] Converting #{FNAME} to v0.5".colorize(:color=>:blue, :background => :b puts "BEFORE".colorize(:color=>:black, :background => :yellow) cmd = "cat #{FNAME} | egrep \"^\s*author \"" puts `#{cmd}`.strip.yellow -cmd = "cat #{FNAME} | egrep -B 9999 \"^Plugin.define\" | egrep -A 999 '# https://www.morningstarsecurity.com/research/whatweb' | sed '1d;$d'" +cmd = "cat #{FNAME} | egrep -B 9999 \"^Plugin.define\" | egrep -A 999 '# https://morningstarsecurity.com/research/whatweb' | sed '1d;$d'" OLDCOMMENTS = `#{cmd}` puts OLDCOMMENTS.yellow diff --git a/plugin-development/update-alexa b/plugin-development/update-alexa index 7f4f05a0..9b928b4f 100755 --- a/plugin-development/update-alexa +++ b/plugin-development/update-alexa @@ -3,7 +3,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## # wget-alexa-top-1m # - Download and extract the Alexa top one million domains in newline format diff --git a/plugin-development/update-ip-to-country-database b/plugin-development/update-ip-to-country-database index 456cd9bb..8b4de0a8 100755 --- a/plugin-development/update-ip-to-country-database +++ b/plugin-development/update-ip-to-country-database @@ -3,7 +3,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## # wget-ip-to-country # - Download and extract IpToCountry.csv from http://software77.net/geo-ip/ diff --git a/plugins-disabled/address.rb b/plugins-disabled/address.rb index 8938914c..433797f4 100644 --- a/plugins-disabled/address.rb +++ b/plugins-disabled/address.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Address" diff --git a/plugins-disabled/adobe-flash-urls.rb b/plugins-disabled/adobe-flash-urls.rb index a4b8d96f..970221ac 100644 --- a/plugins-disabled/adobe-flash-urls.rb +++ b/plugins-disabled/adobe-flash-urls.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Adobe-Flash-URLs" diff --git a/plugins-disabled/atom_feed.rb b/plugins-disabled/atom_feed.rb index 61088b78..243992d1 100644 --- a/plugins-disabled/atom_feed.rb +++ b/plugins-disabled/atom_feed.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AtomFeed" diff --git a/plugins-disabled/charset.rb b/plugins-disabled/charset.rb index 2d5ceef4..867127d3 100644 --- a/plugins-disabled/charset.rb +++ b/plugins-disabled/charset.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do diff --git a/plugins-disabled/content-type.rb b/plugins-disabled/content-type.rb index ea387977..081728ba 100644 --- a/plugins-disabled/content-type.rb +++ b/plugins-disabled/content-type.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Content-Type" diff --git a/plugins-disabled/footer-hash.rb b/plugins-disabled/footer-hash.rb index 0e63c8af..02d2fda3 100644 --- a/plugins-disabled/footer-hash.rb +++ b/plugins-disabled/footer-hash.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Footer-Hash" diff --git a/plugins-disabled/frame-urls.rb b/plugins-disabled/frame-urls.rb index 7276f29b..c3c0c262 100644 --- a/plugins-disabled/frame-urls.rb +++ b/plugins-disabled/frame-urls.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Frame-URLs" diff --git a/plugins-disabled/google-webmaster-verify.rb b/plugins-disabled/google-webmaster-verify.rb index 4f4c9b04..58690e1e 100644 --- a/plugins-disabled/google-webmaster-verify.rb +++ b/plugins-disabled/google-webmaster-verify.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Google-Webmaster-Verify" diff --git a/plugins-disabled/header-hash.rb b/plugins-disabled/header-hash.rb index 16a85556..d76b81c9 100644 --- a/plugins-disabled/header-hash.rb +++ b/plugins-disabled/header-hash.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Header-Hash" diff --git a/plugins-disabled/html-comments.rb b/plugins-disabled/html-comments.rb index 9f70aae3..a16be42b 100644 --- a/plugins-disabled/html-comments.rb +++ b/plugins-disabled/html-comments.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HTML-Comments" diff --git a/plugins-disabled/http-headers.rb b/plugins-disabled/http-headers.rb index 6229c5c6..11465f6c 100644 --- a/plugins-disabled/http-headers.rb +++ b/plugins-disabled/http-headers.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HTTP-Headers" diff --git a/plugins-disabled/length.rb b/plugins-disabled/length.rb index 42d98c6e..56fc2a04 100644 --- a/plugins-disabled/length.rb +++ b/plugins-disabled/length.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Len" diff --git a/plugins-disabled/links.rb b/plugins-disabled/links.rb index 8a7b5ded..5006deb5 100644 --- a/plugins-disabled/links.rb +++ b/plugins-disabled/links.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Links" diff --git a/plugins-disabled/md5.rb b/plugins-disabled/md5.rb index 607a3881..f261b0f2 100644 --- a/plugins-disabled/md5.rb +++ b/plugins-disabled/md5.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MD5" diff --git a/plugins-disabled/meta-city.rb b/plugins-disabled/meta-city.rb index cd3a0661..0c58e98d 100644 --- a/plugins-disabled/meta-city.rb +++ b/plugins-disabled/meta-city.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-City" diff --git a/plugins-disabled/meta-contact.rb b/plugins-disabled/meta-contact.rb index 56b7bf0f..1a50e46c 100644 --- a/plugins-disabled/meta-contact.rb +++ b/plugins-disabled/meta-contact.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-Contact" diff --git a/plugins-disabled/meta-country.rb b/plugins-disabled/meta-country.rb index 7a72dc60..a4963238 100644 --- a/plugins-disabled/meta-country.rb +++ b/plugins-disabled/meta-country.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-Country" diff --git a/plugins-disabled/meta-description.rb b/plugins-disabled/meta-description.rb index 44b28ead..0be2e501 100644 --- a/plugins-disabled/meta-description.rb +++ b/plugins-disabled/meta-description.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-Description" diff --git a/plugins-disabled/meta-geography.rb b/plugins-disabled/meta-geography.rb index f2455bd7..637ed03a 100644 --- a/plugins-disabled/meta-geography.rb +++ b/plugins-disabled/meta-geography.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-Geography" diff --git a/plugins-disabled/meta-keywords.rb b/plugins-disabled/meta-keywords.rb index 23d72218..2cdc6b34 100644 --- a/plugins-disabled/meta-keywords.rb +++ b/plugins-disabled/meta-keywords.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-Keywords" diff --git a/plugins-disabled/meta-state.rb b/plugins-disabled/meta-state.rb index bed2a8d2..97f10ad5 100644 --- a/plugins-disabled/meta-state.rb +++ b/plugins-disabled/meta-state.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-State" diff --git a/plugins-disabled/meta-zipcode.rb b/plugins-disabled/meta-zipcode.rb index d8d88b6a..bf7dcafa 100644 --- a/plugins-disabled/meta-zipcode.rb +++ b/plugins-disabled/meta-zipcode.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-Zipcode" diff --git a/plugins-disabled/mobile-website.rb b/plugins-disabled/mobile-website.rb index 27f9aeaf..7b4fe213 100644 --- a/plugins-disabled/mobile-website.rb +++ b/plugins-disabled/mobile-website.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mobile-Website" diff --git a/plugins-disabled/post-parameters.rb b/plugins-disabled/post-parameters.rb index 2db58283..aec8d06c 100644 --- a/plugins-disabled/post-parameters.rb +++ b/plugins-disabled/post-parameters.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "POST-Parameters" diff --git a/plugins-disabled/rss_feed.rb b/plugins-disabled/rss_feed.rb index 7114767b..5566ad80 100644 --- a/plugins-disabled/rss_feed.rb +++ b/plugins-disabled/rss_feed.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RSS-Feed" diff --git a/plugins-disabled/script-urls.rb b/plugins-disabled/script-urls.rb index 31652a20..f636eaba 100644 --- a/plugins-disabled/script-urls.rb +++ b/plugins-disabled/script-urls.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Script-URLs" diff --git a/plugins-disabled/shortcut-icon.rb b/plugins-disabled/shortcut-icon.rb index 40900ba9..63ffb42b 100644 --- a/plugins-disabled/shortcut-icon.rb +++ b/plugins-disabled/shortcut-icon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Shortcut-Icon" diff --git a/plugins-disabled/subdomains.rb b/plugins-disabled/subdomains.rb index 19097390..6a20d8f5 100644 --- a/plugins-disabled/subdomains.rb +++ b/plugins-disabled/subdomains.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Subdomains" diff --git a/plugins-disabled/tagpattern-hash.rb b/plugins-disabled/tagpattern-hash.rb index f006b57d..2e380053 100644 --- a/plugins-disabled/tagpattern-hash.rb +++ b/plugins-disabled/tagpattern-hash.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tag-Hash" @@ -15,7 +15,7 @@ description "Fuzzy pattern matching. Analyze the structure of HTML tags. Turns t # div & span has found nothing yet # this produces nothing useful for just div or just span -# inspired by this work - http://www.aharef.info/static/htmlgraph/?url=https://www.morningstarsecurity.com/ +# inspired by this work - http://www.aharef.info/static/htmlgraph/?url=https://morningstarsecurity.com/ # a method to keep the pattern, yet encode to reduce size would be.. diff --git a/plugins-disabled/vary.rb b/plugins-disabled/vary.rb index 1fac8da9..f309cef7 100644 --- a/plugins-disabled/vary.rb +++ b/plugins-disabled/vary.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Vary" diff --git a/plugins/1024-cms.rb b/plugins/1024-cms.rb index 8964c1a6..de07d02f 100644 --- a/plugins/1024-cms.rb +++ b/plugins/1024-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "1024-CMS" diff --git a/plugins/1n1-hosting.rb b/plugins/1n1-hosting.rb index 07c1aa3d..3ef9d411 100644 --- a/plugins/1n1-hosting.rb +++ b/plugins/1n1-hosting.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "1&1 Hosting" diff --git a/plugins/360-web-manager.rb b/plugins/360-web-manager.rb index d4bdcfec..af450617 100644 --- a/plugins/360-web-manager.rb +++ b/plugins/360-web-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "360-Web-Manager" diff --git a/plugins/3com-nbx.rb b/plugins/3com-nbx.rb index 6e6902a1..a3d67c1b 100644 --- a/plugins/3com-nbx.rb +++ b/plugins/3com-nbx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "3COM-NBX" diff --git a/plugins/3dcart.rb b/plugins/3dcart.rb index 3d048f27..6aa340b6 100644 --- a/plugins/3dcart.rb +++ b/plugins/3dcart.rb @@ -12,7 +12,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "3dcart" diff --git a/plugins/4d.rb b/plugins/4d.rb index 4d17734d..9de4f962 100644 --- a/plugins/4d.rb +++ b/plugins/4d.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "4D" diff --git a/plugins/4images.rb b/plugins/4images.rb index 125e072e..9b6c45f2 100644 --- a/plugins/4images.rb +++ b/plugins/4images.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "4images" diff --git a/plugins/68-classifieds-script.rb b/plugins/68-classifieds-script.rb index 31ac743c..7a452661 100644 --- a/plugins/68-classifieds-script.rb +++ b/plugins/68-classifieds-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "68-Classifieds-Script" diff --git a/plugins/6kbbs.rb b/plugins/6kbbs.rb index 0c1aeae8..4a02e3d4 100644 --- a/plugins/6kbbs.rb +++ b/plugins/6kbbs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "6kbbs" diff --git a/plugins/aardvark-topsites-php.rb b/plugins/aardvark-topsites-php.rb index 52de0ff2..a0306a20 100644 --- a/plugins/aardvark-topsites-php.rb +++ b/plugins/aardvark-topsites-php.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Aardvark-Topsites-PHP" diff --git a/plugins/ab-web-cms.rb b/plugins/ab-web-cms.rb index 3db6f41e..0e3ca05b 100644 --- a/plugins/ab-web-cms.rb +++ b/plugins/ab-web-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AB-WEB-CMS" diff --git a/plugins/abo.cms.rb b/plugins/abo.cms.rb index a0ca0909..4d58b2aa 100644 --- a/plugins/abo.cms.rb +++ b/plugins/abo.cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ABO_CMS" diff --git a/plugins/abyss-web-server.rb b/plugins/abyss-web-server.rb index ab43f542..69d5aa50 100644 --- a/plugins/abyss-web-server.rb +++ b/plugins/abyss-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Abyss-Web-Server" diff --git a/plugins/acarsd.rb b/plugins/acarsd.rb index 025a4724..bc55f0a0 100644 --- a/plugins/acarsd.rb +++ b/plugins/acarsd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "acarsd" diff --git a/plugins/accellion-secure-file-transfer.rb b/plugins/accellion-secure-file-transfer.rb index cc16c61f..e3984700 100644 --- a/plugins/accellion-secure-file-transfer.rb +++ b/plugins/accellion-secure-file-transfer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Accellion-Secure-File-Transfer" diff --git a/plugins/access-control-allow-methods.rb b/plugins/access-control-allow-methods.rb index 5ce88cab..910c0e1c 100644 --- a/plugins/access-control-allow-methods.rb +++ b/plugins/access-control-allow-methods.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Access-Control-Allow-Methods" diff --git a/plugins/acclipse.rb b/plugins/acclipse.rb index eec00ba6..7740f8df 100644 --- a/plugins/acclipse.rb +++ b/plugins/acclipse.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Acclipse" diff --git a/plugins/achecker.rb b/plugins/achecker.rb index e66608b8..9c72fb1e 100644 --- a/plugins/achecker.rb +++ b/plugins/achecker.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AChecker" diff --git a/plugins/acidcat-cms.rb b/plugins/acidcat-cms.rb index b44d23ad..da768798 100644 --- a/plugins/acidcat-cms.rb +++ b/plugins/acidcat-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Acidcat-CMS" diff --git a/plugins/acme.serve.rb b/plugins/acme.serve.rb index 7cdaa69d..d3ce73bd 100644 --- a/plugins/acme.serve.rb +++ b/plugins/acme.serve.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Acme_Serve" diff --git a/plugins/acollab.rb b/plugins/acollab.rb index 97f0ed69..a243a2fa 100644 --- a/plugins/acollab.rb +++ b/plugins/acollab.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ACollab" diff --git a/plugins/acontent.rb b/plugins/acontent.rb index 47c9709a..292bb549 100644 --- a/plugins/acontent.rb +++ b/plugins/acontent.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AContent" diff --git a/plugins/acti-web-configurator.rb b/plugins/acti-web-configurator.rb index bd5ad9fa..a4366e8c 100644 --- a/plugins/acti-web-configurator.rb +++ b/plugins/acti-web-configurator.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ACTi-Web-Configurator" diff --git a/plugins/activecollab.rb b/plugins/activecollab.rb index 2a2498e4..4cbf0c5d 100644 --- a/plugins/activecollab.rb +++ b/plugins/activecollab.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "activeCollab" diff --git a/plugins/activehtml.rb b/plugins/activehtml.rb index 22a9f35f..8020e2e5 100644 --- a/plugins/activehtml.rb +++ b/plugins/activehtml.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ActiveHTML" diff --git a/plugins/activeweb-content-server.rb b/plugins/activeweb-content-server.rb index 70769fa3..833400a8 100644 --- a/plugins/activeweb-content-server.rb +++ b/plugins/activeweb-content-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "activeWeb-Content-Server" diff --git a/plugins/activex.rb b/plugins/activex.rb index 2c81c692..8583f65c 100644 --- a/plugins/activex.rb +++ b/plugins/activex.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ActiveX" diff --git a/plugins/ad-network-script.rb b/plugins/ad-network-script.rb index 2f7af9da..bf8d0c37 100644 --- a/plugins/ad-network-script.rb +++ b/plugins/ad-network-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ad-Network-Script" diff --git a/plugins/adaptcms.rb b/plugins/adaptcms.rb index 4a95ff67..66def509 100644 --- a/plugins/adaptcms.rb +++ b/plugins/adaptcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AdaptCMS" diff --git a/plugins/adcon-telemetry-gateway.rb b/plugins/adcon-telemetry-gateway.rb index b7d5c3f0..d2ea961b 100644 --- a/plugins/adcon-telemetry-gateway.rb +++ b/plugins/adcon-telemetry-gateway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Adcon-Telemetry-Gateway" diff --git a/plugins/addthis.rb b/plugins/addthis.rb index f4672876..3a082e58 100644 --- a/plugins/addthis.rb +++ b/plugins/addthis.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AddThis" diff --git a/plugins/adobe-connect.rb b/plugins/adobe-connect.rb index 0b384d24..51b7fb42 100644 --- a/plugins/adobe-connect.rb +++ b/plugins/adobe-connect.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Adobe-Connect" diff --git a/plugins/adobe-experience-manager.rb b/plugins/adobe-experience-manager.rb index b1d32052..cd84462f 100644 --- a/plugins/adobe-experience-manager.rb +++ b/plugins/adobe-experience-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Adobe-Experience-Manager" diff --git a/plugins/adobe-flash.rb b/plugins/adobe-flash.rb index 295a3c3e..89a8c0ae 100644 --- a/plugins/adobe-flash.rb +++ b/plugins/adobe-flash.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Adobe-Flash" @@ -10,8 +10,9 @@ authors [ "Caleb Anderson", "Brendan Coles ", # v0.2 # Added JavaScript detection. Added element detection. Added flash file path retrieval. "Andrew Horton", # v0.3 # 2019-07-10 # Added website field. +# "Andrew Horton", # v0.4 # 2021-02-28 # Added file extension ] -version "0.3" +version "0.4" description "This plugin identifies instances of embedded adobe flash files." website "https://get.adobe.com/flashplayer/" @@ -38,6 +39,9 @@ matches [ { :regexp=>/new[\s]+SWFObject[\s]*\([\s]*['"]?[^'^"]+/ }, { :regexp=>/\.embedSWF[\s]*\([\s]*["']?[^'^"]+/ }, + # File Extension +{ :name=>"File extension", :regexp=>/^(fla|flv|swf|swt|swc)$/, :search=>"uri.extension" } + ] end diff --git a/plugins/adsubtract.rb b/plugins/adsubtract.rb index 06c14b53..aaa2f31f 100644 --- a/plugins/adsubtract.rb +++ b/plugins/adsubtract.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AdSubtract" diff --git a/plugins/adtran-device.rb b/plugins/adtran-device.rb index d0761f71..22cd37bd 100644 --- a/plugins/adtran-device.rb +++ b/plugins/adtran-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ADTRAN-Device" diff --git a/plugins/advanced-guestbook.rb b/plugins/advanced-guestbook.rb index 2848a59c..938d490c 100644 --- a/plugins/advanced-guestbook.rb +++ b/plugins/advanced-guestbook.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Advanced-Guestbook" diff --git a/plugins/advanced-image-hosting-script.rb b/plugins/advanced-image-hosting-script.rb index 20c52f71..68475b47 100644 --- a/plugins/advanced-image-hosting-script.rb +++ b/plugins/advanced-image-hosting-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Advanced-Image-Hosting-Script" diff --git a/plugins/advantech-webaccess.rb b/plugins/advantech-webaccess.rb index 0baf9769..8ad36282 100644 --- a/plugins/advantech-webaccess.rb +++ b/plugins/advantech-webaccess.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Advantech-WebAccess" diff --git a/plugins/adxstudio-cms.rb b/plugins/adxstudio-cms.rb index dacb5ef9..1445b663 100644 --- a/plugins/adxstudio-cms.rb +++ b/plugins/adxstudio-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "adxstudio-cms" diff --git a/plugins/aef.rb b/plugins/aef.rb index 4e627806..01ed0d98 100644 --- a/plugins/aef.rb +++ b/plugins/aef.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AEF" diff --git a/plugins/afterlogic-webmail-pro.rb b/plugins/afterlogic-webmail-pro.rb index 18e6d08b..d32a75c2 100644 --- a/plugins/afterlogic-webmail-pro.rb +++ b/plugins/afterlogic-webmail-pro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AfterLogic-WebMail-Pro" diff --git a/plugins/aicart.rb b/plugins/aicart.rb index c6d07050..771d0f8a 100644 --- a/plugins/aicart.rb +++ b/plugins/aicart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AiCart" diff --git a/plugins/aidex-webserver.rb b/plugins/aidex-webserver.rb index a3e7d683..6bb0b3b0 100644 --- a/plugins/aidex-webserver.rb +++ b/plugins/aidex-webserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AIDeX-Webserver" diff --git a/plugins/airos.rb b/plugins/airos.rb index d457b9b7..2fcc6792 100644 --- a/plugins/airos.rb +++ b/plugins/airos.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AirOS" diff --git a/plugins/airtiesrouter.rb b/plugins/airtiesrouter.rb index 71718dbe..0d1eee39 100644 --- a/plugins/airtiesrouter.rb +++ b/plugins/airtiesrouter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AirTiesRouter" diff --git a/plugins/airvaecommerce.rb b/plugins/airvaecommerce.rb index 804e257d..a17e44bb 100644 --- a/plugins/airvaecommerce.rb +++ b/plugins/airvaecommerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AirvaeCommerce" diff --git a/plugins/aj-auction-pro.rb b/plugins/aj-auction-pro.rb index bec24cac..106d0911 100644 --- a/plugins/aj-auction-pro.rb +++ b/plugins/aj-auction-pro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AJ-Auction-Pro" diff --git a/plugins/aja-video-converter.rb b/plugins/aja-video-converter.rb index 350c6bb7..ba447000 100644 --- a/plugins/aja-video-converter.rb +++ b/plugins/aja-video-converter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AJA-Video-Converter" diff --git a/plugins/akamai-global-host.rb b/plugins/akamai-global-host.rb index a9c3d58b..26c60cad 100644 --- a/plugins/akamai-global-host.rb +++ b/plugins/akamai-global-host.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Akamai-Global-Host" diff --git a/plugins/akiva-webboard.rb b/plugins/akiva-webboard.rb index 0eb85d4c..7559405f 100644 --- a/plugins/akiva-webboard.rb +++ b/plugins/akiva-webboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Akiva-WebBoard" diff --git a/plugins/aladdin-hasp-license-manager.rb b/plugins/aladdin-hasp-license-manager.rb index 185554d2..6c3f6d95 100644 --- a/plugins/aladdin-hasp-license-manager.rb +++ b/plugins/aladdin-hasp-license-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Aladdin-HASP-License-Manager" diff --git a/plugins/alcatel-lucent-omniswitch.rb b/plugins/alcatel-lucent-omniswitch.rb index 58f84414..bdd7ca3a 100644 --- a/plugins/alcatel-lucent-omniswitch.rb +++ b/plugins/alcatel-lucent-omniswitch.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Alcatel-Lucent-Omniswitch" diff --git a/plugins/all-in-one-seo-pack.rb b/plugins/all-in-one-seo-pack.rb index a6e83a16..5f705265 100644 --- a/plugins/all-in-one-seo-pack.rb +++ b/plugins/all-in-one-seo-pack.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "All-in-one-SEO-Pack" diff --git a/plugins/allegro-rompager.rb b/plugins/allegro-rompager.rb index 3182168f..dd7e310c 100644 --- a/plugins/allegro-rompager.rb +++ b/plugins/allegro-rompager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Allegro-RomPager" diff --git a/plugins/allen-bradley-plc.rb b/plugins/allen-bradley-plc.rb index 22adfb08..bff3f596 100644 --- a/plugins/allen-bradley-plc.rb +++ b/plugins/allen-bradley-plc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Allen-Bradley-PLC" diff --git a/plugins/allinta-cms.rb b/plugins/allinta-cms.rb index bcfeb6e7..2b274b21 100644 --- a/plugins/allinta-cms.rb +++ b/plugins/allinta-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Allinta-CMS" diff --git a/plugins/allnewsmanager.net.rb b/plugins/allnewsmanager.net.rb index f63f278c..236a1452 100644 --- a/plugins/allnewsmanager.net.rb +++ b/plugins/allnewsmanager.net.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AllNewsManager_NET" diff --git a/plugins/allomani-e-store.rb b/plugins/allomani-e-store.rb index 92587552..665ce75d 100644 --- a/plugins/allomani-e-store.rb +++ b/plugins/allomani-e-store.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Allomani-E-Store" diff --git a/plugins/allow.rb b/plugins/allow.rb index ceff45e3..e6f1eaf3 100644 --- a/plugins/allow.rb +++ b/plugins/allow.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Allow" diff --git a/plugins/alpha-five.rb b/plugins/alpha-five.rb index b82a7f5a..46fe548a 100644 --- a/plugins/alpha-five.rb +++ b/plugins/alpha-five.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Alpha-Five" diff --git a/plugins/alstrasoft-askme.rb b/plugins/alstrasoft-askme.rb index 0f38cb28..0a705950 100644 --- a/plugins/alstrasoft-askme.rb +++ b/plugins/alstrasoft-askme.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AlstraSoft-AskMe" diff --git a/plugins/alstrasoft-epay-enterprise.rb b/plugins/alstrasoft-epay-enterprise.rb index 5c020d62..26236a47 100644 --- a/plugins/alstrasoft-epay-enterprise.rb +++ b/plugins/alstrasoft-epay-enterprise.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AlstraSoft-EPay-Enterprise" diff --git a/plugins/alt-n-mdaemon-worldclient.rb b/plugins/alt-n-mdaemon-worldclient.rb index 623f56ee..ad962787 100644 --- a/plugins/alt-n-mdaemon-worldclient.rb +++ b/plugins/alt-n-mdaemon-worldclient.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Alt-N-MDaemon-WorldClient" diff --git a/plugins/alter-native.rb b/plugins/alter-native.rb index 20d54de0..b674bf9d 100644 --- a/plugins/alter-native.rb +++ b/plugins/alter-native.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Alter-Native" diff --git a/plugins/alumniserver.rb b/plugins/alumniserver.rb index e9e47845..eaa009fa 100644 --- a/plugins/alumniserver.rb +++ b/plugins/alumniserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AlumniServer" diff --git a/plugins/am4ss.rb b/plugins/am4ss.rb index a7bb63a6..840e7eb4 100644 --- a/plugins/am4ss.rb +++ b/plugins/am4ss.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AM4SS" diff --git a/plugins/amazon-elastic-load-balancer.rb b/plugins/amazon-elastic-load-balancer.rb index e5b5421c..eb651033 100644 --- a/plugins/amazon-elastic-load-balancer.rb +++ b/plugins/amazon-elastic-load-balancer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AmazonElasticLoadBalancer" diff --git a/plugins/amdsoft.rb b/plugins/amdsoft.rb index e383b9db..df630e62 100644 --- a/plugins/amdsoft.rb +++ b/plugins/amdsoft.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AMDSoFT" diff --git a/plugins/amiro-cms.rb b/plugins/amiro-cms.rb index e14e6e37..021f1dc7 100644 --- a/plugins/amiro-cms.rb +++ b/plugins/amiro-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Amiro-CMS" diff --git a/plugins/amr-wincontrol.rb b/plugins/amr-wincontrol.rb index 4ef430f1..2bedaf5f 100644 --- a/plugins/amr-wincontrol.rb +++ b/plugins/amr-wincontrol.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AMR-WinControl" diff --git a/plugins/amxmodx.rb b/plugins/amxmodx.rb index 7e302ba0..059d79d3 100644 --- a/plugins/amxmodx.rb +++ b/plugins/amxmodx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AMX-Mod-X" diff --git a/plugins/ananyoo-cms.rb b/plugins/ananyoo-cms.rb index c86ce782..d3e506a5 100644 --- a/plugins/ananyoo-cms.rb +++ b/plugins/ananyoo-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ananyoo-CMS" diff --git a/plugins/anecms.rb b/plugins/anecms.rb index 8a03cbef..f2224ff8 100644 --- a/plugins/anecms.rb +++ b/plugins/anecms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ANECMS" diff --git a/plugins/antiboard.rb b/plugins/antiboard.rb index e1076ac8..13d816e4 100644 --- a/plugins/antiboard.rb +++ b/plugins/antiboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Antiboard" diff --git a/plugins/anygate.rb b/plugins/anygate.rb index 6ebe163f..4012f02b 100644 --- a/plugins/anygate.rb +++ b/plugins/anygate.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AnyGate" diff --git a/plugins/anyinventory.rb b/plugins/anyinventory.rb index ccfe059d..36ff0fea 100644 --- a/plugins/anyinventory.rb +++ b/plugins/anyinventory.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "anyInventory" diff --git a/plugins/aolserver.rb b/plugins/aolserver.rb index 4f65c894..bdd59e4f 100644 --- a/plugins/aolserver.rb +++ b/plugins/aolserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AOLserver" diff --git a/plugins/ap-router.rb b/plugins/ap-router.rb index fbc83356..58a3a27e 100644 --- a/plugins/ap-router.rb +++ b/plugins/ap-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AP-Router" diff --git a/plugins/apache-archiva.rb b/plugins/apache-archiva.rb index a9315f17..cae54b15 100644 --- a/plugins/apache-archiva.rb +++ b/plugins/apache-archiva.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Apache-Archiva" diff --git a/plugins/apache-cocoon.rb b/plugins/apache-cocoon.rb index 456634a8..16bd68c6 100644 --- a/plugins/apache-cocoon.rb +++ b/plugins/apache-cocoon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Apache-Cocoon" diff --git a/plugins/apache-couchdb.rb b/plugins/apache-couchdb.rb index 6e9c7726..a3218ab7 100644 --- a/plugins/apache-couchdb.rb +++ b/plugins/apache-couchdb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Apache-CouchDB" diff --git a/plugins/apache-flink.rb b/plugins/apache-flink.rb index 0ed665c8..100777bf 100644 --- a/plugins/apache-flink.rb +++ b/plugins/apache-flink.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Apache-Flink" diff --git a/plugins/apache-forrest.rb b/plugins/apache-forrest.rb index 923f330e..b3f0d79e 100644 --- a/plugins/apache-forrest.rb +++ b/plugins/apache-forrest.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Apache-Forrest" diff --git a/plugins/apache-struts.rb b/plugins/apache-struts.rb index f4088b90..e09a6b36 100644 --- a/plugins/apache-struts.rb +++ b/plugins/apache-struts.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Apache-Struts" diff --git a/plugins/apache-tomcat.rb b/plugins/apache-tomcat.rb index 990b3fe5..638e6cc8 100644 --- a/plugins/apache-tomcat.rb +++ b/plugins/apache-tomcat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do diff --git a/plugins/apache-traffic-server.rb b/plugins/apache-traffic-server.rb index 58af263c..cf829635 100644 --- a/plugins/apache-traffic-server.rb +++ b/plugins/apache-traffic-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Apache-Traffic-Server" diff --git a/plugins/apache-wicket.rb b/plugins/apache-wicket.rb index 3ee4242f..52e465eb 100644 --- a/plugins/apache-wicket.rb +++ b/plugins/apache-wicket.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Apache-Wicket" diff --git a/plugins/apache.rb b/plugins/apache.rb index 8076f401..174bfa69 100644 --- a/plugins/apache.rb +++ b/plugins/apache.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Apache" diff --git a/plugins/apc-infrastruxure-manager.rb b/plugins/apc-infrastruxure-manager.rb index ed369799..8a5da2c3 100644 --- a/plugins/apc-infrastruxure-manager.rb +++ b/plugins/apc-infrastruxure-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "APC-InfraStruXure-Manager" diff --git a/plugins/apc-ups-management-card.rb b/plugins/apc-ups-management-card.rb index 77ee2887..bf748ad4 100644 --- a/plugins/apc-ups-management-card.rb +++ b/plugins/apc-ups-management-card.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "APC-UPS-Management-Card" diff --git a/plugins/apphp-calendar.rb b/plugins/apphp-calendar.rb index 9321d562..8ffa4357 100644 --- a/plugins/apphp-calendar.rb +++ b/plugins/apphp-calendar.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ApPHP-Calendar" diff --git a/plugins/appleidiskserver.rb b/plugins/appleidiskserver.rb index 0be3a246..5bdaf40d 100644 --- a/plugins/appleidiskserver.rb +++ b/plugins/appleidiskserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AppleIDiskServer" diff --git a/plugins/applet.rb b/plugins/applet.rb index dc5d595e..2918e81d 100644 --- a/plugins/applet.rb +++ b/plugins/applet.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Applet" diff --git a/plugins/appserv.rb b/plugins/appserv.rb index eec98452..5c75167b 100644 --- a/plugins/appserv.rb +++ b/plugins/appserv.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AppServ" diff --git a/plugins/arab-portal.rb b/plugins/arab-portal.rb index d33a4f91..7316219b 100644 --- a/plugins/arab-portal.rb +++ b/plugins/arab-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Arab-Portal" diff --git a/plugins/argosoft-mail-server.rb b/plugins/argosoft-mail-server.rb index 601e9f7d..5c012e5d 100644 --- a/plugins/argosoft-mail-server.rb +++ b/plugins/argosoft-mail-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ArGoSoft-Mail-Server" diff --git a/plugins/arris-touchstone-router.rb b/plugins/arris-touchstone-router.rb index 386dbde2..e27757c2 100644 --- a/plugins/arris-touchstone-router.rb +++ b/plugins/arris-touchstone-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ARRIS-Touchstone-Router" diff --git a/plugins/articlepublisherpro.rb b/plugins/articlepublisherpro.rb index f04f531b..6d63b56e 100644 --- a/plugins/articlepublisherpro.rb +++ b/plugins/articlepublisherpro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ArticlePublisherPRO" diff --git a/plugins/artifactory.rb b/plugins/artifactory.rb index 95fd2f2e..cbd12055 100644 --- a/plugins/artifactory.rb +++ b/plugins/artifactory.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Artifactory" diff --git a/plugins/artiphp-cms.rb b/plugins/artiphp-cms.rb index 379dbd51..bb7bcef7 100644 --- a/plugins/artiphp-cms.rb +++ b/plugins/artiphp-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Artiphp-CMS" diff --git a/plugins/aruba-device.rb b/plugins/aruba-device.rb index 731eb7fc..63039caa 100644 --- a/plugins/aruba-device.rb +++ b/plugins/aruba-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Aruba-Device" diff --git a/plugins/aruba-mobility-controller-config-file.rb b/plugins/aruba-mobility-controller-config-file.rb index 5c697a5d..82d600ad 100644 --- a/plugins/aruba-mobility-controller-config-file.rb +++ b/plugins/aruba-mobility-controller-config-file.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Aruba-Mobility-Controller-Config-File" diff --git a/plugins/ashnews.rb b/plugins/ashnews.rb index fc723524..efc5d1cd 100644 --- a/plugins/ashnews.rb +++ b/plugins/ashnews.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ashnews" diff --git a/plugins/asp-nuke.rb b/plugins/asp-nuke.rb index 7f668d8a..00c66473 100644 --- a/plugins/asp-nuke.rb +++ b/plugins/asp-nuke.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ASP-Nuke" diff --git a/plugins/asp.net.rb b/plugins/asp.net.rb index f5b9cae6..a23cca5c 100644 --- a/plugins/asp.net.rb +++ b/plugins/asp.net.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ASP_NET" @@ -14,10 +14,11 @@ authors [ # v0.5 # 2014-06-12 # Added Detailed errors and ViewState Encrypted. . "Andrew Horton", # v0.6 # 2016-04-18 # Replaced passive function with match for:. 1. x-powered-by HTTP header. 2. X-AspNet-Version HTTP header. 3. AnonymousIdentificationModule. "Bhavin Senjaliya", # v0.7 # 2016-08-19 # Add 4 cookies. - "Andrew Horton", # v0.8 # 2019-12-10 # Add __VIEWSTATE detection. +# "Andrew Horton", # v0.8 # 2019-12-10 # Add __VIEWSTATE detection. +# "Andrew Horton", # v0.9 # 2021-02-28 # Add file extensions ] -version "0.8" +version "0.9" description "ASP.NET is a free web framework that enables great Web applications. Used by millions of developers, it runs some of the biggest sites in the world." website "https://www.asp.net/" @@ -87,6 +88,9 @@ matches [ # Detect ASP.NET ViewState { :search=>"body", :text=>'"File extension", :regexp=>/^(asp|aspx|ashx)$/, :search=>"uri.extension" } + ] # Passive # diff --git a/plugins/aspforum.rb b/plugins/aspforum.rb index 8a5b65ba..930aa8b7 100644 --- a/plugins/aspforum.rb +++ b/plugins/aspforum.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ASPForum" diff --git a/plugins/aspilot-cart.rb b/plugins/aspilot-cart.rb index 6c71fd2b..2509201b 100644 --- a/plugins/aspilot-cart.rb +++ b/plugins/aspilot-cart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ASPilot-Cart" diff --git a/plugins/asproxy.rb b/plugins/asproxy.rb index b1ee012d..99f83c39 100644 --- a/plugins/asproxy.rb +++ b/plugins/asproxy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ASProxy" diff --git a/plugins/aspthai.net-webboard.rb b/plugins/aspthai.net-webboard.rb index 70022232..c2814623 100644 --- a/plugins/aspthai.net-webboard.rb +++ b/plugins/aspthai.net-webboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ASPThai_Net-Webboard" diff --git a/plugins/aspweblinks.rb b/plugins/aspweblinks.rb index 32b0d5de..6ddd8ca0 100644 --- a/plugins/aspweblinks.rb +++ b/plugins/aspweblinks.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "aspWebLinks" diff --git a/plugins/astaro-command-center.rb b/plugins/astaro-command-center.rb index e5caad9e..6778d6b3 100644 --- a/plugins/astaro-command-center.rb +++ b/plugins/astaro-command-center.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Astaro-Command-Center" diff --git a/plugins/astaro-end-user-portal.rb b/plugins/astaro-end-user-portal.rb index a90f7ced..00bdc624 100644 --- a/plugins/astaro-end-user-portal.rb +++ b/plugins/astaro-end-user-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Astaro-End-User-Portal" diff --git a/plugins/astaro-security-gateway.rb b/plugins/astaro-security-gateway.rb index 74800f7c..c85d029b 100644 --- a/plugins/astaro-security-gateway.rb +++ b/plugins/astaro-security-gateway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Astaro-Security-Gateway" diff --git a/plugins/asterisk.rb b/plugins/asterisk.rb index 71fc4ec4..00843fab 100644 --- a/plugins/asterisk.rb +++ b/plugins/asterisk.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Asterisk" diff --git a/plugins/atlassian-jira.rb b/plugins/atlassian-jira.rb index acc0a03e..909fc3e3 100644 --- a/plugins/atlassian-jira.rb +++ b/plugins/atlassian-jira.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Atlassian-JIRA" diff --git a/plugins/atmail-webmail.rb b/plugins/atmail-webmail.rb index 4e6f8033..5112c5cc 100644 --- a/plugins/atmail-webmail.rb +++ b/plugins/atmail-webmail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Atmail-WebMail" diff --git a/plugins/atomic-cms.rb b/plugins/atomic-cms.rb index a8b1d168..7a56dd5a 100644 --- a/plugins/atomic-cms.rb +++ b/plugins/atomic-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Atomic-CMS" diff --git a/plugins/atomic-photo-album.rb b/plugins/atomic-photo-album.rb index 159986d9..b7d40ec3 100644 --- a/plugins/atomic-photo-album.rb +++ b/plugins/atomic-photo-album.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Atomic-Photo-Album" diff --git a/plugins/atutor.rb b/plugins/atutor.rb index 580ad293..5ad4b6bc 100644 --- a/plugins/atutor.rb +++ b/plugins/atutor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ATutor" diff --git a/plugins/atvise-webmi.rb b/plugins/atvise-webmi.rb index 431a2187..f338ce04 100644 --- a/plugins/atvise-webmi.rb +++ b/plugins/atvise-webmi.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Atvise-webMI" diff --git a/plugins/aurion.rb b/plugins/aurion.rb index 62332de2..d416e5cd 100644 --- a/plugins/aurion.rb +++ b/plugins/aurion.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Aurion" diff --git a/plugins/auto-cms.rb b/plugins/auto-cms.rb index 62599fad..b948943e 100644 --- a/plugins/auto-cms.rb +++ b/plugins/auto-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Auto-CMS" diff --git a/plugins/autoindex-php-script.rb b/plugins/autoindex-php-script.rb index 1fbf583e..c4b2956c 100644 --- a/plugins/autoindex-php-script.rb +++ b/plugins/autoindex-php-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AutoIndex-PHP-Script" diff --git a/plugins/auxilium-petratepro.rb b/plugins/auxilium-petratepro.rb index 222a55cc..a19c96ec 100644 --- a/plugins/auxilium-petratepro.rb +++ b/plugins/auxilium-petratepro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Auxilium-PetRatePro" diff --git a/plugins/av-arcade.rb b/plugins/av-arcade.rb index 809e0db7..026e81be 100644 --- a/plugins/av-arcade.rb +++ b/plugins/av-arcade.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AV-Arcade" diff --git a/plugins/avantfax.rb b/plugins/avantfax.rb index d0909aad..eb2ebda5 100644 --- a/plugins/avantfax.rb +++ b/plugins/avantfax.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AvantFAX" diff --git a/plugins/avaya-aura-utility-server.rb b/plugins/avaya-aura-utility-server.rb index 7ff84e4d..4314162a 100644 --- a/plugins/avaya-aura-utility-server.rb +++ b/plugins/avaya-aura-utility-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Avaya-Aura-Utility-Server" diff --git a/plugins/avaya-ip-office.rb b/plugins/avaya-ip-office.rb index 3c7fe16d..50a2dcb4 100644 --- a/plugins/avaya-ip-office.rb +++ b/plugins/avaya-ip-office.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Avaya-IP-Office" diff --git a/plugins/avaya-secure-router.rb b/plugins/avaya-secure-router.rb index 4d9976ae..1f1a7b2d 100644 --- a/plugins/avaya-secure-router.rb +++ b/plugins/avaya-secure-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Avaya-Secure-Router" diff --git a/plugins/avocent-dsview.rb b/plugins/avocent-dsview.rb index 329c9deb..23c0215b 100644 --- a/plugins/avocent-dsview.rb +++ b/plugins/avocent-dsview.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Avocent-DSView" diff --git a/plugins/avtech-video-web-server.rb b/plugins/avtech-video-web-server.rb index 5eb72820..00618678 100644 --- a/plugins/avtech-video-web-server.rb +++ b/plugins/avtech-video-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AVTech-Video-Web-Server" diff --git a/plugins/awstats.rb b/plugins/awstats.rb index d1277649..0bcb953b 100644 --- a/plugins/awstats.rb +++ b/plugins/awstats.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AWStats" diff --git a/plugins/axcms.net.rb b/plugins/axcms.net.rb index f55f6051..0df6f948 100644 --- a/plugins/axcms.net.rb +++ b/plugins/axcms.net.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AxCMS_net" diff --git a/plugins/axel-device.rb b/plugins/axel-device.rb index e9e01ee9..3da6cbf5 100644 --- a/plugins/axel-device.rb +++ b/plugins/axel-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Axel-Device" diff --git a/plugins/axentra-hipserv.rb b/plugins/axentra-hipserv.rb index 2092f068..9e5ad5c6 100644 --- a/plugins/axentra-hipserv.rb +++ b/plugins/axentra-hipserv.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Axentra-HipServ" diff --git a/plugins/axigen-mail-server.rb b/plugins/axigen-mail-server.rb index a3f83e1f..9de14456 100644 --- a/plugins/axigen-mail-server.rb +++ b/plugins/axigen-mail-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Axigen-Mail-Server" diff --git a/plugins/axis-commerce.rb b/plugins/axis-commerce.rb index 9a729c37..efb5afbf 100644 --- a/plugins/axis-commerce.rb +++ b/plugins/axis-commerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Axis-Commerce" diff --git a/plugins/axis-network-camera.rb b/plugins/axis-network-camera.rb index edd93495..f53f9a86 100644 --- a/plugins/axis-network-camera.rb +++ b/plugins/axis-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Axis-Network-Camera" diff --git a/plugins/axis-printserver.rb b/plugins/axis-printserver.rb index eed58541..8af44a30 100644 --- a/plugins/axis-printserver.rb +++ b/plugins/axis-printserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Axis-PrintServer" diff --git a/plugins/axous.rb b/plugins/axous.rb index f0d1a9e7..a6dd919e 100644 --- a/plugins/axous.rb +++ b/plugins/axous.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Axous" diff --git a/plugins/axtls.rb b/plugins/axtls.rb index 6cf2a912..715ecc61 100644 --- a/plugins/axtls.rb +++ b/plugins/axtls.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "axTLS" diff --git a/plugins/axway-securetransport.rb b/plugins/axway-securetransport.rb index d5c9ff55..438784b4 100644 --- a/plugins/axway-securetransport.rb +++ b/plugins/axway-securetransport.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Axway-SecureTransport" diff --git a/plugins/azure.rb b/plugins/azure.rb index 7a3dc4cb..596cd86d 100644 --- a/plugins/azure.rb +++ b/plugins/azure.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "AzureCloud" diff --git a/plugins/b2evolution.rb b/plugins/b2evolution.rb index c1f80865..0d906f75 100644 --- a/plugins/b2evolution.rb +++ b/plugins/b2evolution.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "b2evolution" diff --git a/plugins/baap-mobile-version.rb b/plugins/baap-mobile-version.rb index 56d1f7a7..788130fb 100644 --- a/plugins/baap-mobile-version.rb +++ b/plugins/baap-mobile-version.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BAAP-Mobile-Version" diff --git a/plugins/bab.stats.rb b/plugins/bab.stats.rb index 5a5dc75f..a817f3ab 100644 --- a/plugins/bab.stats.rb +++ b/plugins/bab.stats.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BAB_Stats" diff --git a/plugins/backbee.rb b/plugins/backbee.rb index d9e1ea43..1c96d0b3 100644 --- a/plugins/backbee.rb +++ b/plugins/backbee.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BackBee" diff --git a/plugins/backuppc.rb b/plugins/backuppc.rb index 340c5904..d86e03ed 100644 --- a/plugins/backuppc.rb +++ b/plugins/backuppc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BackupPC" diff --git a/plugins/bad-behaviour-anti-spam-plugin.rb b/plugins/bad-behaviour-anti-spam-plugin.rb index 7e48b55a..b96716e2 100644 --- a/plugins/bad-behaviour-anti-spam-plugin.rb +++ b/plugins/bad-behaviour-anti-spam-plugin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BadBehaviourAntiSpamPlugin" diff --git a/plugins/badblue.rb b/plugins/badblue.rb index 24f208cc..9659db45 100644 --- a/plugins/badblue.rb +++ b/plugins/badblue.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BadBlue" diff --git a/plugins/barracuda-backup-server.rb b/plugins/barracuda-backup-server.rb index a5771585..14d1bb98 100644 --- a/plugins/barracuda-backup-server.rb +++ b/plugins/barracuda-backup-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Barracuda-Backup-Server" diff --git a/plugins/barracuda-load-balancer.rb b/plugins/barracuda-load-balancer.rb index c91d02a3..779e75c1 100644 --- a/plugins/barracuda-load-balancer.rb +++ b/plugins/barracuda-load-balancer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Barracuda-Load-Balancer" diff --git a/plugins/barracuda-spam-firewall.rb b/plugins/barracuda-spam-firewall.rb index c3dba327..fb689a9a 100644 --- a/plugins/barracuda-spam-firewall.rb +++ b/plugins/barracuda-spam-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Barracuda-Spam-Firewall" diff --git a/plugins/barracuda-waf.rb b/plugins/barracuda-waf.rb index 64a909bf..5a07e2ec 100644 --- a/plugins/barracuda-waf.rb +++ b/plugins/barracuda-waf.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Barracuda-Waf" diff --git a/plugins/barts-cms.rb b/plugins/barts-cms.rb index ccdf4baa..6f795059 100644 --- a/plugins/barts-cms.rb +++ b/plugins/barts-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Barts-CMS" diff --git a/plugins/base.rb b/plugins/base.rb index 4a1376c1..99098a23 100644 --- a/plugins/base.rb +++ b/plugins/base.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BASE" diff --git a/plugins/basic-php-events-lister.rb b/plugins/basic-php-events-lister.rb index cd7952c8..7cff474d 100644 --- a/plugins/basic-php-events-lister.rb +++ b/plugins/basic-php-events-lister.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Basic-PHP-Events-Lister" diff --git a/plugins/basilic.rb b/plugins/basilic.rb index 76a19306..e8cf8cbc 100644 --- a/plugins/basilic.rb +++ b/plugins/basilic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Basilic" diff --git a/plugins/batavi.rb b/plugins/batavi.rb index 63663879..951a4476 100644 --- a/plugins/batavi.rb +++ b/plugins/batavi.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Batavi" diff --git a/plugins/battle-blog.rb b/plugins/battle-blog.rb index fe2a77ec..11849931 100644 --- a/plugins/battle-blog.rb +++ b/plugins/battle-blog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Battle-Blog" diff --git a/plugins/bbpress.rb b/plugins/bbpress.rb index 312245fd..e8c48d59 100644 --- a/plugins/bbpress.rb +++ b/plugins/bbpress.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "bbPress" diff --git a/plugins/bea-weblogic-server.rb b/plugins/bea-weblogic-server.rb index a3238536..8725ae24 100644 --- a/plugins/bea-weblogic-server.rb +++ b/plugins/bea-weblogic-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BEA-WebLogic-Server" diff --git a/plugins/beef.rb b/plugins/beef.rb index 1b123aab..c1db5fef 100644 --- a/plugins/beef.rb +++ b/plugins/beef.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BeEF" diff --git a/plugins/belkin-modem.rb b/plugins/belkin-modem.rb index 93514e5b..90dd982e 100644 --- a/plugins/belkin-modem.rb +++ b/plugins/belkin-modem.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Belkin-Modem" diff --git a/plugins/ben-ssl.rb b/plugins/ben-ssl.rb index 6733ae56..bfabe94e 100644 --- a/plugins/ben-ssl.rb +++ b/plugins/ben-ssl.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ben-SSL" diff --git a/plugins/bentley-systems-projectwise.rb b/plugins/bentley-systems-projectwise.rb index 93e1aa1c..59b0b139 100644 --- a/plugins/bentley-systems-projectwise.rb +++ b/plugins/bentley-systems-projectwise.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Bentley-Systems-ProjectWise" diff --git a/plugins/bestshoppro.rb b/plugins/bestshoppro.rb index 5a71ad01..825bd958 100644 --- a/plugins/bestshoppro.rb +++ b/plugins/bestshoppro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BestShopPro" diff --git a/plugins/bigace.rb b/plugins/bigace.rb index 484c5ce0..224ca5db 100644 --- a/plugins/bigace.rb +++ b/plugins/bigace.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BIGACE" diff --git a/plugins/bigcommerce.rb b/plugins/bigcommerce.rb index c44c903e..f7c7d9c9 100644 --- a/plugins/bigcommerce.rb +++ b/plugins/bigcommerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BigCommerce" diff --git a/plugins/bigdump.rb b/plugins/bigdump.rb index c6ab683b..a33a5099 100644 --- a/plugins/bigdump.rb +++ b/plugins/bigdump.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BigDump" diff --git a/plugins/billion-router.rb b/plugins/billion-router.rb index 05c351ee..aa677133 100644 --- a/plugins/billion-router.rb +++ b/plugins/billion-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Billion-Router" diff --git a/plugins/binarysec-firewall.rb b/plugins/binarysec-firewall.rb index 2b7284f0..cb867cb0 100644 --- a/plugins/binarysec-firewall.rb +++ b/plugins/binarysec-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BinarySec-Firewall" diff --git a/plugins/bing-searchengine.rb b/plugins/bing-searchengine.rb index c714314a..ab72d2db 100644 --- a/plugins/bing-searchengine.rb +++ b/plugins/bing-searchengine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Bing-SearchEngine" diff --git a/plugins/bingophp-news.rb b/plugins/bingophp-news.rb index 3e759733..cdc0ec23 100644 --- a/plugins/bingophp-news.rb +++ b/plugins/bingophp-news.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BinGoPHP-News" diff --git a/plugins/biromsoft-webcam.rb b/plugins/biromsoft-webcam.rb index 4eab504d..21cd4c84 100644 --- a/plugins/biromsoft-webcam.rb +++ b/plugins/biromsoft-webcam.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Biromsoft-WebCam" diff --git a/plugins/biscom-delivery-server.rb b/plugins/biscom-delivery-server.rb index 66fdf47f..517583de 100644 --- a/plugins/biscom-delivery-server.rb +++ b/plugins/biscom-delivery-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Biscom-Delivery-Server" diff --git a/plugins/bitcoin-js-remote.rb b/plugins/bitcoin-js-remote.rb index b04c60a8..ef26b0e5 100644 --- a/plugins/bitcoin-js-remote.rb +++ b/plugins/bitcoin-js-remote.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "bitcoin-js-remote" diff --git a/plugins/bitkeeper.rb b/plugins/bitkeeper.rb index 6f6805a6..a94aa658 100644 --- a/plugins/bitkeeper.rb +++ b/plugins/bitkeeper.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BitKeeper" diff --git a/plugins/bitrix-site-manager.rb b/plugins/bitrix-site-manager.rb index 6375b1a0..935c3b24 100644 --- a/plugins/bitrix-site-manager.rb +++ b/plugins/bitrix-site-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Bitrix-Site-Manager" diff --git a/plugins/bitweaver.rb b/plugins/bitweaver.rb index 342ea5ec..9405b10e 100644 --- a/plugins/bitweaver.rb +++ b/plugins/bitweaver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "bitweaver" diff --git a/plugins/blackjumbodog.rb b/plugins/blackjumbodog.rb index c6d0c6ce..0a8fdd5e 100644 --- a/plugins/blackjumbodog.rb +++ b/plugins/blackjumbodog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlackJumboDog" diff --git a/plugins/blazix.rb b/plugins/blazix.rb index 9e379cf6..89fc1c92 100644 --- a/plugins/blazix.rb +++ b/plugins/blazix.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Blazix" diff --git a/plugins/blockscout.rb b/plugins/blockscout.rb index af8b31de..2b161289 100644 --- a/plugins/blockscout.rb +++ b/plugins/blockscout.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlockScout" diff --git a/plugins/blogengine.net.rb b/plugins/blogengine.net.rb index 72b368b0..d823d3d9 100644 --- a/plugins/blogengine.net.rb +++ b/plugins/blogengine.net.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlogEngine_NET" diff --git a/plugins/blogger.rb b/plugins/blogger.rb index 6411b2b1..09cb66f1 100644 --- a/plugins/blogger.rb +++ b/plugins/blogger.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Blogger" diff --git a/plugins/blogn-plus.rb b/plugins/blogn-plus.rb index 752abd99..ab315d0d 100644 --- a/plugins/blogn-plus.rb +++ b/plugins/blogn-plus.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlognPlus" diff --git a/plugins/blogsmithmedia.rb b/plugins/blogsmithmedia.rb index 0966b45e..6daa5b2f 100644 --- a/plugins/blogsmithmedia.rb +++ b/plugins/blogsmithmedia.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlogSmithMedia" diff --git a/plugins/bloofoxcms.rb b/plugins/bloofoxcms.rb index 2de16c2c..25d63b44 100644 --- a/plugins/bloofoxcms.rb +++ b/plugins/bloofoxcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BloofoxCMS" diff --git a/plugins/blox.rb b/plugins/blox.rb index dc14bfe7..188dd3a0 100644 --- a/plugins/blox.rb +++ b/plugins/blox.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BLOX" diff --git a/plugins/blue-coat-proxysg.rb b/plugins/blue-coat-proxysg.rb index 38fb3801..d25a8b07 100644 --- a/plugins/blue-coat-proxysg.rb +++ b/plugins/blue-coat-proxysg.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Blue-Coat-ProxySG" diff --git a/plugins/bluedragon.rb b/plugins/bluedragon.rb index 7fe0753b..88f0449a 100644 --- a/plugins/bluedragon.rb +++ b/plugins/bluedragon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlueDragon" diff --git a/plugins/bluenet-video-server.rb b/plugins/bluenet-video-server.rb index 5257a376..e9c48f83 100644 --- a/plugins/bluenet-video-server.rb +++ b/plugins/bluenet-video-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlueNet-Video-Server" diff --git a/plugins/bluenet-video.rb b/plugins/bluenet-video.rb index 7550c511..f8927d20 100644 --- a/plugins/bluenet-video.rb +++ b/plugins/bluenet-video.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlueNet-Video" diff --git a/plugins/blueonyx.rb b/plugins/blueonyx.rb index 3ca5e3b6..967c8b62 100644 --- a/plugins/blueonyx.rb +++ b/plugins/blueonyx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlueOnyx" diff --git a/plugins/bluequartz.rb b/plugins/bluequartz.rb index 186bb93c..f4b94e06 100644 --- a/plugins/bluequartz.rb +++ b/plugins/bluequartz.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BlueQuartz" diff --git a/plugins/bm-classifieds.rb b/plugins/bm-classifieds.rb index 5c4abca3..1fe0ab47 100644 --- a/plugins/bm-classifieds.rb +++ b/plugins/bm-classifieds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BM-Classifieds" diff --git a/plugins/bmc-remedy.rb b/plugins/bmc-remedy.rb index e9a73c26..d261c124 100644 --- a/plugins/bmc-remedy.rb +++ b/plugins/bmc-remedy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BMC-Remedy" diff --git a/plugins/boa-webserver.rb b/plugins/boa-webserver.rb index a3fe662e..28fc9568 100644 --- a/plugins/boa-webserver.rb +++ b/plugins/boa-webserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Boa-WebServer" diff --git a/plugins/boastmachine.rb b/plugins/boastmachine.rb index c66a1c7a..cefcbc77 100644 --- a/plugins/boastmachine.rb +++ b/plugins/boastmachine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "boastMachine" diff --git a/plugins/bobo.rb b/plugins/bobo.rb index 08f709ff..53145605 100644 --- a/plugins/bobo.rb +++ b/plugins/bobo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Bobo" diff --git a/plugins/bomgar.rb b/plugins/bomgar.rb index 65ce5e5b..1acf4e37 100644 --- a/plugins/bomgar.rb +++ b/plugins/bomgar.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Bomgar" diff --git a/plugins/booksolved.rb b/plugins/booksolved.rb index 0972be4e..140faba0 100644 --- a/plugins/booksolved.rb +++ b/plugins/booksolved.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BOOKSolved" diff --git a/plugins/boonex-dolphin.rb b/plugins/boonex-dolphin.rb index 9fa11dd3..fa1726e9 100644 --- a/plugins/boonex-dolphin.rb +++ b/plugins/boonex-dolphin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BoonEx-Dolphin" diff --git a/plugins/bootstrap.rb b/plugins/bootstrap.rb index f5d1d5d5..4f1d3fc7 100644 --- a/plugins/bootstrap.rb +++ b/plugins/bootstrap.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # Plugin.define do name "Bootstrap" diff --git a/plugins/bosclassifieds.rb b/plugins/bosclassifieds.rb index c95f4ccb..5b8ee5a3 100644 --- a/plugins/bosclassifieds.rb +++ b/plugins/bosclassifieds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BosClassifieds" diff --git a/plugins/brewblogger.rb b/plugins/brewblogger.rb index d56c56ee..6a68cf32 100644 --- a/plugins/brewblogger.rb +++ b/plugins/brewblogger.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BrewBlogger" diff --git a/plugins/brightcove.rb b/plugins/brightcove.rb index d1c122cd..1219e14c 100644 --- a/plugins/brightcove.rb +++ b/plugins/brightcove.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Brightcove" diff --git a/plugins/broadwin-webaccess.rb b/plugins/broadwin-webaccess.rb index fde1527a..978e0239 100644 --- a/plugins/broadwin-webaccess.rb +++ b/plugins/broadwin-webaccess.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BroadWin-WebAccess" diff --git a/plugins/brother-fax.rb b/plugins/brother-fax.rb index f764dbec..2a11d89b 100644 --- a/plugins/brother-fax.rb +++ b/plugins/brother-fax.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Brother-Fax" diff --git a/plugins/brother-printer.rb b/plugins/brother-printer.rb index f4498350..c8d9b4b4 100644 --- a/plugins/brother-printer.rb +++ b/plugins/brother-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Brother-Printer" diff --git a/plugins/browsercms.rb b/plugins/browsercms.rb index 0d70803c..0b22959b 100644 --- a/plugins/browsercms.rb +++ b/plugins/browsercms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BrowserCMS" diff --git a/plugins/bspeak.rb b/plugins/bspeak.rb index d9e954c7..9f4134f6 100644 --- a/plugins/bspeak.rb +++ b/plugins/bspeak.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "bSpeak" diff --git a/plugins/buddy-zone.rb b/plugins/buddy-zone.rb index 6bf94d6d..2e4438f5 100644 --- a/plugins/buddy-zone.rb +++ b/plugins/buddy-zone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Buddy-Zone" diff --git a/plugins/bugfree.rb b/plugins/bugfree.rb index 15554f64..af152b33 100644 --- a/plugins/bugfree.rb +++ b/plugins/bugfree.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BugFree" diff --git a/plugins/bugtracker-net.rb b/plugins/bugtracker-net.rb index 61d76d25..2d8360ee 100644 --- a/plugins/bugtracker-net.rb +++ b/plugins/bugtracker-net.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BugTracker.NET" diff --git a/plugins/bulletlink-newspaper-template.rb b/plugins/bulletlink-newspaper-template.rb index dcf962c0..004be498 100644 --- a/plugins/bulletlink-newspaper-template.rb +++ b/plugins/bulletlink-newspaper-template.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Bulletlink-Newspaper-Template" diff --git a/plugins/burning-board-lite.rb b/plugins/burning-board-lite.rb index 78bb7a10..bbf41ae4 100644 --- a/plugins/burning-board-lite.rb +++ b/plugins/burning-board-lite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Burning-Board-Lite" diff --git a/plugins/businessspace.rb b/plugins/businessspace.rb index 5124b381..84df657c 100644 --- a/plugins/businessspace.rb +++ b/plugins/businessspace.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BusinessSpace" diff --git a/plugins/bxr.rb b/plugins/bxr.rb index b3667bec..1ff3f897 100644 --- a/plugins/bxr.rb +++ b/plugins/bxr.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "BXR" diff --git a/plugins/c99-shell.rb b/plugins/c99-shell.rb index 95ed3649..98ed2fcb 100644 --- a/plugins/c99-shell.rb +++ b/plugins/c99-shell.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "c99-Shell" diff --git a/plugins/ca-siteminder.rb b/plugins/ca-siteminder.rb index bfba1b03..9157fc46 100644 --- a/plugins/ca-siteminder.rb +++ b/plugins/ca-siteminder.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CA-SiteMinder" diff --git a/plugins/cachelogic-expired-domains-script.rb b/plugins/cachelogic-expired-domains-script.rb index 6c13fc41..3485cf3e 100644 --- a/plugins/cachelogic-expired-domains-script.rb +++ b/plugins/cachelogic-expired-domains-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cachelogic-Expired-Domains-Script" diff --git a/plugins/cacti.rb b/plugins/cacti.rb index e0cc9b15..81d3f6a7 100644 --- a/plugins/cacti.rb +++ b/plugins/cacti.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cacti" diff --git a/plugins/cactushop.rb b/plugins/cactushop.rb index 3feafdaa..946f22b0 100644 --- a/plugins/cactushop.rb +++ b/plugins/cactushop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CactuShop" diff --git a/plugins/cafeengine.rb b/plugins/cafeengine.rb index 13ae4863..275aeac9 100644 --- a/plugins/cafeengine.rb +++ b/plugins/cafeengine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CafeEngine" diff --git a/plugins/calendarix.rb b/plugins/calendarix.rb index 11b0a0a5..7546e5b8 100644 --- a/plugins/calendarix.rb +++ b/plugins/calendarix.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Calendarix" diff --git a/plugins/calendarscript.rb b/plugins/calendarscript.rb index a7867046..41487fc6 100644 --- a/plugins/calendarscript.rb +++ b/plugins/calendarscript.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CalendarScript" diff --git a/plugins/calogic-calendars.rb b/plugins/calogic-calendars.rb index 9ade6fbf..8e37a8d1 100644 --- a/plugins/calogic-calendars.rb +++ b/plugins/calogic-calendars.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CaLogic-Calendars" diff --git a/plugins/calypso-ion-8r-device.rb b/plugins/calypso-ion-8r-device.rb index 81d17052..b1062118 100644 --- a/plugins/calypso-ion-8r-device.rb +++ b/plugins/calypso-ion-8r-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Calypso-ION-8r-Device" diff --git a/plugins/camera-life.rb b/plugins/camera-life.rb index 0ddee9f5..45bdfa61 100644 --- a/plugins/camera-life.rb +++ b/plugins/camera-life.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CameraLife" diff --git a/plugins/campsite.rb b/plugins/campsite.rb index 7ca36943..4da6d2fa 100644 --- a/plugins/campsite.rb +++ b/plugins/campsite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Campsite" diff --git a/plugins/canon-network-camera.rb b/plugins/canon-network-camera.rb index 8b2b7431..b0947526 100644 --- a/plugins/canon-network-camera.rb +++ b/plugins/canon-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Canon-Network-Camera" diff --git a/plugins/canon-print-server.rb b/plugins/canon-print-server.rb index bd18fc49..ff210c15 100644 --- a/plugins/canon-print-server.rb +++ b/plugins/canon-print-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Canon-Print-Server" diff --git a/plugins/canon-printer.rb b/plugins/canon-printer.rb index 19f44a27..c27d93db 100644 --- a/plugins/canon-printer.rb +++ b/plugins/canon-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Canon-Printer" diff --git a/plugins/capexweb.rb b/plugins/capexweb.rb index 47752cec..75ed50d7 100644 --- a/plugins/capexweb.rb +++ b/plugins/capexweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "cApexWEB" diff --git a/plugins/car-portal.rb b/plugins/car-portal.rb index 73b917c5..11478f9d 100644 --- a/plugins/car-portal.rb +++ b/plugins/car-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Car-Portal" diff --git a/plugins/card-reader-adapter.rb b/plugins/card-reader-adapter.rb index 016d3d23..cce85061 100644 --- a/plugins/card-reader-adapter.rb +++ b/plugins/card-reader-adapter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Card-Reader-Adapter" diff --git a/plugins/carel-data-server.rb b/plugins/carel-data-server.rb index 79a30a13..4282cebf 100644 --- a/plugins/carel-data-server.rb +++ b/plugins/carel-data-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Carel-Data-Server" diff --git a/plugins/carrier-ccnweb.rb b/plugins/carrier-ccnweb.rb index af458c70..1d0137b5 100644 --- a/plugins/carrier-ccnweb.rb +++ b/plugins/carrier-ccnweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Carrier-CCNWeb" diff --git a/plugins/cartweaver.rb b/plugins/cartweaver.rb index 2d60e78c..1ffa9a7d 100644 --- a/plugins/cartweaver.rb +++ b/plugins/cartweaver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cartweaver" diff --git a/plugins/castor.rb b/plugins/castor.rb index b190b3d8..15332475 100644 --- a/plugins/castor.rb +++ b/plugins/castor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CAStor" diff --git a/plugins/caudium.rb b/plugins/caudium.rb index 40a72ed2..ebd2e972 100644 --- a/plugins/caudium.rb +++ b/plugins/caudium.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Caudium" diff --git a/plugins/cauposhop-classic.rb b/plugins/cauposhop-classic.rb index 05609aac..86f5c402 100644 --- a/plugins/cauposhop-classic.rb +++ b/plugins/cauposhop-classic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CaupoShop-Classic" diff --git a/plugins/cbs-interactive.rb b/plugins/cbs-interactive.rb index 072d8d0f..f171dd2d 100644 --- a/plugins/cbs-interactive.rb +++ b/plugins/cbs-interactive.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CBS-Interactive" diff --git a/plugins/cdk-connected-website.rb b/plugins/cdk-connected-website.rb index 0ae64f63..90b9394a 100644 --- a/plugins/cdk-connected-website.rb +++ b/plugins/cdk-connected-website.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CDK Connected Website" diff --git a/plugins/cdn-cache-server.rb b/plugins/cdn-cache-server.rb index e7dd8592..cf2891a7 100644 --- a/plugins/cdn-cache-server.rb +++ b/plugins/cdn-cache-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CDN-Cache-Server" diff --git a/plugins/censura.rb b/plugins/censura.rb index 1ce3f27c..c1a3d64c 100644 --- a/plugins/censura.rb +++ b/plugins/censura.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Censura" diff --git a/plugins/centreon.rb b/plugins/centreon.rb index 6821458b..03177dd5 100644 --- a/plugins/centreon.rb +++ b/plugins/centreon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Centreon" diff --git a/plugins/cerberus-helpdesk.rb b/plugins/cerberus-helpdesk.rb index d55f6409..c3bbaa5b 100644 --- a/plugins/cerberus-helpdesk.rb +++ b/plugins/cerberus-helpdesk.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cerberus-Helpdesk" diff --git a/plugins/cern.rb b/plugins/cern.rb index 0a1f637a..dd67afba 100644 --- a/plugins/cern.rb +++ b/plugins/cern.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CERN" diff --git a/plugins/cervis.rb b/plugins/cervis.rb index 7a3b93dc..02cd45e9 100644 --- a/plugins/cervis.rb +++ b/plugins/cervis.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CERVIS" diff --git a/plugins/cf-image-hosting-script.rb b/plugins/cf-image-hosting-script.rb index 0ab43b3a..aa96c716 100644 --- a/plugins/cf-image-hosting-script.rb +++ b/plugins/cf-image-hosting-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CF-Image-Hosting-Script" diff --git a/plugins/cgi-backdoor.rb b/plugins/cgi-backdoor.rb index 5eac6aa1..ef1b1abf 100644 --- a/plugins/cgi-backdoor.rb +++ b/plugins/cgi-backdoor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CGI-Backdoor" diff --git a/plugins/cgi-irc.rb b/plugins/cgi-irc.rb index 41553fd5..63f6fd3f 100644 --- a/plugins/cgi-irc.rb +++ b/plugins/cgi-irc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CGI:IRC" diff --git a/plugins/cgiproxy.rb b/plugins/cgiproxy.rb index ef0fed6f..304fd383 100644 --- a/plugins/cgiproxy.rb +++ b/plugins/cgiproxy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CGIProxy" diff --git a/plugins/cgit.rb b/plugins/cgit.rb index 95a1e5a3..0185765a 100644 --- a/plugins/cgit.rb +++ b/plugins/cgit.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "cgit" diff --git a/plugins/chamilo.rb b/plugins/chamilo.rb index 5fd05611..c9c56976 100644 --- a/plugins/chamilo.rb +++ b/plugins/chamilo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Chamilo" diff --git a/plugins/chance-i-divis-dvr.rb b/plugins/chance-i-divis-dvr.rb index dc149e54..cc291b4c 100644 --- a/plugins/chance-i-divis-dvr.rb +++ b/plugins/chance-i-divis-dvr.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CHANCE-i-DiViS-DVR" diff --git a/plugins/check-point-firewall.rb b/plugins/check-point-firewall.rb index a6a541cb..e2005e85 100644 --- a/plugins/check-point-firewall.rb +++ b/plugins/check-point-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Check-Point-Firewall" diff --git a/plugins/check-point-ssl-network-extender.rb b/plugins/check-point-ssl-network-extender.rb index 8613651f..dd272a54 100644 --- a/plugins/check-point-ssl-network-extender.rb +++ b/plugins/check-point-ssl-network-extender.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Check-Point-SSL-Network-Extender" diff --git a/plugins/cherokee.rb b/plugins/cherokee.rb index 569079fb..2cf8765b 100644 --- a/plugins/cherokee.rb +++ b/plugins/cherokee.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cherokee" diff --git a/plugins/chiliproject.rb b/plugins/chiliproject.rb index 1e9af889..abe81506 100644 --- a/plugins/chiliproject.rb +++ b/plugins/chiliproject.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ChiliProject" diff --git a/plugins/chillycms.rb b/plugins/chillycms.rb index ff17b97e..89802395 100644 --- a/plugins/chillycms.rb +++ b/plugins/chillycms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "chillyCMS" diff --git a/plugins/chinacache.rb b/plugins/chinacache.rb index bf11883f..bb448390 100644 --- a/plugins/chinacache.rb +++ b/plugins/chinacache.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ChinaCache" diff --git a/plugins/cimplicity-webview.rb b/plugins/cimplicity-webview.rb index cb525505..c0baa69e 100644 --- a/plugins/cimplicity-webview.rb +++ b/plugins/cimplicity-webview.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cimplicity-WebView" diff --git a/plugins/cinvoice.rb b/plugins/cinvoice.rb index ed330a62..b24fc864 100644 --- a/plugins/cinvoice.rb +++ b/plugins/cinvoice.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "cInvoice" diff --git a/plugins/cisco-ace-xml-gateway.rb b/plugins/cisco-ace-xml-gateway.rb index e7973167..5873bd72 100644 --- a/plugins/cisco-ace-xml-gateway.rb +++ b/plugins/cisco-ace-xml-gateway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cisco-ACE-XML-Gateway" diff --git a/plugins/cisco-ace.rb b/plugins/cisco-ace.rb index b9a908f6..1f7d1b82 100644 --- a/plugins/cisco-ace.rb +++ b/plugins/cisco-ace.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cisco-ACE" diff --git a/plugins/cisco-adaptive-security-appliance.rb b/plugins/cisco-adaptive-security-appliance.rb index 2058dd79..8c039995 100644 --- a/plugins/cisco-adaptive-security-appliance.rb +++ b/plugins/cisco-adaptive-security-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cisco-Adaptive-Security-Appliance" diff --git a/plugins/cisco-ios.rb b/plugins/cisco-ios.rb index b0549cf1..96f1f31e 100644 --- a/plugins/cisco-ios.rb +++ b/plugins/cisco-ios.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cisco-IOS" diff --git a/plugins/cisco-ip-phone.rb b/plugins/cisco-ip-phone.rb index 24da18f2..a8b7f55f 100644 --- a/plugins/cisco-ip-phone.rb +++ b/plugins/cisco-ip-phone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cisco-IP-Phone" diff --git a/plugins/cisco-vpn-3000-concentrator.rb b/plugins/cisco-vpn-3000-concentrator.rb index f8b4b589..248517a2 100644 --- a/plugins/cisco-vpn-3000-concentrator.rb +++ b/plugins/cisco-vpn-3000-concentrator.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cisco-VPN-3000-Concentrator" diff --git a/plugins/citrix-access-gateway.rb b/plugins/citrix-access-gateway.rb index 1760932c..56223f01 100644 --- a/plugins/citrix-access-gateway.rb +++ b/plugins/citrix-access-gateway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Citrix-Access-Gateway" diff --git a/plugins/citrix-confproxy.rb b/plugins/citrix-confproxy.rb index 4f08870c..b768cd3c 100644 --- a/plugins/citrix-confproxy.rb +++ b/plugins/citrix-confproxy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Citrix-ConfProxy" diff --git a/plugins/citrix-metaframe.rb b/plugins/citrix-metaframe.rb index b5d76323..9af80eeb 100644 --- a/plugins/citrix-metaframe.rb +++ b/plugins/citrix-metaframe.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Citrix-Metaframe" diff --git a/plugins/citrix-netscaler.rb b/plugins/citrix-netscaler.rb index 73528e8a..1af7d8d5 100644 --- a/plugins/citrix-netscaler.rb +++ b/plugins/citrix-netscaler.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Citrix-NetScaler" diff --git a/plugins/citrix-web-pn-server.rb b/plugins/citrix-web-pn-server.rb index 19f75174..1f17bb38 100644 --- a/plugins/citrix-web-pn-server.rb +++ b/plugins/citrix-web-pn-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Citrix-Web-PN-Server" diff --git a/plugins/citrix-xenserver.rb b/plugins/citrix-xenserver.rb index 43484b10..baed826c 100644 --- a/plugins/citrix-xenserver.rb +++ b/plugins/citrix-xenserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Citrix-XenServer" diff --git a/plugins/citrusdb.rb b/plugins/citrusdb.rb index b2516304..2bc347f4 100644 --- a/plugins/citrusdb.rb +++ b/plugins/citrusdb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CitrusDB" diff --git a/plugins/cituscms.rb b/plugins/cituscms.rb index c9a88829..8fbf12fd 100644 --- a/plugins/cituscms.rb +++ b/plugins/cituscms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CitusCMS" diff --git a/plugins/cl-http.rb b/plugins/cl-http.rb index abee1713..86fb5366 100644 --- a/plugins/cl-http.rb +++ b/plugins/cl-http.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CL-HTTP" diff --git a/plugins/clansphere.rb b/plugins/clansphere.rb index 73ee2d81..c92e482b 100644 --- a/plugins/clansphere.rb +++ b/plugins/clansphere.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ClanSphere" diff --git a/plugins/claroline.rb b/plugins/claroline.rb index f5d2d96e..2a212deb 100644 --- a/plugins/claroline.rb +++ b/plugins/claroline.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Claroline" diff --git a/plugins/clearwell-e-discovery.rb b/plugins/clearwell-e-discovery.rb index b84cee0e..aff36889 100644 --- a/plugins/clearwell-e-discovery.rb +++ b/plugins/clearwell-e-discovery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Clearwell-E-Discovery" diff --git a/plugins/clickmotive.rb b/plugins/clickmotive.rb index 0a78ffea..ba258b29 100644 --- a/plugins/clickmotive.rb +++ b/plugins/clickmotive.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # ## Plugin.define do diff --git a/plugins/clicktale.rb b/plugins/clicktale.rb index ad1c6c9a..9c8a5995 100644 --- a/plugins/clicktale.rb +++ b/plugins/clicktale.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ClickTale" diff --git a/plugins/clicky.rb b/plugins/clicky.rb index ed3d08a4..e67c58d1 100644 --- a/plugins/clicky.rb +++ b/plugins/clicky.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Clicky" diff --git a/plugins/clientexec.rb b/plugins/clientexec.rb index e8b4cbec..47443bd7 100644 --- a/plugins/clientexec.rb +++ b/plugins/clientexec.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ClientExec" diff --git a/plugins/clipbucket.rb b/plugins/clipbucket.rb index fe43ec58..80e54dcc 100644 --- a/plugins/clipbucket.rb +++ b/plugins/clipbucket.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ClipBucket" diff --git a/plugins/clipshare.rb b/plugins/clipshare.rb index d4132e47..9f94d1f4 100644 --- a/plugins/clipshare.rb +++ b/plugins/clipshare.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ClipShare" diff --git a/plugins/cloudflare.rb b/plugins/cloudflare.rb index 4c0a0abd..d98a4522 100644 --- a/plugins/cloudflare.rb +++ b/plugins/cloudflare.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CloudFlare" diff --git a/plugins/cloudfront.rb b/plugins/cloudfront.rb index 88ad5836..92f11cda 100644 --- a/plugins/cloudfront.rb +++ b/plugins/cloudfront.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CloudFront" diff --git a/plugins/cm3-cms.rb b/plugins/cm3-cms.rb index 38fd303e..514eb07b 100644 --- a/plugins/cm3-cms.rb +++ b/plugins/cm3-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "cm3-cms" diff --git a/plugins/cms-made-simple.rb b/plugins/cms-made-simple.rb index cf45e42f..26062fe3 100644 --- a/plugins/cms-made-simple.rb +++ b/plugins/cms-made-simple.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # ## Plugin.define do diff --git a/plugins/cms-webmanager-pro.rb b/plugins/cms-webmanager-pro.rb index a98db549..65f99a03 100644 --- a/plugins/cms-webmanager-pro.rb +++ b/plugins/cms-webmanager-pro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CMS-WebManager-Pro" diff --git a/plugins/cmscontrol.rb b/plugins/cmscontrol.rb index 03df1a91..fa0a026a 100644 --- a/plugins/cmscontrol.rb +++ b/plugins/cmscontrol.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CMScontrol" diff --git a/plugins/cmscout.rb b/plugins/cmscout.rb index 8b746ab3..380da55f 100644 --- a/plugins/cmscout.rb +++ b/plugins/cmscout.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CMScout" diff --git a/plugins/cmsimple.rb b/plugins/cmsimple.rb index ff9514c0..6502b419 100644 --- a/plugins/cmsimple.rb +++ b/plugins/cmsimple.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CMSimple" diff --git a/plugins/cmsqlite.rb b/plugins/cmsqlite.rb index 723f0127..3398ef6d 100644 --- a/plugins/cmsqlite.rb +++ b/plugins/cmsqlite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CMSQLite" diff --git a/plugins/cmydocument.rb b/plugins/cmydocument.rb index 624bf01e..75c92cc7 100644 --- a/plugins/cmydocument.rb +++ b/plugins/cmydocument.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CmyDocument" diff --git a/plugins/code_igniter_profiler.rb b/plugins/code_igniter_profiler.rb index 9c32f95a..9da7f9a0 100644 --- a/plugins/code_igniter_profiler.rb +++ b/plugins/code_igniter_profiler.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CodeIgniterProfiler" diff --git a/plugins/codeigniter.rb b/plugins/codeigniter.rb index 39581f0d..c3c0b24f 100644 --- a/plugins/codeigniter.rb +++ b/plugins/codeigniter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CodeIgniter-PHP-Framework" diff --git a/plugins/codesys-web-visualization.rb b/plugins/codesys-web-visualization.rb index 9bb7b8b7..4a053be7 100644 --- a/plugins/codesys-web-visualization.rb +++ b/plugins/codesys-web-visualization.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CoDeSys-Web-Visualization" diff --git a/plugins/cogent-datahub.rb b/plugins/cogent-datahub.rb index 83aa4e7f..528d5f16 100644 --- a/plugins/cogent-datahub.rb +++ b/plugins/cogent-datahub.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cogent-DataHub" diff --git a/plugins/coldfusion.rb b/plugins/coldfusion.rb index 97fdf97e..f21b69cf 100644 --- a/plugins/coldfusion.rb +++ b/plugins/coldfusion.rb @@ -2,16 +2,17 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ColdFusion" authors [ - "Brendan Coles ", # 2010-08-15 + "Brendan Coles ", # v0.1 # 2010-08-15 # v0.2 # 2011-04-25 # Added cookie matches. # v0.3 # 2012-02-05 # Added header match. Updated matches. Updated version detection.. + "Andrew Horton @urbanadventurer", # v0.4 # 2021-02-28 # Added file extensions ] -version "0.3" +version "0.4" description "Adobe ColdFusion application server and software enables developers to rapidly build, deploy, and maintain robust Internet applications for the enterprise." website "http://www.adobe.com/products/coldfusion/" @@ -28,8 +29,6 @@ dorks [ 'intitle:"ColdFusion Administrator Login"' ] - - # Matches # matches [ @@ -66,6 +65,9 @@ matches [ # Set-Cookie # /CFAUTHORIZATION_cfadmin=/ { :search=>"headers[set-cookie]", :regexp=>/CFAUTHORIZATION_cfadmin=/ }, +# File Extension +{ :name=>"File extension", :regexp=>/^(cfm|cfc)$/, :search=>"uri.extension" } + ] # Passive # diff --git a/plugins/collabtive.rb b/plugins/collabtive.rb index 429d1749..dd74f23a 100644 --- a/plugins/collabtive.rb +++ b/plugins/collabtive.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Collabtive" diff --git a/plugins/collegiatelink.rb b/plugins/collegiatelink.rb index 85e37e46..76344922 100644 --- a/plugins/collegiatelink.rb +++ b/plugins/collegiatelink.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CollegiateLink" diff --git a/plugins/comanche.rb b/plugins/comanche.rb index c98d3a1e..b6068f5f 100644 --- a/plugins/comanche.rb +++ b/plugins/comanche.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Comanche" diff --git a/plugins/comersus.rb b/plugins/comersus.rb index 78f5580d..878aaafe 100644 --- a/plugins/comersus.rb +++ b/plugins/comersus.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ComersusCart" diff --git a/plugins/commerce-builder.rb b/plugins/commerce-builder.rb index 32157f6d..bfef6e98 100644 --- a/plugins/commerce-builder.rb +++ b/plugins/commerce-builder.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Commerce-Builder" diff --git a/plugins/commonspot.rb b/plugins/commonspot.rb index 296d7c30..952f3ba1 100644 --- a/plugins/commonspot.rb +++ b/plugins/commonspot.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CommonSpot" diff --git a/plugins/communigate-pro.rb b/plugins/communigate-pro.rb index 70c4d5b3..8dd18eaa 100644 --- a/plugins/communigate-pro.rb +++ b/plugins/communigate-pro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CommuniGate-Pro" diff --git a/plugins/comprafacil.rb b/plugins/comprafacil.rb index 14d74528..e08f0166 100644 --- a/plugins/comprafacil.rb +++ b/plugins/comprafacil.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Comprafacil" diff --git a/plugins/concrete5.rb b/plugins/concrete5.rb index de895fd5..57e50fea 100644 --- a/plugins/concrete5.rb +++ b/plugins/concrete5.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Concrete5" diff --git a/plugins/conexant-emweb.rb b/plugins/conexant-emweb.rb index 0c60f5a2..91ff7204 100644 --- a/plugins/conexant-emweb.rb +++ b/plugins/conexant-emweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Conexant-EmWeb" diff --git a/plugins/confluence.rb b/plugins/confluence.rb index f8d0996c..c31e1cd4 100644 --- a/plugins/confluence.rb +++ b/plugins/confluence.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Confluence" diff --git a/plugins/conftool.rb b/plugins/conftool.rb index 01cc6a15..36d53f2e 100644 --- a/plugins/conftool.rb +++ b/plugins/conftool.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ConfTool" diff --git a/plugins/connect2.rb b/plugins/connect2.rb index 5edb6697..8b340c22 100644 --- a/plugins/connect2.rb +++ b/plugins/connect2.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Connect2" diff --git a/plugins/connectix-board.rb b/plugins/connectix-board.rb index 7db8add1..d0649c82 100644 --- a/plugins/connectix-board.rb +++ b/plugins/connectix-board.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Connectix-Boards" diff --git a/plugins/connectups-x.rb b/plugins/connectups-x.rb index 6d8769b2..baaa342b 100644 --- a/plugins/connectups-x.rb +++ b/plugins/connectups-x.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ConnectUPS-X" diff --git a/plugins/constructr-cms.rb b/plugins/constructr-cms.rb index 564fb0c7..79ae0886 100644 --- a/plugins/constructr-cms.rb +++ b/plugins/constructr-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Constructr-CMS" diff --git a/plugins/contao.rb b/plugins/contao.rb index b74dc3ba..ec0e04db 100644 --- a/plugins/contao.rb +++ b/plugins/contao.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Contao" diff --git a/plugins/content-language.rb b/plugins/content-language.rb index ab8f15c3..31188ee6 100644 --- a/plugins/content-language.rb +++ b/plugins/content-language.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Content-Language" diff --git a/plugins/content-security-policy.rb b/plugins/content-security-policy.rb index 4b5d5dd8..ef42daf2 100644 --- a/plugins/content-security-policy.rb +++ b/plugins/content-security-policy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Content-Security-Policy" diff --git a/plugins/contentteller-cms.rb b/plugins/contentteller-cms.rb index f902cf2e..79a5bc7d 100644 --- a/plugins/contentteller-cms.rb +++ b/plugins/contentteller-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Contentteller-CMS" diff --git a/plugins/contentxxl.rb b/plugins/contentxxl.rb index 0130dc63..de0a7be2 100644 --- a/plugins/contentxxl.rb +++ b/plugins/contentxxl.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ContentXXL" diff --git a/plugins/contrexx-cms.rb b/plugins/contrexx-cms.rb index a6f9c587..c25a91d4 100644 --- a/plugins/contrexx-cms.rb +++ b/plugins/contrexx-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Contrexx-CMS" diff --git a/plugins/controlstar-scada.rb b/plugins/controlstar-scada.rb index 40f4d680..1a8fcfee 100644 --- a/plugins/controlstar-scada.rb +++ b/plugins/controlstar-scada.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Controlstar-SCADA" diff --git a/plugins/cookies.rb b/plugins/cookies.rb index 838055c0..db932e96 100644 --- a/plugins/cookies.rb +++ b/plugins/cookies.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cookies" diff --git a/plugins/coppermine.rb b/plugins/coppermine.rb index ea9cf5e5..67f83f2f 100644 --- a/plugins/coppermine.rb +++ b/plugins/coppermine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Coppermine" diff --git a/plugins/couchpotato.rb b/plugins/couchpotato.rb index 1a658aa1..8e74ddbc 100644 --- a/plugins/couchpotato.rb +++ b/plugins/couchpotato.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CouchPotato" diff --git a/plugins/cougar.rb b/plugins/cougar.rb index a58d4d0a..9bb29f1e 100644 --- a/plugins/cougar.rb +++ b/plugins/cougar.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cougar" diff --git a/plugins/country.rb b/plugins/country.rb index 35e2ad5d..3d5ef8b2 100644 --- a/plugins/country.rb +++ b/plugins/country.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Country" diff --git a/plugins/covalent-enterprise-ready-server.rb b/plugins/covalent-enterprise-ready-server.rb index 0351e7b8..515eedcb 100644 --- a/plugins/covalent-enterprise-ready-server.rb +++ b/plugins/covalent-enterprise-ready-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Covalent-Enterprise-Ready-Server" diff --git a/plugins/cowiki.rb b/plugins/cowiki.rb index de584a6b..4225f84c 100644 --- a/plugins/cowiki.rb +++ b/plugins/cowiki.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "coWiki" diff --git a/plugins/coyotepoint-load-balancer.rb b/plugins/coyotepoint-load-balancer.rb index a3744420..9852e84d 100644 --- a/plugins/coyotepoint-load-balancer.rb +++ b/plugins/coyotepoint-load-balancer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CoyotePoint-Load-Balancer" diff --git a/plugins/cpanel.rb b/plugins/cpanel.rb index 73703ef0..6bd37e9e 100644 --- a/plugins/cpanel.rb +++ b/plugins/cpanel.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "cPanel" diff --git a/plugins/cpassman.rb b/plugins/cpassman.rb index f497f051..ca9e76d6 100644 --- a/plugins/cpassman.rb +++ b/plugins/cpassman.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "cPassMan" diff --git a/plugins/cpcommerce.rb b/plugins/cpcommerce.rb index 3af0cc82..a59656af 100644 --- a/plugins/cpcommerce.rb +++ b/plugins/cpcommerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "cpCommerce" diff --git a/plugins/craftcms.rb b/plugins/craftcms.rb index 7660b190..2b689f75 100644 --- a/plugins/craftcms.rb +++ b/plugins/craftcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CraftCMS" diff --git a/plugins/crazyegg.rb b/plugins/crazyegg.rb index 5e5b66ef..7b61ea53 100644 --- a/plugins/crazyegg.rb +++ b/plugins/crazyegg.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CrazyEgg" diff --git a/plugins/createlive-cms.rb b/plugins/createlive-cms.rb index 82ca10f5..06d16707 100644 --- a/plugins/createlive-cms.rb +++ b/plugins/createlive-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CreateLive-Cms" diff --git a/plugins/crossdomain.xml.rb b/plugins/crossdomain.xml.rb index cb4fbf9c..bc089737 100644 --- a/plugins/crossdomain.xml.rb +++ b/plugins/crossdomain.xml.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "crossdomain_xml" diff --git a/plugins/crushftp.rb b/plugins/crushftp.rb index 0dcb89d0..6f53821a 100644 --- a/plugins/crushftp.rb +++ b/plugins/crushftp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CrushFTP" diff --git a/plugins/cruxcms.rb b/plugins/cruxcms.rb index f0139024..c148f4e7 100644 --- a/plugins/cruxcms.rb +++ b/plugins/cruxcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CruxCMS" diff --git a/plugins/cruxpa.rb b/plugins/cruxpa.rb index 16abfce0..60c459fa 100644 --- a/plugins/cruxpa.rb +++ b/plugins/cruxpa.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CruxPA" diff --git a/plugins/cs-cart.rb b/plugins/cs-cart.rb index 4d53653e..8fd183c9 100644 --- a/plugins/cs-cart.rb +++ b/plugins/cs-cart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CS-Cart" diff --git a/plugins/cscssm.rb b/plugins/cscssm.rb index 5e3a84e8..9a58762e 100644 --- a/plugins/cscssm.rb +++ b/plugins/cscssm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CSCSSM" diff --git a/plugins/cubecart.rb b/plugins/cubecart.rb index 4c4e6920..c6e4efb2 100644 --- a/plugins/cubecart.rb +++ b/plugins/cubecart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CubeCart" diff --git a/plugins/cultbooking.rb b/plugins/cultbooking.rb index c416856c..5913600c 100644 --- a/plugins/cultbooking.rb +++ b/plugins/cultbooking.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CultBooking" diff --git a/plugins/cups.rb b/plugins/cups.rb index be7a8690..359af792 100644 --- a/plugins/cups.rb +++ b/plugins/cups.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CUPS" diff --git a/plugins/cushy-cms.rb b/plugins/cushy-cms.rb index 22804bf7..742c7600 100644 --- a/plugins/cushy-cms.rb +++ b/plugins/cushy-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CushyCMS" diff --git a/plugins/custom-cms.rb b/plugins/custom-cms.rb index c91a85e0..8b5542a0 100644 --- a/plugins/custom-cms.rb +++ b/plugins/custom-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Custom-CMS" diff --git a/plugins/cuteflow.rb b/plugins/cuteflow.rb index 74d2baab..d1191ab9 100644 --- a/plugins/cuteflow.rb +++ b/plugins/cuteflow.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "CuteFlow" diff --git a/plugins/cyberoam-appliance.rb b/plugins/cyberoam-appliance.rb index 2771d4b4..c431b083 100644 --- a/plugins/cyberoam-appliance.rb +++ b/plugins/cyberoam-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cyberoam-Appliance" diff --git a/plugins/cybozu-garoon.rb b/plugins/cybozu-garoon.rb index 9ca7de12..4efb31a5 100644 --- a/plugins/cybozu-garoon.rb +++ b/plugins/cybozu-garoon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cybozu-Garoon" diff --git a/plugins/cyn.in.rb b/plugins/cyn.in.rb index 1f11af23..6292e009 100644 --- a/plugins/cyn.in.rb +++ b/plugins/cyn.in.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cyn_in" diff --git a/plugins/cype-mscms.rb b/plugins/cype-mscms.rb index dde5e31b..9f62fe64 100644 --- a/plugins/cype-mscms.rb +++ b/plugins/cype-mscms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Cype-MSCMS" diff --git a/plugins/d-link-network-camera.rb b/plugins/d-link-network-camera.rb index 431c6788..d767cd4e 100644 --- a/plugins/d-link-network-camera.rb +++ b/plugins/d-link-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "D-Link-Network-Camera" diff --git a/plugins/d-link-router.rb b/plugins/d-link-router.rb index cff14119..eeec4f59 100644 --- a/plugins/d-link-router.rb +++ b/plugins/d-link-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "D-Link-Router" diff --git a/plugins/dada-mail.rb b/plugins/dada-mail.rb index 65a7df55..afe64ba7 100644 --- a/plugins/dada-mail.rb +++ b/plugins/dada-mail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dada-Mail" diff --git a/plugins/dadabik.rb b/plugins/dadabik.rb index f9b892c2..845a5d8b 100644 --- a/plugins/dadabik.rb +++ b/plugins/dadabik.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DaDaBIK" diff --git a/plugins/daffodil-crm.rb b/plugins/daffodil-crm.rb index ec4f83c6..a039332e 100644 --- a/plugins/daffodil-crm.rb +++ b/plugins/daffodil-crm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Daffodil-CRM" diff --git a/plugins/daisy.rb b/plugins/daisy.rb index e066ff15..d1792cc4 100644 --- a/plugins/daisy.rb +++ b/plugins/daisy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Daisy" diff --git a/plugins/darkstat.rb b/plugins/darkstat.rb index 0aec06ce..ac0dc64a 100644 --- a/plugins/darkstat.rb +++ b/plugins/darkstat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "darkstat" diff --git a/plugins/dart-webserver-tool.rb b/plugins/dart-webserver-tool.rb index b8ed6541..4620264e 100644 --- a/plugins/dart-webserver-tool.rb +++ b/plugins/dart-webserver-tool.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dart-WebServer-Tool" diff --git a/plugins/data-ontap.rb b/plugins/data-ontap.rb index da3b995f..c1f75ccd 100644 --- a/plugins/data-ontap.rb +++ b/plugins/data-ontap.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Data-ONTAP" diff --git a/plugins/dataflexvine-voip-iad.rb b/plugins/dataflexvine-voip-iad.rb index ae070e0c..b8efa707 100644 --- a/plugins/dataflexvine-voip-iad.rb +++ b/plugins/dataflexvine-voip-iad.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DataflexViNE-VoIP-IAD" diff --git a/plugins/datalife-engine.rb b/plugins/datalife-engine.rb index 05ab784c..66dc381b 100644 --- a/plugins/datalife-engine.rb +++ b/plugins/datalife-engine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DataLife-Engine" diff --git a/plugins/datanet.rb b/plugins/datanet.rb index d505e9cc..d2603614 100644 --- a/plugins/datanet.rb +++ b/plugins/datanet.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DataNet" diff --git a/plugins/datum-tymserve.rb b/plugins/datum-tymserve.rb index 54e83e5a..7792f8bf 100644 --- a/plugins/datum-tymserve.rb +++ b/plugins/datum-tymserve.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Datum-TymServe" diff --git a/plugins/david-webbox.rb b/plugins/david-webbox.rb index dbf89cbf..e3f5394c 100644 --- a/plugins/david-webbox.rb +++ b/plugins/david-webbox.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "David-WebBox" diff --git a/plugins/day-communique.rb b/plugins/day-communique.rb index 47ac9bf0..7b4e43de 100644 --- a/plugins/day-communique.rb +++ b/plugins/day-communique.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Day-Communique" diff --git a/plugins/dbhcms.rb b/plugins/dbhcms.rb index d7cf38c2..23508a4a 100644 --- a/plugins/dbhcms.rb +++ b/plugins/dbhcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DBHcms" diff --git a/plugins/dd-wrt.rb b/plugins/dd-wrt.rb index 549692cf..ef308dea 100644 --- a/plugins/dd-wrt.rb +++ b/plugins/dd-wrt.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DD-WRT" diff --git a/plugins/dedicated-micros-device.rb b/plugins/dedicated-micros-device.rb index 3a61e3e9..a743721b 100644 --- a/plugins/dedicated-micros-device.rb +++ b/plugins/dedicated-micros-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dedicated-Micros-Device" diff --git a/plugins/delegate.rb b/plugins/delegate.rb index 1d962255..a56c474a 100644 --- a/plugins/delegate.rb +++ b/plugins/delegate.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DeleGate" diff --git a/plugins/dell-kace-appliance.rb b/plugins/dell-kace-appliance.rb index 1e1f5770..41f68b3a 100644 --- a/plugins/dell-kace-appliance.rb +++ b/plugins/dell-kace-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dell-KACE-Appliance" diff --git a/plugins/dell-openmanage-switch-administrator.rb b/plugins/dell-openmanage-switch-administrator.rb index 8fba7cc4..68cb82b2 100644 --- a/plugins/dell-openmanage-switch-administrator.rb +++ b/plugins/dell-openmanage-switch-administrator.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dell-OpenManage-Switch-Administrator" diff --git a/plugins/dell-printer.rb b/plugins/dell-printer.rb index c529eba8..32032501 100644 --- a/plugins/dell-printer.rb +++ b/plugins/dell-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dell-Printer" diff --git a/plugins/dell-remote-access-controller.rb b/plugins/dell-remote-access-controller.rb index 79ba4227..10955934 100644 --- a/plugins/dell-remote-access-controller.rb +++ b/plugins/dell-remote-access-controller.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dell-Remote-Access-Controller" diff --git a/plugins/deluge-web.rb b/plugins/deluge-web.rb index aad5894c..ed421bb5 100644 --- a/plugins/deluge-web.rb +++ b/plugins/deluge-web.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Deluge-web" diff --git a/plugins/deluxebb.rb b/plugins/deluxebb.rb index 8807ab58..7bfec3cf 100644 --- a/plugins/deluxebb.rb +++ b/plugins/deluxebb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DeluxeBB" diff --git a/plugins/diamondlist.rb b/plugins/diamondlist.rb index 11341f6a..4c13bed2 100644 --- a/plugins/diamondlist.rb +++ b/plugins/diamondlist.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DiamondList" diff --git a/plugins/diaspora.rb b/plugins/diaspora.rb index 7c0759f1..0df4d637 100644 --- a/plugins/diaspora.rb +++ b/plugins/diaspora.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Diaspora" diff --git a/plugins/dibos.rb b/plugins/dibos.rb index 48e71931..255ac9cc 100644 --- a/plugins/dibos.rb +++ b/plugins/dibos.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DiBos" diff --git a/plugins/diferior-cms.rb b/plugins/diferior-cms.rb index dca8f52b..65c451bd 100644 --- a/plugins/diferior-cms.rb +++ b/plugins/diferior-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Diferior-CMS" diff --git a/plugins/digioz-guestbook.rb b/plugins/digioz-guestbook.rb index 64ae6bc3..580a9faf 100644 --- a/plugins/digioz-guestbook.rb +++ b/plugins/digioz-guestbook.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DigiOz-Guestbook" diff --git a/plugins/digital-scribe.rb b/plugins/digital-scribe.rb index 3ed1cb10..40861984 100644 --- a/plugins/digital-scribe.rb +++ b/plugins/digital-scribe.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Digital-Scribe" diff --git a/plugins/dir2web-cms.rb b/plugins/dir2web-cms.rb index 5d96d242..a3474159 100644 --- a/plugins/dir2web-cms.rb +++ b/plugins/dir2web-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "dir2web-CMS" diff --git a/plugins/direct-packet-device.rb b/plugins/direct-packet-device.rb index fd56a3e0..a7f03e58 100644 --- a/plugins/direct-packet-device.rb +++ b/plugins/direct-packet-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Direct-Packet-Device" diff --git a/plugins/directadmin.rb b/plugins/directadmin.rb index 94ab4f06..0468cf91 100644 --- a/plugins/directadmin.rb +++ b/plugins/directadmin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DirectAdmin" diff --git a/plugins/diy-cms.rb b/plugins/diy-cms.rb index bafcdecc..3ef19abc 100644 --- a/plugins/diy-cms.rb +++ b/plugins/diy-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DiY-CMS" diff --git a/plugins/django.rb b/plugins/django.rb index 76983215..944816fc 100644 --- a/plugins/django.rb +++ b/plugins/django.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Django" diff --git a/plugins/dli-lpc.rb b/plugins/dli-lpc.rb index 6bfc561c..3515d5d9 100644 --- a/plugins/dli-lpc.rb +++ b/plugins/dli-lpc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DLI-LPC" diff --git a/plugins/dmxready-members-area-manager.rb b/plugins/dmxready-members-area-manager.rb index 80580177..25f4792a 100644 --- a/plugins/dmxready-members-area-manager.rb +++ b/plugins/dmxready-members-area-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DMXReady-Members-Area-Manager" diff --git a/plugins/dmxready-portfolio-manager.rb b/plugins/dmxready-portfolio-manager.rb index 88cc7445..b5dfa17a 100644 --- a/plugins/dmxready-portfolio-manager.rb +++ b/plugins/dmxready-portfolio-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DMXReady-Portfolio-Manager" diff --git a/plugins/dmxready-secure-document-library.rb b/plugins/dmxready-secure-document-library.rb index 85cbf736..e1d2e47d 100644 --- a/plugins/dmxready-secure-document-library.rb +++ b/plugins/dmxready-secure-document-library.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DMXReady-Secure-Document-Library" diff --git a/plugins/dnp-firewall.rb b/plugins/dnp-firewall.rb index 2b5c03e5..1edc30ef 100644 --- a/plugins/dnp-firewall.rb +++ b/plugins/dnp-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DnP-Firewall" diff --git a/plugins/docebolms.rb b/plugins/docebolms.rb index c4c4c3ea..85d62e46 100644 --- a/plugins/docebolms.rb +++ b/plugins/docebolms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DoceboLMS" diff --git a/plugins/dokeos.rb b/plugins/dokeos.rb index 9b2f1983..f5e7d64d 100644 --- a/plugins/dokeos.rb +++ b/plugins/dokeos.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dokeos" diff --git a/plugins/dokuwiki.rb b/plugins/dokuwiki.rb index dc6384a4..b8e303c8 100644 --- a/plugins/dokuwiki.rb +++ b/plugins/dokuwiki.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DokuWiki" diff --git a/plugins/dolphin.rb b/plugins/dolphin.rb index 15c756d1..94cc9454 100644 --- a/plugins/dolphin.rb +++ b/plugins/dolphin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dolphin" diff --git a/plugins/donations-cloud.rb b/plugins/donations-cloud.rb index 8889c459..70fb0e86 100644 --- a/plugins/donations-cloud.rb +++ b/plugins/donations-cloud.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Donations-Cloud" diff --git a/plugins/dorg.rb b/plugins/dorg.rb index f33f6979..32cdf2d1 100644 --- a/plugins/dorg.rb +++ b/plugins/dorg.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DORG" diff --git a/plugins/dota-openstats.rb b/plugins/dota-openstats.rb index 4bb9f0d9..460628fa 100644 --- a/plugins/dota-openstats.rb +++ b/plugins/dota-openstats.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DotA-OpenStats" diff --git a/plugins/dotclear.rb b/plugins/dotclear.rb index ac8a7dc4..b7a26fb1 100644 --- a/plugins/dotclear.rb +++ b/plugins/dotclear.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "dotclear" diff --git a/plugins/dotcms.rb b/plugins/dotcms.rb index b84b7ac1..9cb8590c 100644 --- a/plugins/dotcms.rb +++ b/plugins/dotcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DotCMS" diff --git a/plugins/dotdefender.rb b/plugins/dotdefender.rb index 09f32ec7..7e47e148 100644 --- a/plugins/dotdefender.rb +++ b/plugins/dotdefender.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "dotDefender" diff --git a/plugins/dotnetnuke.rb b/plugins/dotnetnuke.rb index d48c632f..4db6ebcd 100644 --- a/plugins/dotnetnuke.rb +++ b/plugins/dotnetnuke.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DotNetNuke" diff --git a/plugins/dr-web-anti-virus.rb b/plugins/dr-web-anti-virus.rb index 2e398f9c..fc71ba36 100644 --- a/plugins/dr-web-anti-virus.rb +++ b/plugins/dr-web-anti-virus.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dr-Web-Anti-Virus" diff --git a/plugins/dradis-framework.rb b/plugins/dradis-framework.rb index 52232ae0..be542685 100644 --- a/plugins/dradis-framework.rb +++ b/plugins/dradis-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dradis-Framework" diff --git a/plugins/dreambox.rb b/plugins/dreambox.rb index aec2199f..5e26bf4e 100644 --- a/plugins/dreambox.rb +++ b/plugins/dreambox.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Dreambox" diff --git a/plugins/drugpak.rb b/plugins/drugpak.rb index 703f97b8..9ff94242 100644 --- a/plugins/drugpak.rb +++ b/plugins/drugpak.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DrugPak" diff --git a/plugins/drupal.rb b/plugins/drupal.rb index b36cecd4..ffee40b1 100644 --- a/plugins/drupal.rb +++ b/plugins/drupal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Drupal" @@ -10,9 +10,10 @@ authors [ "Andrew Horton", # v0.2 # removed :name and :certainty=>100. "Brendan Coles ", # v0.3 # 2011-04-09 # Added aggressive md5 matches. - "Bhavin Senjaliya ", # v0.4 # 2016-08-19 # Added SSESS cookie. + "Bhavin Senjaliya ", # v0.4 # 2016-08-19 # Added SSESS cookie. + "Gregory Boddin ", # v0.5 # 2021-02-28 # Updated version list. ] - version "0.4" + version "0.5" description "Drupal is an opensource CMS written in PHP." website "http://www.drupal.org" @@ -1510,7 +1511,7 @@ authors [ [["CHANGELOG.txt", "4ee104a47fbf9939cade2787e47b2c2a"], ["misc/ajax.js", - "30d9e08baa11f3836eca00425b550f82"], + "18af00f2aab04bfd2af10363716b0ca3"], ["misc/drupal.js", "0bb055ea361b208072be45e8e004117b"], ["misc/tabledrag.js", @@ -1519,7 +1520,7 @@ authors [ [["CHANGELOG.txt", "34335e648b3cbd720cc3ed86f88c1d26"], ["misc/ajax.js", - "30d9e08baa11f3836eca00425b550f82"], + "18af00f2aab04bfd2af10363716b0ca3"], ["misc/drupal.js", "0bb055ea361b208072be45e8e004117b"], ["misc/tabledrag.js", @@ -1528,7 +1529,7 @@ authors [ [["CHANGELOG.txt", "0ec14c07158a08aab9dda25d1893ab34"], ["misc/ajax.js", - "30d9e08baa11f3836eca00425b550f82"], + "18af00f2aab04bfd2af10363716b0ca3"], ["misc/drupal.js", "0bb055ea361b208072be45e8e004117b"], ["misc/tabledrag.js", @@ -1537,7 +1538,7 @@ authors [ [["CHANGELOG.txt", "38ab3c6e309efd8119ff6496ae7cbbc0"], ["misc/ajax.js", - "30d9e08baa11f3836eca00425b550f82"], + "18af00f2aab04bfd2af10363716b0ca3"], ["misc/drupal.js", "0bb055ea361b208072be45e8e004117b"], ["misc/tabledrag.js", @@ -1546,7 +1547,7 @@ authors [ [["CHANGELOG.txt", "b3a9ba3846e041b02a02855667011e64"], ["misc/ajax.js", - "30d9e08baa11f3836eca00425b550f82"], + "18af00f2aab04bfd2af10363716b0ca3"], ["misc/drupal.js", "0bb055ea361b208072be45e8e004117b"], ["misc/tabledrag.js", @@ -1555,11 +1556,1911 @@ authors [ [["CHANGELOG.txt", "947b04948fd53beab411bd04f4159c4d"], ["misc/ajax.js", - "30d9e08baa11f3836eca00425b550f82"], + "18af00f2aab04bfd2af10363716b0ca3"], ["misc/drupal.js", "0bb055ea361b208072be45e8e004117b"], ["misc/tabledrag.js", "c1bdc05ec3eab25853bec452e3addcd2"]], + "7.39" => + [["CHANGELOG.txt", + "d16d97ab20cf77a9f742f86607477b79"], + ["misc/ajax.js", + "eb32af955400cee44f869bbf7ed00e20"], + ["misc/drupal.js", + "bb9f18fb7a42b95fcad87b98dbb19c87"], + ["misc/tabledrag.js", + "c1bdc05ec3eab25853bec452e3addcd2"]], + "7.40" => + [["CHANGELOG.txt", + "42f49a0b102f4d573116c64521088f01"], + ["misc/ajax.js", + "eb32af955400cee44f869bbf7ed00e20"], + ["misc/drupal.js", + "bb9f18fb7a42b95fcad87b98dbb19c87"], + ["misc/tabledrag.js", + "c1bdc05ec3eab25853bec452e3addcd2"]], + "7.41" => + [["CHANGELOG.txt", + "9d7fde3929439d55f30ffc1e18adaa09"], + ["misc/ajax.js", + "eb32af955400cee44f869bbf7ed00e20"], + ["misc/drupal.js", + "bb9f18fb7a42b95fcad87b98dbb19c87"], + ["misc/tabledrag.js", + "c1bdc05ec3eab25853bec452e3addcd2"]], + "7.42" => + [["CHANGELOG.txt", + "5cfe62f3cc57ba51dcf61f345d7738c4"], + ["misc/ajax.js", + "eb32af955400cee44f869bbf7ed00e20"], + ["misc/drupal.js", + "bb9f18fb7a42b95fcad87b98dbb19c87"], + ["misc/tabledrag.js", + "c1bdc05ec3eab25853bec452e3addcd2"]], + "7.43" => + [["CHANGELOG.txt", + "663f2e16139375307d62ac4a0d1641cd"], + ["misc/ajax.js", + "eb32af955400cee44f869bbf7ed00e20"], + ["misc/drupal.js", + "bb9f18fb7a42b95fcad87b98dbb19c87"], + ["misc/tabledrag.js", + "c1bdc05ec3eab25853bec452e3addcd2"]], + "7.44" => + [["CHANGELOG.txt", + "60da9d61f4d262cbcc5c9661355d673d"], + ["misc/ajax.js", + "eb32af955400cee44f869bbf7ed00e20"], + ["misc/drupal.js", + "bb9f18fb7a42b95fcad87b98dbb19c87"], + ["misc/tabledrag.js", + "c1bdc05ec3eab25853bec452e3addcd2"]], + "7.45" => + [["CHANGELOG.txt", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/ajax.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/drupal.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/tabledrag.js", + "3be7b8b182ccd96e48989b4e57311193"]], + "7.46" => + [["CHANGELOG.txt", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/ajax.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/drupal.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/tabledrag.js", + "3be7b8b182ccd96e48989b4e57311193"]], + "7.47" => + [["CHANGELOG.txt", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/ajax.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/drupal.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/tabledrag.js", + "3be7b8b182ccd96e48989b4e57311193"]], + "7.48" => + [["CHANGELOG.txt", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/ajax.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/drupal.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/tabledrag.js", + "3be7b8b182ccd96e48989b4e57311193"]], + "7.49" => + [["CHANGELOG.txt", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/ajax.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/drupal.js", + "3be7b8b182ccd96e48989b4e57311193"], + ["misc/tabledrag.js", + "3be7b8b182ccd96e48989b4e57311193"]], + "7.50" => + [["CHANGELOG.txt", + "b141931e0b2944d1d7111276dc839678"], + ["misc/ajax.js", + "eb32af955400cee44f869bbf7ed00e20"], + ["misc/drupal.js", + "bb9f18fb7a42b95fcad87b98dbb19c87"], + ["misc/tabledrag.js", + "c1bdc05ec3eab25853bec452e3addcd2"]], + "7.51" => + [["CHANGELOG.txt", + "c2681f3493c5c534f0cc38a1226fdbf4"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "acf092762cf1cf821a12325fbf494ecf"], + ["misc/tabledrag.js", + "589d7dfdc8f31eed30213aa4709a6bf3"]], + "7.52" => + [["CHANGELOG.txt", + "73b76e937430b4ae3ce4a6c720f2ed8c"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "acf092762cf1cf821a12325fbf494ecf"], + ["misc/tabledrag.js", + "589d7dfdc8f31eed30213aa4709a6bf3"]], + "7.53" => + [["CHANGELOG.txt", + "e46761c5eadfd69f5f57ac2e6712cd2f"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "acf092762cf1cf821a12325fbf494ecf"], + ["misc/tabledrag.js", + "3cb5b8ddfabe782319ee9fb8374fbb55"]], + "7.54" => + [["CHANGELOG.txt", + "f4b657ab95179c20b5a84cc7acf16145"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "acf092762cf1cf821a12325fbf494ecf"], + ["misc/tabledrag.js", + "3cb5b8ddfabe782319ee9fb8374fbb55"]], + "7.55" => + [["CHANGELOG.txt", + "bc769ba2af7b560bb959271341aee952"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "ce89aafcde644262269009c10d8a9cd2"], + ["misc/tabledrag.js", + "3cb5b8ddfabe782319ee9fb8374fbb55"]], + "7.56" => + [["CHANGELOG.txt", + "9ae2fdeaa348cd7cff1e41bd9ba3ff5c"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "ce89aafcde644262269009c10d8a9cd2"], + ["misc/tabledrag.js", + "3cb5b8ddfabe782319ee9fb8374fbb55"]], + "7.57" => + [["CHANGELOG.txt", + "c1150db41e8c02038303cc7f3eb427b0"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "3cb5b8ddfabe782319ee9fb8374fbb55"]], + "7.58" => + [["CHANGELOG.txt", + "304b9e98d005eac19b620778a421b361"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "3cb5b8ddfabe782319ee9fb8374fbb55"]], + "7.59" => + [["CHANGELOG.txt", + "b3827b60eb7a5d1216337fd808428dd7"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "3cb5b8ddfabe782319ee9fb8374fbb55"]], + "7.60" => + [["CHANGELOG.txt", + "1bb8fb507b4c17e1ea78d2a1fa128324"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "3cb5b8ddfabe782319ee9fb8374fbb55"]], + "7.61" => + [["CHANGELOG.txt", + "31864297cd536abca8cb92f3a4b7942d"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.62" => + [["CHANGELOG.txt", + "c7d56880daa0a4e062890b87027ae4da"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.63" => + [["CHANGELOG.txt", + "9bd4946c1c6e5a0ec5bdd821dbfc8f52"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.64" => + [["CHANGELOG.txt", + "d48cce20b13b70df8a7a40d3c3eaba73"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.65" => + [["CHANGELOG.txt", + "24e199ba2a6316adfcd35288ed608866"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.66" => + [["CHANGELOG.txt", + "956508b94cad40ad09912fd7a94122fb"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.67" => + [["CHANGELOG.txt", + "552e7c765a35d7264acfd08fee1d29de"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.68" => + [["CHANGELOG.txt", + "f3fabdb37db2738e0b36fed8c2911c26"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.69" => + [["CHANGELOG.txt", + "84bdcd330f1d84c0b2f2d78a0182a3a3"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.70" => + [["CHANGELOG.txt", + "e49ebd0da8eb5316c6e7b8a23592d9ec"], + ["misc/ajax.js", + "c33c7e19fd8f473af82f4ac433446f2e"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.71" => + [["CHANGELOG.txt", + "248f75207f68d9d48359b02076bbe774"], + ["misc/ajax.js", + "d2627e7c7234e6e172e98d987d28b3cf"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.72" => + [["CHANGELOG.txt", + "769646518e9eec12a365a0a40207f45a"], + ["misc/ajax.js", + "d2627e7c7234e6e172e98d987d28b3cf"], + ["misc/drupal.js", + "a4065c93addf975e695586c24a20bda8"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.73" => + [["CHANGELOG.txt", + "ba8a18f7b8567764a832886cad17af33"], + ["misc/ajax.js", + "577a75e924f6d70fad30feb13941604a"], + ["misc/drupal.js", + "f11a165a540fd604ca434a64a6ce4f5a"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.74" => + [["CHANGELOG.txt", + "1310de28ffad8bf38815cc52dcf07e34"], + ["misc/ajax.js", + "577a75e924f6d70fad30feb13941604a"], + ["misc/drupal.js", + "f11a165a540fd604ca434a64a6ce4f5a"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.75" => + [["CHANGELOG.txt", + "d0a8a00bf785026650b57ae86713ab48"], + ["misc/ajax.js", + "577a75e924f6d70fad30feb13941604a"], + ["misc/drupal.js", + "f11a165a540fd604ca434a64a6ce4f5a"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.76" => + [["CHANGELOG.txt", + "38a8e3434de29a4ed7e96301fd2e77ad"], + ["misc/ajax.js", + "577a75e924f6d70fad30feb13941604a"], + ["misc/drupal.js", + "f11a165a540fd604ca434a64a6ce4f5a"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.77" => + [["CHANGELOG.txt", + "1cad65631c27ec22945393d7a5892e4a"], + ["misc/ajax.js", + "577a75e924f6d70fad30feb13941604a"], + ["misc/drupal.js", + "f11a165a540fd604ca434a64a6ce4f5a"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "7.78" => + [["CHANGELOG.txt", + "03d4f30d1d14be56ccc3326221c9cae6"], + ["misc/ajax.js", + "577a75e924f6d70fad30feb13941604a"], + ["misc/drupal.js", + "f11a165a540fd604ca434a64a6ce4f5a"], + ["misc/tabledrag.js", + "1c8a047f85d796b3a5149e05aa2b138b"]], + "8.0.0" => + [["core/misc/ajax.js", + "71516960676910f03c149d7d55a10708"], + ["core/misc/drupal.js", + "3dcbe8b1280a271797fe4f1dd5700d0c"], + ["core/phpcs.xml.dist", + "1f983964585a75eba7f98e85e9058f47"], + ["core/MAINTAINERS.txt", + "6937e8e9fbbb31b9439e98e620c742ef"], + ["core/misc/tabledrag.js", + "f82657c689caa162f8d4c3b8306d6f45"]], + "8.0.1" => + [["core/misc/ajax.js", + "71516960676910f03c149d7d55a10708"], + ["core/misc/drupal.js", + "3dcbe8b1280a271797fe4f1dd5700d0c"], + ["core/phpcs.xml.dist", + "4b9ed181c3c3f8c86c240395697a31de"], + ["core/MAINTAINERS.txt", + "6937e8e9fbbb31b9439e98e620c742ef"], + ["core/misc/tabledrag.js", + "f82657c689caa162f8d4c3b8306d6f45"]], + "8.0.2" => + [["core/misc/ajax.js", + "71516960676910f03c149d7d55a10708"], + ["core/misc/drupal.js", + "3dcbe8b1280a271797fe4f1dd5700d0c"], + ["core/phpcs.xml.dist", + "d031c70c81e736c572ccd573e3dc1055"], + ["core/MAINTAINERS.txt", + "74f7e1f578bce9a773f734f133c90d25"], + ["core/misc/tabledrag.js", + "f82657c689caa162f8d4c3b8306d6f45"]], + "8.0.3" => + [["core/misc/ajax.js", + "71516960676910f03c149d7d55a10708"], + ["core/misc/drupal.js", + "3dcbe8b1280a271797fe4f1dd5700d0c"], + ["core/phpcs.xml.dist", + "d031c70c81e736c572ccd573e3dc1055"], + ["core/MAINTAINERS.txt", + "74f7e1f578bce9a773f734f133c90d25"], + ["core/misc/tabledrag.js", + "f82657c689caa162f8d4c3b8306d6f45"]], + "8.0.4" => + [["core/misc/ajax.js", + "71516960676910f03c149d7d55a10708"], + ["core/misc/drupal.js", + "3dcbe8b1280a271797fe4f1dd5700d0c"], + ["core/phpcs.xml.dist", + "d031c70c81e736c572ccd573e3dc1055"], + ["core/MAINTAINERS.txt", + "74f7e1f578bce9a773f734f133c90d25"], + ["core/misc/tabledrag.js", + "f82657c689caa162f8d4c3b8306d6f45"]], + "8.0.5" => + [["core/misc/ajax.js", + "71516960676910f03c149d7d55a10708"], + ["core/misc/drupal.js", + "3dcbe8b1280a271797fe4f1dd5700d0c"], + ["core/phpcs.xml.dist", + "d031c70c81e736c572ccd573e3dc1055"], + ["core/MAINTAINERS.txt", + "c28fb44ff0ccddeca16258a8526d4d46"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.0.6" => + [["core/misc/ajax.js", + "71516960676910f03c149d7d55a10708"], + ["core/misc/drupal.js", + "3dcbe8b1280a271797fe4f1dd5700d0c"], + ["core/phpcs.xml.dist", + "d031c70c81e736c572ccd573e3dc1055"], + ["core/MAINTAINERS.txt", + "7a7b5f1116a1914ce7c6976258e7dbce"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.0" => + [["core/misc/ajax.js", + "3064ff3ea7718104f0cb4b50940f0c8d"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "0f0c103057b3b7f156c8e99405fbaa16"], + ["core/MAINTAINERS.txt", + "6b4d23294f827e149582652c0e87f1e6"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.1" => + [["core/misc/ajax.js", + "3064ff3ea7718104f0cb4b50940f0c8d"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "df3bb4aaa9e70ccba69abc555fa4210e"], + ["core/MAINTAINERS.txt", + "1f3d6cd68340543529224d7a3bf85339"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.2" => + [["core/misc/ajax.js", + "581c5eddd03d02384565574350880562"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "5b6c1f011dca45a14e2b0308b1128c5c"], + ["core/MAINTAINERS.txt", + "22620d6413a2f124595943f6c019c2fd"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.3" => + [["core/misc/ajax.js", + "581c5eddd03d02384565574350880562"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "5b6c1f011dca45a14e2b0308b1128c5c"], + ["core/MAINTAINERS.txt", + "22620d6413a2f124595943f6c019c2fd"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.4" => + [["core/misc/ajax.js", + "581c5eddd03d02384565574350880562"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "22a6972c733cd00c552f6f57f350dadf"], + ["core/MAINTAINERS.txt", + "e6bd1a1b8e9db8f703f744319512e0a1"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.5" => + [["core/misc/ajax.js", + "581c5eddd03d02384565574350880562"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "22a6972c733cd00c552f6f57f350dadf"], + ["core/MAINTAINERS.txt", + "e6bd1a1b8e9db8f703f744319512e0a1"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.6" => + [["core/misc/ajax.js", + "581c5eddd03d02384565574350880562"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "22a6972c733cd00c552f6f57f350dadf"], + ["core/MAINTAINERS.txt", + "e6bd1a1b8e9db8f703f744319512e0a1"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.7" => + [["core/misc/ajax.js", + "581c5eddd03d02384565574350880562"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "22a6972c733cd00c552f6f57f350dadf"], + ["core/MAINTAINERS.txt", + "e6bd1a1b8e9db8f703f744319512e0a1"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.8" => + [["core/misc/ajax.js", + "581c5eddd03d02384565574350880562"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "22a6972c733cd00c552f6f57f350dadf"], + ["core/MAINTAINERS.txt", + "dbe8c6fb34b4354de92eb12c2dc31e36"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.9" => + [["core/misc/ajax.js", + "581c5eddd03d02384565574350880562"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "9a76114eff7020abe97ea28bc7a8c1fb"], + ["core/MAINTAINERS.txt", + "49313f20f8ff7dc6a1da7b2b63e662ec"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.1.10" => + [["core/misc/ajax.js", + "581c5eddd03d02384565574350880562"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "9a76114eff7020abe97ea28bc7a8c1fb"], + ["core/MAINTAINERS.txt", + "49313f20f8ff7dc6a1da7b2b63e662ec"], + ["core/misc/tabledrag.js", + "3ab4e8029dde2c47fb2aa7b954d626f8"]], + "8.2.0" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "bd0bc7631b09c39bab7128e71cb09952"], + ["core/MAINTAINERS.txt", + "06a6c341aa3cae54349cbbbd5b1b10da"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.2.1" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "bd0bc7631b09c39bab7128e71cb09952"], + ["core/MAINTAINERS.txt", + "06a6c341aa3cae54349cbbbd5b1b10da"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.2.2" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "bd0bc7631b09c39bab7128e71cb09952"], + ["core/MAINTAINERS.txt", + "873744e72bd413cb77ff52d5718514ae"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.2.3" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "bd0bc7631b09c39bab7128e71cb09952"], + ["core/MAINTAINERS.txt", + "873744e72bd413cb77ff52d5718514ae"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.2.4" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "bd0bc7631b09c39bab7128e71cb09952"], + ["core/MAINTAINERS.txt", + "b75a23417ee8433867846e28e2692bcc"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.2.5" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "bd0bc7631b09c39bab7128e71cb09952"], + ["core/MAINTAINERS.txt", + "3b64f978d0d0c714788f7fae3e8e4e38"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.2.6" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "bd0bc7631b09c39bab7128e71cb09952"], + ["core/MAINTAINERS.txt", + "3b64f978d0d0c714788f7fae3e8e4e38"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.2.7" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "bd0bc7631b09c39bab7128e71cb09952"], + ["core/MAINTAINERS.txt", + "3b64f978d0d0c714788f7fae3e8e4e38"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.2.8" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "714d7aeb86ea12acc0de88e2b135f14d"], + ["core/phpcs.xml.dist", + "bd0bc7631b09c39bab7128e71cb09952"], + ["core/MAINTAINERS.txt", + "3b64f978d0d0c714788f7fae3e8e4e38"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.3.0" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "0e18a6096f1a222fab718c153266444a"], + ["core/phpcs.xml.dist", + "521258f7ad067280bb4d53514415c27d"], + ["core/MAINTAINERS.txt", + "7f77849ef07a51fba16d2b3e56f03560"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.3.1" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "0e18a6096f1a222fab718c153266444a"], + ["core/phpcs.xml.dist", + "521258f7ad067280bb4d53514415c27d"], + ["core/MAINTAINERS.txt", + "7f77849ef07a51fba16d2b3e56f03560"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.3.2" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "0e18a6096f1a222fab718c153266444a"], + ["core/phpcs.xml.dist", + "16e480ad705223fdc4d87464138df403"], + ["core/MAINTAINERS.txt", + "933210b84a04433c495c7778dcb1a962"], + ["core/misc/tabledrag.js", + "059e133291d6ff82f6ab4882f50983ca"]], + "8.3.3" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "0e18a6096f1a222fab718c153266444a"], + ["core/phpcs.xml.dist", + "16e480ad705223fdc4d87464138df403"], + ["core/MAINTAINERS.txt", + "07c3dc175fc79e3ff5690a8a9c8836e2"], + ["core/misc/tabledrag.js", + "fa655ac7225328d6423f6c086c012b4d"]], + "8.3.4" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "0e18a6096f1a222fab718c153266444a"], + ["core/phpcs.xml.dist", + "16e480ad705223fdc4d87464138df403"], + ["core/MAINTAINERS.txt", + "07c3dc175fc79e3ff5690a8a9c8836e2"], + ["core/misc/tabledrag.js", + "fa655ac7225328d6423f6c086c012b4d"]], + "8.3.5" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "0e18a6096f1a222fab718c153266444a"], + ["core/phpcs.xml.dist", + "16e480ad705223fdc4d87464138df403"], + ["core/MAINTAINERS.txt", + "333e660df18ab61bf3021115987b424c"], + ["core/misc/tabledrag.js", + "fa655ac7225328d6423f6c086c012b4d"]], + "8.3.6" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "0e18a6096f1a222fab718c153266444a"], + ["core/phpcs.xml.dist", + "16e480ad705223fdc4d87464138df403"], + ["core/MAINTAINERS.txt", + "1e255ce11ecb7e13c1f4140c03df2622"], + ["core/misc/tabledrag.js", + "fa655ac7225328d6423f6c086c012b4d"]], + "8.3.7" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "0e18a6096f1a222fab718c153266444a"], + ["core/phpcs.xml.dist", + "16e480ad705223fdc4d87464138df403"], + ["core/MAINTAINERS.txt", + "1e255ce11ecb7e13c1f4140c03df2622"], + ["core/misc/tabledrag.js", + "fa655ac7225328d6423f6c086c012b4d"]], + "8.3.8" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "5ef71c6e30d110e9e329c3f7531bb285"], + ["core/phpcs.xml.dist", + "16e480ad705223fdc4d87464138df403"], + ["core/MAINTAINERS.txt", + "1e255ce11ecb7e13c1f4140c03df2622"], + ["core/misc/tabledrag.js", + "fa655ac7225328d6423f6c086c012b4d"]], + "8.3.9" => + [["core/misc/ajax.js", + "1c2056cd67437ba0af64151fa90f23b0"], + ["core/misc/drupal.js", + "5ef71c6e30d110e9e329c3f7531bb285"], + ["core/phpcs.xml.dist", + "16e480ad705223fdc4d87464138df403"], + ["core/MAINTAINERS.txt", + "1e255ce11ecb7e13c1f4140c03df2622"], + ["core/misc/tabledrag.js", + "fa655ac7225328d6423f6c086c012b4d"]], + "8.4.0" => + [["core/misc/ajax.js", + "ae80a84527d1b0ee269046af6e2e9dec"], + ["core/misc/drupal.js", + "423a643a05f801dea5358481e56d83d7"], + ["core/phpcs.xml.dist", + "75bf39f312ae27714a7538507701b06c"], + ["core/MAINTAINERS.txt", + "17d2189a440c4d8ce064a3c237209511"], + ["core/misc/tabledrag.js", + "17a26bbb562576664784d3dce298403b"]], + "8.4.1" => + [["core/misc/ajax.js", + "ae80a84527d1b0ee269046af6e2e9dec"], + ["core/misc/drupal.js", + "423a643a05f801dea5358481e56d83d7"], + ["core/phpcs.xml.dist", + "75bf39f312ae27714a7538507701b06c"], + ["core/MAINTAINERS.txt", + "7e3b39f60592f28c1fa0b2fc5330cc69"], + ["core/misc/tabledrag.js", + "17a26bbb562576664784d3dce298403b"]], + "8.4.2" => + [["core/misc/ajax.js", + "ae80a84527d1b0ee269046af6e2e9dec"], + ["core/misc/drupal.js", + "423a643a05f801dea5358481e56d83d7"], + ["core/phpcs.xml.dist", + "75bf39f312ae27714a7538507701b06c"], + ["core/MAINTAINERS.txt", + "7e3b39f60592f28c1fa0b2fc5330cc69"], + ["core/misc/tabledrag.js", + "17a26bbb562576664784d3dce298403b"]], + "8.4.3" => + [["core/misc/ajax.js", + "ae80a84527d1b0ee269046af6e2e9dec"], + ["core/misc/drupal.js", + "423a643a05f801dea5358481e56d83d7"], + ["core/phpcs.xml.dist", + "75bf39f312ae27714a7538507701b06c"], + ["core/MAINTAINERS.txt", + "7254f22bf909b13bb48b53a3a773a27a"], + ["core/misc/tabledrag.js", + "17a26bbb562576664784d3dce298403b"]], + "8.4.4" => + [["core/misc/ajax.js", + "ae80a84527d1b0ee269046af6e2e9dec"], + ["core/misc/drupal.js", + "423a643a05f801dea5358481e56d83d7"], + ["core/phpcs.xml.dist", + "75bf39f312ae27714a7538507701b06c"], + ["core/MAINTAINERS.txt", + "7254f22bf909b13bb48b53a3a773a27a"], + ["core/misc/tabledrag.js", + "17a26bbb562576664784d3dce298403b"]], + "8.4.5" => + [["core/misc/ajax.js", + "ae80a84527d1b0ee269046af6e2e9dec"], + ["core/misc/drupal.js", + "767df16aa36ccaa000a195ff5680a9c2"], + ["core/phpcs.xml.dist", + "75bf39f312ae27714a7538507701b06c"], + ["core/MAINTAINERS.txt", + "7254f22bf909b13bb48b53a3a773a27a"], + ["core/misc/tabledrag.js", + "17a26bbb562576664784d3dce298403b"]], + "8.4.6" => + [["core/misc/ajax.js", + "ae80a84527d1b0ee269046af6e2e9dec"], + ["core/misc/drupal.js", + "767df16aa36ccaa000a195ff5680a9c2"], + ["core/phpcs.xml.dist", + "75bf39f312ae27714a7538507701b06c"], + ["core/MAINTAINERS.txt", + "7254f22bf909b13bb48b53a3a773a27a"], + ["core/misc/tabledrag.js", + "17a26bbb562576664784d3dce298403b"]], + "8.4.7" => + [["core/misc/ajax.js", + "ae80a84527d1b0ee269046af6e2e9dec"], + ["core/misc/drupal.js", + "767df16aa36ccaa000a195ff5680a9c2"], + ["core/phpcs.xml.dist", + "75bf39f312ae27714a7538507701b06c"], + ["core/MAINTAINERS.txt", + "7254f22bf909b13bb48b53a3a773a27a"], + ["core/misc/tabledrag.js", + "17a26bbb562576664784d3dce298403b"]], + "8.4.8" => + [["core/misc/ajax.js", + "ae80a84527d1b0ee269046af6e2e9dec"], + ["core/misc/drupal.js", + "767df16aa36ccaa000a195ff5680a9c2"], + ["core/phpcs.xml.dist", + "75bf39f312ae27714a7538507701b06c"], + ["core/MAINTAINERS.txt", + "7254f22bf909b13bb48b53a3a773a27a"], + ["core/misc/tabledrag.js", + "17a26bbb562576664784d3dce298403b"]], + "8.5.0" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "80afc6129b08483034f061428e434903"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.1" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "80afc6129b08483034f061428e434903"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.2" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "80afc6129b08483034f061428e434903"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.3" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "80afc6129b08483034f061428e434903"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.4" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "7148c4e7b2f704b56f7f0fa347adbb3c"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.5" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "460259ed56301e745b716b4159fbc0e9"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.6" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "460259ed56301e745b716b4159fbc0e9"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.7" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "4df05985060d98ac6ca082279a3e2954"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.8" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "4df05985060d98ac6ca082279a3e2954"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.9" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "4df05985060d98ac6ca082279a3e2954"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.10" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "4df05985060d98ac6ca082279a3e2954"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.11" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "4df05985060d98ac6ca082279a3e2954"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.12" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "4df05985060d98ac6ca082279a3e2954"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.13" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "4df05985060d98ac6ca082279a3e2954"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.14" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "4df05985060d98ac6ca082279a3e2954"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.5.15" => + [["core/misc/ajax.js", + "7ddcdba9290b0b454d14016823c9c498"], + ["core/misc/drupal.js", + "71bfba813a9f85564220f8e9a1b06da4"], + ["core/phpcs.xml.dist", + "9c5a0b4333fab875e89386ea9eede001"], + ["core/MAINTAINERS.txt", + "4df05985060d98ac6ca082279a3e2954"], + ["core/misc/tabledrag.js", + "01412e3ed57a859225d06e48ed254a61"]], + "8.6.0" => + [["core/misc/ajax.js", + "258893113a116e8c28f109d5a41f41c3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "fcaabc04437417ee929951f03ae3c96e"], + ["core/misc/tabledrag.js", + "f956ca46b54571787f78a0289c9e9886"]], + "8.6.1" => + [["core/misc/ajax.js", + "258893113a116e8c28f109d5a41f41c3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "fcaabc04437417ee929951f03ae3c96e"], + ["core/misc/tabledrag.js", + "f956ca46b54571787f78a0289c9e9886"]], + "8.6.2" => + [["core/misc/ajax.js", + "258893113a116e8c28f109d5a41f41c3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "fcaabc04437417ee929951f03ae3c96e"], + ["core/misc/tabledrag.js", + "f956ca46b54571787f78a0289c9e9886"]], + "8.6.3" => + [["core/misc/ajax.js", + "258893113a116e8c28f109d5a41f41c3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "f546b6a9630c7513b2ec4499e9056e1c"], + ["core/misc/tabledrag.js", + "f956ca46b54571787f78a0289c9e9886"]], + "8.6.4" => + [["core/misc/ajax.js", + "258893113a116e8c28f109d5a41f41c3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "e4785c08de6b27c862b69d6389526e5a"], + ["core/misc/tabledrag.js", + "f956ca46b54571787f78a0289c9e9886"]], + "8.6.5" => + [["core/misc/ajax.js", + "258893113a116e8c28f109d5a41f41c3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "ef518965b15e7daf725a04ee6201984d"], + ["core/misc/tabledrag.js", + "f956ca46b54571787f78a0289c9e9886"]], + "8.6.6" => + [["core/misc/ajax.js", + "258893113a116e8c28f109d5a41f41c3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "ef518965b15e7daf725a04ee6201984d"], + ["core/misc/tabledrag.js", + "f956ca46b54571787f78a0289c9e9886"]], + "8.6.7" => + [["core/misc/ajax.js", + "258893113a116e8c28f109d5a41f41c3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "ef518965b15e7daf725a04ee6201984d"], + ["core/misc/tabledrag.js", + "f956ca46b54571787f78a0289c9e9886"]], + "8.6.8" => + [["core/misc/ajax.js", + "1b599cf6e984087543315ebc5a86a8d8"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "5ca8a52747b936d9495a67d1880a7333"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.9" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "5ca8a52747b936d9495a67d1880a7333"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.10" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "5ca8a52747b936d9495a67d1880a7333"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.11" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "aa3f23bfe20d3283aa3c91d4d72ed189"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.12" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "aa3f23bfe20d3283aa3c91d4d72ed189"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.13" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "aa3f23bfe20d3283aa3c91d4d72ed189"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.14" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "aa3f23bfe20d3283aa3c91d4d72ed189"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.15" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "aa3f23bfe20d3283aa3c91d4d72ed189"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.16" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "aa3f23bfe20d3283aa3c91d4d72ed189"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.17" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "aa3f23bfe20d3283aa3c91d4d72ed189"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.6.18" => + [["core/misc/ajax.js", + "26ecc96ffcdb90e2d88015f770617ad3"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "980371926f850d67da61156f9d69aa53"], + ["core/MAINTAINERS.txt", + "aa3f23bfe20d3283aa3c91d4d72ed189"], + ["core/misc/tabledrag.js", + "fec9c06008bbbba244c1940ab0362bf9"]], + "8.7.0" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "5c479ecfc27f33db5872bf3f6ecbdb03"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.1" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "5c479ecfc27f33db5872bf3f6ecbdb03"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.2" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "5c479ecfc27f33db5872bf3f6ecbdb03"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.3" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "5d842f044feb7b3253671ca3be21b51f"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.4" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "5d842f044feb7b3253671ca3be21b51f"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.5" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "5d842f044feb7b3253671ca3be21b51f"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.6" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "5d842f044feb7b3253671ca3be21b51f"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.7" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "5d842f044feb7b3253671ca3be21b51f"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.8" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "484b16235ae804240bb8291d5f223406"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.9" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "484b16235ae804240bb8291d5f223406"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.10" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "484b16235ae804240bb8291d5f223406"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.11" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "484b16235ae804240bb8291d5f223406"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.12" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "484b16235ae804240bb8291d5f223406"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.13" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "484b16235ae804240bb8291d5f223406"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.7.14" => + [["core/misc/ajax.js", + "7942b4e933b3b1a9f3f14a93d1f2ac58"], + ["core/misc/drupal.js", + "a375001d7040601a26da55bd8c30856d"], + ["core/phpcs.xml.dist", + "640b7bd0a9b6ce32f2a0c601f5805a89"], + ["core/MAINTAINERS.txt", + "484b16235ae804240bb8291d5f223406"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.0" => + [["core/misc/ajax.js", + "84a8633139cf587518698ca9d2fbe293"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "fe0dba32d98154fd6c7aee6cb44c4389"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.1" => + [["core/misc/ajax.js", + "84a8633139cf587518698ca9d2fbe293"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "fe0dba32d98154fd6c7aee6cb44c4389"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.2" => + [["core/misc/ajax.js", + "84a8633139cf587518698ca9d2fbe293"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "7a02e2f44cc2c28a4209e842a375ffff"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.3" => + [["core/misc/ajax.js", + "84a8633139cf587518698ca9d2fbe293"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "3224050c4e73d437c222ea4f1ac5c07e"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.4" => + [["core/misc/ajax.js", + "84a8633139cf587518698ca9d2fbe293"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "3224050c4e73d437c222ea4f1ac5c07e"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.5" => + [["core/misc/ajax.js", + "84a8633139cf587518698ca9d2fbe293"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "3224050c4e73d437c222ea4f1ac5c07e"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.6" => + [["core/misc/ajax.js", + "84a8633139cf587518698ca9d2fbe293"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "3224050c4e73d437c222ea4f1ac5c07e"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.7" => + [["core/misc/ajax.js", + "e73b8d449014537b2f73d88037673c22"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "1f99c4d4823eefd6b5aab2012b0a27d9"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.8" => + [["core/misc/ajax.js", + "e73b8d449014537b2f73d88037673c22"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "1f99c4d4823eefd6b5aab2012b0a27d9"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.9" => + [["core/misc/ajax.js", + "e73b8d449014537b2f73d88037673c22"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "1f99c4d4823eefd6b5aab2012b0a27d9"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.10" => + [["core/misc/ajax.js", + "cabec657135014f61714bc98f1cde339"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "1f99c4d4823eefd6b5aab2012b0a27d9"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.11" => + [["core/misc/ajax.js", + "cabec657135014f61714bc98f1cde339"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "1f99c4d4823eefd6b5aab2012b0a27d9"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.8.12" => + [["core/misc/ajax.js", + "cabec657135014f61714bc98f1cde339"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "bf957e6d237bfcfda4eb081b2381f479"], + ["core/MAINTAINERS.txt", + "1f99c4d4823eefd6b5aab2012b0a27d9"], + ["core/misc/tabledrag.js", + "fa1276f35d69ff4b41c393b72a62ceef"]], + "8.9.0" => + [["core/misc/ajax.js", + "9c44d80984b96334475a2d461c6207b6"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "aaf7f22d9ab68ac0fff98d0cbb591c5e"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.1" => + [["core/misc/ajax.js", + "9c44d80984b96334475a2d461c6207b6"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "aaf7f22d9ab68ac0fff98d0cbb591c5e"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.2" => + [["core/misc/ajax.js", + "9c44d80984b96334475a2d461c6207b6"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.3" => + [["core/misc/ajax.js", + "9c44d80984b96334475a2d461c6207b6"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.4" => + [["core/misc/ajax.js", + "9c44d80984b96334475a2d461c6207b6"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.5" => + [["core/misc/ajax.js", + "9c44d80984b96334475a2d461c6207b6"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.6" => + [["core/misc/ajax.js", + "3cfe58169cdb079fb537d5454244e2b2"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.7" => + [["core/misc/ajax.js", + "3cfe58169cdb079fb537d5454244e2b2"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.8" => + [["core/misc/ajax.js", + "3cfe58169cdb079fb537d5454244e2b2"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "f12e436751c3ed82d73917212aa38b3e"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.9" => + [["core/misc/ajax.js", + "3cfe58169cdb079fb537d5454244e2b2"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "f12e436751c3ed82d73917212aa38b3e"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.10" => + [["core/misc/ajax.js", + "3cfe58169cdb079fb537d5454244e2b2"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "f12e436751c3ed82d73917212aa38b3e"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.11" => + [["core/misc/ajax.js", + "3cfe58169cdb079fb537d5454244e2b2"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "f12e436751c3ed82d73917212aa38b3e"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.12" => + [["core/misc/ajax.js", + "3cfe58169cdb079fb537d5454244e2b2"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "e09be1decb621d85fa76caba5be092c7"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "8.9.13" => + [["core/misc/ajax.js", + "3cfe58169cdb079fb537d5454244e2b2"], + ["core/misc/drupal.js", + "2d083e808846c9d9780adb0b098027d9"], + ["core/phpcs.xml.dist", + "23f9343dd6ca90a1dd1bea2fcfa83ec3"], + ["core/MAINTAINERS.txt", + "e09be1decb621d85fa76caba5be092c7"], + ["core/misc/tabledrag.js", + "81e0318fc3f39a0419bd234c0670afff"]], + "9.0.0" => + [["core/misc/ajax.js", + "77b0008cdc5f33cb23ef19766d02e3be"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.1" => + [["core/misc/ajax.js", + "77b0008cdc5f33cb23ef19766d02e3be"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.2" => + [["core/misc/ajax.js", + "77b0008cdc5f33cb23ef19766d02e3be"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.3" => + [["core/misc/ajax.js", + "77b0008cdc5f33cb23ef19766d02e3be"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.4" => + [["core/misc/ajax.js", + "77b0008cdc5f33cb23ef19766d02e3be"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.5" => + [["core/misc/ajax.js", + "77b0008cdc5f33cb23ef19766d02e3be"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.6" => + [["core/misc/ajax.js", + "a0224f61fb7cbe78d483c67c2f4a51d5"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "5e7788d8d8c9219b38eadf4fdd69ac89"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.7" => + [["core/misc/ajax.js", + "a0224f61fb7cbe78d483c67c2f4a51d5"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "fdb771a2ecc6314bf45fc89582b49cb1"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.8" => + [["core/misc/ajax.js", + "a0224f61fb7cbe78d483c67c2f4a51d5"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "fdb771a2ecc6314bf45fc89582b49cb1"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.9" => + [["core/misc/ajax.js", + "a0224f61fb7cbe78d483c67c2f4a51d5"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "fdb771a2ecc6314bf45fc89582b49cb1"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.10" => + [["core/misc/ajax.js", + "a0224f61fb7cbe78d483c67c2f4a51d5"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "d2d1fadc10230e06043f3ecbbf57438a"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.0.11" => + [["core/misc/ajax.js", + "a0224f61fb7cbe78d483c67c2f4a51d5"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "e356146fac22f1c1b4055cce5f6fd2d0"], + ["core/MAINTAINERS.txt", + "d2d1fadc10230e06043f3ecbbf57438a"], + ["core/misc/tabledrag.js", + "06746ba2227863b90f20406c09213889"]], + "9.1.0" => + [["core/misc/ajax.js", + "3905c3703f382cd068901e5e388b19d8"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "8459d534473f28b043de04ff7ecf3623"], + ["core/MAINTAINERS.txt", + "94235d4cdb0f8f33512b5c5bfda3e3d8"], + ["core/misc/tabledrag.js", + "14735547648e7b0802be1dffad1a6643"]], + "9.1.1" => + [["core/misc/ajax.js", + "3905c3703f382cd068901e5e388b19d8"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "8459d534473f28b043de04ff7ecf3623"], + ["core/MAINTAINERS.txt", + "acb5855975705675e07f2fa30f395a6d"], + ["core/misc/tabledrag.js", + "14735547648e7b0802be1dffad1a6643"]], + "9.1.2" => + [["core/misc/ajax.js", + "3905c3703f382cd068901e5e388b19d8"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "8459d534473f28b043de04ff7ecf3623"], + ["core/MAINTAINERS.txt", + "acb5855975705675e07f2fa30f395a6d"], + ["core/misc/tabledrag.js", + "14735547648e7b0802be1dffad1a6643"]], + "9.1.3" => + [["core/misc/ajax.js", + "3905c3703f382cd068901e5e388b19d8"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "8459d534473f28b043de04ff7ecf3623"], + ["core/MAINTAINERS.txt", + "acb5855975705675e07f2fa30f395a6d"], + ["core/misc/tabledrag.js", + "14735547648e7b0802be1dffad1a6643"]], + "9.1.4" => + [["core/misc/ajax.js", + "3905c3703f382cd068901e5e388b19d8"], + ["core/misc/drupal.js", + "ae9cceaa80684c10cdff035fc27fa4de"], + ["core/phpcs.xml.dist", + "8459d534473f28b043de04ff7ecf3623"], + ["core/MAINTAINERS.txt", + "24d955bc3a5d3a30d4d1e8ae603f6bd5"], + ["core/misc/tabledrag.js", + "14735547648e7b0802be1dffad1a6643"]], ] v = Version.new("Drupal", versions, @base_uri) diff --git a/plugins/dspace.rb b/plugins/dspace.rb index e073cc48..310973de 100644 --- a/plugins/dspace.rb +++ b/plugins/dspace.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DSpace" diff --git a/plugins/dt-centrepiece.rb b/plugins/dt-centrepiece.rb index adc6224c..ee525acd 100644 --- a/plugins/dt-centrepiece.rb +++ b/plugins/dt-centrepiece.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DT-Centrepiece" diff --git a/plugins/dublin_core.rb b/plugins/dublin_core.rb index eee42e2a..80cedb9c 100644 --- a/plugins/dublin_core.rb +++ b/plugins/dublin_core.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DublinCore" diff --git a/plugins/duclassified.rb b/plugins/duclassified.rb index cf3550e5..28e45335 100644 --- a/plugins/duclassified.rb +++ b/plugins/duclassified.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DUclassified" diff --git a/plugins/duforum.rb b/plugins/duforum.rb index 1cc9dd72..dab5667d 100644 --- a/plugins/duforum.rb +++ b/plugins/duforum.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DUforum" diff --git a/plugins/dugallery.rb b/plugins/dugallery.rb index 9dd4b401..1c511c48 100644 --- a/plugins/dugallery.rb +++ b/plugins/dugallery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DUgallery" diff --git a/plugins/dv-cart.rb b/plugins/dv-cart.rb index d99fbec6..31ebc6d3 100644 --- a/plugins/dv-cart.rb +++ b/plugins/dv-cart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DV-Cart" diff --git a/plugins/dvr-webclient.rb b/plugins/dvr-webclient.rb index de639f66..1629e623 100644 --- a/plugins/dvr-webclient.rb +++ b/plugins/dvr-webclient.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DVR-WebClient" diff --git a/plugins/dvwa.rb b/plugins/dvwa.rb index 2d534519..13f73810 100644 --- a/plugins/dvwa.rb +++ b/plugins/dvwa.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DVWA" diff --git a/plugins/dwr.rb b/plugins/dwr.rb index 703dc3e4..04e68e85 100644 --- a/plugins/dwr.rb +++ b/plugins/dwr.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "dwr" diff --git a/plugins/dxsock.rb b/plugins/dxsock.rb index 193a1e9a..df4084d2 100644 --- a/plugins/dxsock.rb +++ b/plugins/dxsock.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DXSock" diff --git a/plugins/dynamicweb.rb b/plugins/dynamicweb.rb index 3a06a664..84897ff9 100644 --- a/plugins/dynamicweb.rb +++ b/plugins/dynamicweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DynamicWeb" diff --git a/plugins/dynaweb-httpd.rb b/plugins/dynaweb-httpd.rb index 4bf7b12e..af8fd6c2 100644 --- a/plugins/dynaweb-httpd.rb +++ b/plugins/dynaweb-httpd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DynaWeb-httpd" diff --git a/plugins/dzcp.rb b/plugins/dzcp.rb index 0df2195f..2e6c16c5 100644 --- a/plugins/dzcp.rb +++ b/plugins/dzcp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "DZCP" diff --git a/plugins/e-manage-myschool.rb b/plugins/e-manage-myschool.rb index 2bf4b7ed..c8976e5b 100644 --- a/plugins/e-manage-myschool.rb +++ b/plugins/e-manage-myschool.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "E-Manage-MySchool" diff --git a/plugins/e-xoopport.rb b/plugins/e-xoopport.rb index 7bf66e87..0710be50 100644 --- a/plugins/e-xoopport.rb +++ b/plugins/e-xoopport.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "E-Xoopport" diff --git a/plugins/earlyimpact-productcart.rb b/plugins/earlyimpact-productcart.rb index e9d6d3f2..d018bd66 100644 --- a/plugins/earlyimpact-productcart.rb +++ b/plugins/earlyimpact-productcart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EarlyImpact-ProductCart" diff --git a/plugins/easy-file-sharing-web-server.rb b/plugins/easy-file-sharing-web-server.rb index 26fa54a8..006253a4 100644 --- a/plugins/easy-file-sharing-web-server.rb +++ b/plugins/easy-file-sharing-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Easy-File-Sharing-Web-Server" diff --git a/plugins/easy-site-edit.rb b/plugins/easy-site-edit.rb index 9c3dd6b5..76bed6a3 100644 --- a/plugins/easy-site-edit.rb +++ b/plugins/easy-site-edit.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Easy-Site-Edit" diff --git a/plugins/easyconsole-cms.rb b/plugins/easyconsole-cms.rb index 7c484981..7cabc690 100644 --- a/plugins/easyconsole-cms.rb +++ b/plugins/easyconsole-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EasyConsole-CMS" diff --git a/plugins/easyfeeds.rb b/plugins/easyfeeds.rb index 9d21a149..1b537192 100644 --- a/plugins/easyfeeds.rb +++ b/plugins/easyfeeds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EasyFeeds" diff --git a/plugins/easylink-web-solutions.rb b/plugins/easylink-web-solutions.rb index 08580160..87b13c98 100644 --- a/plugins/easylink-web-solutions.rb +++ b/plugins/easylink-web-solutions.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "easyLink-Web-Solutions" diff --git a/plugins/eazycms.rb b/plugins/eazycms.rb index 40ae1dca..c73f7ef1 100644 --- a/plugins/eazycms.rb +++ b/plugins/eazycms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EazyCMS" diff --git a/plugins/ebuilding.rb b/plugins/ebuilding.rb index bfc4beb1..bf740ca0 100644 --- a/plugins/ebuilding.rb +++ b/plugins/ebuilding.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eBuilding-Network-Controller" diff --git a/plugins/echo.rb b/plugins/echo.rb index deff46e6..26151e61 100644 --- a/plugins/echo.rb +++ b/plugins/echo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Echo" diff --git a/plugins/ecomat-cms.rb b/plugins/ecomat-cms.rb index 2442b53a..d274c226 100644 --- a/plugins/ecomat-cms.rb +++ b/plugins/ecomat-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ecomat-CMS" diff --git a/plugins/ecshop.rb b/plugins/ecshop.rb index 545c655b..3210cbee 100644 --- a/plugins/ecshop.rb +++ b/plugins/ecshop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ECShop" diff --git a/plugins/edgeprism.rb b/plugins/edgeprism.rb index 29f50311..c8e4f654 100644 --- a/plugins/edgeprism.rb +++ b/plugins/edgeprism.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EdgePrism" diff --git a/plugins/edimax.rb b/plugins/edimax.rb index c191d885..842c4f50 100644 --- a/plugins/edimax.rb +++ b/plugins/edimax.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EDIMAX" diff --git a/plugins/edirectory.rb b/plugins/edirectory.rb index 8e299fbc..cde7d979 100644 --- a/plugins/edirectory.rb +++ b/plugins/edirectory.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eDirectory" diff --git a/plugins/edito-cms.rb b/plugins/edito-cms.rb index 5dc2e5a9..5f5bab69 100644 --- a/plugins/edito-cms.rb +++ b/plugins/edito-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Edito-CMS" diff --git a/plugins/edk.rb b/plugins/edk.rb index d50509b4..13bf9a0e 100644 --- a/plugins/edk.rb +++ b/plugins/edk.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EDK" diff --git a/plugins/ee.rb b/plugins/ee.rb index e9f16104..7ef57a0f 100644 --- a/plugins/ee.rb +++ b/plugins/ee.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "?" diff --git a/plugins/efront.rb b/plugins/efront.rb index d60531d0..eac67602 100644 --- a/plugins/efront.rb +++ b/plugins/efront.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eFront" diff --git a/plugins/egroupware.rb b/plugins/egroupware.rb index 0209a042..98eb76eb 100644 --- a/plugins/egroupware.rb +++ b/plugins/egroupware.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eGroupWare" diff --git a/plugins/ektron-cms.rb b/plugins/ektron-cms.rb index cf7ecf3f..309fe806 100644 --- a/plugins/ektron-cms.rb +++ b/plugins/ektron-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ektron-CMS" diff --git a/plugins/elasticsearch.rb b/plugins/elasticsearch.rb index cdb94c4f..6e867fc1 100644 --- a/plugins/elasticsearch.rb +++ b/plugins/elasticsearch.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ElasticSearch" diff --git a/plugins/electro-industries-gaugetech.rb b/plugins/electro-industries-gaugetech.rb index 7f9a9b3a..262f1542 100644 --- a/plugins/electro-industries-gaugetech.rb +++ b/plugins/electro-industries-gaugetech.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Electro-Industries-GaugeTech" diff --git a/plugins/elite-gaming-ladders.rb b/plugins/elite-gaming-ladders.rb index c45b22aa..a61bea8f 100644 --- a/plugins/elite-gaming-ladders.rb +++ b/plugins/elite-gaming-ladders.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Elite-Gaming-Ladders" diff --git a/plugins/elitius.rb b/plugins/elitius.rb index 1e080c2a..754a66b9 100644 --- a/plugins/elitius.rb +++ b/plugins/elitius.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eLitius" diff --git a/plugins/elxis-cms.rb b/plugins/elxis-cms.rb index 52f69dcc..6562051b 100644 --- a/plugins/elxis-cms.rb +++ b/plugins/elxis-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Elxis-CMS" diff --git a/plugins/email.rb b/plugins/email.rb index 4a0ad6e6..2438f68e 100644 --- a/plugins/email.rb +++ b/plugins/email.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Email" diff --git a/plugins/embedthis.rb b/plugins/embedthis.rb index 0cea58da..52a55436 100644 --- a/plugins/embedthis.rb +++ b/plugins/embedthis.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Embedthis-AppWeb" diff --git a/plugins/emc-documentum-webtop.rb b/plugins/emc-documentum-webtop.rb index 9a6bb147..3cb61a14 100644 --- a/plugins/emc-documentum-webtop.rb +++ b/plugins/emc-documentum-webtop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EMC-Documentum-Webtop" diff --git a/plugins/emc-networker.rb b/plugins/emc-networker.rb index ff2810c0..41dbbcb0 100644 --- a/plugins/emc-networker.rb +++ b/plugins/emc-networker.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EMC-NetWorker" diff --git a/plugins/emeeting-online-dating-software.rb b/plugins/emeeting-online-dating-software.rb index d91a92b2..f4a1c855 100644 --- a/plugins/emeeting-online-dating-software.rb +++ b/plugins/emeeting-online-dating-software.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eMeeting-Online-Dating-Software" diff --git a/plugins/emo-realty-manager.rb b/plugins/emo-realty-manager.rb index a892a3d9..70edb436 100644 --- a/plugins/emo-realty-manager.rb +++ b/plugins/emo-realty-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EMO-Realty-Manager" diff --git a/plugins/empirecms.rb b/plugins/empirecms.rb index 9bb2fa95..cc2cb1f6 100644 --- a/plugins/empirecms.rb +++ b/plugins/empirecms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Empire-CMS" diff --git a/plugins/ems-entry-com.rb b/plugins/ems-entry-com.rb index 9181917b..1c374f67 100644 --- a/plugins/ems-entry-com.rb +++ b/plugins/ems-entry-com.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EMS-ENTRY-COM" diff --git a/plugins/energine.rb b/plugins/energine.rb index 8d91a011..357142c2 100644 --- a/plugins/energine.rb +++ b/plugins/energine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Energine" diff --git a/plugins/enhydra-application-server.rb b/plugins/enhydra-application-server.rb index 280d1ee2..2554c8e2 100644 --- a/plugins/enhydra-application-server.rb +++ b/plugins/enhydra-application-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Enhydra-Application-Server" diff --git a/plugins/enigma2.rb b/plugins/enigma2.rb index 5de0b1b3..e15e2dfa 100644 --- a/plugins/enigma2.rb +++ b/plugins/enigma2.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Enigma2" diff --git a/plugins/entrans.rb b/plugins/entrans.rb index 85e9155d..1403fb6c 100644 --- a/plugins/entrans.rb +++ b/plugins/entrans.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Entrans" diff --git a/plugins/envezion~media.rb b/plugins/envezion~media.rb index c403b157..03b39ca6 100644 --- a/plugins/envezion~media.rb +++ b/plugins/envezion~media.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "envezion~media" diff --git a/plugins/envision.rb b/plugins/envision.rb index 3ac6a64a..a3038b3f 100644 --- a/plugins/envision.rb +++ b/plugins/envision.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "enVision" diff --git a/plugins/epic-web-honeypot.rb b/plugins/epic-web-honeypot.rb index 9f2eeb7b..04fd925f 100644 --- a/plugins/epic-web-honeypot.rb +++ b/plugins/epic-web-honeypot.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Epic-Web-Honeypot" diff --git a/plugins/episerver.rb b/plugins/episerver.rb index 85487e55..38629021 100644 --- a/plugins/episerver.rb +++ b/plugins/episerver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EPiServer" diff --git a/plugins/epiware.rb b/plugins/epiware.rb index 492e7184..f8e0c6fe 100644 --- a/plugins/epiware.rb +++ b/plugins/epiware.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Epiware" diff --git a/plugins/epson-printer.rb b/plugins/epson-printer.rb index 70989498..0bd98b8d 100644 --- a/plugins/epson-printer.rb +++ b/plugins/epson-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Epson-Printer" diff --git a/plugins/ericsson-tv-web-server.rb b/plugins/ericsson-tv-web-server.rb index ca016039..a26ec14c 100644 --- a/plugins/ericsson-tv-web-server.rb +++ b/plugins/ericsson-tv-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ericsson-TV-Web-Server" diff --git a/plugins/error_log.rb b/plugins/error_log.rb index 07372832..6549595e 100644 --- a/plugins/error_log.rb +++ b/plugins/error_log.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "error_log" diff --git a/plugins/escenic.rb b/plugins/escenic.rb index 57431015..7a8be562 100644 --- a/plugins/escenic.rb +++ b/plugins/escenic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Escenic" diff --git a/plugins/eserv.rb b/plugins/eserv.rb index d693e5d1..ace025c2 100644 --- a/plugins/eserv.rb +++ b/plugins/eserv.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Eserv" diff --git a/plugins/esitesbuilder.rb b/plugins/esitesbuilder.rb index 6e722339..d7b7ac71 100644 --- a/plugins/esitesbuilder.rb +++ b/plugins/esitesbuilder.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eSitesBuilder" diff --git a/plugins/esotalk.rb b/plugins/esotalk.rb index 0bd88765..41c16fd0 100644 --- a/plugins/esotalk.rb +++ b/plugins/esotalk.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "esoTalk" diff --git a/plugins/essentia-web-server.rb b/plugins/essentia-web-server.rb index 89987f14..e1f37ad1 100644 --- a/plugins/essentia-web-server.rb +++ b/plugins/essentia-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Essentia-Web-Server" diff --git a/plugins/esvon-classifieds.rb b/plugins/esvon-classifieds.rb index 5dd3a669..4cae1172 100644 --- a/plugins/esvon-classifieds.rb +++ b/plugins/esvon-classifieds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Esvon-Classifieds" diff --git a/plugins/esyndicat.rb b/plugins/esyndicat.rb index 788be78f..8b0f44f3 100644 --- a/plugins/esyndicat.rb +++ b/plugins/esyndicat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eSyndiCat" diff --git a/plugins/etano.rb b/plugins/etano.rb index c542497e..c7ee9230 100644 --- a/plugins/etano.rb +++ b/plugins/etano.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Etano" diff --git a/plugins/ethproxy.rb b/plugins/ethproxy.rb index e6fb2622..24e60dc0 100644 --- a/plugins/ethproxy.rb +++ b/plugins/ethproxy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ethProxy" diff --git a/plugins/eticket.rb b/plugins/eticket.rb index d9c096d8..66c44fb1 100644 --- a/plugins/eticket.rb +++ b/plugins/eticket.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eTicket" diff --git a/plugins/eulerianws.rb b/plugins/eulerianws.rb index 8380bf57..b45dfe3f 100644 --- a/plugins/eulerianws.rb +++ b/plugins/eulerianws.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EulerianWS" diff --git a/plugins/evercookie.rb b/plugins/evercookie.rb index b806fae0..a78c7218 100644 --- a/plugins/evercookie.rb +++ b/plugins/evercookie.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "evercookie" diff --git a/plugins/everfocus-cctv.rb b/plugins/everfocus-cctv.rb index fb43e132..eaf85ea6 100644 --- a/plugins/everfocus-cctv.rb +++ b/plugins/everfocus-cctv.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EverFocus-CCTV" diff --git a/plugins/evocam.rb b/plugins/evocam.rb index 2bb05a08..9d49aa5a 100644 --- a/plugins/evocam.rb +++ b/plugins/evocam.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Evo-Cam" diff --git a/plugins/exponent-cms.rb b/plugins/exponent-cms.rb index fadb25ee..abef6df1 100644 --- a/plugins/exponent-cms.rb +++ b/plugins/exponent-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Exponent-CMS" diff --git a/plugins/expression-engine.rb b/plugins/expression-engine.rb index 544c6375..dd4b3430 100644 --- a/plugins/expression-engine.rb +++ b/plugins/expression-engine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ExpressionEngine" diff --git a/plugins/extjs.rb b/plugins/extjs.rb index ec933a97..95af8f74 100644 --- a/plugins/extjs.rb +++ b/plugins/extjs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ExtJS" diff --git a/plugins/extplorer.rb b/plugins/extplorer.rb index 66c70d10..a0072ea1 100644 --- a/plugins/extplorer.rb +++ b/plugins/extplorer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eXtplorer" diff --git a/plugins/extremeware.rb b/plugins/extremeware.rb index a66a30e9..67154877 100644 --- a/plugins/extremeware.rb +++ b/plugins/extremeware.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ExtremeWare" diff --git a/plugins/ez-oscommerce.rb b/plugins/ez-oscommerce.rb index d620b3af..55f884eb 100644 --- a/plugins/ez-oscommerce.rb +++ b/plugins/ez-oscommerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ez-oscommerce" diff --git a/plugins/ez-publish.rb b/plugins/ez-publish.rb index 896480b8..4979c215 100644 --- a/plugins/ez-publish.rb +++ b/plugins/ez-publish.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eZ-Publish" diff --git a/plugins/ezboo-webstats.rb b/plugins/ezboo-webstats.rb index 3ea8b443..d7fd58f7 100644 --- a/plugins/ezboo-webstats.rb +++ b/plugins/ezboo-webstats.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ezBOO-WebStats" diff --git a/plugins/ezcms.rb b/plugins/ezcms.rb index 62e5a2de..88b57c0a 100644 --- a/plugins/ezcms.rb +++ b/plugins/ezcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "EZCMS" diff --git a/plugins/f3site.rb b/plugins/f3site.rb index 9ce06da4..23f17dc4 100644 --- a/plugins/f3site.rb +++ b/plugins/f3site.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "F3Site" diff --git a/plugins/f5-big-ip.rb b/plugins/f5-big-ip.rb index 1906807e..b287e76d 100644 --- a/plugins/f5-big-ip.rb +++ b/plugins/f5-big-ip.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "F5-BigIP" diff --git a/plugins/facebook-plugin.rb b/plugins/facebook-plugin.rb index 79f26ee1..7f1dcd99 100644 --- a/plugins/facebook-plugin.rb +++ b/plugins/facebook-plugin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Facebook-Plugin" diff --git a/plugins/falcon-web-server.rb b/plugins/falcon-web-server.rb index 488f5a4c..30876027 100644 --- a/plugins/falcon-web-server.rb +++ b/plugins/falcon-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Falcon-Web-Server" diff --git a/plugins/fastcgi-echo.rb b/plugins/fastcgi-echo.rb index 35f3a618..c93985b8 100644 --- a/plugins/fastcgi-echo.rb +++ b/plugins/fastcgi-echo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FastCGI-echo" diff --git a/plugins/fastpublish-cms.rb b/plugins/fastpublish-cms.rb index ee2d467b..194ba710 100644 --- a/plugins/fastpublish-cms.rb +++ b/plugins/fastpublish-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fastpublish-CMS" diff --git a/plugins/fatwire-content-server.rb b/plugins/fatwire-content-server.rb index 0d8055b4..c69416d5 100644 --- a/plugins/fatwire-content-server.rb +++ b/plugins/fatwire-content-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FatWire-Content-Server" diff --git a/plugins/fbi-takedown-notice.rb b/plugins/fbi-takedown-notice.rb index c1a836a7..62d60903 100644 --- a/plugins/fbi-takedown-notice.rb +++ b/plugins/fbi-takedown-notice.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FBI-Takedown-Notice" diff --git a/plugins/fcms.rb b/plugins/fcms.rb index 2796f634..535dcaec 100644 --- a/plugins/fcms.rb +++ b/plugins/fcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FCMS" diff --git a/plugins/festos.rb b/plugins/festos.rb index cb3a738f..64942950 100644 --- a/plugins/festos.rb +++ b/plugins/festos.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FestOS" diff --git a/plugins/fex.rb b/plugins/fex.rb index d5304251..0a48dae6 100644 --- a/plugins/fex.rb +++ b/plugins/fex.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FEX" diff --git a/plugins/fidion-cms.rb b/plugins/fidion-cms.rb index fa28cab7..96f6c1eb 100644 --- a/plugins/fidion-cms.rb +++ b/plugins/fidion-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fidion-CMS" diff --git a/plugins/file-upload-manager.rb b/plugins/file-upload-manager.rb index 783db28c..0cca1b36 100644 --- a/plugins/file-upload-manager.rb +++ b/plugins/file-upload-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "File-Upload-Manager" diff --git a/plugins/filemakerpro.rb b/plugins/filemakerpro.rb index 2dc57fbc..6f1f380a 100644 --- a/plugins/filemakerpro.rb +++ b/plugins/filemakerpro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FileMakerPro" diff --git a/plugins/filenice.rb b/plugins/filenice.rb index 0c727adf..e2b09c3e 100644 --- a/plugins/filenice.rb +++ b/plugins/filenice.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FileNice" diff --git a/plugins/filevista.rb b/plugins/filevista.rb index 8e50af2e..0cd36734 100644 --- a/plugins/filevista.rb +++ b/plugins/filevista.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FileVista" diff --git a/plugins/firephp.rb b/plugins/firephp.rb index b94efaff..2158b2b3 100644 --- a/plugins/firephp.rb +++ b/plugins/firephp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FirePHP" diff --git a/plugins/fitelnet-router.rb b/plugins/fitelnet-router.rb index ad27dd90..e8da8954 100644 --- a/plugins/fitelnet-router.rb +++ b/plugins/fitelnet-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FITELnet-Router" diff --git a/plugins/fizmez-web-server.rb b/plugins/fizmez-web-server.rb index 12a96d0a..bb6ba615 100644 --- a/plugins/fizmez-web-server.rb +++ b/plugins/fizmez-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fizmez-Web-Server" diff --git a/plugins/flat-file-guestbook.rb b/plugins/flat-file-guestbook.rb index 9fe36a9b..d7648750 100644 --- a/plugins/flat-file-guestbook.rb +++ b/plugins/flat-file-guestbook.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Flat-File-Guestbook" diff --git a/plugins/flax-article-manager.rb b/plugins/flax-article-manager.rb index 3b820fc9..c209cdf6 100644 --- a/plugins/flax-article-manager.rb +++ b/plugins/flax-article-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Flax-Article-Manager" diff --git a/plugins/flir-ax8.rb b/plugins/flir-ax8.rb new file mode 100644 index 00000000..d814f26b --- /dev/null +++ b/plugins/flir-ax8.rb @@ -0,0 +1,27 @@ +## +# 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 "Flir-AX8" + authors [ + "Andrew Horton", # v0.1 # 2021-01-16 # Created plugin + ] + version "0.1" + description "FLIR AX8 is a Thermal Imaging Camera For Continuous Condition and Safety Monitoring" + website "https://www.flir.com/products/ax8-automation/" + + # Dorks # + dorks [ + 'intitle:"FLIR AX8" "User web" password' + ] + + # Matches # + matches [ + # Title. Each FLIR AX8 has a different title + { :text => '

FLIR AX8' } + ] + +end diff --git a/plugins/fluentnet.rb b/plugins/fluentnet.rb index a080b4fc..c18052cc 100644 --- a/plugins/fluentnet.rb +++ b/plugins/fluentnet.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FluentNET" diff --git a/plugins/fluid-dynamics-search-engine.rb b/plugins/fluid-dynamics-search-engine.rb index 7b24e5ae..bc2c6e4a 100644 --- a/plugins/fluid-dynamics-search-engine.rb +++ b/plugins/fluid-dynamics-search-engine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fluid-Dynamics-Search-Engine" diff --git a/plugins/fluxbb.rb b/plugins/fluxbb.rb index 1dcbec30..f2f30ff1 100644 --- a/plugins/fluxbb.rb +++ b/plugins/fluxbb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FluxBB" diff --git a/plugins/flyspray.rb b/plugins/flyspray.rb index da2997da..0409f49b 100644 --- a/plugins/flyspray.rb +++ b/plugins/flyspray.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Flyspray" diff --git a/plugins/fnord.rb b/plugins/fnord.rb index 55f22bce..a9deb3ba 100644 --- a/plugins/fnord.rb +++ b/plugins/fnord.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "fnord" diff --git a/plugins/footprint.rb b/plugins/footprint.rb index 8298c5a5..7ecda419 100644 --- a/plugins/footprint.rb +++ b/plugins/footprint.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Footprint" diff --git a/plugins/forest-blog.rb b/plugins/forest-blog.rb index c9672600..263aff43 100644 --- a/plugins/forest-blog.rb +++ b/plugins/forest-blog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Forest-Blog" diff --git a/plugins/formmail.rb b/plugins/formmail.rb index 4d3f6ab8..f74864bc 100644 --- a/plugins/formmail.rb +++ b/plugins/formmail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FormMail" diff --git a/plugins/fortinet-firewall.rb b/plugins/fortinet-firewall.rb index 98fcc747..a0591966 100644 --- a/plugins/fortinet-firewall.rb +++ b/plugins/fortinet-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fortinet-Firewall" diff --git a/plugins/fortiweb.rb b/plugins/fortiweb.rb index 981495ba..b0060c5f 100644 --- a/plugins/fortiweb.rb +++ b/plugins/fortiweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FortiWeb" diff --git a/plugins/fossil.rb b/plugins/fossil.rb index 97e72867..4daf9b63 100644 --- a/plugins/fossil.rb +++ b/plugins/fossil.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fossil" diff --git a/plugins/fpoll.rb b/plugins/fpoll.rb index bf4aefcb..9cc44d2d 100644 --- a/plugins/fpoll.rb +++ b/plugins/fpoll.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fpoll" diff --git a/plugins/frame.rb b/plugins/frame.rb index 813a5a98..85316ebd 100644 --- a/plugins/frame.rb +++ b/plugins/frame.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Frame" diff --git a/plugins/freakauth.rb b/plugins/freakauth.rb index 528c48f8..616ef9bc 100644 --- a/plugins/freakauth.rb +++ b/plugins/freakauth.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FreakAuth" diff --git a/plugins/free-realty.rb b/plugins/free-realty.rb index fb5b4a0f..6bbd3c0e 100644 --- a/plugins/free-realty.rb +++ b/plugins/free-realty.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Free-Realty" diff --git a/plugins/free-simple-software.rb b/plugins/free-simple-software.rb index 207d3499..ee6811d7 100644 --- a/plugins/free-simple-software.rb +++ b/plugins/free-simple-software.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Free-Simple-Software" diff --git a/plugins/freejoomlas.com.rb b/plugins/freejoomlas.com.rb index 23c90305..780e6f66 100644 --- a/plugins/freejoomlas.com.rb +++ b/plugins/freejoomlas.com.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FreeJoomlas_com" diff --git a/plugins/freenac.rb b/plugins/freenac.rb index 5e617db6..c89b6ab0 100644 --- a/plugins/freenac.rb +++ b/plugins/freenac.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FreeNAC" diff --git a/plugins/freenas.rb b/plugins/freenas.rb index e4b0ca3f..ec4b6576 100644 --- a/plugins/freenas.rb +++ b/plugins/freenas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FreeNAS" diff --git a/plugins/freepbx.rb b/plugins/freepbx.rb index 0c84bb09..372c7e8f 100644 --- a/plugins/freepbx.rb +++ b/plugins/freepbx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FreePBX" diff --git a/plugins/frog-cms.rb b/plugins/frog-cms.rb index ac383e84..8e1bcef0 100644 --- a/plugins/frog-cms.rb +++ b/plugins/frog-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FrogCMS" diff --git a/plugins/frontpage-extensions.rb b/plugins/frontpage-extensions.rb index c463e0df..6ee3f08c 100644 --- a/plugins/frontpage-extensions.rb +++ b/plugins/frontpage-extensions.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FrontPage-Extensions" diff --git a/plugins/frontpage-personal-web-server.rb b/plugins/frontpage-personal-web-server.rb index 004c444a..8713a8c9 100644 --- a/plugins/frontpage-personal-web-server.rb +++ b/plugins/frontpage-personal-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FrontPage-Personal-Web-Server" diff --git a/plugins/fsaatlas.rb b/plugins/fsaatlas.rb index ca86ec06..b984f58c 100644 --- a/plugins/fsaatlas.rb +++ b/plugins/fsaatlas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "fsaATLAS" diff --git a/plugins/fujitsu-infoprovider-pro.rb b/plugins/fujitsu-infoprovider-pro.rb index bdbd5274..b9e7ddfa 100644 --- a/plugins/fujitsu-infoprovider-pro.rb +++ b/plugins/fujitsu-infoprovider-pro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fujitsu-InfoProvider-Pro" diff --git a/plugins/fujitsu-router.rb b/plugins/fujitsu-router.rb index c919d860..b976ac94 100644 --- a/plugins/fujitsu-router.rb +++ b/plugins/fujitsu-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fujitsu-Router" diff --git a/plugins/fujitsu-switch.rb b/plugins/fujitsu-switch.rb index b13a90bb..7ae36545 100644 --- a/plugins/fujitsu-switch.rb +++ b/plugins/fujitsu-switch.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fujitsu-Switch" diff --git a/plugins/fujitsu-wireless-ap.rb b/plugins/fujitsu-wireless-ap.rb index 6e931c28..aaa51c20 100644 --- a/plugins/fujitsu-wireless-ap.rb +++ b/plugins/fujitsu-wireless-ap.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Fujitsu-Wireless-AP" diff --git a/plugins/funkwerk-gateway.rb b/plugins/funkwerk-gateway.rb index 6596cd0b..cb19dbdd 100644 --- a/plugins/funkwerk-gateway.rb +++ b/plugins/funkwerk-gateway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Funkwerk-Gateway" diff --git a/plugins/fusionbb.rb b/plugins/fusionbb.rb index 693dd851..39af3e89 100644 --- a/plugins/fusionbb.rb +++ b/plugins/fusionbb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FusionBB" diff --git a/plugins/gallarific.rb b/plugins/gallarific.rb index 8653c326..f459a44b 100644 --- a/plugins/gallarific.rb +++ b/plugins/gallarific.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Gallarific" diff --git a/plugins/gallery.rb b/plugins/gallery.rb index ee0b40b8..2627d5d0 100644 --- a/plugins/gallery.rb +++ b/plugins/gallery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Gallery" diff --git a/plugins/ganglia.rb b/plugins/ganglia.rb index 6de47ade..5860c61a 100644 --- a/plugins/ganglia.rb +++ b/plugins/ganglia.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ganglia" diff --git a/plugins/gannett.rb b/plugins/gannett.rb index 45ee4cc7..68905143 100644 --- a/plugins/gannett.rb +++ b/plugins/gannett.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Gannett" diff --git a/plugins/gatequest-php-site-recommender.rb b/plugins/gatequest-php-site-recommender.rb index 9dab7b62..5d46812e 100644 --- a/plugins/gatequest-php-site-recommender.rb +++ b/plugins/gatequest-php-site-recommender.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GateQuest-PHP-Site-Recommender" diff --git a/plugins/gcards.rb b/plugins/gcards.rb index dec82632..0640d340 100644 --- a/plugins/gcards.rb +++ b/plugins/gcards.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "gCards" diff --git a/plugins/gearhost.rb b/plugins/gearhost.rb index 05bc24c3..2236c687 100644 --- a/plugins/gearhost.rb +++ b/plugins/gearhost.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GearHost" diff --git a/plugins/geeklog.rb b/plugins/geeklog.rb index a0603946..ca8d5f9e 100644 --- a/plugins/geeklog.rb +++ b/plugins/geeklog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GeekLog" diff --git a/plugins/genohm-scada.rb b/plugins/genohm-scada.rb index e8a4edc8..cf1ceab4 100644 --- a/plugins/genohm-scada.rb +++ b/plugins/genohm-scada.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GenOHM-SCADA" diff --git a/plugins/geobytes-geoselect.rb b/plugins/geobytes-geoselect.rb index 0d1b552b..adf22df2 100644 --- a/plugins/geobytes-geoselect.rb +++ b/plugins/geobytes-geoselect.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Geobytes-GeoSelect" diff --git a/plugins/geohttpserver.rb b/plugins/geohttpserver.rb index db292a3f..2a03b1cb 100644 --- a/plugins/geohttpserver.rb +++ b/plugins/geohttpserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GeoHttpServer" diff --git a/plugins/geonode.rb b/plugins/geonode.rb index 39cf2cb2..723a08a4 100644 --- a/plugins/geonode.rb +++ b/plugins/geonode.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GeoNode" diff --git a/plugins/geoserver.rb b/plugins/geoserver.rb index 9819f1cf..ff0a2894 100644 --- a/plugins/geoserver.rb +++ b/plugins/geoserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GeoServer" diff --git a/plugins/getsimple.rb b/plugins/getsimple.rb index 3c60a3b6..13559f62 100644 --- a/plugins/getsimple.rb +++ b/plugins/getsimple.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GetSimple" diff --git a/plugins/gitorious.rb b/plugins/gitorious.rb index 4d2c4a49..292e3e1f 100644 --- a/plugins/gitorious.rb +++ b/plugins/gitorious.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Gitorious" diff --git a/plugins/gitstat.rb b/plugins/gitstat.rb index 6e3986c5..90080ad1 100644 --- a/plugins/gitstat.rb +++ b/plugins/gitstat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "gitstat" diff --git a/plugins/gitweb.rb b/plugins/gitweb.rb index b486e844..8b7646c0 100644 --- a/plugins/gitweb.rb +++ b/plugins/gitweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Gitweb" diff --git a/plugins/glfusion.rb b/plugins/glfusion.rb index e4ab0a31..4aae26c2 100644 --- a/plugins/glfusion.rb +++ b/plugins/glfusion.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "glFusion" diff --git a/plugins/glossword.rb b/plugins/glossword.rb index 0f0016d8..4bee2c83 100644 --- a/plugins/glossword.rb +++ b/plugins/glossword.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Glossword" diff --git a/plugins/goahead-web.rb b/plugins/goahead-web.rb index c089cc96..df0a4306 100644 --- a/plugins/goahead-web.rb +++ b/plugins/goahead-web.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GoAhead-Webs" diff --git a/plugins/google-analytics.rb b/plugins/google-analytics.rb index a9ba1b30..ca06a5e2 100644 --- a/plugins/google-analytics.rb +++ b/plugins/google-analytics.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Google-Analytics" diff --git a/plugins/google-apis.rb b/plugins/google-apis.rb index 42d19241..95a7e1d4 100644 --- a/plugins/google-apis.rb +++ b/plugins/google-apis.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Google-API" diff --git a/plugins/google-hack-honeypot.rb b/plugins/google-hack-honeypot.rb index 28b6a990..c3051fe7 100644 --- a/plugins/google-hack-honeypot.rb +++ b/plugins/google-hack-honeypot.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Google-Hack-Honeypot" diff --git a/plugins/google-maps.rb b/plugins/google-maps.rb index ffb6a1a9..2e71fb01 100644 --- a/plugins/google-maps.rb +++ b/plugins/google-maps.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Google-Maps" diff --git a/plugins/google-results.rb b/plugins/google-results.rb index c1e57256..01bd8359 100644 --- a/plugins/google-results.rb +++ b/plugins/google-results.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Google-Results" diff --git a/plugins/google-search-appliance.rb b/plugins/google-search-appliance.rb index 17506cf4..32c78320 100644 --- a/plugins/google-search-appliance.rb +++ b/plugins/google-search-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Google-Search-Appliance" diff --git a/plugins/google-talk-chatback.rb b/plugins/google-talk-chatback.rb index 45a657dc..9cb029ed 100644 --- a/plugins/google-talk-chatback.rb +++ b/plugins/google-talk-chatback.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Google-Talk-Chatback" diff --git a/plugins/gordano-messaging-suite.rb b/plugins/gordano-messaging-suite.rb index 8277c277..36a4cb71 100644 --- a/plugins/gordano-messaging-suite.rb +++ b/plugins/gordano-messaging-suite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Gordano-Messaging-Suite" diff --git a/plugins/goserve.rb b/plugins/goserve.rb index 9a7c89af..f55ea5b1 100644 --- a/plugins/goserve.rb +++ b/plugins/goserve.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GoServe" diff --git a/plugins/gossamer-forum.rb b/plugins/gossamer-forum.rb index def15ae7..eb6c05d2 100644 --- a/plugins/gossamer-forum.rb +++ b/plugins/gossamer-forum.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Gossamer-Forum" diff --git a/plugins/gpsgate-server.rb b/plugins/gpsgate-server.rb index 615a403e..01a4592c 100644 --- a/plugins/gpsgate-server.rb +++ b/plugins/gpsgate-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GpsGate-Server" diff --git a/plugins/grafana.rb b/plugins/grafana.rb index 13d8630d..d73ecc1a 100644 --- a/plugins/grafana.rb +++ b/plugins/grafana.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Grafana" diff --git a/plugins/grandstream-phone.rb b/plugins/grandstream-phone.rb index b973d57a..e860c7ae 100644 --- a/plugins/grandstream-phone.rb +++ b/plugins/grandstream-phone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Grandstream-Phone" diff --git a/plugins/grandtec-x-guard.rb b/plugins/grandtec-x-guard.rb index 8a8e8182..ecc06b9f 100644 --- a/plugins/grandtec-x-guard.rb +++ b/plugins/grandtec-x-guard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GrandTec-X-Guard" diff --git a/plugins/gridsite.rb b/plugins/gridsite.rb index 33cb391a..2dbcaead 100644 --- a/plugins/gridsite.rb +++ b/plugins/gridsite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GridSite" diff --git a/plugins/group-office.rb b/plugins/group-office.rb index 26d3277e..f59b6437 100644 --- a/plugins/group-office.rb +++ b/plugins/group-office.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Group-Office" diff --git a/plugins/gsoap.rb b/plugins/gsoap.rb index 91e9ab59..f458cfa5 100644 --- a/plugins/gsoap.rb +++ b/plugins/gsoap.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "gSOAP" diff --git a/plugins/guppy.rb b/plugins/guppy.rb index 0a0012cd..cb849e4d 100644 --- a/plugins/guppy.rb +++ b/plugins/guppy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "GuppY" diff --git a/plugins/h3c-secblade-firewall.rb b/plugins/h3c-secblade-firewall.rb index c81d3101..4671960e 100644 --- a/plugins/h3c-secblade-firewall.rb +++ b/plugins/h3c-secblade-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "H3C-SecBlade-FireWall" diff --git a/plugins/haproxy.rb b/plugins/haproxy.rb index dacaa570..2a7583f4 100644 --- a/plugins/haproxy.rb +++ b/plugins/haproxy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HAProxy" diff --git a/plugins/harris-netvx.rb b/plugins/harris-netvx.rb index 2e1dc9ad..a5a81706 100644 --- a/plugins/harris-netvx.rb +++ b/plugins/harris-netvx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Harris-NetVX" diff --git a/plugins/heitel-digital-video-device.rb b/plugins/heitel-digital-video-device.rb index c99056a6..e582a4a6 100644 --- a/plugins/heitel-digital-video-device.rb +++ b/plugins/heitel-digital-video-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HeiTel-Digital-Video-Device" diff --git a/plugins/help-desk-software.rb b/plugins/help-desk-software.rb index 46e975d4..946488a3 100644 --- a/plugins/help-desk-software.rb +++ b/plugins/help-desk-software.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Help-Desk-Software" diff --git a/plugins/hesk.rb b/plugins/hesk.rb index 6e55070f..05c60ae0 100644 --- a/plugins/hesk.rb +++ b/plugins/hesk.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HESK" diff --git a/plugins/highwire-press.rb b/plugins/highwire-press.rb index 04d0f75f..1c252bc6 100644 --- a/plugins/highwire-press.rb +++ b/plugins/highwire-press.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HighWire-Press" diff --git a/plugins/hiki.rb b/plugins/hiki.rb index eb1fc8e8..c4b7eba0 100644 --- a/plugins/hiki.rb +++ b/plugins/hiki.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hiki" diff --git a/plugins/hikvision.rb b/plugins/hikvision.rb index fc5c7e81..c25f27cf 100644 --- a/plugins/hikvision.rb +++ b/plugins/hikvision.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HikVision" diff --git a/plugins/hitbox-gateway.rb b/plugins/hitbox-gateway.rb index 1080de1e..1fcad2f2 100644 --- a/plugins/hitbox-gateway.rb +++ b/plugins/hitbox-gateway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hitbox-Gateway" diff --git a/plugins/hivemail.rb b/plugins/hivemail.rb index 5b5bbf7d..da6cfa54 100644 --- a/plugins/hivemail.rb +++ b/plugins/hivemail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HiveMail" diff --git a/plugins/holocms.rb b/plugins/holocms.rb index 268e6c76..55c0087f 100644 --- a/plugins/holocms.rb +++ b/plugins/holocms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HoloCMS" diff --git a/plugins/home-control-box.rb b/plugins/home-control-box.rb index dca69481..114f6efa 100644 --- a/plugins/home-control-box.rb +++ b/plugins/home-control-box.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Home-Control-Box" diff --git a/plugins/hopftimeserver.rb b/plugins/hopftimeserver.rb index 607425dd..d405f86a 100644 --- a/plugins/hopftimeserver.rb +++ b/plugins/hopftimeserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HopfTimeServer" diff --git a/plugins/horde-application-framework.rb b/plugins/horde-application-framework.rb index 9d0030a6..bfd5a54a 100644 --- a/plugins/horde-application-framework.rb +++ b/plugins/horde-application-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Horde-Application-Framework" diff --git a/plugins/hostbill.rb b/plugins/hostbill.rb index 1157e735..3ecfee34 100644 --- a/plugins/hostbill.rb +++ b/plugins/hostbill.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HostBill" diff --git a/plugins/hot-banana.rb b/plugins/hot-banana.rb index a4969b8e..9f31906b 100644 --- a/plugins/hot-banana.rb +++ b/plugins/hot-banana.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hot-Banana" diff --git a/plugins/hotaru-cms.rb b/plugins/hotaru-cms.rb index 0948eaba..6ec61627 100644 --- a/plugins/hotaru-cms.rb +++ b/plugins/hotaru-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hotaru-CMS" diff --git a/plugins/hp-laserjet-printer.rb b/plugins/hp-laserjet-printer.rb index 9e95549f..030da914 100644 --- a/plugins/hp-laserjet-printer.rb +++ b/plugins/hp-laserjet-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HP-LaserJet-Printer" diff --git a/plugins/hp-officejet-printer.rb b/plugins/hp-officejet-printer.rb index aec98793..76c1268c 100644 --- a/plugins/hp-officejet-printer.rb +++ b/plugins/hp-officejet-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HP-OfficeJet-Printer" diff --git a/plugins/hp-printer.rb b/plugins/hp-printer.rb index 98581c03..37cf50dc 100644 --- a/plugins/hp-printer.rb +++ b/plugins/hp-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HP-Printer" diff --git a/plugins/hp-procurve-switch.rb b/plugins/hp-procurve-switch.rb index 8d9522ca..6a93b474 100644 --- a/plugins/hp-procurve-switch.rb +++ b/plugins/hp-procurve-switch.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HP-ProCurve-Switch" diff --git a/plugins/hp-sitescope.rb b/plugins/hp-sitescope.rb index 77d94b57..4ad528b6 100644 --- a/plugins/hp-sitescope.rb +++ b/plugins/hp-sitescope.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HP-SiteScope" diff --git a/plugins/hp-storageworks-library.rb b/plugins/hp-storageworks-library.rb index 04a07984..1d0313f2 100644 --- a/plugins/hp-storageworks-library.rb +++ b/plugins/hp-storageworks-library.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HP-StorageWorks-Library" diff --git a/plugins/hp-system-management-homepage.rb b/plugins/hp-system-management-homepage.rb index f97139dc..48d2ca68 100644 --- a/plugins/hp-system-management-homepage.rb +++ b/plugins/hp-system-management-homepage.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HP-System-Management-Homepage" diff --git a/plugins/hp-virtual-connect-manager.rb b/plugins/hp-virtual-connect-manager.rb index 33a471bc..b448f6d8 100644 --- a/plugins/hp-virtual-connect-manager.rb +++ b/plugins/hp-virtual-connect-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HP-Virtual-Connect-Manager" diff --git a/plugins/html5.rb b/plugins/html5.rb index af72e44d..e898208b 100644 --- a/plugins/html5.rb +++ b/plugins/html5.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HTML5" diff --git a/plugins/htpasswd.rb b/plugins/htpasswd.rb index c8b443db..afc33d46 100644 --- a/plugins/htpasswd.rb +++ b/plugins/htpasswd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "htpasswd" diff --git a/plugins/http-explorer.rb b/plugins/http-explorer.rb index 4635289d..1a2db306 100644 --- a/plugins/http-explorer.rb +++ b/plugins/http-explorer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Http-Explorer" diff --git a/plugins/http-server.rb b/plugins/http-server.rb index d1840cbd..a590c1ae 100644 --- a/plugins/http-server.rb +++ b/plugins/http-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HTTPServer" diff --git a/plugins/httpfileserver.rb b/plugins/httpfileserver.rb index 2d1b288d..a946bfca 100644 --- a/plugins/httpfileserver.rb +++ b/plugins/httpfileserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HttpFileServer" diff --git a/plugins/httponly.rb b/plugins/httponly.rb index 38300d35..60bb83f7 100644 --- a/plugins/httponly.rb +++ b/plugins/httponly.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HttpOnly" diff --git a/plugins/huawei-firewall.rb b/plugins/huawei-firewall.rb index 6f3dbe4b..121a33ad 100644 --- a/plugins/huawei-firewall.rb +++ b/plugins/huawei-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Huawei-Firewall" diff --git a/plugins/huawei-quidway-switch.rb b/plugins/huawei-quidway-switch.rb index fbb8e5fc..b5f64896 100644 --- a/plugins/huawei-quidway-switch.rb +++ b/plugins/huawei-quidway-switch.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Huawei-Quidway-Switch" diff --git a/plugins/hubspot.rb b/plugins/hubspot.rb index 2b8535ae..f2a70334 100644 --- a/plugins/hubspot.rb +++ b/plugins/hubspot.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HubSpot" diff --git a/plugins/hughes-satellite-router.rb b/plugins/hughes-satellite-router.rb index 0a9242cd..905ed944 100644 --- a/plugins/hughes-satellite-router.rb +++ b/plugins/hughes-satellite-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hughes-Satellite-Router" diff --git a/plugins/hughes-voice-appliance.rb b/plugins/hughes-voice-appliance.rb index a78b29a7..ad8db756 100644 --- a/plugins/hughes-voice-appliance.rb +++ b/plugins/hughes-voice-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hughes-Voice-Appliance" diff --git a/plugins/huginn.rb b/plugins/huginn.rb new file mode 100644 index 00000000..27e980f6 --- /dev/null +++ b/plugins/huginn.rb @@ -0,0 +1,30 @@ +## +# 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 "Huginn" + authors [ + "Andrew Horton", # v0.1 # 2021-01-16 # Created plugin + ] + version "0.1" + description "Huginn is a system for building agents that perform automated tasks for you online. They can read the web, watch for events, and take actions on your behalf. Huginn's Agents create and consume events, propagating them along a directed graph. Think of it as a hackable version of IFTTT or Zapier on your own server." + website "https://github.com/huginn/huginn" + + # Dorks # + dorks [ + '"Your agents are standing by" "Huginn monitors the world and acts on your behalf." Login Signup', + ] + + # Common port is 3000 + + # Matches # + matches [ + + # This searches for the navigation item about + { :text => 'About' } + ] + +end diff --git a/plugins/hunt-electronics-cctv.rb b/plugins/hunt-electronics-cctv.rb index c18ac31b..5fc6dae9 100644 --- a/plugins/hunt-electronics-cctv.rb +++ b/plugins/hunt-electronics-cctv.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hunt-Electronics-CCTV" diff --git a/plugins/hybrid-cluster.rb b/plugins/hybrid-cluster.rb index 89904e25..bac72cb8 100644 --- a/plugins/hybrid-cluster.rb +++ b/plugins/hybrid-cluster.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hybrid-Cluster" diff --git a/plugins/hycus-cms.rb b/plugins/hycus-cms.rb index c3d593e1..4ea503e3 100644 --- a/plugins/hycus-cms.rb +++ b/plugins/hycus-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hycus-CMS" diff --git a/plugins/hynetos-httpd.rb b/plugins/hynetos-httpd.rb index d2af51a4..4ff9c1d5 100644 --- a/plugins/hynetos-httpd.rb +++ b/plugins/hynetos-httpd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "HyNetOS-httpd" diff --git a/plugins/hyperic-hq.rb b/plugins/hyperic-hq.rb index 2c8b0957..cffa05c1 100644 --- a/plugins/hyperic-hq.rb +++ b/plugins/hyperic-hq.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hyperic-HQ" diff --git a/plugins/hyperwave-is.rb b/plugins/hyperwave-is.rb index 815cd1f5..72c2aaa1 100644 --- a/plugins/hyperwave-is.rb +++ b/plugins/hyperwave-is.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Hyperwave-IS" diff --git a/plugins/i-catcher-console.rb b/plugins/i-catcher-console.rb index 9b30304c..e1414902 100644 --- a/plugins/i-catcher-console.rb +++ b/plugins/i-catcher-console.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "i-Catcher-Console" diff --git a/plugins/i-gallery.rb b/plugins/i-gallery.rb index a95f2c2e..a601d269 100644 --- a/plugins/i-gallery.rb +++ b/plugins/i-gallery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "i-Gallery" diff --git a/plugins/i-o-data-router.rb b/plugins/i-o-data-router.rb index 8db97908..21849420 100644 --- a/plugins/i-o-data-router.rb +++ b/plugins/i-o-data-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "I-O-DATA-Router" diff --git a/plugins/i.lon-smartserver.rb b/plugins/i.lon-smartserver.rb index bc1c2ef1..3587d7d2 100644 --- a/plugins/i.lon-smartserver.rb +++ b/plugins/i.lon-smartserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iLON-SmartServer" diff --git a/plugins/i3micro.rb b/plugins/i3micro.rb index edd7ddc3..05f895a6 100644 --- a/plugins/i3micro.rb +++ b/plugins/i3micro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "i3micro" diff --git a/plugins/ib-lite.rb b/plugins/ib-lite.rb index f40f5a41..fadf7110 100644 --- a/plugins/ib-lite.rb +++ b/plugins/ib-lite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IB-Lite" diff --git a/plugins/ibm-bladecenter.rb b/plugins/ibm-bladecenter.rb index 1e2ecffb..4602d4b2 100644 --- a/plugins/ibm-bladecenter.rb +++ b/plugins/ibm-bladecenter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-BladeCenter" diff --git a/plugins/ibm-cics-transaction-server.rb b/plugins/ibm-cics-transaction-server.rb index a57ca021..92eb31a7 100644 --- a/plugins/ibm-cics-transaction-server.rb +++ b/plugins/ibm-cics-transaction-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-CICS-Transaction-Server" diff --git a/plugins/ibm-cognos.rb b/plugins/ibm-cognos.rb index 34b195df..326f90ee 100644 --- a/plugins/ibm-cognos.rb +++ b/plugins/ibm-cognos.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-Cognos" diff --git a/plugins/ibm-http-server.rb b/plugins/ibm-http-server.rb index 320fce8f..f6284388 100644 --- a/plugins/ibm-http-server.rb +++ b/plugins/ibm-http-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-HTTP-Server" diff --git a/plugins/ibm-internet-connection-server.rb b/plugins/ibm-internet-connection-server.rb index 8c0183b2..85086c2f 100644 --- a/plugins/ibm-internet-connection-server.rb +++ b/plugins/ibm-internet-connection-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-Internet-Connection-Server" diff --git a/plugins/ibm-remote-supervisor-adapter.rb b/plugins/ibm-remote-supervisor-adapter.rb index 5daf5388..9cd3852e 100644 --- a/plugins/ibm-remote-supervisor-adapter.rb +++ b/plugins/ibm-remote-supervisor-adapter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-Remote-Supervisor-Adapter" diff --git a/plugins/ibm-web-traffic-express-caching-proxy.rb b/plugins/ibm-web-traffic-express-caching-proxy.rb index cc5ab9b4..ddebe435 100644 --- a/plugins/ibm-web-traffic-express-caching-proxy.rb +++ b/plugins/ibm-web-traffic-express-caching-proxy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-Web-Traffic-Express-Caching-Proxy" diff --git a/plugins/ibm-webseal.rb b/plugins/ibm-webseal.rb index 4d1330be..be318063 100644 --- a/plugins/ibm-webseal.rb +++ b/plugins/ibm-webseal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-WebSEAL" diff --git a/plugins/ibm-websphere-datapower.rb b/plugins/ibm-websphere-datapower.rb index b61a9a28..767a768c 100644 --- a/plugins/ibm-websphere-datapower.rb +++ b/plugins/ibm-websphere-datapower.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-WebSphere-DataPower" diff --git a/plugins/ibm-websphere.rb b/plugins/ibm-websphere.rb index b6e00366..9be49724 100644 --- a/plugins/ibm-websphere.rb +++ b/plugins/ibm-websphere.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IBM-WebSphere" diff --git a/plugins/icecast.rb b/plugins/icecast.rb index 4c65695b..ac16cb08 100644 --- a/plugins/icecast.rb +++ b/plugins/icecast.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Icecast" diff --git a/plugins/iceshop.rb b/plugins/iceshop.rb index fb6158df..303affa3 100644 --- a/plugins/iceshop.rb +++ b/plugins/iceshop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ICEshop" diff --git a/plugins/icewarp-email-server.rb b/plugins/icewarp-email-server.rb index cc1fbd9b..b59da7e2 100644 --- a/plugins/icewarp-email-server.rb +++ b/plugins/icewarp-email-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IceWarp-Email-Server" diff --git a/plugins/icewarp-server.rb b/plugins/icewarp-server.rb index 92458076..9df2fd04 100644 --- a/plugins/icewarp-server.rb +++ b/plugins/icewarp-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IceWarp-Server" diff --git a/plugins/iciniti-store.rb b/plugins/iciniti-store.rb index a2ac62c5..8ab29772 100644 --- a/plugins/iciniti-store.rb +++ b/plugins/iciniti-store.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Iciniti-Store" diff --git a/plugins/icom-router.rb b/plugins/icom-router.rb index 02814160..422a590c 100644 --- a/plugins/icom-router.rb +++ b/plugins/icom-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ICOM-Router" diff --git a/plugins/ideawebserver.rb b/plugins/ideawebserver.rb index b88d9e6b..4c59dbfc 100644 --- a/plugins/ideawebserver.rb +++ b/plugins/ideawebserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IdeaWebServer" diff --git a/plugins/idvr.rb b/plugins/idvr.rb index b881aaa9..643e3688 100644 --- a/plugins/idvr.rb +++ b/plugins/idvr.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iDVR" diff --git a/plugins/igaming-cms.rb b/plugins/igaming-cms.rb index 8a42141f..3d6f1395 100644 --- a/plugins/igaming-cms.rb +++ b/plugins/igaming-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iGaming-CMS" diff --git a/plugins/igivetest.rb b/plugins/igivetest.rb index e3e26443..564a561c 100644 --- a/plugins/igivetest.rb +++ b/plugins/igivetest.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iGiveTest" diff --git a/plugins/iguard-security-system.rb b/plugins/iguard-security-system.rb index eeda63f9..8f10598c 100644 --- a/plugins/iguard-security-system.rb +++ b/plugins/iguard-security-system.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iGuard-Security-System" diff --git a/plugins/ihtml.rb b/plugins/ihtml.rb index 714a69fd..cca4bcf9 100644 --- a/plugins/ihtml.rb +++ b/plugins/ihtml.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iHTML" diff --git a/plugins/ikonboard.rb b/plugins/ikonboard.rb index c96b57c9..ade3eab6 100644 --- a/plugins/ikonboard.rb +++ b/plugins/ikonboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ikonboard" diff --git a/plugins/ilient-sysaid.rb b/plugins/ilient-sysaid.rb index 0af7e52a..b541dcc6 100644 --- a/plugins/ilient-sysaid.rb +++ b/plugins/ilient-sysaid.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ilient-SysAid" diff --git a/plugins/ilo.rb b/plugins/ilo.rb index cf3d8a7f..a5989367 100644 --- a/plugins/ilo.rb +++ b/plugins/ilo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iLO" diff --git a/plugins/imageview.rb b/plugins/imageview.rb index 5c923482..42a30916 100644 --- a/plugins/imageview.rb +++ b/plugins/imageview.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Imageview" diff --git a/plugins/imgallery.rb b/plugins/imgallery.rb index 3da4874c..d5b9f990 100644 --- a/plugins/imgallery.rb +++ b/plugins/imgallery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IMGallery" diff --git a/plugins/imperva-securesphere.rb b/plugins/imperva-securesphere.rb index e1e5c786..98128b13 100644 --- a/plugins/imperva-securesphere.rb +++ b/plugins/imperva-securesphere.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "imperva-securesphere" diff --git a/plugins/impresspages-cms.rb b/plugins/impresspages-cms.rb index 2abc4a1c..2f2d2ecb 100644 --- a/plugins/impresspages-cms.rb +++ b/plugins/impresspages-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ImpressPages-CMS" diff --git a/plugins/incapsula-waf.rb b/plugins/incapsula-waf.rb index 18d3b536..0401cdeb 100644 --- a/plugins/incapsula-waf.rb +++ b/plugins/incapsula-waf.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Incapsula-WAF" diff --git a/plugins/index-of.rb b/plugins/index-of.rb index 48717ead..557bbc22 100644 --- a/plugins/index-of.rb +++ b/plugins/index-of.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Index-Of" diff --git a/plugins/indices.rb b/plugins/indices.rb index b5e82a45..86649724 100644 --- a/plugins/indices.rb +++ b/plugins/indices.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Indices" diff --git a/plugins/indico.rb b/plugins/indico.rb index a8c2a170..5a4d1067 100644 --- a/plugins/indico.rb +++ b/plugins/indico.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Indico" diff --git a/plugins/infinet-bcx1-controller-router.rb b/plugins/infinet-bcx1-controller-router.rb index 2c6462b5..2b4abda1 100644 --- a/plugins/infinet-bcx1-controller-router.rb +++ b/plugins/infinet-bcx1-controller-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Infinet-bCX1-Controller-Router" diff --git a/plugins/infinet-wireless-wanflex-router.rb b/plugins/infinet-wireless-wanflex-router.rb index 2dabc65b..c139b698 100644 --- a/plugins/infinet-wireless-wanflex-router.rb +++ b/plugins/infinet-wireless-wanflex-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Infinet-Wireless-WANFleX-Router" diff --git a/plugins/infomaster.rb b/plugins/infomaster.rb index f682cf9e..c9d3fedc 100644 --- a/plugins/infomaster.rb +++ b/plugins/infomaster.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Infomaster" diff --git a/plugins/informatics-cms.rb b/plugins/informatics-cms.rb index 7a8a7180..be0585d5 100644 --- a/plugins/informatics-cms.rb +++ b/plugins/informatics-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Informatics-CMS" diff --git a/plugins/infotrak-oil-commander.rb b/plugins/infotrak-oil-commander.rb index a385a08e..ee7edcf0 100644 --- a/plugins/infotrak-oil-commander.rb +++ b/plugins/infotrak-oil-commander.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Infotrak-Oil-Commander" diff --git a/plugins/inktomi-search.rb b/plugins/inktomi-search.rb index 7d339267..4a38dcba 100644 --- a/plugins/inktomi-search.rb +++ b/plugins/inktomi-search.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Inktomi-Search" diff --git a/plugins/inout-adserver.rb b/plugins/inout-adserver.rb index b6f643c9..6d0fc95d 100644 --- a/plugins/inout-adserver.rb +++ b/plugins/inout-adserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Inout-Adserver" diff --git a/plugins/inout-article-base.rb b/plugins/inout-article-base.rb index 39259888..6c9dc19b 100644 --- a/plugins/inout-article-base.rb +++ b/plugins/inout-article-base.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Inout-Article-Base" diff --git a/plugins/inout-music.rb b/plugins/inout-music.rb index 191c051f..dcede27f 100644 --- a/plugins/inout-music.rb +++ b/plugins/inout-music.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Inout-Music" diff --git a/plugins/intellinet-ip-camera.rb b/plugins/intellinet-ip-camera.rb index 0582dab7..99a49a20 100644 --- a/plugins/intellinet-ip-camera.rb +++ b/plugins/intellinet-ip-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Intellinet-IP-Camera" diff --git a/plugins/intermec-easylan.rb b/plugins/intermec-easylan.rb index 9b5245a7..11662734 100644 --- a/plugins/intermec-easylan.rb +++ b/plugins/intermec-easylan.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Intermec-EasyLAN" diff --git a/plugins/internet-cluster-manager.rb b/plugins/internet-cluster-manager.rb index 6c953d05..510aa934 100644 --- a/plugins/internet-cluster-manager.rb +++ b/plugins/internet-cluster-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Internet-Cluster-Manager" diff --git a/plugins/internet-rimon-filter.rb b/plugins/internet-rimon-filter.rb index 1322c40a..8ed5ac1b 100644 --- a/plugins/internet-rimon-filter.rb +++ b/plugins/internet-rimon-filter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Internet-Rimon-Filter" diff --git a/plugins/interred.rb b/plugins/interred.rb index 30b98f7c..9bf717f3 100644 --- a/plugins/interred.rb +++ b/plugins/interred.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "InterRed" diff --git a/plugins/interspire-shopping-cart.rb b/plugins/interspire-shopping-cart.rb index c3ada6f4..1d4247c3 100644 --- a/plugins/interspire-shopping-cart.rb +++ b/plugins/interspire-shopping-cart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Interspire-Shopping-Cart" diff --git a/plugins/intoto-router.rb b/plugins/intoto-router.rb index 8df2e620..5200be27 100644 --- a/plugins/intoto-router.rb +++ b/plugins/intoto-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Intoto-Router" diff --git a/plugins/intrasrv.rb b/plugins/intrasrv.rb index e3b61948..4533bfde 100644 --- a/plugins/intrasrv.rb +++ b/plugins/intrasrv.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Intrasrv" diff --git a/plugins/intraxxion-cms.rb b/plugins/intraxxion-cms.rb index f2b675d7..e9ba9538 100644 --- a/plugins/intraxxion-cms.rb +++ b/plugins/intraxxion-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Intraxxion-CMS" diff --git a/plugins/intrinsyc-deviceweb.rb b/plugins/intrinsyc-deviceweb.rb index 010fee94..16a09736 100644 --- a/plugins/intrinsyc-deviceweb.rb +++ b/plugins/intrinsyc-deviceweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Intrinsyc-deviceWEB" diff --git a/plugins/inverseflow-help-desk-system.rb b/plugins/inverseflow-help-desk-system.rb index 512e971e..8bf38c39 100644 --- a/plugins/inverseflow-help-desk-system.rb +++ b/plugins/inverseflow-help-desk-system.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "InverseFlow-Help-Desk-System" diff --git a/plugins/invision-power-board.rb b/plugins/invision-power-board.rb index 5973edc7..1c3a67a4 100644 --- a/plugins/invision-power-board.rb +++ b/plugins/invision-power-board.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "InvisionPowerBoard" diff --git a/plugins/ioncube-loader.rb b/plugins/ioncube-loader.rb index 9d6c7cc0..d9013c2a 100644 --- a/plugins/ioncube-loader.rb +++ b/plugins/ioncube-loader.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ionCube-Loader" diff --git a/plugins/ioncube-php-accelerator.rb b/plugins/ioncube-php-accelerator.rb index d5ed5f55..d70a4e4a 100644 --- a/plugins/ioncube-php-accelerator.rb +++ b/plugins/ioncube-php-accelerator.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ionCube-PHP-Accelerator" diff --git a/plugins/ionize-cms.rb b/plugins/ionize-cms.rb index 930f081f..24935edb 100644 --- a/plugins/ionize-cms.rb +++ b/plugins/ionize-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ionize-CMS" diff --git a/plugins/ip-logger-pro.rb b/plugins/ip-logger-pro.rb index ac4eaa9f..8ac7e787 100644 --- a/plugins/ip-logger-pro.rb +++ b/plugins/ip-logger-pro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IP-Logger-Pro" diff --git a/plugins/ip.rb b/plugins/ip.rb index 9e8c24ec..02070bd6 100644 --- a/plugins/ip.rb +++ b/plugins/ip.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IP" diff --git a/plugins/ipcop-firewall.rb b/plugins/ipcop-firewall.rb index 506cdb52..86615d7e 100644 --- a/plugins/ipcop-firewall.rb +++ b/plugins/ipcop-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IPCop-Firewall" diff --git a/plugins/ipeer.rb b/plugins/ipeer.rb index ec181f96..b52a6965 100644 --- a/plugins/ipeer.rb +++ b/plugins/ipeer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iPeer" diff --git a/plugins/ipmate-router.rb b/plugins/ipmate-router.rb index f4832901..ce1091e6 100644 --- a/plugins/ipmate-router.rb +++ b/plugins/ipmate-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IPMATE-Router" diff --git a/plugins/ipswitch-imail.rb b/plugins/ipswitch-imail.rb index dba8efcd..bf65b256 100644 --- a/plugins/ipswitch-imail.rb +++ b/plugins/ipswitch-imail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ipswitch-IMail" diff --git a/plugins/iptime-router.rb b/plugins/iptime-router.rb index 2246cd80..1826e155 100644 --- a/plugins/iptime-router.rb +++ b/plugins/iptime-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ipTIME-Router" diff --git a/plugins/iqeye-netcam.rb b/plugins/iqeye-netcam.rb index 00fcf29d..0c602922 100644 --- a/plugins/iqeye-netcam.rb +++ b/plugins/iqeye-netcam.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IQeye-Netcam" diff --git a/plugins/irealty.rb b/plugins/irealty.rb index 6a98899e..faf3f07c 100644 --- a/plugins/irealty.rb +++ b/plugins/irealty.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iRealty" diff --git a/plugins/isc-scada-service.rb b/plugins/isc-scada-service.rb index 109af2d2..c48d8d5f 100644 --- a/plugins/isc-scada-service.rb +++ b/plugins/isc-scada-service.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ISC-SCADA-Service" diff --git a/plugins/iscripts-cybermatch.rb b/plugins/iscripts-cybermatch.rb index 6b9e11c6..0797fe9b 100644 --- a/plugins/iscripts-cybermatch.rb +++ b/plugins/iscripts-cybermatch.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iScripts-CyberMatch" diff --git a/plugins/iscripts-easysnaps.rb b/plugins/iscripts-easysnaps.rb index 030b8eaf..519da750 100644 --- a/plugins/iscripts-easysnaps.rb +++ b/plugins/iscripts-easysnaps.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iScripts-EasySnaps" diff --git a/plugins/iscripts-multicart.rb b/plugins/iscripts-multicart.rb index 2db77c52..ce8f4b5a 100644 --- a/plugins/iscripts-multicart.rb +++ b/plugins/iscripts-multicart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iScripts-MultiCart" diff --git a/plugins/iscripts-reservelogic.rb b/plugins/iscripts-reservelogic.rb index 7214d9f5..684a29a4 100644 --- a/plugins/iscripts-reservelogic.rb +++ b/plugins/iscripts-reservelogic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iScripts-ReserveLogic" diff --git a/plugins/iscripts-socialware.rb b/plugins/iscripts-socialware.rb index 7c2c72ce..96b6833b 100644 --- a/plugins/iscripts-socialware.rb +++ b/plugins/iscripts-socialware.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iScripts-SocialWare" diff --git a/plugins/isolsoft-support-center.rb b/plugins/isolsoft-support-center.rb index 749b0015..36b59175 100644 --- a/plugins/isolsoft-support-center.rb +++ b/plugins/isolsoft-support-center.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Isolsoft-Support-Center" diff --git a/plugins/isp-config.rb b/plugins/isp-config.rb index c1b126cd..5bf4ec93 100644 --- a/plugins/isp-config.rb +++ b/plugins/isp-config.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ISPConfig" diff --git a/plugins/ispcp-omega.rb b/plugins/ispcp-omega.rb index 4bf1a782..c384e7fc 100644 --- a/plugins/ispcp-omega.rb +++ b/plugins/ispcp-omega.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ispCP-Omega" diff --git a/plugins/italkbb.rb b/plugins/italkbb.rb index de86fe0a..676dea86 100644 --- a/plugins/italkbb.rb +++ b/plugins/italkbb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iTalkBB" diff --git a/plugins/itop.rb b/plugins/itop.rb index 905cd0db..de2acb30 100644 --- a/plugins/itop.rb +++ b/plugins/itop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "iTop" diff --git a/plugins/iwss.rb b/plugins/iwss.rb index 57cf781b..bce7ddf7 100644 --- a/plugins/iwss.rb +++ b/plugins/iwss.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "IWSS-Proxy" diff --git a/plugins/jagoanstore-cms.rb b/plugins/jagoanstore-cms.rb index 63c7cbcb..743bf83d 100644 --- a/plugins/jagoanstore-cms.rb +++ b/plugins/jagoanstore-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "JagoanStore-CMS" diff --git a/plugins/jamm-cms.rb b/plugins/jamm-cms.rb index 0bfe53a5..16408d05 100644 --- a/plugins/jamm-cms.rb +++ b/plugins/jamm-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "JAMM-CMS" diff --git a/plugins/jamroom.rb b/plugins/jamroom.rb index 8dff0130..44353d5a 100644 --- a/plugins/jamroom.rb +++ b/plugins/jamroom.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Jamroom" diff --git a/plugins/jasig-cas.rb b/plugins/jasig-cas.rb index 8f159da9..c5331115 100644 --- a/plugins/jasig-cas.rb +++ b/plugins/jasig-cas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Jasig-CAS" diff --git a/plugins/java-management-extensions.rb b/plugins/java-management-extensions.rb index bd2444f2..626f7314 100644 --- a/plugins/java-management-extensions.rb +++ b/plugins/java-management-extensions.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Java-Management-Extensions" diff --git a/plugins/java-password-log.rb b/plugins/java-password-log.rb index 483f65c3..d8e98e7f 100644 --- a/plugins/java-password-log.rb +++ b/plugins/java-password-log.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Java-Password-Log" diff --git a/plugins/java.rb b/plugins/java.rb index 56319a10..d2c5bb90 100644 --- a/plugins/java.rb +++ b/plugins/java.rb @@ -2,15 +2,16 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Java" authors [ "Brendan Coles ", # 2011-01-28 # v0.2 # 2011-03-06 # Updated OS detection. + "Andrew Horton", # v0.3 # 2021-02-28 # Added File Extension, convereted passive block to matches array ] -version "0.2" +version "0.3" description "Java allows you to play online games, chat with people around the world, calculate your mortgage interest, and view images in 3D, just to name a few. It's also integral to the intranet applications and other e-business solutions that are the foundation of corporate computing." website "http://www.java.com/" @@ -22,45 +23,37 @@ website "http://www.java.com/" # 118 for "x-powered-by" JSP JRE # 13950 for server JAVA - - -# Passive # -passive do - m=[] +# Matches # +matches [ # JSESSIONID Cookie - m << { :name=>"JSESSIONID Cookie" } if @headers["set-cookie"] =~ /JSESSIONID=[^;]{0,32};[\s]?path=\//i + { :name=>"JSESSIONID Cookie", :search=>"headers[set-cookie]", :regexp => /JSESSIONID=[^;]{0,32};[\s]?path=\//i}, # X-Powered-By # JSP Version Detection - m << { :version=>@headers['x-powered-by'].scan(/JSP\/([\d\.]+)/) } if @headers['x-powered-by'] =~ /JSP\/([\d\.]+)/ + { :name=>"X-Powered-By # JSP Version Detection", :search=>"headers[x-powered-by]", :version => /JSP\/([\d\.]+)/}, + # X-Powered-By # Servlet Version Detection - m << { :string=>@headers['x-powered-by'].scan(/(Servlet\/[\d\.]+)/i) } if @headers['x-powered-by'] =~ /(Servlet\/[\d\.]+)/i + { :name=>"X-Powered-By # Servlet Version Detection", :search=>"headers[x-powered-by]", :string => /(Servlet\/[\d\.]+)/i}, + # X-Powered-By # JRE Version Detection - m << { :string=>@headers['x-powered-by'].scan(/(JRE\/[\d\.\-\_]+)/) } if @headers['x-powered-by'] =~ /(JRE\/[\d\.\-\_]+)/ + { :name=>"X-Powered-By # JRE Version Detection", :search=>"headers[x-powered-by]", :string => /(JRE\/[\d\.\-\_]+)/}, # Server # Version Detection - m << { :version=>@headers['server'].scan(/java\/([\d\.\-\_]+)/) } if @headers['server'] =~ /java\/([\d\.\-\_]+)/ + { :name=>"Server # Version Detection", :search=>"headers[server]", :version => /java\/([\d\.\-\_]+)/}, + # Server # JDK Version Detection - m << { :string=>@headers['server'].scan(/(JDK [\d\.\-\_]+)/) } if @headers['server'] =~ /(JDK [\d\.\-\_]+)/ + { :name=>"Server # Version Detection", :search=>"headers[server]", :string => /(JDK [\d\.\-\_]+)/}, # Servlet-Engine - if @headers['servlet-engine'] =~ /\((.*?); (.*?); Java (.*?); (.*?); java.vendor=[^\)]{0,50}\)/ + { :name=>"Servlet-Engine # JSP Version Detection", :search=>"headers[servlet-engine]", :string => /\((.*?); (.*?); Java (.*?); (.*?); java.vendor=[^\)]{0,50}\)/, :offset=>0}, + { :name=>"Servlet-Engine # Servlet Version Detection", :search=>"headers[servlet-engine]", :string => /\((.*?); (.*?); Java (.*?); (.*?); java.vendor=[^\)]{0,50}\)/, :offset=>1}, + { :name=>"Servlet-Engine # Version Detection", :search=>"headers[servlet-engine]", :version => /\((.*?); (.*?); Java (.*?); (.*?); java.vendor=[^\)]{0,50}\)/, :offset=>2}, + { :name=>"Servlet-Engine # OS Detection", :search=>"headers[servlet-engine]", :os => /\((.*?); (.*?); Java (.*?); (.*?); java.vendor=[^\)]{0,50}\)/, :offset=>3}, - # JSP Version Detection - m << { :string=>@headers['servlet-engine'].scan(/\((.*?); (.*?); Java (.*?); (.*?); java.vendor=[^\)]{0,50}\)/)[0][0] } - # Servlet Version Detection - m << { :string=>@headers['servlet-engine'].scan(/\((.*?); (.*?); Java (.*?); (.*?); java.vendor=[^\)]{0,50}\)/)[0][1] } - # Version Detection - m << { :version=>@headers['servlet-engine'].scan(/\((.*?); (.*?); Java (.*?); (.*?); java.vendor=[^\)]{0,50}\)/)[0][2] } - # OS Detection - m << { :os=>@headers['servlet-engine'].scan(/\((.*?); (.*?); Java (.*?); (.*?); java.vendor=[^\)]{0,50}\)/)[0][3] } + # File Extension + { :name=>"File extension", :regexp=>/^(jsp|jpx|wss|do)$/, :search=>"uri.extension" } +] - end - - # Return passive matches - m - -end end diff --git a/plugins/jboss.rb b/plugins/jboss.rb index 76b30ae1..c6f305f5 100644 --- a/plugins/jboss.rb +++ b/plugins/jboss.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "JBoss" diff --git a/plugins/jcore.rb b/plugins/jcore.rb index d78f1afe..a8dd7549 100644 --- a/plugins/jcore.rb +++ b/plugins/jcore.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "jCore" diff --git a/plugins/jcow.rb b/plugins/jcow.rb index 9917e9eb..f4b4db28 100644 --- a/plugins/jcow.rb +++ b/plugins/jcow.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Jcow" diff --git a/plugins/jenkins.rb b/plugins/jenkins.rb index 129f0108..3cd26432 100644 --- a/plugins/jenkins.rb +++ b/plugins/jenkins.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Jenkins" diff --git a/plugins/jetnexus-load-balancer.rb b/plugins/jetnexus-load-balancer.rb index b1407778..bfde65e2 100644 --- a/plugins/jetnexus-load-balancer.rb +++ b/plugins/jetnexus-load-balancer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "jetNEXUS-Load-Balancer" diff --git a/plugins/jetty.rb b/plugins/jetty.rb index ecf482d1..4f82493f 100644 --- a/plugins/jetty.rb +++ b/plugins/jetty.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Jetty" diff --git a/plugins/jeus.rb b/plugins/jeus.rb index ac881be1..4f91807d 100644 --- a/plugins/jeus.rb +++ b/plugins/jeus.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "JEUS" diff --git a/plugins/jgs-portal.rb b/plugins/jgs-portal.rb index 59078b54..22f8a272 100644 --- a/plugins/jgs-portal.rb +++ b/plugins/jgs-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "JGS-Portal" diff --git a/plugins/jigsaw.rb b/plugins/jigsaw.rb index 95667703..53e7a3ca 100644 --- a/plugins/jigsaw.rb +++ b/plugins/jigsaw.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Jigsaw" diff --git a/plugins/jive-sbs.rb b/plugins/jive-sbs.rb index 77cb7946..4974cee7 100644 --- a/plugins/jive-sbs.rb +++ b/plugins/jive-sbs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Jive-SBS" diff --git a/plugins/jobberbase.rb b/plugins/jobberbase.rb index 3b178793..507e0f64 100644 --- a/plugins/jobberbase.rb +++ b/plugins/jobberbase.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "jobberBase" diff --git a/plugins/joomla.rb b/plugins/joomla.rb index 57eee69c..2a203079 100644 --- a/plugins/joomla.rb +++ b/plugins/joomla.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Joomla" diff --git a/plugins/jquery.rb b/plugins/jquery.rb index 98871b6c..53d06952 100644 --- a/plugins/jquery.rb +++ b/plugins/jquery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "JQuery" diff --git a/plugins/juniper-load-balancer.rb b/plugins/juniper-load-balancer.rb index 85523ec8..8be77118 100644 --- a/plugins/juniper-load-balancer.rb +++ b/plugins/juniper-load-balancer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Juniper-Load-Balancer" diff --git a/plugins/juniper-netscreen-secure-access.rb b/plugins/juniper-netscreen-secure-access.rb index c66aa330..86970c6b 100644 --- a/plugins/juniper-netscreen-secure-access.rb +++ b/plugins/juniper-netscreen-secure-access.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Juniper-NetScreen-Secure-Access" diff --git a/plugins/justanswer-professional.rb b/plugins/justanswer-professional.rb index 35c3d25e..023074d8 100644 --- a/plugins/justanswer-professional.rb +++ b/plugins/justanswer-professional.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "JustAnswer-Professional" diff --git a/plugins/jw-player.rb b/plugins/jw-player.rb index e39c5344..f9e313c1 100644 --- a/plugins/jw-player.rb +++ b/plugins/jw-player.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # ## Plugin.define do diff --git a/plugins/jxt-consulting.rb b/plugins/jxt-consulting.rb index 8cda46c6..c4589d98 100644 --- a/plugins/jxt-consulting.rb +++ b/plugins/jxt-consulting.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "JXT-Consulting" diff --git a/plugins/kaibb.rb b/plugins/kaibb.rb index f6f4e6cf..9ee3f5ba 100644 --- a/plugins/kaibb.rb +++ b/plugins/kaibb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "KaiBB" diff --git a/plugins/kajona.rb b/plugins/kajona.rb index 3f26a26c..2c21a442 100644 --- a/plugins/kajona.rb +++ b/plugins/kajona.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kajona" diff --git a/plugins/kampyle.rb b/plugins/kampyle.rb index 1d680aa0..2a950d31 100644 --- a/plugins/kampyle.rb +++ b/plugins/kampyle.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kampyle" diff --git a/plugins/kandidat-cms.rb b/plugins/kandidat-cms.rb index 1a18104c..7e922773 100644 --- a/plugins/kandidat-cms.rb +++ b/plugins/kandidat-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kandidat-CMS" diff --git a/plugins/karrigell.rb b/plugins/karrigell.rb index dd2ef002..6b545bde 100644 --- a/plugins/karrigell.rb +++ b/plugins/karrigell.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Karrigell" diff --git a/plugins/kayako-supportsuite.rb b/plugins/kayako-supportsuite.rb index 39e40473..fbc07cfe 100644 --- a/plugins/kayako-supportsuite.rb +++ b/plugins/kayako-supportsuite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kayako-SupportSuite" diff --git a/plugins/kazaa.rb b/plugins/kazaa.rb index 40378185..22d82ce2 100644 --- a/plugins/kazaa.rb +++ b/plugins/kazaa.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "KaZaA" diff --git a/plugins/kedacom-truesens.rb b/plugins/kedacom-truesens.rb index aba69396..bcbdd896 100644 --- a/plugins/kedacom-truesens.rb +++ b/plugins/kedacom-truesens.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kedacom-TrueSens" diff --git a/plugins/keil-embedded-web-server.rb b/plugins/keil-embedded-web-server.rb index a33afa8f..b6c72348 100644 --- a/plugins/keil-embedded-web-server.rb +++ b/plugins/keil-embedded-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Keil-Embedded-WEB-Server" diff --git a/plugins/kentico-cms.rb b/plugins/kentico-cms.rb index 3c73db86..dc4e8801 100644 --- a/plugins/kentico-cms.rb +++ b/plugins/kentico-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kentico-CMS" diff --git a/plugins/kerio-connect.rb b/plugins/kerio-connect.rb index d027681b..b86d6895 100644 --- a/plugins/kerio-connect.rb +++ b/plugins/kerio-connect.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kerio-Connect" diff --git a/plugins/kerio-webstar.rb b/plugins/kerio-webstar.rb index a7e813f7..dd355bc3 100644 --- a/plugins/kerio-webstar.rb +++ b/plugins/kerio-webstar.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kerio-WebSTAR" diff --git a/plugins/kerio-winroute-firewall.rb b/plugins/kerio-winroute-firewall.rb index b5c3f213..a2c48918 100644 --- a/plugins/kerio-winroute-firewall.rb +++ b/plugins/kerio-winroute-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kerio-WinRoute-Firewall" diff --git a/plugins/keyfocus-webserver.rb b/plugins/keyfocus-webserver.rb index d1bbfdba..a6b081d7 100644 --- a/plugins/keyfocus-webserver.rb +++ b/plugins/keyfocus-webserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "KeyFocus-WebServer" diff --git a/plugins/kibana.rb b/plugins/kibana.rb index bce90391..f5dc0106 100644 --- a/plugins/kibana.rb +++ b/plugins/kibana.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kibana" diff --git a/plugins/kinja.rb b/plugins/kinja.rb index ea8ebf74..06f449e6 100644 --- a/plugins/kinja.rb +++ b/plugins/kinja.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kinja" diff --git a/plugins/kleeja.rb b/plugins/kleeja.rb index 5c3ce806..2e8aa958 100644 --- a/plugins/kleeja.rb +++ b/plugins/kleeja.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kleeja" diff --git a/plugins/kloxo-single-server.rb b/plugins/kloxo-single-server.rb index 2a67743a..c69738e1 100644 --- a/plugins/kloxo-single-server.rb +++ b/plugins/kloxo-single-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kloxo-Single-Server" # aka HyperVM aka LxAdmin diff --git a/plugins/kmsoft-guestbook.rb b/plugins/kmsoft-guestbook.rb index 530399ce..b28ee321 100644 --- a/plugins/kmsoft-guestbook.rb +++ b/plugins/kmsoft-guestbook.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "KMSoft-Guestbook" diff --git a/plugins/knopflerfish-http-server.rb b/plugins/knopflerfish-http-server.rb index 19a3538e..4d214e8a 100644 --- a/plugins/knopflerfish-http-server.rb +++ b/plugins/knopflerfish-http-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Knopflerfish-HTTP-Server" diff --git a/plugins/knowledgetree.rb b/plugins/knowledgetree.rb index eda9312b..7bd1acb2 100644 --- a/plugins/knowledgetree.rb +++ b/plugins/knowledgetree.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "KnowledgeTree" diff --git a/plugins/koala-web-server.rb b/plugins/koala-web-server.rb index 65d54ae1..0d919052 100644 --- a/plugins/koala-web-server.rb +++ b/plugins/koala-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Koala-Web-Server" diff --git a/plugins/kodi.rb b/plugins/kodi.rb index 1751a2d0..d8775ba8 100644 --- a/plugins/kodi.rb +++ b/plugins/kodi.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "KodiTV" diff --git a/plugins/koha.rb b/plugins/koha.rb index 4f419b84..dd5a5bfc 100644 --- a/plugins/koha.rb +++ b/plugins/koha.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Koha" diff --git a/plugins/kohana.rb b/plugins/kohana.rb index 7d968e4d..a2fc9719 100644 --- a/plugins/kohana.rb +++ b/plugins/kohana.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kohana" diff --git a/plugins/kolab.rb b/plugins/kolab.rb index c8b02782..93797327 100644 --- a/plugins/kolab.rb +++ b/plugins/kolab.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kolab" diff --git a/plugins/konica-minolta-printer.rb b/plugins/konica-minolta-printer.rb index 747d1e56..d0298a54 100644 --- a/plugins/konica-minolta-printer.rb +++ b/plugins/konica-minolta-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Konica-Minolta-Printer" diff --git a/plugins/kontaktformular.rb b/plugins/kontaktformular.rb index 007a3894..18edc4f8 100644 --- a/plugins/kontaktformular.rb +++ b/plugins/kontaktformular.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kontaktformular" diff --git a/plugins/koobi.rb b/plugins/koobi.rb index c230cc09..d8adef04 100644 --- a/plugins/koobi.rb +++ b/plugins/koobi.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Koobi" diff --git a/plugins/kordil-edms.rb b/plugins/kordil-edms.rb index b1170632..af77c55f 100644 --- a/plugins/kordil-edms.rb +++ b/plugins/kordil-edms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kordil-EDMS" diff --git a/plugins/ksearch.rb b/plugins/ksearch.rb index 10b2f035..1374e1a0 100644 --- a/plugins/ksearch.rb +++ b/plugins/ksearch.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "KSearch" diff --git a/plugins/kss.rb b/plugins/kss.rb index 03e6a7c7..151c0aa2 100644 --- a/plugins/kss.rb +++ b/plugins/kss.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "KSS" diff --git a/plugins/kyocera-printer.rb b/plugins/kyocera-printer.rb index d149a7df..266d2704 100644 --- a/plugins/kyocera-printer.rb +++ b/plugins/kyocera-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Kyocera-Printer" diff --git a/plugins/labview.rb b/plugins/labview.rb index 8c2a554c..cc0154dd 100644 --- a/plugins/labview.rb +++ b/plugins/labview.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LabVIEW" diff --git a/plugins/lancom-device.rb b/plugins/lancom-device.rb index aa32840d..d5c54c5f 100644 --- a/plugins/lancom-device.rb +++ b/plugins/lancom-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LANCOM-Device" diff --git a/plugins/lancom-vpn.rb b/plugins/lancom-vpn.rb index 5f143c2f..0cfba7d1 100644 --- a/plugins/lancom-vpn.rb +++ b/plugins/lancom-vpn.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LANCOM-VPN" diff --git a/plugins/landshop.rb b/plugins/landshop.rb index d0a2a8d1..e374ede3 100644 --- a/plugins/landshop.rb +++ b/plugins/landshop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LandShop" diff --git a/plugins/lanrtc.rb b/plugins/lanrtc.rb index 1ab5fbdf..cb933f19 100644 --- a/plugins/lanrtc.rb +++ b/plugins/lanrtc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LanRTC" diff --git a/plugins/lantronix-device.rb b/plugins/lantronix-device.rb index 5ea66095..5394e618 100644 --- a/plugins/lantronix-device.rb +++ b/plugins/lantronix-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lantronix-Device" diff --git a/plugins/laravel.rb b/plugins/laravel.rb index 90547d37..0d6edf1a 100644 --- a/plugins/laravel.rb +++ b/plugins/laravel.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Laravel" diff --git a/plugins/lasernet-cms.rb b/plugins/lasernet-cms.rb index 46c92a38..8e8595d2 100644 --- a/plugins/lasernet-cms.rb +++ b/plugins/lasernet-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lasernet-CMS" diff --git a/plugins/laserwash.rb b/plugins/laserwash.rb index 9548fcb3..30977b1c 100644 --- a/plugins/laserwash.rb +++ b/plugins/laserwash.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LaserWash" diff --git a/plugins/lasso-web-data-engine.rb b/plugins/lasso-web-data-engine.rb index 75f94e1e..bea5073c 100644 --- a/plugins/lasso-web-data-engine.rb +++ b/plugins/lasso-web-data-engine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lasso-Web-Data-Engine" diff --git a/plugins/leap.rb b/plugins/leap.rb index 37747235..ebb098f5 100644 --- a/plugins/leap.rb +++ b/plugins/leap.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LEAP" diff --git a/plugins/letodms.rb b/plugins/letodms.rb index bb543edf..a6f7ca03 100644 --- a/plugins/letodms.rb +++ b/plugins/letodms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LetoDMS" diff --git a/plugins/level1-router.rb b/plugins/level1-router.rb index 72679635..da26ddad 100644 --- a/plugins/level1-router.rb +++ b/plugins/level1-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Level1-Router" diff --git a/plugins/libwww-perl-daemon.rb b/plugins/libwww-perl-daemon.rb index f0276dc0..77518811 100644 --- a/plugins/libwww-perl-daemon.rb +++ b/plugins/libwww-perl-daemon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "libwww-perl-daemon" diff --git a/plugins/liferay.rb b/plugins/liferay.rb index a790bc11..448e3dce 100644 --- a/plugins/liferay.rb +++ b/plugins/liferay.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Liferay" diff --git a/plugins/lifesize-control.rb b/plugins/lifesize-control.rb index b7396e61..060f5160 100644 --- a/plugins/lifesize-control.rb +++ b/plugins/lifesize-control.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LifeSize-Control" diff --git a/plugins/lifetype.rb b/plugins/lifetype.rb index c37e1298..0bb876d9 100644 --- a/plugins/lifetype.rb +++ b/plugins/lifetype.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LifeType" diff --git a/plugins/lightbox.rb b/plugins/lightbox.rb index 1c97c070..51683624 100644 --- a/plugins/lightbox.rb +++ b/plugins/lightbox.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lightbox" diff --git a/plugins/lightneasy.rb b/plugins/lightneasy.rb index 601a44c0..b1f9ca1f 100644 --- a/plugins/lightneasy.rb +++ b/plugins/lightneasy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LightNEasy" diff --git a/plugins/lighttpd.rb b/plugins/lighttpd.rb index 045362de..1c0b7c58 100644 --- a/plugins/lighttpd.rb +++ b/plugins/lighttpd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "lighttpd" diff --git a/plugins/limesurvey.rb b/plugins/limesurvey.rb index 5d9f3f1c..2c8aa1c9 100644 --- a/plugins/limesurvey.rb +++ b/plugins/limesurvey.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lime-Survey" diff --git a/plugins/link-cms.rb b/plugins/link-cms.rb index e01a62c8..d5f0a272 100644 --- a/plugins/link-cms.rb +++ b/plugins/link-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LINK-CMS" diff --git a/plugins/linkspheric.rb b/plugins/linkspheric.rb index 951964b3..fb361f3b 100644 --- a/plugins/linkspheric.rb +++ b/plugins/linkspheric.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "linkSpheric" diff --git a/plugins/linksys-nas.rb b/plugins/linksys-nas.rb index 4f6a0e83..ed8770eb 100644 --- a/plugins/linksys-nas.rb +++ b/plugins/linksys-nas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Linksys-NAS" diff --git a/plugins/linksys-network-camera.rb b/plugins/linksys-network-camera.rb index 7af4f8a0..ff2a28b5 100644 --- a/plugins/linksys-network-camera.rb +++ b/plugins/linksys-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Linksys-Network-Camera" diff --git a/plugins/linksys-print-server.rb b/plugins/linksys-print-server.rb index 192ddd19..4a70a833 100644 --- a/plugins/linksys-print-server.rb +++ b/plugins/linksys-print-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Linksys-Print-Server" diff --git a/plugins/linksys-router.rb b/plugins/linksys-router.rb index ca14e799..ee96feaf 100644 --- a/plugins/linksys-router.rb +++ b/plugins/linksys-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Linksys-Router" diff --git a/plugins/linksys-usb-hdd.rb b/plugins/linksys-usb-hdd.rb index 86953c69..0bbfbba5 100644 --- a/plugins/linksys-usb-hdd.rb +++ b/plugins/linksys-usb-hdd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Linksys-USB-HDD" diff --git a/plugins/linksys-wireless-g-camera.rb b/plugins/linksys-wireless-g-camera.rb index cad72883..c946e1b4 100644 --- a/plugins/linksys-wireless-g-camera.rb +++ b/plugins/linksys-wireless-g-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Linksys-Wireless-G-Camera" diff --git a/plugins/listserv.rb b/plugins/listserv.rb index ee9e20b0..77ad3df8 100644 --- a/plugins/listserv.rb +++ b/plugins/listserv.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LISTSERV" diff --git a/plugins/literadius.rb b/plugins/literadius.rb index 185d0458..8f83af41 100644 --- a/plugins/literadius.rb +++ b/plugins/literadius.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LiteRadius" diff --git a/plugins/litespeed.rb b/plugins/litespeed.rb index e06c3394..300c7699 100644 --- a/plugins/litespeed.rb +++ b/plugins/litespeed.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LiteSpeed" diff --git a/plugins/lithium.rb b/plugins/lithium.rb index 20f39fe8..715e8b2d 100644 --- a/plugins/lithium.rb +++ b/plugins/lithium.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lithium" diff --git a/plugins/livezilla.rb b/plugins/livezilla.rb index 8fc40aee..075c2138 100644 --- a/plugins/livezilla.rb +++ b/plugins/livezilla.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LiveZilla" diff --git a/plugins/lk-ihc-controller.rb b/plugins/lk-ihc-controller.rb index ab390200..e9efc9f5 100644 --- a/plugins/lk-ihc-controller.rb +++ b/plugins/lk-ihc-controller.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LK-IHC-Controller" diff --git a/plugins/locazolist-classifieds.rb b/plugins/locazolist-classifieds.rb index 391aface..095154d4 100644 --- a/plugins/locazolist-classifieds.rb +++ b/plugins/locazolist-classifieds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LocazoList-Classifieds" diff --git a/plugins/lochdns-mydns-appliance.rb b/plugins/lochdns-mydns-appliance.rb index 33b7f55c..ba183abe 100644 --- a/plugins/lochdns-mydns-appliance.rb +++ b/plugins/lochdns-mydns-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "lochDNS-MyDNS-Appliance" diff --git a/plugins/log1-cms.rb b/plugins/log1-cms.rb index c1b22101..ad5a01f4 100644 --- a/plugins/log1-cms.rb +++ b/plugins/log1-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Log1-CMS" diff --git a/plugins/loggix.rb b/plugins/loggix.rb index 551b608c..db6b6002 100644 --- a/plugins/loggix.rb +++ b/plugins/loggix.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Loggix" diff --git a/plugins/lotus-domino.rb b/plugins/lotus-domino.rb index 7d264c26..90fd5eaa 100644 --- a/plugins/lotus-domino.rb +++ b/plugins/lotus-domino.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lotus-Domino" diff --git a/plugins/lotus-notes-traveler.rb b/plugins/lotus-notes-traveler.rb index 1215b61b..446256e6 100644 --- a/plugins/lotus-notes-traveler.rb +++ b/plugins/lotus-notes-traveler.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lotus-Notes-Traveler" diff --git a/plugins/lotuscms.rb b/plugins/lotuscms.rb index 2543ad39..20ae35f2 100644 --- a/plugins/lotuscms.rb +++ b/plugins/lotuscms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LotusCMS" diff --git a/plugins/lpse.rb b/plugins/lpse.rb index 01781dd0..e37214e8 100644 --- a/plugins/lpse.rb +++ b/plugins/lpse.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LPSE" diff --git a/plugins/luci.rb b/plugins/luci.rb index 0a677093..0567b51b 100644 --- a/plugins/luci.rb +++ b/plugins/luci.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LuCI" diff --git a/plugins/lusca-web-proxy-cache.rb b/plugins/lusca-web-proxy-cache.rb index 45be59d5..e72793bb 100644 --- a/plugins/lusca-web-proxy-cache.rb +++ b/plugins/lusca-web-proxy-cache.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lusca-Web-Proxy-Cache" diff --git a/plugins/lussumo-vanilla.rb b/plugins/lussumo-vanilla.rb index 9695ed84..238eb54e 100644 --- a/plugins/lussumo-vanilla.rb +++ b/plugins/lussumo-vanilla.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lussumo-Vanilla" diff --git a/plugins/luxcal.rb b/plugins/luxcal.rb index c5668e03..9c7dec03 100644 --- a/plugins/luxcal.rb +++ b/plugins/luxcal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LuxCal" diff --git a/plugins/lxr.rb b/plugins/lxr.rb index 32ecc12f..b84ca72a 100644 --- a/plugins/lxr.rb +++ b/plugins/lxr.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LXR" diff --git a/plugins/lynxguide.rb b/plugins/lynxguide.rb index 340f12e6..9b6cf252 100644 --- a/plugins/lynxguide.rb +++ b/plugins/lynxguide.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "LynxGuide" diff --git a/plugins/lyris-listmanager.rb b/plugins/lyris-listmanager.rb index 1895b13d..6f2661be 100644 --- a/plugins/lyris-listmanager.rb +++ b/plugins/lyris-listmanager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Lyris-ListManager" diff --git a/plugins/m2soft-rdserver.rb b/plugins/m2soft-rdserver.rb index 13233d1c..1922b068 100644 --- a/plugins/m2soft-rdserver.rb +++ b/plugins/m2soft-rdserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "M2Soft-RDServer" diff --git a/plugins/mac-osx-server.rb b/plugins/mac-osx-server.rb index a0eebd65..509e9173 100644 --- a/plugins/mac-osx-server.rb +++ b/plugins/mac-osx-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mac-OSX-Server" diff --git a/plugins/machttp.rb b/plugins/machttp.rb index 842853ac..2313d825 100644 --- a/plugins/machttp.rb +++ b/plugins/machttp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MacHTTP" diff --git a/plugins/macos-personal-websharing.rb b/plugins/macos-personal-websharing.rb index 980d8463..e98ecfb9 100644 --- a/plugins/macos-personal-websharing.rb +++ b/plugins/macos-personal-websharing.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MACOS-Personal-Websharing" diff --git a/plugins/macs-cms.rb b/plugins/macs-cms.rb index 2b187719..8b7bb82e 100644 --- a/plugins/macs-cms.rb +++ b/plugins/macs-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Macs-CMS" diff --git a/plugins/magento.rb b/plugins/magento.rb index ba5b3369..3b5ccb79 100644 --- a/plugins/magento.rb +++ b/plugins/magento.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Magento" diff --git a/plugins/magimagebank.rb b/plugins/magimagebank.rb index 81d3c8a2..9ecd70d6 100644 --- a/plugins/magimagebank.rb +++ b/plugins/magimagebank.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MagImageBank" diff --git a/plugins/mahara.rb b/plugins/mahara.rb index fccf57fd..00df0b1f 100644 --- a/plugins/mahara.rb +++ b/plugins/mahara.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mahara" diff --git a/plugins/mailenable.rb b/plugins/mailenable.rb index 3a4687a5..970dc136 100644 --- a/plugins/mailenable.rb +++ b/plugins/mailenable.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MailEnable" diff --git a/plugins/mailform-plugin.rb b/plugins/mailform-plugin.rb index f9188cb9..c2d2016d 100644 --- a/plugins/mailform-plugin.rb +++ b/plugins/mailform-plugin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MailForm-Plugin" diff --git a/plugins/mailman.rb b/plugins/mailman.rb index 84f7372f..3149de0e 100644 --- a/plugins/mailman.rb +++ b/plugins/mailman.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mailman" diff --git a/plugins/mailsite-express.rb b/plugins/mailsite-express.rb index 0a2a5d10..13e46d20 100644 --- a/plugins/mailsite-express.rb +++ b/plugins/mailsite-express.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MailSiteExpress" diff --git a/plugins/mambo.rb b/plugins/mambo.rb index b30f2e6e..ba2f6513 100644 --- a/plugins/mambo.rb +++ b/plugins/mambo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mambo" diff --git a/plugins/managed-fusion-url-rewriter.rb b/plugins/managed-fusion-url-rewriter.rb index 2e2442b0..a20531e2 100644 --- a/plugins/managed-fusion-url-rewriter.rb +++ b/plugins/managed-fusion-url-rewriter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Managed-Fusion-Url-Rewriter" diff --git a/plugins/manageengine-applications-manager.rb b/plugins/manageengine-applications-manager.rb index eae9c70a..539ff290 100644 --- a/plugins/manageengine-applications-manager.rb +++ b/plugins/manageengine-applications-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ManageEngine-Applications-Manager" diff --git a/plugins/manageengine-deviceexpert.rb b/plugins/manageengine-deviceexpert.rb index c68da669..c60e2f29 100644 --- a/plugins/manageengine-deviceexpert.rb +++ b/plugins/manageengine-deviceexpert.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ManageEngine-DeviceExpert" diff --git a/plugins/mantisbt.rb b/plugins/mantisbt.rb index 758db204..967dea04 100644 --- a/plugins/mantisbt.rb +++ b/plugins/mantisbt.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MantisBT" diff --git a/plugins/mapserver-4-windows.rb b/plugins/mapserver-4-windows.rb index 6a24cdd0..011bbeb0 100644 --- a/plugins/mapserver-4-windows.rb +++ b/plugins/mapserver-4-windows.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MapServer-4-Windows" diff --git a/plugins/mapserver.rb b/plugins/mapserver.rb index 5de43630..58ecd820 100644 --- a/plugins/mapserver.rb +++ b/plugins/mapserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MapServer" diff --git a/plugins/mark-of-the-web.rb b/plugins/mark-of-the-web.rb index 52d5eaea..63879461 100644 --- a/plugins/mark-of-the-web.rb +++ b/plugins/mark-of-the-web.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mark-of-the-Web" diff --git a/plugins/mashery-proxy.rb b/plugins/mashery-proxy.rb index b7f338e8..3e19aeb9 100644 --- a/plugins/mashery-proxy.rb +++ b/plugins/mashery-proxy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mashery-Proxy" diff --git a/plugins/mason.rb b/plugins/mason.rb index 13b574fc..55693423 100644 --- a/plugins/mason.rb +++ b/plugins/mason.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mason" diff --git a/plugins/mathopd.rb b/plugins/mathopd.rb index 7725759d..c3918872 100644 --- a/plugins/mathopd.rb +++ b/plugins/mathopd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mathopd" diff --git a/plugins/matomo.rb b/plugins/matomo.rb index ff39f2e9..92bc1f70 100644 --- a/plugins/matomo.rb +++ b/plugins/matomo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Matomo" diff --git a/plugins/maxmind-geoip.rb b/plugins/maxmind-geoip.rb index 774aeb47..f1b48c71 100644 --- a/plugins/maxmind-geoip.rb +++ b/plugins/maxmind-geoip.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MaxMind-GeoIP" diff --git a/plugins/mcafee-epolicy-orchestrator.rb b/plugins/mcafee-epolicy-orchestrator.rb index a970524a..b6a3db2f 100644 --- a/plugins/mcafee-epolicy-orchestrator.rb +++ b/plugins/mcafee-epolicy-orchestrator.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "McAfee-ePolicy-Orchestrator" diff --git a/plugins/mcafee-secure.rb b/plugins/mcafee-secure.rb index e7f4b74f..2ab46776 100644 --- a/plugins/mcafee-secure.rb +++ b/plugins/mcafee-secure.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "McAfee-Secure" diff --git a/plugins/mcclatchy_interactive.rb b/plugins/mcclatchy_interactive.rb index 464788d0..4026afb9 100644 --- a/plugins/mcclatchy_interactive.rb +++ b/plugins/mcclatchy_interactive.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "McClatchy-Interactive" diff --git a/plugins/md-pro.rb b/plugins/md-pro.rb index 550446cd..0a254bff 100644 --- a/plugins/md-pro.rb +++ b/plugins/md-pro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MD-Pro" diff --git a/plugins/mediawiki.rb b/plugins/mediawiki.rb index 50bee4e8..21142550 100644 --- a/plugins/mediawiki.rb +++ b/plugins/mediawiki.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MediaWiki" diff --git a/plugins/meetingplaza.rb b/plugins/meetingplaza.rb index b16911fe..0cf108f3 100644 --- a/plugins/meetingplaza.rb +++ b/plugins/meetingplaza.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MeetingPlaza" diff --git a/plugins/meitrack.rb b/plugins/meitrack.rb index 61f2dacb..1bd27861 100644 --- a/plugins/meitrack.rb +++ b/plugins/meitrack.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MeiTrack" diff --git a/plugins/memht-portal.rb b/plugins/memht-portal.rb index 5583cc62..3195688c 100644 --- a/plugins/memht-portal.rb +++ b/plugins/memht-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MemHT-Portal" diff --git a/plugins/mercurial.rb b/plugins/mercurial.rb index 83240cf5..5fff2f14 100644 --- a/plugins/mercurial.rb +++ b/plugins/mercurial.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mercurial" diff --git a/plugins/meta-author.rb b/plugins/meta-author.rb index 0fd06e63..d015f70a 100644 --- a/plugins/meta-author.rb +++ b/plugins/meta-author.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-Author" diff --git a/plugins/meta-generator.rb b/plugins/meta-generator.rb index 03a5ab02..4498dbdf 100644 --- a/plugins/meta-generator.rb +++ b/plugins/meta-generator.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MetaGenerator" diff --git a/plugins/meta-geo.rb b/plugins/meta-geo.rb index cc5ac3b8..7282919d 100644 --- a/plugins/meta-geo.rb +++ b/plugins/meta-geo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-Geo" diff --git a/plugins/meta-powered-by.rb b/plugins/meta-powered-by.rb index ad2ed78b..336840cd 100644 --- a/plugins/meta-powered-by.rb +++ b/plugins/meta-powered-by.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MetaPoweredBy" diff --git a/plugins/meta-refresh.rb b/plugins/meta-refresh.rb index 3f592c83..f9d85616 100644 --- a/plugins/meta-refresh.rb +++ b/plugins/meta-refresh.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Meta-Refresh-Redirect" diff --git a/plugins/metinfo.rb b/plugins/metinfo.rb index 0a0668cc..6b4af0ff 100644 --- a/plugins/metinfo.rb +++ b/plugins/metinfo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MetInfo" diff --git a/plugins/mezzanine.rb b/plugins/mezzanine.rb index 4a8a7b59..c81f34c8 100644 --- a/plugins/mezzanine.rb +++ b/plugins/mezzanine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mezzanine" diff --git a/plugins/mgb-opensource-guestbook.rb b/plugins/mgb-opensource-guestbook.rb index 48cdd90b..23ff5bab 100644 --- a/plugins/mgb-opensource-guestbook.rb +++ b/plugins/mgb-opensource-guestbook.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MGB-OpenSource-Guestbook" diff --git a/plugins/mhttpd.rb b/plugins/mhttpd.rb index fe8b4e56..83461b6b 100644 --- a/plugins/mhttpd.rb +++ b/plugins/mhttpd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MHttpd" diff --git a/plugins/mibew-messenger.rb b/plugins/mibew-messenger.rb index cb13dd20..171a161c 100644 --- a/plugins/mibew-messenger.rb +++ b/plugins/mibew-messenger.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mibew-Messenger" diff --git a/plugins/micro-cms.rb b/plugins/micro-cms.rb index ea5ce190..20517dce 100644 --- a/plugins/micro-cms.rb +++ b/plugins/micro-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Micro-CMS" diff --git a/plugins/micro_httpd.rb b/plugins/micro_httpd.rb index dcedb6a0..a74ccde5 100644 --- a/plugins/micro_httpd.rb +++ b/plugins/micro_httpd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "micro_httpd" diff --git a/plugins/micronet-router.rb b/plugins/micronet-router.rb index 2323a14c..86d1f7e0 100644 --- a/plugins/micronet-router.rb +++ b/plugins/micronet-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Micronet-Router" diff --git a/plugins/microsoft-httpapi.rb b/plugins/microsoft-httpapi.rb index e9bd894f..47ebc1a4 100644 --- a/plugins/microsoft-httpapi.rb +++ b/plugins/microsoft-httpapi.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsoft-HTTPAPI" diff --git a/plugins/microsoft-iis.rb b/plugins/microsoft-iis.rb index 1e246c42..65eca356 100644 --- a/plugins/microsoft-iis.rb +++ b/plugins/microsoft-iis.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsoft-IIS" diff --git a/plugins/microsoft-office-xml.rb b/plugins/microsoft-office-xml.rb index c0fbc58b..65f176f1 100644 --- a/plugins/microsoft-office-xml.rb +++ b/plugins/microsoft-office-xml.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsoft-Office-XML" diff --git a/plugins/microsoft-remote-web-workplace.rb b/plugins/microsoft-remote-web-workplace.rb index 1790d886..e14a49a4 100644 --- a/plugins/microsoft-remote-web-workplace.rb +++ b/plugins/microsoft-remote-web-workplace.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsoft-Remote-Web-Workplace" diff --git a/plugins/microsoft-sharepoint.rb b/plugins/microsoft-sharepoint.rb index 7aa8d698..b7c1db12 100644 --- a/plugins/microsoft-sharepoint.rb +++ b/plugins/microsoft-sharepoint.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsoft-Sharepoint" diff --git a/plugins/microsoft-sql-server-report-manager.rb b/plugins/microsoft-sql-server-report-manager.rb index 761da8f5..c98e30c1 100644 --- a/plugins/microsoft-sql-server-report-manager.rb +++ b/plugins/microsoft-sql-server-report-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsoft-SQL-Server-Report-Manager" diff --git a/plugins/microsoft-wince.rb b/plugins/microsoft-wince.rb index 33de6d2e..b4d48728 100644 --- a/plugins/microsoft-wince.rb +++ b/plugins/microsoft-wince.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsoft-WinCE" diff --git a/plugins/microsoft-windows-business-server.rb b/plugins/microsoft-windows-business-server.rb index 3ec518cc..511cda91 100644 --- a/plugins/microsoft-windows-business-server.rb +++ b/plugins/microsoft-windows-business-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsoft-Windows-Business-Server" diff --git a/plugins/microsoft_odbc_error.rb b/plugins/microsoft_odbc_error.rb index c1256e43..48b5574c 100644 --- a/plugins/microsoft_odbc_error.rb +++ b/plugins/microsoft_odbc_error.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsoft-ODBC-Error" diff --git a/plugins/microsoftofficewebserver.rb b/plugins/microsoftofficewebserver.rb index a5f59c62..2d08086e 100644 --- a/plugins/microsoftofficewebserver.rb +++ b/plugins/microsoftofficewebserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MicrosoftOfficeWebServer" diff --git a/plugins/microsys-promotic.rb b/plugins/microsys-promotic.rb index f915edc3..70e0b572 100644 --- a/plugins/microsys-promotic.rb +++ b/plugins/microsys-promotic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Microsys-PROMOTIC" diff --git a/plugins/mihalism-multi-host.rb b/plugins/mihalism-multi-host.rb index 84640fd7..d4fc8521 100644 --- a/plugins/mihalism-multi-host.rb +++ b/plugins/mihalism-multi-host.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mihalism-Multi-Host" diff --git a/plugins/mikrotik-router.rb b/plugins/mikrotik-router.rb index 1ed47786..93184c6f 100644 --- a/plugins/mikrotik-router.rb +++ b/plugins/mikrotik-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MikroTik" diff --git a/plugins/mikrotik-routeros.rb b/plugins/mikrotik-routeros.rb index 8fb5e927..0ef45011 100644 --- a/plugins/mikrotik-routeros.rb +++ b/plugins/mikrotik-routeros.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MikroTik-RouterOS" diff --git a/plugins/minecraft-server.rb b/plugins/minecraft-server.rb index 045d2481..ab686178 100644 --- a/plugins/minecraft-server.rb +++ b/plugins/minecraft-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Minecraft-Server" diff --git a/plugins/miniature-jws.rb b/plugins/miniature-jws.rb index 06b8b697..3349b437 100644 --- a/plugins/miniature-jws.rb +++ b/plugins/miniature-jws.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Miniature-JWS" diff --git a/plugins/minibb.rb b/plugins/minibb.rb index 1955685a..4633aef0 100644 --- a/plugins/minibb.rb +++ b/plugins/minibb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MiniBB" diff --git a/plugins/minicwb.rb b/plugins/minicwb.rb index 0c9bd760..55997060 100644 --- a/plugins/minicwb.rb +++ b/plugins/minicwb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MiniCWB" diff --git a/plugins/minify.rb b/plugins/minify.rb index 44688be7..d47c3340 100644 --- a/plugins/minify.rb +++ b/plugins/minify.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Minify" diff --git a/plugins/mint.rb b/plugins/mint.rb index dad0cc0f..c8ae2eb1 100644 --- a/plugins/mint.rb +++ b/plugins/mint.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mint" diff --git a/plugins/mioot-live-chat.rb b/plugins/mioot-live-chat.rb index 07899d69..ae1a7608 100644 --- a/plugins/mioot-live-chat.rb +++ b/plugins/mioot-live-chat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mioot-Live-Chat" diff --git a/plugins/mirapoint-email-appliance.rb b/plugins/mirapoint-email-appliance.rb index 16d25d07..df817ba2 100644 --- a/plugins/mirapoint-email-appliance.rb +++ b/plugins/mirapoint-email-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mirapoint-Email-Appliance" diff --git a/plugins/mission-control-application-shield.rb b/plugins/mission-control-application-shield.rb index bbfedb36..fa61afeb 100644 --- a/plugins/mission-control-application-shield.rb +++ b/plugins/mission-control-application-shield.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mission-Control-Application-Shield" diff --git a/plugins/mistcms.rb b/plugins/mistcms.rb index dcd8d28f..e9108698 100644 --- a/plugins/mistcms.rb +++ b/plugins/mistcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MistCMS" diff --git a/plugins/mivamerchant.rb b/plugins/mivamerchant.rb index 1ee479e5..d1b298bc 100644 --- a/plugins/mivamerchant.rb +++ b/plugins/mivamerchant.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MivaMerchant" diff --git a/plugins/mjniohttpdaemon.rb b/plugins/mjniohttpdaemon.rb index 8d34831d..a75e6ab7 100644 --- a/plugins/mjniohttpdaemon.rb +++ b/plugins/mjniohttpdaemon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MJNioHttpDaemon" diff --git a/plugins/mkportal.rb b/plugins/mkportal.rb index 68e5c6ad..e367e1f5 100644 --- a/plugins/mkportal.rb +++ b/plugins/mkportal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MKPortal" diff --git a/plugins/mno-go-search.rb b/plugins/mno-go-search.rb index 168b991f..93711607 100644 --- a/plugins/mno-go-search.rb +++ b/plugins/mno-go-search.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MnoGoSearch" diff --git a/plugins/mobile-joomla.rb b/plugins/mobile-joomla.rb index c3da570e..5cef410a 100644 --- a/plugins/mobile-joomla.rb +++ b/plugins/mobile-joomla.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mobile-Joomla" diff --git a/plugins/mobileiron-mdm.rb b/plugins/mobileiron-mdm.rb index eee82483..93861de5 100644 --- a/plugins/mobileiron-mdm.rb +++ b/plugins/mobileiron-mdm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MobileIron-MDM" diff --git a/plugins/mobilityguard.rb b/plugins/mobilityguard.rb index 001a9df0..0e43b303 100644 --- a/plugins/mobilityguard.rb +++ b/plugins/mobilityguard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MobilityGuard" diff --git a/plugins/mobotix-network-camera.rb b/plugins/mobotix-network-camera.rb index 2844beda..b33f5ba9 100644 --- a/plugins/mobotix-network-camera.rb +++ b/plugins/mobotix-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mobotix-Network-Camera" diff --git a/plugins/mochiweb.rb b/plugins/mochiweb.rb index 3804f900..f08fc4f8 100644 --- a/plugins/mochiweb.rb +++ b/plugins/mochiweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MochiWeb" diff --git a/plugins/modernizr.rb b/plugins/modernizr.rb index 5043d7a7..51102acd 100644 --- a/plugins/modernizr.rb +++ b/plugins/modernizr.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Modernizr" diff --git a/plugins/modlogan.rb b/plugins/modlogan.rb index a3e87c50..af814b6c 100644 --- a/plugins/modlogan.rb +++ b/plugins/modlogan.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ModLogAn" diff --git a/plugins/modx-cms.rb b/plugins/modx-cms.rb index 61f44c43..a630b7e0 100644 --- a/plugins/modx-cms.rb +++ b/plugins/modx-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ModxCMS" diff --git a/plugins/mojoportal.rb b/plugins/mojoportal.rb index f08331af..c62a4069 100644 --- a/plugins/mojoportal.rb +++ b/plugins/mojoportal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "mojoPortal" diff --git a/plugins/mongodb.rb b/plugins/mongodb.rb index 818676c4..db48ac36 100644 --- a/plugins/mongodb.rb +++ b/plugins/mongodb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MongoDB" diff --git a/plugins/mongrel.rb b/plugins/mongrel.rb index 8b370456..1efc8a26 100644 --- a/plugins/mongrel.rb +++ b/plugins/mongrel.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mongrel" diff --git a/plugins/monkey.rb b/plugins/monkey.rb index 84a1a1e4..a81a7b08 100644 --- a/plugins/monkey.rb +++ b/plugins/monkey.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Monkey" diff --git a/plugins/moodle.rb b/plugins/moodle.rb index 0bd5cb18..700a2d2c 100644 --- a/plugins/moodle.rb +++ b/plugins/moodle.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Moodle" diff --git a/plugins/moonfruit.rb b/plugins/moonfruit.rb index cba39a9a..1a4133eb 100644 --- a/plugins/moonfruit.rb +++ b/plugins/moonfruit.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MoonFruit" diff --git a/plugins/mootools.rb b/plugins/mootools.rb index daaacba1..e30a87a4 100644 --- a/plugins/mootools.rb +++ b/plugins/mootools.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MooTools" diff --git a/plugins/motorito.rb b/plugins/motorito.rb index 9b376a49..21f5865f 100644 --- a/plugins/motorito.rb +++ b/plugins/motorito.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Motorito" diff --git a/plugins/movable_type.rb b/plugins/movable_type.rb index 37cf4181..3be41ae8 100644 --- a/plugins/movable_type.rb +++ b/plugins/movable_type.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Movable-Type" diff --git a/plugins/moxa-nport-device.rb b/plugins/moxa-nport-device.rb index 99915f23..1d8484a2 100644 --- a/plugins/moxa-nport-device.rb +++ b/plugins/moxa-nport-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Moxa-NPort-Device" diff --git a/plugins/moxahttp.rb b/plugins/moxahttp.rb index c39db4f9..6beeef6a 100644 --- a/plugins/moxahttp.rb +++ b/plugins/moxahttp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MoxaHttp" diff --git a/plugins/mrtg.rb b/plugins/mrtg.rb index 94a4512f..d56e41c5 100644 --- a/plugins/mrtg.rb +++ b/plugins/mrtg.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MRTG" diff --git a/plugins/ms-sdk-httpserver.rb b/plugins/ms-sdk-httpserver.rb index e9f6f0ab..e2cace5e 100644 --- a/plugins/ms-sdk-httpserver.rb +++ b/plugins/ms-sdk-httpserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MS-SDK-HttpServer" diff --git a/plugins/msfweb.rb b/plugins/msfweb.rb index 40e0a964..73231432 100644 --- a/plugins/msfweb.rb +++ b/plugins/msfweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MSFWeb" diff --git a/plugins/msgs.rb b/plugins/msgs.rb index 3e5bba96..353bf1d8 100644 --- a/plugins/msgs.rb +++ b/plugins/msgs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MSGS" diff --git a/plugins/mshift.rb b/plugins/mshift.rb index dcea4925..b0f3ac5b 100644 --- a/plugins/mshift.rb +++ b/plugins/mshift.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MShift" diff --git a/plugins/multipowupload.rb b/plugins/multipowupload.rb index 98ec5f7e..230a42e6 100644 --- a/plugins/multipowupload.rb +++ b/plugins/multipowupload.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MultiPowUpload" diff --git a/plugins/mura-cms.rb b/plugins/mura-cms.rb index 847ca275..514a0047 100644 --- a/plugins/mura-cms.rb +++ b/plugins/mura-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Mura-CMS" diff --git a/plugins/musicbox.rb b/plugins/musicbox.rb index b2bf96d9..b072eb32 100644 --- a/plugins/musicbox.rb +++ b/plugins/musicbox.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Musicbox" diff --git a/plugins/muster-render-farm.rb b/plugins/muster-render-farm.rb index 87653401..f49b9e70 100644 --- a/plugins/muster-render-farm.rb +++ b/plugins/muster-render-farm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Muster-Render-Farm" diff --git a/plugins/my-php-indexer.rb b/plugins/my-php-indexer.rb index fede1b9d..b67fe9f0 100644 --- a/plugins/my-php-indexer.rb +++ b/plugins/my-php-indexer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "My-PHP-Indexer" diff --git a/plugins/my-webcamxp-server.rb b/plugins/my-webcamxp-server.rb index 7f0d1ab1..a135b396 100644 --- a/plugins/my-webcamxp-server.rb +++ b/plugins/my-webcamxp-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "My-WebCamXP-Server" diff --git a/plugins/mybb.rb b/plugins/mybb.rb index f0b289cd..f37ee9f6 100644 --- a/plugins/mybb.rb +++ b/plugins/mybb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MyBB" diff --git a/plugins/myhobbysite.rb b/plugins/myhobbysite.rb index 1a3b8720..ec61b23a 100644 --- a/plugins/myhobbysite.rb +++ b/plugins/myhobbysite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MyHobbySite" diff --git a/plugins/myiosoft-ajax-portal.rb b/plugins/myiosoft-ajax-portal.rb index 727ed2f5..a8eedf48 100644 --- a/plugins/myiosoft-ajax-portal.rb +++ b/plugins/myiosoft-ajax-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MyioSoft-Ajax-Portal" diff --git a/plugins/myphp-forum.rb b/plugins/myphp-forum.rb index a172a8f3..0663e14b 100644 --- a/plugins/myphp-forum.rb +++ b/plugins/myphp-forum.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MyPHP-Forum" diff --git a/plugins/myre-php.rb b/plugins/myre-php.rb index 0c440da0..0d5f5bfb 100644 --- a/plugins/myre-php.rb +++ b/plugins/myre-php.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MYRE-PHP" diff --git a/plugins/myshell.rb b/plugins/myshell.rb index 5444d7b8..670cda63 100644 --- a/plugins/myshell.rb +++ b/plugins/myshell.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MyShell" diff --git a/plugins/mysource-matrix.rb b/plugins/mysource-matrix.rb index ecf94fad..978ad605 100644 --- a/plugins/mysource-matrix.rb +++ b/plugins/mysource-matrix.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MySource-Matrix" diff --git a/plugins/mysql-dump.rb b/plugins/mysql-dump.rb index dc72da5b..e9fbb68a 100644 --- a/plugins/mysql-dump.rb +++ b/plugins/mysql-dump.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MySQL-dump" diff --git a/plugins/mysql-error.rb b/plugins/mysql-error.rb index 0fdad7c0..add6e2de 100644 --- a/plugins/mysql-error.rb +++ b/plugins/mysql-error.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "mySQL-Error" diff --git a/plugins/mysql_connect.rb b/plugins/mysql_connect.rb index 093ad769..b7ac3fdd 100644 --- a/plugins/mysql_connect.rb +++ b/plugins/mysql_connect.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "mysql_connect" diff --git a/plugins/mysqldumper.rb b/plugins/mysqldumper.rb index 482d730a..31cadf44 100644 --- a/plugins/mysqldumper.rb +++ b/plugins/mysqldumper.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MySqlDumper" diff --git a/plugins/mysqlman.rb b/plugins/mysqlman.rb index 0806a26e..87fdaef1 100644 --- a/plugins/mysqlman.rb +++ b/plugins/mysqlman.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MySQLMan" diff --git a/plugins/mywebftp.rb b/plugins/mywebftp.rb index 4cdd1d26..659d25e5 100644 --- a/plugins/mywebftp.rb +++ b/plugins/mywebftp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MyWebFTP" diff --git a/plugins/myzone.rb b/plugins/myzone.rb index 3a6b6019..4c23cc20 100644 --- a/plugins/myzone.rb +++ b/plugins/myzone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "MyZone" diff --git a/plugins/nabble.rb b/plugins/nabble.rb index 3cd9a8be..e4d64fd2 100644 --- a/plugins/nabble.rb +++ b/plugins/nabble.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nabble" diff --git a/plugins/namazu.rb b/plugins/namazu.rb index 2b595463..720bf28e 100644 --- a/plugins/namazu.rb +++ b/plugins/namazu.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Namazu" diff --git a/plugins/navicopa.rb b/plugins/navicopa.rb index 160f40a9..28680c73 100644 --- a/plugins/navicopa.rb +++ b/plugins/navicopa.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NaviCOPA" diff --git a/plugins/ncr-itran-3000t-imaging-transport.rb b/plugins/ncr-itran-3000t-imaging-transport.rb index 5de1689d..e38ed5a4 100644 --- a/plugins/ncr-itran-3000t-imaging-transport.rb +++ b/plugins/ncr-itran-3000t-imaging-transport.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NCR-iTRAN-3000t-Imaging-Transport" diff --git a/plugins/ncsa-httpd.rb b/plugins/ncsa-httpd.rb index 6e5ac16d..94eea0a7 100644 --- a/plugins/ncsa-httpd.rb +++ b/plugins/ncsa-httpd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NCSA-HTTPd" diff --git a/plugins/nera-satlink.rb b/plugins/nera-satlink.rb index d728b14b..93d95810 100644 --- a/plugins/nera-satlink.rb +++ b/plugins/nera-satlink.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nera-SatLink" diff --git a/plugins/net2ftp.rb b/plugins/net2ftp.rb index 7181a5cb..dee0084b 100644 --- a/plugins/net2ftp.rb +++ b/plugins/net2ftp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "net2ftp" diff --git a/plugins/net2phone.rb b/plugins/net2phone.rb index 2e2c6736..59ceb8a5 100644 --- a/plugins/net2phone.rb +++ b/plugins/net2phone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Net2Phone" diff --git a/plugins/netapp-nas.rb b/plugins/netapp-nas.rb index ff87ef20..312d814a 100644 --- a/plugins/netapp-nas.rb +++ b/plugins/netapp-nas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetApp-NAS" diff --git a/plugins/netboard.rb b/plugins/netboard.rb index 9980a9a5..e2fb79bf 100644 --- a/plugins/netboard.rb +++ b/plugins/netboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "netboard" diff --git a/plugins/netbotz-network-monitoring-device.rb b/plugins/netbotz-network-monitoring-device.rb index c5044030..f3f885e7 100644 --- a/plugins/netbotz-network-monitoring-device.rb +++ b/plugins/netbotz-network-monitoring-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetBotz-Network-Monitoring-Device" diff --git a/plugins/netbox.rb b/plugins/netbox.rb index 794cabba..dc71625f 100644 --- a/plugins/netbox.rb +++ b/plugins/netbox.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetBox" diff --git a/plugins/netcache-appliance.rb b/plugins/netcache-appliance.rb index 356c39af..a9725dbb 100644 --- a/plugins/netcache-appliance.rb +++ b/plugins/netcache-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetCache-Appliance" diff --git a/plugins/netcomm-wireless-hotspot-gateway.rb b/plugins/netcomm-wireless-hotspot-gateway.rb index 885d2e9a..585e4b6c 100644 --- a/plugins/netcomm-wireless-hotspot-gateway.rb +++ b/plugins/netcomm-wireless-hotspot-gateway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetComm-Wireless-HotSpot-Gateway" diff --git a/plugins/netgear-firewall.rb b/plugins/netgear-firewall.rb index 8ab5b306..da630256 100644 --- a/plugins/netgear-firewall.rb +++ b/plugins/netgear-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetGear-Firewall" diff --git a/plugins/netgear-print-server.rb b/plugins/netgear-print-server.rb index 88039e28..202ca06a 100644 --- a/plugins/netgear-print-server.rb +++ b/plugins/netgear-print-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetGear-Print-Server" diff --git a/plugins/netgear-router.rb b/plugins/netgear-router.rb index 3a201389..d913ecff 100644 --- a/plugins/netgear-router.rb +++ b/plugins/netgear-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Netgear-Router" diff --git a/plugins/netious-cms.rb b/plugins/netious-cms.rb index 05cde95f..21870959 100644 --- a/plugins/netious-cms.rb +++ b/plugins/netious-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Netious-CMS" diff --git a/plugins/netjuke.rb b/plugins/netjuke.rb index ac2af908..ae19cd52 100644 --- a/plugins/netjuke.rb +++ b/plugins/netjuke.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Netjuke" diff --git a/plugins/netport.rb b/plugins/netport.rb index 5efcfe3d..c3e1a1de 100644 --- a/plugins/netport.rb +++ b/plugins/netport.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetPort" diff --git a/plugins/netpresenz.rb b/plugins/netpresenz.rb index 1a11e8db..d3a3932b 100644 --- a/plugins/netpresenz.rb +++ b/plugins/netpresenz.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetPresenz" diff --git a/plugins/netquery.rb b/plugins/netquery.rb index e2c0cdfc..65fb38cc 100644 --- a/plugins/netquery.rb +++ b/plugins/netquery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Netquery" diff --git a/plugins/netref.rb b/plugins/netref.rb index 226cc8d6..025388b3 100644 --- a/plugins/netref.rb +++ b/plugins/netref.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Netref" diff --git a/plugins/netscape-enterprise.rb b/plugins/netscape-enterprise.rb index 547c625a..c4cddb46 100644 --- a/plugins/netscape-enterprise.rb +++ b/plugins/netscape-enterprise.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Netscape-Enterprise" diff --git a/plugins/netscape-fasttrack.rb b/plugins/netscape-fasttrack.rb index 9fcd2032..522a00e3 100644 --- a/plugins/netscape-fasttrack.rb +++ b/plugins/netscape-fasttrack.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Netscape-FastTrack" diff --git a/plugins/netshelter-vpn.rb b/plugins/netshelter-vpn.rb index f91fd4e0..b268c17c 100644 --- a/plugins/netshelter-vpn.rb +++ b/plugins/netshelter-vpn.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetShelter-VPN" diff --git a/plugins/netsnap-web-camera.rb b/plugins/netsnap-web-camera.rb index bc660430..32526824 100644 --- a/plugins/netsnap-web-camera.rb +++ b/plugins/netsnap-web-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Netsnap-Web-Camera" diff --git a/plugins/netsuite.rb b/plugins/netsuite.rb index 2025bcea..01e610b9 100644 --- a/plugins/netsuite.rb +++ b/plugins/netsuite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetSuite" diff --git a/plugins/netsweeper.rb b/plugins/netsweeper.rb index e94f2bc2..a3e64510 100644 --- a/plugins/netsweeper.rb +++ b/plugins/netsweeper.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Netsweeper" diff --git a/plugins/nettalk-webserver.rb b/plugins/nettalk-webserver.rb index d70ef857..16110bdf 100644 --- a/plugins/nettalk-webserver.rb +++ b/plugins/nettalk-webserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetTalk-WebServer" diff --git a/plugins/nette-framework.rb b/plugins/nette-framework.rb index 0b5c9977..6df7fde5 100644 --- a/plugins/nette-framework.rb +++ b/plugins/nette-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nette-Framework" diff --git a/plugins/netvehicle.rb b/plugins/netvehicle.rb index e22a3946..a3e80f83 100644 --- a/plugins/netvehicle.rb +++ b/plugins/netvehicle.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetVehicle" diff --git a/plugins/netwin-dbabble.rb b/plugins/netwin-dbabble.rb index 5d13a899..c0aa8141 100644 --- a/plugins/netwin-dbabble.rb +++ b/plugins/netwin-dbabble.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetWin-DBabble" diff --git a/plugins/netwin-surgemail.rb b/plugins/netwin-surgemail.rb index 3b5f8477..80467017 100644 --- a/plugins/netwin-surgemail.rb +++ b/plugins/netwin-surgemail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetWin-Surgemail" diff --git a/plugins/network-tracker.rb b/plugins/network-tracker.rb index 258450cb..37415f4e 100644 --- a/plugins/network-tracker.rb +++ b/plugins/network-tracker.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Network-Tracker" diff --git a/plugins/networx.rb b/plugins/networx.rb index 3af6ab3a..34b7832e 100644 --- a/plugins/networx.rb +++ b/plugins/networx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetworX" diff --git a/plugins/newscoop.rb b/plugins/newscoop.rb index 00cec622..f4a2324f 100644 --- a/plugins/newscoop.rb +++ b/plugins/newscoop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Newscoop" diff --git a/plugins/newswall.rb b/plugins/newswall.rb index df84ac9e..7c2eff2a 100644 --- a/plugins/newswall.rb +++ b/plugins/newswall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "newswall" diff --git a/plugins/nexpose-security-console.rb b/plugins/nexpose-security-console.rb index 6a39ee45..3f86be8e 100644 --- a/plugins/nexpose-security-console.rb +++ b/plugins/nexpose-security-console.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NeXpose-Security-Console" diff --git a/plugins/nextgen-gallery.rb b/plugins/nextgen-gallery.rb index 923aa759..7616d2c6 100644 --- a/plugins/nextgen-gallery.rb +++ b/plugins/nextgen-gallery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NextGEN-Gallery" diff --git a/plugins/nexusphp.rb b/plugins/nexusphp.rb index def8674c..8caf3199 100644 --- a/plugins/nexusphp.rb +++ b/plugins/nexusphp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NexusPHP" diff --git a/plugins/nginx.rb b/plugins/nginx.rb index 8ea45ded..a8ee85ed 100644 --- a/plugins/nginx.rb +++ b/plugins/nginx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "nginx" diff --git a/plugins/niagara-web-server.rb b/plugins/niagara-web-server.rb index aef5cc8f..080e91b4 100644 --- a/plugins/niagara-web-server.rb +++ b/plugins/niagara-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Niagara-Web-Server" diff --git a/plugins/ninkobb.rb b/plugins/ninkobb.rb index cc4ae8a8..629c4958 100644 --- a/plugins/ninkobb.rb +++ b/plugins/ninkobb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NinkoBB" diff --git a/plugins/nintendo-ds.rb b/plugins/nintendo-ds.rb index 2cdda77a..e1fcfb03 100644 --- a/plugins/nintendo-ds.rb +++ b/plugins/nintendo-ds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nintendo-DS" diff --git a/plugins/nintendo-gamecube.rb b/plugins/nintendo-gamecube.rb index 6e494263..39b8b588 100644 --- a/plugins/nintendo-gamecube.rb +++ b/plugins/nintendo-gamecube.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nintendo-GameCube" diff --git a/plugins/nintendo-wii.rb b/plugins/nintendo-wii.rb index 2c9057dd..2ebb855c 100644 --- a/plugins/nintendo-wii.rb +++ b/plugins/nintendo-wii.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nintendo-Wii" diff --git a/plugins/nmap-log.rb b/plugins/nmap-log.rb index 78b39b07..1cb9cf22 100644 --- a/plugins/nmap-log.rb +++ b/plugins/nmap-log.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nmap-Log" diff --git a/plugins/nop-commerce.rb b/plugins/nop-commerce.rb index 7cd5b510..cf8389cd 100644 --- a/plugins/nop-commerce.rb +++ b/plugins/nop-commerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "nopCommerce" diff --git a/plugins/nopcommerce.rb b/plugins/nopcommerce.rb index b8e90ae8..fa893de0 100644 --- a/plugins/nopcommerce.rb +++ b/plugins/nopcommerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "nopCommerce" diff --git a/plugins/nortel-ethernet-routing-switch-config-file.rb b/plugins/nortel-ethernet-routing-switch-config-file.rb index 95f77ea5..3d05479d 100644 --- a/plugins/nortel-ethernet-routing-switch-config-file.rb +++ b/plugins/nortel-ethernet-routing-switch-config-file.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nortel-Ethernet-Routing-Switch-Config-File" diff --git a/plugins/nortel-router.rb b/plugins/nortel-router.rb index 303e7e66..d02b7918 100644 --- a/plugins/nortel-router.rb +++ b/plugins/nortel-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nortel-Router" diff --git a/plugins/noticeboardpro.rb b/plugins/noticeboardpro.rb index a9d5f339..fd7b6a56 100644 --- a/plugins/noticeboardpro.rb +++ b/plugins/noticeboardpro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NoticeBoardPro" diff --git a/plugins/novell-groupwise.rb b/plugins/novell-groupwise.rb index cfb3f9bc..7265d546 100644 --- a/plugins/novell-groupwise.rb +++ b/plugins/novell-groupwise.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Novell-Groupwise" diff --git a/plugins/novell-ichain.rb b/plugins/novell-ichain.rb index 07b2af73..cc7d2add 100644 --- a/plugins/novell-ichain.rb +++ b/plugins/novell-ichain.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Novell-iChain" diff --git a/plugins/novell-netware.rb b/plugins/novell-netware.rb index 59d8facb..06602649 100644 --- a/plugins/novell-netware.rb +++ b/plugins/novell-netware.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Novell-NetWare" diff --git a/plugins/novell-open-enterprise-server.rb b/plugins/novell-open-enterprise-server.rb index 1117a361..0a9ad266 100644 --- a/plugins/novell-open-enterprise-server.rb +++ b/plugins/novell-open-enterprise-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Novell-Open-Enterprise-Server" diff --git a/plugins/novell-sentinel-log-manager.rb b/plugins/novell-sentinel-log-manager.rb index a63fa683..64c001b6 100644 --- a/plugins/novell-sentinel-log-manager.rb +++ b/plugins/novell-sentinel-log-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Novell-Sentinel-Log-Manager" diff --git a/plugins/novnc.rb b/plugins/novnc.rb index e88d1054..44a2f46d 100644 --- a/plugins/novnc.rb +++ b/plugins/novnc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "noVNC" diff --git a/plugins/nsfocus.rb b/plugins/nsfocus.rb index 81addd77..34be821c 100644 --- a/plugins/nsfocus.rb +++ b/plugins/nsfocus.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NSFocus" diff --git a/plugins/ntop.rb b/plugins/ntop.rb index 0f0d9232..c2a2c6f5 100644 --- a/plugins/ntop.rb +++ b/plugins/ntop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ntop" diff --git a/plugins/nucleus-cms.rb b/plugins/nucleus-cms.rb index 3eb92744..0cba9586 100644 --- a/plugins/nucleus-cms.rb +++ b/plugins/nucleus-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nucleus-CMS" diff --git a/plugins/nucleus.rb b/plugins/nucleus.rb index 9f23d7c2..05fb122c 100644 --- a/plugins/nucleus.rb +++ b/plugins/nucleus.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nucleus" diff --git a/plugins/nukedit.rb b/plugins/nukedit.rb index 3009e1a6..71fa3e59 100644 --- a/plugins/nukedit.rb +++ b/plugins/nukedit.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Nukedit" diff --git a/plugins/nukeviet-cms.rb b/plugins/nukeviet-cms.rb index 17d0eddc..012daa2f 100644 --- a/plugins/nukeviet-cms.rb +++ b/plugins/nukeviet-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NukeViet-CMS" diff --git a/plugins/o2micro-firewall.rb b/plugins/o2micro-firewall.rb index abcadf99..22aa9258 100644 --- a/plugins/o2micro-firewall.rb +++ b/plugins/o2micro-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "O2Micro-Firewall" diff --git a/plugins/object.rb b/plugins/object.rb index 65742a40..6feece42 100644 --- a/plugins/object.rb +++ b/plugins/object.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Object" diff --git a/plugins/obm.rb b/plugins/obm.rb index 9280bf66..8a5bec57 100644 --- a/plugins/obm.rb +++ b/plugins/obm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OBM" diff --git a/plugins/oce.rb b/plugins/oce.rb index 24b71ab3..e9d925a8 100644 --- a/plugins/oce.rb +++ b/plugins/oce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oce" diff --git a/plugins/ocportal.rb b/plugins/ocportal.rb index 7d0ff135..0183a719 100644 --- a/plugins/ocportal.rb +++ b/plugins/ocportal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ocPortal" diff --git a/plugins/ocs-inventory-ng.rb b/plugins/ocs-inventory-ng.rb index 97a46261..141eb634 100644 --- a/plugins/ocs-inventory-ng.rb +++ b/plugins/ocs-inventory-ng.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OCS-Inventory-NG" diff --git a/plugins/octopussy.rb b/plugins/octopussy.rb index 54f156bc..96948ded 100644 --- a/plugins/octopussy.rb +++ b/plugins/octopussy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Octopussy" diff --git a/plugins/odoo.rb b/plugins/odoo.rb index 17a2bdc2..94943526 100644 --- a/plugins/odoo.rb +++ b/plugins/odoo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do diff --git a/plugins/oki-pbx.rb b/plugins/oki-pbx.rb index 9df177fb..26ded6ad 100644 --- a/plugins/oki-pbx.rb +++ b/plugins/oki-pbx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OkiPBX" diff --git a/plugins/oki-printer.rb b/plugins/oki-printer.rb index 98e2f945..b10ccd84 100644 --- a/plugins/oki-printer.rb +++ b/plugins/oki-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OKI-Printer" diff --git a/plugins/olat.rb b/plugins/olat.rb index be4d13a2..140cba6c 100644 --- a/plugins/olat.rb +++ b/plugins/olat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OLAT" diff --git a/plugins/onefilecms.rb b/plugins/onefilecms.rb index e1b4de1e..5c95e026 100644 --- a/plugins/onefilecms.rb +++ b/plugins/onefilecms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OneFileCMS" diff --git a/plugins/online-grades.rb b/plugins/online-grades.rb index d8da2eb6..0e19b8d9 100644 --- a/plugins/online-grades.rb +++ b/plugins/online-grades.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Online-Grades" diff --git a/plugins/onze-miner.rb b/plugins/onze-miner.rb index 1703c0d4..99c2847b 100644 --- a/plugins/onze-miner.rb +++ b/plugins/onze-miner.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ONZE-Miner" diff --git a/plugins/op5-monitor.rb b/plugins/op5-monitor.rb index 8d2ea996..0d31a0d2 100644 --- a/plugins/op5-monitor.rb +++ b/plugins/op5-monitor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Op5-Monitor" diff --git a/plugins/op5-statistics.rb b/plugins/op5-statistics.rb index fb1aa276..021389a8 100644 --- a/plugins/op5-statistics.rb +++ b/plugins/op5-statistics.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Op5-Statistics" diff --git a/plugins/open-admin-for-schools.rb b/plugins/open-admin-for-schools.rb index 90d24fe8..732b0828 100644 --- a/plugins/open-admin-for-schools.rb +++ b/plugins/open-admin-for-schools.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Open-Admin-for-Schools" diff --git a/plugins/open-auto-classifieds.rb b/plugins/open-auto-classifieds.rb index dd3c8831..3049d9c9 100644 --- a/plugins/open-auto-classifieds.rb +++ b/plugins/open-auto-classifieds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Open-Auto-Classifieds" diff --git a/plugins/open-blog.rb b/plugins/open-blog.rb index 4ef1e5d1..f73390a8 100644 --- a/plugins/open-blog.rb +++ b/plugins/open-blog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Open-Blog" diff --git a/plugins/open-freeway.rb b/plugins/open-freeway.rb index 4ca4f2ed..1e0cb487 100644 --- a/plugins/open-freeway.rb +++ b/plugins/open-freeway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Open-Freeway" diff --git a/plugins/open-graph-protocol.rb b/plugins/open-graph-protocol.rb index 8843f744..7fd187cd 100644 --- a/plugins/open-graph-protocol.rb +++ b/plugins/open-graph-protocol.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Open-Graph-Protocol" diff --git a/plugins/open-realty.rb b/plugins/open-realty.rb index b3a47894..161fccad 100644 --- a/plugins/open-realty.rb +++ b/plugins/open-realty.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Open-Realty" diff --git a/plugins/open-xchange.rb b/plugins/open-xchange.rb index ca0a7ea0..8129c85e 100644 --- a/plugins/open-xchange.rb +++ b/plugins/open-xchange.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Open-Xchange" diff --git a/plugins/open_search.rb b/plugins/open_search.rb index cfb6fe75..4bf7557e 100644 --- a/plugins/open_search.rb +++ b/plugins/open_search.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenSearch" diff --git a/plugins/opencart.rb b/plugins/opencart.rb index c44332b5..b9fffc0c 100644 --- a/plugins/opencart.rb +++ b/plugins/opencart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenCart" diff --git a/plugins/opencms.rb b/plugins/opencms.rb index feb8bb9d..1a5d1a72 100644 --- a/plugins/opencms.rb +++ b/plugins/opencms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenCms" diff --git a/plugins/openconf.rb b/plugins/openconf.rb index b82b7b59..eef4e2bf 100644 --- a/plugins/openconf.rb +++ b/plugins/openconf.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenConf" diff --git a/plugins/opendocman.rb b/plugins/opendocman.rb index 400f38ff..500ca976 100644 --- a/plugins/opendocman.rb +++ b/plugins/opendocman.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenDocMan" diff --git a/plugins/openemr.rb b/plugins/openemr.rb index ead6ed4c..a717c181 100644 --- a/plugins/openemr.rb +++ b/plugins/openemr.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenEMR" diff --git a/plugins/openengine.rb b/plugins/openengine.rb index a219e7d0..4f53b32c 100644 --- a/plugins/openengine.rb +++ b/plugins/openengine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "openEngine" diff --git a/plugins/openfiler.rb b/plugins/openfiler.rb index 38770a7f..30a53d83 100644 --- a/plugins/openfiler.rb +++ b/plugins/openfiler.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Openfiler" diff --git a/plugins/openi.rb b/plugins/openi.rb index 4efaa2c4..e1ff65a4 100644 --- a/plugins/openi.rb +++ b/plugins/openi.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenI" diff --git a/plugins/openid.rb b/plugins/openid.rb index a82dc509..4000ca93 100644 --- a/plugins/openid.rb +++ b/plugins/openid.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenID" diff --git a/plugins/openkm.rb b/plugins/openkm.rb index aa6aad96..466d0b5a 100644 --- a/plugins/openkm.rb +++ b/plugins/openkm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenKM" diff --git a/plugins/openlabyrinth.rb b/plugins/openlabyrinth.rb index 45aa9c38..59289667 100644 --- a/plugins/openlabyrinth.rb +++ b/plugins/openlabyrinth.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenLabyrinth" diff --git a/plugins/openlookup.rb b/plugins/openlookup.rb index 18bf3a57..116bc2be 100644 --- a/plugins/openlookup.rb +++ b/plugins/openlookup.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenLookup" diff --git a/plugins/opennewsletter.rb b/plugins/opennewsletter.rb index 48e2e7f1..e74f01ff 100644 --- a/plugins/opennewsletter.rb +++ b/plugins/opennewsletter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenNewsletter" diff --git a/plugins/opennms.rb b/plugins/opennms.rb index 93ec7b2e..b78aaa25 100644 --- a/plugins/opennms.rb +++ b/plugins/opennms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenNMS" diff --git a/plugins/openresty.rb b/plugins/openresty.rb new file mode 100644 index 00000000..edb7f4c3 --- /dev/null +++ b/plugins/openresty.rb @@ -0,0 +1,32 @@ +## +# 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 "OpenResty" + authors [ + "Andrew Horton", # v0.1 # 2021-01-16 # Created plugin + ] + version "0.1" + description "OpenResty® is a dynamic web platform based on NGINX and LuaJIT." + website "https://openresty.org/" + + # Dorks # + dorks [ + '"If you see this page, the OpenResty web platform is successfully installed"', + ] + + # Matches # + matches [ + # Default install page + { :text => "If you see this page, the OpenResty web platform is successfully installed and working" }, + + # Default 404 page + { :regexp => /


openresty<\/center>\s*<\/body>\s*<\/html>/ }, + + # HTTP Server header + { :search => "headers[server]", :version => /^openresty\/(.*)/ } + ] +end diff --git a/plugins/openssl.rb b/plugins/openssl.rb index b4b97b21..91f32898 100644 --- a/plugins/openssl.rb +++ b/plugins/openssl.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenSSL" diff --git a/plugins/openwrt.rb b/plugins/openwrt.rb index f3d478b4..537ed949 100644 --- a/plugins/openwrt.rb +++ b/plugins/openwrt.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenWrt" diff --git a/plugins/openx.rb b/plugins/openx.rb index ce914b6b..99549875 100644 --- a/plugins/openx.rb +++ b/plugins/openx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OpenX" diff --git a/plugins/oracle-access-manager.rb b/plugins/oracle-access-manager.rb index 1bf0945a..863a3ea8 100644 --- a/plugins/oracle-access-manager.rb +++ b/plugins/oracle-access-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-Access-Manager" diff --git a/plugins/oracle-adf-faces.rb b/plugins/oracle-adf-faces.rb index 7270791c..a9241699 100644 --- a/plugins/oracle-adf-faces.rb +++ b/plugins/oracle-adf-faces.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-ADF-Faces" diff --git a/plugins/oracle-application-server.rb b/plugins/oracle-application-server.rb index bf8146ae..eb7929ca 100644 --- a/plugins/oracle-application-server.rb +++ b/plugins/oracle-application-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-Application-Server" diff --git a/plugins/oracle-database.rb b/plugins/oracle-database.rb index 7dd48750..c2f7d983 100644 --- a/plugins/oracle-database.rb +++ b/plugins/oracle-database.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-Database" diff --git a/plugins/oracle-fusion-middleware.rb b/plugins/oracle-fusion-middleware.rb index f9e043e3..8c739de3 100644 --- a/plugins/oracle-fusion-middleware.rb +++ b/plugins/oracle-fusion-middleware.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-Fusion-Middleware" diff --git a/plugins/oracle-http-server.rb b/plugins/oracle-http-server.rb index 42c710ad..831d2166 100644 --- a/plugins/oracle-http-server.rb +++ b/plugins/oracle-http-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-HTTP-Server" diff --git a/plugins/oracle-internet-application-server.rb b/plugins/oracle-internet-application-server.rb index bd96a903..d476183f 100644 --- a/plugins/oracle-internet-application-server.rb +++ b/plugins/oracle-internet-application-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-Internet-Application-Server" diff --git a/plugins/oracle-iplanet.rb b/plugins/oracle-iplanet.rb index 8e8bccc3..48416688 100644 --- a/plugins/oracle-iplanet.rb +++ b/plugins/oracle-iplanet.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-iPlanet" diff --git a/plugins/oracle-primerva.rb b/plugins/oracle-primerva.rb index 7c14fc43..64f1729e 100644 --- a/plugins/oracle-primerva.rb +++ b/plugins/oracle-primerva.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-Primerva" diff --git a/plugins/oracle-real-user-experience-insight.rb b/plugins/oracle-real-user-experience-insight.rb index 88079646..cfee73d9 100644 --- a/plugins/oracle-real-user-experience-insight.rb +++ b/plugins/oracle-real-user-experience-insight.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-Real-User-Experience-Insight" diff --git a/plugins/oracle-siebel-crm.rb b/plugins/oracle-siebel-crm.rb index 4609fd59..66544c6a 100644 --- a/plugins/oracle-siebel-crm.rb +++ b/plugins/oracle-siebel-crm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-Siebel-CRM" diff --git a/plugins/oracle-webdb.rb b/plugins/oracle-webdb.rb index baaa8492..b99f7358 100644 --- a/plugins/oracle-webdb.rb +++ b/plugins/oracle-webdb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Oracle-WebDB" diff --git a/plugins/orangehrm.rb b/plugins/orangehrm.rb index db872056..77e2e7f2 100644 --- a/plugins/orangehrm.rb +++ b/plugins/orangehrm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OrangeHRM" diff --git a/plugins/orbis-cms.rb b/plugins/orbis-cms.rb index 00a4ed86..65767a9d 100644 --- a/plugins/orbis-cms.rb +++ b/plugins/orbis-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Orbis-CMS" diff --git a/plugins/orca-platform.rb b/plugins/orca-platform.rb index a1b44e4c..09a8b7ff 100644 --- a/plugins/orca-platform.rb +++ b/plugins/orca-platform.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ORCA-Platform" diff --git a/plugins/orenosv.rb b/plugins/orenosv.rb index 36628758..6ca327fb 100644 --- a/plugins/orenosv.rb +++ b/plugins/orenosv.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Orenosv" diff --git a/plugins/orite-301-camera.rb b/plugins/orite-301-camera.rb index feb91512..aee406f9 100644 --- a/plugins/orite-301-camera.rb +++ b/plugins/orite-301-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ORITE-301-Camera" diff --git a/plugins/oscommerce.rb b/plugins/oscommerce.rb index 9c71f0b1..42202838 100644 --- a/plugins/oscommerce.rb +++ b/plugins/oscommerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OSCommerce" diff --git a/plugins/ossim.rb b/plugins/ossim.rb index 0ea409d4..2fcf24b4 100644 --- a/plugins/ossim.rb +++ b/plugins/ossim.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OSSIM" diff --git a/plugins/osticket.rb b/plugins/osticket.rb index 90e97e74..74ed1939 100644 --- a/plugins/osticket.rb +++ b/plugins/osticket.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "osTicket" diff --git a/plugins/otrs.rb b/plugins/otrs.rb index c72a5c6c..5d5bd152 100644 --- a/plugins/otrs.rb +++ b/plugins/otrs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Open-Source-Ticket-Request-System" diff --git a/plugins/ourdisclaimer.rb b/plugins/ourdisclaimer.rb index 95f1a395..9c597f7c 100644 --- a/plugins/ourdisclaimer.rb +++ b/plugins/ourdisclaimer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OurDisclaimer" diff --git a/plugins/outlook-web-app.rb b/plugins/outlook-web-app.rb index 89005b2a..709959ba 100644 --- a/plugins/outlook-web-app.rb +++ b/plugins/outlook-web-app.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Outlook-Web-App" diff --git a/plugins/ovbb.rb b/plugins/ovbb.rb index ea66433c..5809da52 100644 --- a/plugins/ovbb.rb +++ b/plugins/ovbb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OvBB" diff --git a/plugins/owl-intranet-engine.rb b/plugins/owl-intranet-engine.rb index 5a8b1816..16b35f67 100644 --- a/plugins/owl-intranet-engine.rb +++ b/plugins/owl-intranet-engine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Owl-Intranet-Engine" diff --git a/plugins/ownserver.rb b/plugins/ownserver.rb index e3c14a95..c0fae72b 100644 --- a/plugins/ownserver.rb +++ b/plugins/ownserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "OwnServer" diff --git a/plugins/packetshaper.rb b/plugins/packetshaper.rb index 0dbff681..02091870 100644 --- a/plugins/packetshaper.rb +++ b/plugins/packetshaper.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PacketShaper" diff --git a/plugins/packetwave.rb b/plugins/packetwave.rb index be25cad6..fc3b3281 100644 --- a/plugins/packetwave.rb +++ b/plugins/packetwave.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PacketWave" diff --git a/plugins/pagecookery-microblog.rb b/plugins/pagecookery-microblog.rb index ea356955..494dcfec 100644 --- a/plugins/pagecookery-microblog.rb +++ b/plugins/pagecookery-microblog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PageCookery-Microblog" diff --git a/plugins/pageup-people.rb b/plugins/pageup-people.rb index 20e54466..f4a8802c 100644 --- a/plugins/pageup-people.rb +++ b/plugins/pageup-people.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PageUp-People" diff --git a/plugins/panasonic-network-camera.rb b/plugins/panasonic-network-camera.rb index 9b1458e3..5b523140 100644 --- a/plugins/panasonic-network-camera.rb +++ b/plugins/panasonic-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Panasonic-Network-Camera" diff --git a/plugins/pandora-fms.rb b/plugins/pandora-fms.rb index ed6ed92f..89bf774f 100644 --- a/plugins/pandora-fms.rb +++ b/plugins/pandora-fms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pandora-FMS" diff --git a/plugins/pantheon.rb b/plugins/pantheon.rb index f6a6da4a..5557bcf9 100644 --- a/plugins/pantheon.rb +++ b/plugins/pantheon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pantheon" diff --git a/plugins/parallel-crystal-load-balancer.rb b/plugins/parallel-crystal-load-balancer.rb index 17d474ca..863363f2 100644 --- a/plugins/parallel-crystal-load-balancer.rb +++ b/plugins/parallel-crystal-load-balancer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Parallel-Crystal-Load-Balancer" diff --git a/plugins/parature.rb b/plugins/parature.rb index f2f993cc..1f17b456 100644 --- a/plugins/parature.rb +++ b/plugins/parature.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Parature" diff --git a/plugins/parked-domain.rb b/plugins/parked-domain.rb index 054854f9..461c23e4 100644 --- a/plugins/parked-domain.rb +++ b/plugins/parked-domain.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Parked-Domain" diff --git a/plugins/passenger.rb b/plugins/passenger.rb index cc3c9166..17f95fce 100644 --- a/plugins/passenger.rb +++ b/plugins/passenger.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Passenger" diff --git a/plugins/passport.rb b/plugins/passport.rb index f815d3f3..d5c37cfa 100644 --- a/plugins/passport.rb +++ b/plugins/passport.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Passport" diff --git a/plugins/password_field.rb b/plugins/password_field.rb index 181d8e7c..41af186c 100644 --- a/plugins/password_field.rb +++ b/plugins/password_field.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PasswordField" diff --git a/plugins/pc4uploader.rb b/plugins/pc4uploader.rb index 91e42344..ca0f3c18 100644 --- a/plugins/pc4uploader.rb +++ b/plugins/pc4uploader.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pc4Uploader" diff --git a/plugins/pcextreme.rb b/plugins/pcextreme.rb index e51ee7b9..fed88c32 100644 --- a/plugins/pcextreme.rb +++ b/plugins/pcextreme.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "pcextreme" diff --git a/plugins/pcpin-chat.rb b/plugins/pcpin-chat.rb index 47b82566..aa4f81ec 100644 --- a/plugins/pcpin-chat.rb +++ b/plugins/pcpin-chat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PCPIN-Chat" diff --git a/plugins/pear.rb b/plugins/pear.rb index 00f158c2..00bbb089 100644 --- a/plugins/pear.rb +++ b/plugins/pear.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PEAR" diff --git a/plugins/pegarules.rb b/plugins/pegarules.rb index fc153d00..a84f83c0 100644 --- a/plugins/pegarules.rb +++ b/plugins/pegarules.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PegaRULES" diff --git a/plugins/perfectone-voip-phone.rb b/plugins/perfectone-voip-phone.rb index 367d8163..8d489e3a 100644 --- a/plugins/perfectone-voip-phone.rb +++ b/plugins/perfectone-voip-phone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Perfectone-VOIP-Phone" diff --git a/plugins/perl.rb b/plugins/perl.rb index 4600857f..34ca8b31 100644 --- a/plugins/perl.rb +++ b/plugins/perl.rb @@ -2,34 +2,36 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Perl" authors [ "Brendan Coles ", # 2010-10-26 # v0.2 # Added content-type application/perl match. + "Andrew Horton" # v0.3 #2021-02-28 # added file extension detections and move passive block to matches + ] -version "0.2" +version "0.3" description "Perl is a highly capable, feature-rich programming language with over 22 years of development." website "http://www.perl.org/" # About 309934 ShodanHQ results for "server: perl/v" @ 2010-10-26 - -# Passive # -passive do - m=[] +# Matches # +matches [ # HTTP Server Header - m << { :version=>@headers["server"].to_s.scan(/[^\r^\n]*Perl\/v([^\s^\r^\n]+)/i).flatten } if @headers["server"].to_s =~ /[^\r^\n]*Perl\/v([^\s^\r^\n]+)/i + { :name=>"HTTP Server Header", :version=>/[^\r^\n]*Perl\/v([^\s^\r^\n]+)/i, :search=>"headers[server]" }, # HTTP Content-Type Header - m << { :name=>"application/perl" } if @headers["content-type"] =~ /application\/perl/i + { :name=>"HTTP Content-Type Header", :regexp=>/application\/perl/i, :search=>"headers[content-type]" }, + + # File Extension + { :name=>"File extension", :regexp=>/^(pl)$/, :search=>"uri.extension" } + +] - m - -end end diff --git a/plugins/perlfect-search.rb b/plugins/perlfect-search.rb index f34ba3f8..f2705268 100644 --- a/plugins/perlfect-search.rb +++ b/plugins/perlfect-search.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Perlfect-Search" diff --git a/plugins/pg-real-estate-solution.rb b/plugins/pg-real-estate-solution.rb index f9e36eee..47ff5c7e 100644 --- a/plugins/pg-real-estate-solution.rb +++ b/plugins/pg-real-estate-solution.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PG-Real-Estate-Solution" diff --git a/plugins/pg-roomate-finder-solution.rb b/plugins/pg-roomate-finder-solution.rb index bf4e4eab..454281fa 100644 --- a/plugins/pg-roomate-finder-solution.rb +++ b/plugins/pg-roomate-finder-solution.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PG-Roomate-Finder-Solution" diff --git a/plugins/pharos-lpc.rb b/plugins/pharos-lpc.rb index a44fd133..dc522b04 100644 --- a/plugins/pharos-lpc.rb +++ b/plugins/pharos-lpc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pharos-LPC" diff --git a/plugins/philboard.rb b/plugins/philboard.rb index eee5ea9a..56bcd8ca 100644 --- a/plugins/philboard.rb +++ b/plugins/philboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PhilBoard" diff --git a/plugins/phion-firewall.rb b/plugins/phion-firewall.rb index bd86dc0f..a9837e2c 100644 --- a/plugins/phion-firewall.rb +++ b/plugins/phion-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Phion-Firewall" diff --git a/plugins/phoenix-contact-device.rb b/plugins/phoenix-contact-device.rb index 4015ba40..5cfbb670 100644 --- a/plugins/phoenix-contact-device.rb +++ b/plugins/phoenix-contact-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Phoenix-Contact-Device" diff --git a/plugins/phorum.rb b/plugins/phorum.rb index 645514c6..457188ca 100644 --- a/plugins/phorum.rb +++ b/plugins/phorum.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Phorum" diff --git a/plugins/photopost-php.rb b/plugins/photopost-php.rb index 3627cf6d..dc50821c 100644 --- a/plugins/photopost-php.rb +++ b/plugins/photopost-php.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PhotoPost-PHP" diff --git a/plugins/photostore.rb b/plugins/photostore.rb index 5cb188bc..66979395 100644 --- a/plugins/photostore.rb +++ b/plugins/photostore.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PhotoStore" diff --git a/plugins/php-cake.rb b/plugins/php-cake.rb index 2630986c..6c868392 100644 --- a/plugins/php-cake.rb +++ b/plugins/php-cake.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPCake" diff --git a/plugins/php-charts.rb b/plugins/php-charts.rb index e8d13a92..2c8204b2 100644 --- a/plugins/php-charts.rb +++ b/plugins/php-charts.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "php-Charts" diff --git a/plugins/php-csl.rb b/plugins/php-csl.rb index e363eddc..dc197e59 100644 --- a/plugins/php-csl.rb +++ b/plugins/php-csl.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-CSL" diff --git a/plugins/php-easy-data.rb b/plugins/php-easy-data.rb index 68b99d57..2e6b2527 100644 --- a/plugins/php-easy-data.rb +++ b/plugins/php-easy-data.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPEasyData" diff --git a/plugins/php-fusion.rb b/plugins/php-fusion.rb index 261bd0e3..ed06e2fa 100644 --- a/plugins/php-fusion.rb +++ b/plugins/php-fusion.rb @@ -8,7 +8,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Fusion" diff --git a/plugins/php-hosting-directory.rb b/plugins/php-hosting-directory.rb index e44a8b00..eef755d6 100644 --- a/plugins/php-hosting-directory.rb +++ b/plugins/php-hosting-directory.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Hosting-Directory" diff --git a/plugins/php-layers.rb b/plugins/php-layers.rb index ebb3b870..30d187d3 100644 --- a/plugins/php-layers.rb +++ b/plugins/php-layers.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Layers" diff --git a/plugins/php-link-directory.rb b/plugins/php-link-directory.rb index 0bb24cf6..e1354717 100644 --- a/plugins/php-link-directory.rb +++ b/plugins/php-link-directory.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Link-Directory" diff --git a/plugins/php-live.rb b/plugins/php-live.rb index 6edaa747..5c481901 100644 --- a/plugins/php-live.rb +++ b/plugins/php-live.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Live" diff --git a/plugins/php-mall.rb b/plugins/php-mall.rb index 8d52cb88..3128811f 100644 --- a/plugins/php-mall.rb +++ b/plugins/php-mall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Mall" diff --git a/plugins/php-mes-films.rb b/plugins/php-mes-films.rb index 82afcfbd..f900bf7a 100644 --- a/plugins/php-mes-films.rb +++ b/plugins/php-mes-films.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PhpMesFilms" diff --git a/plugins/php-nuke.rb b/plugins/php-nuke.rb index 94035b7d..f55dab31 100644 --- a/plugins/php-nuke.rb +++ b/plugins/php-nuke.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPNuke" diff --git a/plugins/php-photo-album.rb b/plugins/php-photo-album.rb index 4df4538b..a959df10 100644 --- a/plugins/php-photo-album.rb +++ b/plugins/php-photo-album.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Photo-Album" diff --git a/plugins/php-photo-gallery.rb b/plugins/php-photo-gallery.rb index 88c12681..c1ca4278 100644 --- a/plugins/php-photo-gallery.rb +++ b/plugins/php-photo-gallery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Photo-Gallery" diff --git a/plugins/php-ping.rb b/plugins/php-ping.rb index dc26fc6c..83615fe5 100644 --- a/plugins/php-ping.rb +++ b/plugins/php-ping.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "php-ping" diff --git a/plugins/php-pro-bid.rb b/plugins/php-pro-bid.rb index 8f2e025f..944d4ddd 100644 --- a/plugins/php-pro-bid.rb +++ b/plugins/php-pro-bid.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Pro-Bid" diff --git a/plugins/php-server-monitor.rb b/plugins/php-server-monitor.rb index 162cf936..f96e712f 100644 --- a/plugins/php-server-monitor.rb +++ b/plugins/php-server-monitor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Server-Monitor" diff --git a/plugins/php-shell.rb b/plugins/php-shell.rb index 8d82e1a0..8b411832 100644 --- a/plugins/php-shell.rb +++ b/plugins/php-shell.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Shell" diff --git a/plugins/php-slim.rb b/plugins/php-slim.rb index 09cdbbce..754f2b76 100644 --- a/plugins/php-slim.rb +++ b/plugins/php-slim.rb @@ -2,7 +2,7 @@ # 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 +# http://morningstarsecurity.com/research/whatweb ## # Version 0.1 # 2020-04-04 # Marcelo Gimenes # Version 0.2 # 2020-04-21 # Marcelo Gimenes diff --git a/plugins/php-support-tickets.rb b/plugins/php-support-tickets.rb index 8a6d29b3..ccb574da 100644 --- a/plugins/php-support-tickets.rb +++ b/plugins/php-support-tickets.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Support-Tickets" diff --git a/plugins/php-update.rb b/plugins/php-update.rb index 5fb0aa78..b3998504 100644 --- a/plugins/php-update.rb +++ b/plugins/php-update.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-Update" diff --git a/plugins/php-xmlrpc.rb b/plugins/php-xmlrpc.rb index fb091159..f9972b19 100644 --- a/plugins/php-xmlrpc.rb +++ b/plugins/php-xmlrpc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP-XMLRPC" diff --git a/plugins/php.rb b/plugins/php.rb index d1bc2d6c..fcd8bff0 100644 --- a/plugins/php.rb +++ b/plugins/php.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP" @@ -13,8 +13,9 @@ authors [ # Brendan Coles , # v0.4 # 2011-05-25 # Merged php-error plugin and PHP plugin. Added aggressive version detection using PHP credits page. Added detection for "PHP Warning" HTTP header. # Andrew Horton, # v0.5 # 2011-08-23 # # Andrew Horton, # v0.6 # 2016-04-23 # Moved patterns from passive function to matches[]. + # Andrew Horton # v0.7 #2021-02-28 # added file extension detections and another Google Dork ] -version "0.6" +version "0.7" description "PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. This plugin identifies PHP errors, modules and versions and extracts the local file path and username if present." website "http://www.php.net/" @@ -32,7 +33,8 @@ website "http://www.php.net/" # Dorks # dorks [ 'PHP warning|error "in /home/*.php on line" ext:php -forum', -'warning|error PHP inurl:error_log "in /home/*.php on line"' +'warning|error PHP inurl:error_log "in /home/*.php on line"', +"filetype:php" ] @@ -53,7 +55,6 @@ matches [ # PHP-Error # Extract username from windows style file path { :account=>/(Warning|Fatal error)<\/b>: .* in [A-Z]{1}:\\(Documents and Settings|Users)\\([^<^\\]+)\\[^<]*<\/b> on line [0-9]+<\/b>
/i, :offset=>2 }, - # HTTP # Server # Version Detection { :version=>/[^\r^\n]*PHP\/([^\s^\r^\n]+)/, :search=>"headers[server]" }, @@ -78,8 +79,9 @@ matches [ # PHP Warning Header { :name=>"PHP Warning Header", :regexp=>//, :search=>"headers[php warning]" }, +# File Extension +{ :name=>"File extension", :regexp=>/^(php|phtml|php3|php4|php5|phps)$/, :search=>"uri.extension" } + ] - - end diff --git a/plugins/php121.rb b/plugins/php121.rb index 95b47cdd..1f3caaab 100644 --- a/plugins/php121.rb +++ b/plugins/php121.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHP121" diff --git a/plugins/phpatm.rb b/plugins/phpatm.rb index 2bc4f205..bf9fb7b9 100644 --- a/plugins/phpatm.rb +++ b/plugins/phpatm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpATM" diff --git a/plugins/phpbazar.rb b/plugins/phpbazar.rb index 7ba87e5a..4b918437 100644 --- a/plugins/phpbazar.rb +++ b/plugins/phpbazar.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpBazar" diff --git a/plugins/phpbb.rb b/plugins/phpbb.rb index a5b9b473..cf9db1ad 100644 --- a/plugins/phpbb.rb +++ b/plugins/phpbb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpBB" diff --git a/plugins/phpcityportal.rb b/plugins/phpcityportal.rb index 47969e8e..c46c869d 100644 --- a/plugins/phpcityportal.rb +++ b/plugins/phpcityportal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPCityportal" diff --git a/plugins/phpcollab.rb b/plugins/phpcollab.rb index ca5dc49d..4bfee80a 100644 --- a/plugins/phpcollab.rb +++ b/plugins/phpcollab.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpCollab" diff --git a/plugins/phpcow.rb b/plugins/phpcow.rb index 3448ac83..80979242 100644 --- a/plugins/phpcow.rb +++ b/plugins/phpcow.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPCow" diff --git a/plugins/phpdealerlocator.rb b/plugins/phpdealerlocator.rb index e223c317..9214516b 100644 --- a/plugins/phpdealerlocator.rb +++ b/plugins/phpdealerlocator.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpDealerLocator" diff --git a/plugins/phpdenora.rb b/plugins/phpdenora.rb index 466179fe..f7c1e9fa 100644 --- a/plugins/phpdenora.rb +++ b/plugins/phpdenora.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpDenora" diff --git a/plugins/phpdirector.rb b/plugins/phpdirector.rb index 863f7616..b58c27a9 100644 --- a/plugins/phpdirector.rb +++ b/plugins/phpdirector.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPDirector" diff --git a/plugins/phpdocumentor.rb b/plugins/phpdocumentor.rb index 6363a550..8d1b770c 100644 --- a/plugins/phpdocumentor.rb +++ b/plugins/phpdocumentor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpDocumentor" diff --git a/plugins/phpfm.rb b/plugins/phpfm.rb index 436e801d..acb4a3b1 100644 --- a/plugins/phpfm.rb +++ b/plugins/phpfm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPFM" diff --git a/plugins/phpfox.rb b/plugins/phpfox.rb index 6464c1c4..96add5c3 100644 --- a/plugins/phpfox.rb +++ b/plugins/phpfox.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpFox" diff --git a/plugins/phpfreechat.rb b/plugins/phpfreechat.rb index 6b011a1f..a684e664 100644 --- a/plugins/phpfreechat.rb +++ b/plugins/phpfreechat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpFreeChat" diff --git a/plugins/phpgradebook.rb b/plugins/phpgradebook.rb index cb6ede1e..1e8b80cb 100644 --- a/plugins/phpgradebook.rb +++ b/plugins/phpgradebook.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPGradeBook" diff --git a/plugins/phpgraphy.rb b/plugins/phpgraphy.rb index 03ffe234..f2391829 100644 --- a/plugins/phpgraphy.rb +++ b/plugins/phpgraphy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpGraphy" diff --git a/plugins/phpgreetcards.rb b/plugins/phpgreetcards.rb index 50c89f91..0082c959 100644 --- a/plugins/phpgreetcards.rb +++ b/plugins/phpgreetcards.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpGreetCards" diff --git a/plugins/phphotoalbum.rb b/plugins/phphotoalbum.rb index dce49642..0857cfe4 100644 --- a/plugins/phphotoalbum.rb +++ b/plugins/phphotoalbum.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phPhotoAlbum" diff --git a/plugins/phpinfo.rb b/plugins/phpinfo.rb index 8a3d76ff..e429bbaf 100644 --- a/plugins/phpinfo.rb +++ b/plugins/phpinfo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpinfo" diff --git a/plugins/phpkit.rb b/plugins/phpkit.rb index cee52b89..3c4079c6 100644 --- a/plugins/phpkit.rb +++ b/plugins/phpkit.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPKIT" diff --git a/plugins/phpldapadmin.rb b/plugins/phpldapadmin.rb index 826e06e5..9e0acc55 100644 --- a/plugins/phpldapadmin.rb +++ b/plugins/phpldapadmin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpLDAPadmin" diff --git a/plugins/phplist.rb b/plugins/phplist.rb index 1fcb0dfa..ee8dcc38 100644 --- a/plugins/phplist.rb +++ b/plugins/phplist.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phplist" diff --git a/plugins/phpmailshare.rb b/plugins/phpmailshare.rb index ef5955d5..e7882f8e 100644 --- a/plugins/phpmailshare.rb +++ b/plugins/phpmailshare.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMailShare" diff --git a/plugins/phpmoneybooks.rb b/plugins/phpmoneybooks.rb index ef49e9f1..0466d1e0 100644 --- a/plugins/phpmoneybooks.rb +++ b/plugins/phpmoneybooks.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMoneyBooks" diff --git a/plugins/phpmumbleadmin.rb b/plugins/phpmumbleadmin.rb index 7ccee1a8..8bc2ed50 100644 --- a/plugins/phpmumbleadmin.rb +++ b/plugins/phpmumbleadmin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMumbleAdmin" diff --git a/plugins/phpmyadmin.rb b/plugins/phpmyadmin.rb index f48a1d74..d30e10bc 100644 --- a/plugins/phpmyadmin.rb +++ b/plugins/phpmyadmin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMyAdmin" diff --git a/plugins/phpmybackuppro.rb b/plugins/phpmybackuppro.rb index d84a865f..325103a3 100644 --- a/plugins/phpmybackuppro.rb +++ b/plugins/phpmybackuppro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMyBackupPro" diff --git a/plugins/phpmybible.rb b/plugins/phpmybible.rb index 38d057e6..aa68e046 100644 --- a/plugins/phpmybible.rb +++ b/plugins/phpmybible.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMyBible" diff --git a/plugins/phpmyfaq.rb b/plugins/phpmyfaq.rb index 213ff352..0330fb7b 100644 --- a/plugins/phpmyfaq.rb +++ b/plugins/phpmyfaq.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMyFAQ" diff --git a/plugins/phpmyrealty.rb b/plugins/phpmyrealty.rb index a9704b7c..83c99f13 100644 --- a/plugins/phpmyrealty.rb +++ b/plugins/phpmyrealty.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMyRealty" diff --git a/plugins/phpmysport.rb b/plugins/phpmysport.rb index f22e6b09..ce83e119 100644 --- a/plugins/phpmysport.rb +++ b/plugins/phpmysport.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMySport" diff --git a/plugins/phpmytourney.rb b/plugins/phpmytourney.rb index fe017d1f..940d1d1f 100644 --- a/plugins/phpmytourney.rb +++ b/plugins/phpmytourney.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpMyTourney" diff --git a/plugins/phpopenchat.rb b/plugins/phpopenchat.rb index 5aef9424..50c778d5 100644 --- a/plugins/phpopenchat.rb +++ b/plugins/phpopenchat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPOpenChat" diff --git a/plugins/phportfolio.rb b/plugins/phportfolio.rb index ff9579b1..258f3084 100644 --- a/plugins/phportfolio.rb +++ b/plugins/phportfolio.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPortfolio" diff --git a/plugins/phppgadmin.rb b/plugins/phppgadmin.rb index cc22ad50..0c968e95 100644 --- a/plugins/phppgadmin.rb +++ b/plugins/phppgadmin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpPgAdmin" diff --git a/plugins/phpquestionnaire.rb b/plugins/phpquestionnaire.rb index 6b86f160..5be8c667 100644 --- a/plugins/phpquestionnaire.rb +++ b/plugins/phpquestionnaire.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpQuestionnaire" diff --git a/plugins/phpraid.rb b/plugins/phpraid.rb index 40136c93..e5b9eeae 100644 --- a/plugins/phpraid.rb +++ b/plugins/phpraid.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpRaid" diff --git a/plugins/phprechnung.rb b/plugins/phprechnung.rb index 19d09fe4..17f93bff 100644 --- a/plugins/phprechnung.rb +++ b/plugins/phprechnung.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpRechnung" diff --git a/plugins/phpremoteview.rb b/plugins/phpremoteview.rb index 36ee9052..c64a4c8e 100644 --- a/plugins/phpremoteview.rb +++ b/plugins/phpremoteview.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpRemoteView" diff --git a/plugins/phpscheduleit.rb b/plugins/phpscheduleit.rb index 66020330..1b7671f0 100644 --- a/plugins/phpscheduleit.rb +++ b/plugins/phpscheduleit.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpScheduleIt" diff --git a/plugins/phpshop.rb b/plugins/phpshop.rb index 8d548007..7095733d 100644 --- a/plugins/phpshop.rb +++ b/plugins/phpshop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPShop" diff --git a/plugins/phpsysinfo.rb b/plugins/phpsysinfo.rb index f6e654fa..c2c37335 100644 --- a/plugins/phpsysinfo.rb +++ b/plugins/phpsysinfo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpSysInfo" diff --git a/plugins/phpvid.rb b/plugins/phpvid.rb index bca6c741..455fa661 100644 --- a/plugins/phpvid.rb +++ b/plugins/phpvid.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpVID" diff --git a/plugins/phpvms.rb b/plugins/phpvms.rb index 65fb1ac7..127cbdce 100644 --- a/plugins/phpvms.rb +++ b/plugins/phpvms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpVMS" diff --git a/plugins/phpwcms.rb b/plugins/phpwcms.rb index 66e8d99b..a2decb6a 100644 --- a/plugins/phpwcms.rb +++ b/plugins/phpwcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phpwcms" diff --git a/plugins/phpwind.rb b/plugins/phpwind.rb index b8fcc28e..75652670 100644 --- a/plugins/phpwind.rb +++ b/plugins/phpwind.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PHPWind" diff --git a/plugins/phxeventmanager.rb b/plugins/phxeventmanager.rb index 9e525887..2ee4d383 100644 --- a/plugins/phxeventmanager.rb +++ b/plugins/phxeventmanager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "phxEventManager" diff --git a/plugins/pi3web.rb b/plugins/pi3web.rb index 4f294dcd..c252caf7 100644 --- a/plugins/pi3web.rb +++ b/plugins/pi3web.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pi3Web" diff --git a/plugins/piecrust.rb b/plugins/piecrust.rb index 902649f3..cc5e5d7f 100644 --- a/plugins/piecrust.rb +++ b/plugins/piecrust.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PieCrust" diff --git a/plugins/pithcms.rb b/plugins/pithcms.rb index f308e3b0..173e280f 100644 --- a/plugins/pithcms.rb +++ b/plugins/pithcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PithCMS" diff --git a/plugins/pivot.rb b/plugins/pivot.rb index bfcc5313..c7d6ccac 100644 --- a/plugins/pivot.rb +++ b/plugins/pivot.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pivot" diff --git a/plugins/pivotal-crm.rb b/plugins/pivotal-crm.rb index db16d167..2a891a14 100644 --- a/plugins/pivotal-crm.rb +++ b/plugins/pivotal-crm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pivotal-CRM" diff --git a/plugins/pivotx.rb b/plugins/pivotx.rb index 3995ffc0..c242c38c 100644 --- a/plugins/pivotx.rb +++ b/plugins/pivotx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PivotX" diff --git a/plugins/piwigo.rb b/plugins/piwigo.rb index a80823f3..d8fe3f82 100644 --- a/plugins/piwigo.rb +++ b/plugins/piwigo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Piwigo" diff --git a/plugins/piwik.rb b/plugins/piwik.rb index eee7d808..51b531a1 100644 --- a/plugins/piwik.rb +++ b/plugins/piwik.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Piwik" diff --git a/plugins/pixel-ads-script.rb b/plugins/pixel-ads-script.rb index d6662484..be5d4343 100644 --- a/plugins/pixel-ads-script.rb +++ b/plugins/pixel-ads-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pixel-Ads-Script" diff --git a/plugins/pixel-script.rb b/plugins/pixel-script.rb index 3140f8c1..54b852af 100644 --- a/plugins/pixel-script.rb +++ b/plugins/pixel-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pixel-Script" diff --git a/plugins/pixelpost.rb b/plugins/pixelpost.rb index 6e713a33..9ec7d53c 100644 --- a/plugins/pixelpost.rb +++ b/plugins/pixelpost.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PixelPost" diff --git a/plugins/pixie.rb b/plugins/pixie.rb index f6aa5769..68be7d2c 100644 --- a/plugins/pixie.rb +++ b/plugins/pixie.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pixie" diff --git a/plugins/pjirc.rb b/plugins/pjirc.rb index 9314a9e1..82865de4 100644 --- a/plugins/pjirc.rb +++ b/plugins/pjirc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PJIRC" diff --git a/plugins/plandora.rb b/plugins/plandora.rb index f8bc1146..3b54ab20 100644 --- a/plugins/plandora.rb +++ b/plugins/plandora.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Plandora" diff --git a/plugins/play-framework.rb b/plugins/play-framework.rb index a30d21fb..09c9c535 100644 --- a/plugins/play-framework.rb +++ b/plugins/play-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Play-Framework" diff --git a/plugins/playsms.rb b/plugins/playsms.rb index a4a26f88..9f56609c 100644 --- a/plugins/playsms.rb +++ b/plugins/playsms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "playSMS" diff --git a/plugins/plesk.rb b/plugins/plesk.rb index ebd5568e..f9d576db 100644 --- a/plugins/plesk.rb +++ b/plugins/plesk.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Plesk" diff --git a/plugins/plex-media-server.rb b/plugins/plex-media-server.rb new file mode 100644 index 00000000..3e437f8f --- /dev/null +++ b/plugins/plex-media-server.rb @@ -0,0 +1,32 @@ +## +# 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 "Plex-Media-Server" + authors [ + "Andrew Horton", # v0.1 # 2021-03-01 # Created plugin + ] + version "0.1" + description "Plex Media Server (PMS) is the back-end media server component of Plex, free of charge. It organizes audio and visual content from personal media libraries and streams it to their player counterparts, either on the same machine, the same local area network, or over the Internet. It can run on Windows, macOS, Linux, FreeBSD, NAS devices, or on Nvidia Shield TV." + website "https://www.plex.tv/" + + # Default ports 32400, 32401, 32600, 61351 according to the macOS server + + # Matches # + matches [ + + # http headers on ports 32400 and 32401 + { :name => "X-Plex-Protocol header", :text => "", :search=>"header[X-Plex-Protocol]" }, + { :name => "X-Plex-Content-Original-Length header", :text => "", :search=>"header[X-Plex-Content-Original-Length]" }, + + # XML media tag on port 32600 + { :name => "XML MediaGrabber tag", :text => ' "Version in stylesheet filename", :version => //, :url => "/web/index.html"} + + ] +end diff --git a/plugins/pligg-cms.rb b/plugins/pligg-cms.rb index a8510ea4..9b580a83 100644 --- a/plugins/pligg-cms.rb +++ b/plugins/pligg-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pligg-CMS" diff --git a/plugins/plogger.rb b/plugins/plogger.rb index 523b9b22..67f7e76e 100644 --- a/plugins/plogger.rb +++ b/plugins/plogger.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Plogger" diff --git a/plugins/plone.rb b/plugins/plone.rb index 764b03f6..33f526f5 100644 --- a/plugins/plone.rb +++ b/plugins/plone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Plone" diff --git a/plugins/pluck-cms.rb b/plugins/pluck-cms.rb index 6f3a3fee..8c0334f1 100644 --- a/plugins/pluck-cms.rb +++ b/plugins/pluck-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pluck-CMS" diff --git a/plugins/pluxml.rb b/plugins/pluxml.rb index 8a15f414..dd7a74c8 100644 --- a/plugins/pluxml.rb +++ b/plugins/pluxml.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PluXml" diff --git a/plugins/pmwiki.rb b/plugins/pmwiki.rb index 4753bf1d..3bb997bf 100644 --- a/plugins/pmwiki.rb +++ b/plugins/pmwiki.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PmWiki" diff --git a/plugins/pnpscada.rb b/plugins/pnpscada.rb index 9c6a87d2..4231eee7 100644 --- a/plugins/pnpscada.rb +++ b/plugins/pnpscada.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PnPSCADA" diff --git a/plugins/podpress.rb b/plugins/podpress.rb index 3878d0d0..54541641 100644 --- a/plugins/podpress.rb +++ b/plugins/podpress.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "podPress" diff --git a/plugins/pogoplug.rb b/plugins/pogoplug.rb index 99c0eb4c..6202507a 100644 --- a/plugins/pogoplug.rb +++ b/plugins/pogoplug.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pogoplug" diff --git a/plugins/polycom-soundpoint.rb b/plugins/polycom-soundpoint.rb index ec5bff55..436ea5dc 100644 --- a/plugins/polycom-soundpoint.rb +++ b/plugins/polycom-soundpoint.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Polycom-SoundPoint" diff --git a/plugins/polycom-viewstation.rb b/plugins/polycom-viewstation.rb index 11980425..15511a3b 100644 --- a/plugins/polycom-viewstation.rb +++ b/plugins/polycom-viewstation.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Polycom-ViewStation" diff --git a/plugins/pommo.rb b/plugins/pommo.rb index 93671d92..da000bb8 100644 --- a/plugins/pommo.rb +++ b/plugins/pommo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "poMMo" diff --git a/plugins/portalapp.rb b/plugins/portalapp.rb index b0115e19..0f0fdfef 100644 --- a/plugins/portalapp.rb +++ b/plugins/portalapp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PortalApp" diff --git a/plugins/post-revolution.rb b/plugins/post-revolution.rb index 04f6ea64..1172bd98 100644 --- a/plugins/post-revolution.rb +++ b/plugins/post-revolution.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Post-Revolution" diff --git a/plugins/posterita-pos.rb b/plugins/posterita-pos.rb index f333873b..7341d655 100644 --- a/plugins/posterita-pos.rb +++ b/plugins/posterita-pos.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Posterita-POS" diff --git a/plugins/posterous.rb b/plugins/posterous.rb index ad4067f5..665d5008 100644 --- a/plugins/posterous.rb +++ b/plugins/posterous.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Posterous" diff --git a/plugins/poweralert.rb b/plugins/poweralert.rb index 305e6cbe..762f758d 100644 --- a/plugins/poweralert.rb +++ b/plugins/poweralert.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PowerAlert" diff --git a/plugins/powerdns.rb b/plugins/powerdns.rb index aafb6df7..0b471e08 100644 --- a/plugins/powerdns.rb +++ b/plugins/powerdns.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PowerDNS" diff --git a/plugins/powered-by.rb b/plugins/powered-by.rb index 982a8597..18a917aa 100644 --- a/plugins/powered-by.rb +++ b/plugins/powered-by.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PoweredBy" diff --git a/plugins/powermta.rb b/plugins/powermta.rb index 0656ffab..6ecf95fe 100644 --- a/plugins/powermta.rb +++ b/plugins/powermta.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PowerMTA" diff --git a/plugins/powerschool.rb b/plugins/powerschool.rb index f3aa6172..a1dbef07 100644 --- a/plugins/powerschool.rb +++ b/plugins/powerschool.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PowerSchool" diff --git a/plugins/powerweb.rb b/plugins/powerweb.rb index 6d70eaf7..05bab0ef 100644 --- a/plugins/powerweb.rb +++ b/plugins/powerweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PowerWeb" diff --git a/plugins/pragmamx.rb b/plugins/pragmamx.rb index dd062f59..e033bb6f 100644 --- a/plugins/pragmamx.rb +++ b/plugins/pragmamx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "pragmaMx" diff --git a/plugins/pragyan-cms.rb b/plugins/pragyan-cms.rb index c43bae77..1e0fbaab 100644 --- a/plugins/pragyan-cms.rb +++ b/plugins/pragyan-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pragyan-CMS" diff --git a/plugins/pre-printing-press.rb b/plugins/pre-printing-press.rb index 0db4142a..ef97bb46 100644 --- a/plugins/pre-printing-press.rb +++ b/plugins/pre-printing-press.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pre-Printing-Press" diff --git a/plugins/prediction-football.rb b/plugins/prediction-football.rb index 72ba99b5..8c330fce 100644 --- a/plugins/prediction-football.rb +++ b/plugins/prediction-football.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Prediction-Football" diff --git a/plugins/pressflow.rb b/plugins/pressflow.rb index 6db98e26..215a6e8f 100644 --- a/plugins/pressflow.rb +++ b/plugins/pressflow.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pressflow" diff --git a/plugins/prestashop.rb b/plugins/prestashop.rb index 6b7b04c7..c52ef142 100644 --- a/plugins/prestashop.rb +++ b/plugins/prestashop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PrestaShop" diff --git a/plugins/price-comparison-script.rb b/plugins/price-comparison-script.rb index 17bbd792..c16ec8a0 100644 --- a/plugins/price-comparison-script.rb +++ b/plugins/price-comparison-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Price-Comparison-Script" diff --git a/plugins/pritlog.rb b/plugins/pritlog.rb index cd29a502..f8ede2fb 100644 --- a/plugins/pritlog.rb +++ b/plugins/pritlog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PRITLOG" diff --git a/plugins/pro-chat-rooms.rb b/plugins/pro-chat-rooms.rb index 3b7da8fc..f360cc95 100644 --- a/plugins/pro-chat-rooms.rb +++ b/plugins/pro-chat-rooms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pro-Chat-Rooms" diff --git a/plugins/processmaker.rb b/plugins/processmaker.rb index 7949ec02..11609a2d 100644 --- a/plugins/processmaker.rb +++ b/plugins/processmaker.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ProcessMaker" diff --git a/plugins/procon-electronics-mod-mux.rb b/plugins/procon-electronics-mod-mux.rb index 9a04e714..9408a3a9 100644 --- a/plugins/procon-electronics-mod-mux.rb +++ b/plugins/procon-electronics-mod-mux.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Procon-Electronics-Mod-Mux" diff --git a/plugins/profense-firewall.rb b/plugins/profense-firewall.rb index 63c2c49c..ca2be314 100644 --- a/plugins/profense-firewall.rb +++ b/plugins/profense-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Profense-Firewall" diff --git a/plugins/prolink-router.rb b/plugins/prolink-router.rb index 48100b7f..e3d4da41 100644 --- a/plugins/prolink-router.rb +++ b/plugins/prolink-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PROLiNK-Router" diff --git a/plugins/proliphix-thermostat.rb b/plugins/proliphix-thermostat.rb index 4fcca1df..3e197d48 100644 --- a/plugins/proliphix-thermostat.rb +++ b/plugins/proliphix-thermostat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Proliphix-Thermostat" diff --git a/plugins/proscan.rb b/plugins/proscan.rb index d7779ad7..d691f8cf 100644 --- a/plugins/proscan.rb +++ b/plugins/proscan.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ProScan" diff --git a/plugins/prototype.rb b/plugins/prototype.rb index d78390fe..743e78a3 100644 --- a/plugins/prototype.rb +++ b/plugins/prototype.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Prototype" diff --git a/plugins/proxmox-ve.rb b/plugins/proxmox-ve.rb index 9532ac07..3de0b0f5 100644 --- a/plugins/proxmox-ve.rb +++ b/plugins/proxmox-ve.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Proxmox-VE" diff --git a/plugins/proxy-agent.rb b/plugins/proxy-agent.rb index 3b508a61..e13b0e4c 100644 --- a/plugins/proxy-agent.rb +++ b/plugins/proxy-agent.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Proxy-Agent" diff --git a/plugins/proxy-authenticate.rb b/plugins/proxy-authenticate.rb index f8aaec19..df1a9cef 100644 --- a/plugins/proxy-authenticate.rb +++ b/plugins/proxy-authenticate.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Proxy-Authenticate" diff --git a/plugins/prtg-network-monitor.rb b/plugins/prtg-network-monitor.rb index 3570049b..1075ab0d 100644 --- a/plugins/prtg-network-monitor.rb +++ b/plugins/prtg-network-monitor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PRTG-Network-Monitor" diff --git a/plugins/ptcpay.rb b/plugins/ptcpay.rb index 8cb5b373..9eeb1c48 100644 --- a/plugins/ptcpay.rb +++ b/plugins/ptcpay.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PTCPay" diff --git a/plugins/pulsecms.rb b/plugins/pulsecms.rb index a8c34f8f..be388c7a 100644 --- a/plugins/pulsecms.rb +++ b/plugins/pulsecms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PulseCMS" diff --git a/plugins/punbb.rb b/plugins/punbb.rb index 95ec6941..f4efd7aa 100644 --- a/plugins/punbb.rb +++ b/plugins/punbb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PunBB" diff --git a/plugins/puppet-dashboard.rb b/plugins/puppet-dashboard.rb index 250e4844..fd679237 100644 --- a/plugins/puppet-dashboard.rb +++ b/plugins/puppet-dashboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Puppet-Dashboard" diff --git a/plugins/puridiom.rb b/plugins/puridiom.rb index e89a26ad..884953a6 100644 --- a/plugins/puridiom.rb +++ b/plugins/puridiom.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Puridiom" diff --git a/plugins/purveyor-encrypt-webserver.rb b/plugins/purveyor-encrypt-webserver.rb index ac9a2466..296b2ee0 100644 --- a/plugins/purveyor-encrypt-webserver.rb +++ b/plugins/purveyor-encrypt-webserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Purveyor-Encrypt-WebServer" diff --git a/plugins/putty-log.rb b/plugins/putty-log.rb index 0fef1bcf..3a01d649 100644 --- a/plugins/putty-log.rb +++ b/plugins/putty-log.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PuTTY-Log" diff --git a/plugins/pygopherd.rb b/plugins/pygopherd.rb index b9286eeb..e878cce1 100644 --- a/plugins/pygopherd.rb +++ b/plugins/pygopherd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Pygopherd" diff --git a/plugins/pyro-cms.rb b/plugins/pyro-cms.rb index a685de22..aaa28044 100644 --- a/plugins/pyro-cms.rb +++ b/plugins/pyro-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "PyroCMS" diff --git a/plugins/python.rb b/plugins/python.rb index 5f854594..da58371b 100644 --- a/plugins/python.rb +++ b/plugins/python.rb @@ -2,30 +2,29 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Python" authors [ "Brendan Coles ", # 2010-10-26 + "Andrew Horton", # v0.2 # 2021-02-28 # Added File Extension, convereted passive block to matches array ] -version "0.1" +version "0.2" description "Python is a programming language that lets you work more quickly and integrate your systems more effectively. You can learn to use Python and see almost immediate gains in productivity and lower maintenance costs." website "http://www.python.org/" # About 170076 ShodanHQ results for "server: python" @ 2010-10-26 - -# HTTP Header -passive do - m=[] - +# Matches # +matches [ + # Server # Version Detection - m << { :version=>@headers["server"].to_s.scan(/[^\r^\n]* Python\/([^\s^\r^\n]+)/).flatten } if @headers["server"].to_s =~ /[^\r^\n]* Python\/([^\s^\r^\n]+)/ + { :name=>"# Server # Version Detection", :search=>"headers[server]", :version => /[^\r^\n]* Python\/([^\s^\r^\n]+)/}, - m - -end + # File Extension + { :name=>"File extension", :regexp=>/^(py|pyc|py3|pyo|pyw|pyx|pyd|pxd|pyi|pyz|pywz|rpy|pyde|pyp|pyt|xpy|ipynb)$/, :search=>"uri.extension" }, +] end diff --git a/plugins/qcodo-development-framework.rb b/plugins/qcodo-development-framework.rb index 80f72bd7..2593ac7c 100644 --- a/plugins/qcodo-development-framework.rb +++ b/plugins/qcodo-development-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Qcodo-Development-Framework" diff --git a/plugins/qcubed-development-framework.rb b/plugins/qcubed-development-framework.rb index 06b9b7f0..972bea1c 100644 --- a/plugins/qcubed-development-framework.rb +++ b/plugins/qcubed-development-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "QCubed-Development-Framework" diff --git a/plugins/qdpm.rb b/plugins/qdpm.rb index 1767ed34..16233e28 100644 --- a/plugins/qdpm.rb +++ b/plugins/qdpm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "qdPM" diff --git a/plugins/qlogic-sansurfer-fc-hba-manager.rb b/plugins/qlogic-sansurfer-fc-hba-manager.rb index f7780317..cc7519e1 100644 --- a/plugins/qlogic-sansurfer-fc-hba-manager.rb +++ b/plugins/qlogic-sansurfer-fc-hba-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "QLogic-SANsurfer-FC-HBA-Manager" diff --git a/plugins/qnap-nas.rb b/plugins/qnap-nas.rb index 38427502..ee5b2839 100644 --- a/plugins/qnap-nas.rb +++ b/plugins/qnap-nas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "QNAP-NAS" diff --git a/plugins/qr-code-panel.rb b/plugins/qr-code-panel.rb index f3781d55..0be7843d 100644 --- a/plugins/qr-code-panel.rb +++ b/plugins/qr-code-panel.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "QR-Code-Panel" diff --git a/plugins/qtranslate.rb b/plugins/qtranslate.rb index d6b657e9..3ebf64ee 100644 --- a/plugins/qtranslate.rb +++ b/plugins/qtranslate.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "qTranslate" diff --git a/plugins/quantcast.rb b/plugins/quantcast.rb index 341e9364..647a46e0 100644 --- a/plugins/quantcast.rb +++ b/plugins/quantcast.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Quantcast" diff --git a/plugins/quanterra-q330.rb b/plugins/quanterra-q330.rb index 80703d8d..1cf14636 100644 --- a/plugins/quanterra-q330.rb +++ b/plugins/quanterra-q330.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Quanterra-Q330" diff --git a/plugins/quescom-qportal.rb b/plugins/quescom-qportal.rb index abe657bc..67f070a1 100644 --- a/plugins/quescom-qportal.rb +++ b/plugins/quescom-qportal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "QuesCom-Qportal" diff --git a/plugins/quest-password-manager.rb b/plugins/quest-password-manager.rb index 959decde..c8ae351b 100644 --- a/plugins/quest-password-manager.rb +++ b/plugins/quest-password-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Quest-Password-Manager" diff --git a/plugins/quick.cms.rb b/plugins/quick.cms.rb index 01e92963..a5e445f1 100644 --- a/plugins/quick.cms.rb +++ b/plugins/quick.cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Quick_Cms" diff --git a/plugins/quickersite.rb b/plugins/quickersite.rb index 58290170..3943f9d7 100644 --- a/plugins/quickersite.rb +++ b/plugins/quickersite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "QuickerSite" diff --git a/plugins/quickweb.rb b/plugins/quickweb.rb index 830155af..8356faf8 100644 --- a/plugins/quickweb.rb +++ b/plugins/quickweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "QuickWeb" diff --git a/plugins/quixplorer.rb b/plugins/quixplorer.rb index b84bafd3..d6f96431 100644 --- a/plugins/quixplorer.rb +++ b/plugins/quixplorer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "QuiXplorer" diff --git a/plugins/rabbit-microcontroller.rb b/plugins/rabbit-microcontroller.rb index d7038cb6..5ee5326c 100644 --- a/plugins/rabbit-microcontroller.rb +++ b/plugins/rabbit-microcontroller.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Rabbit-Microcontroller" diff --git a/plugins/rackcorp-cdn.rb b/plugins/rackcorp-cdn.rb index a39991ce..5ede2eb5 100644 --- a/plugins/rackcorp-cdn.rb +++ b/plugins/rackcorp-cdn.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RackCorp-CDN" diff --git a/plugins/rackstar-server-appliance-os.rb b/plugins/rackstar-server-appliance-os.rb index a16688ce..97b48c49 100644 --- a/plugins/rackstar-server-appliance-os.rb +++ b/plugins/rackstar-server-appliance-os.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RackStar-Server-Appliance-OS" diff --git a/plugins/raidenhttpd.rb b/plugins/raidenhttpd.rb index f1995de1..199dc2e0 100644 --- a/plugins/raidenhttpd.rb +++ b/plugins/raidenhttpd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RaidenHTTPD" diff --git a/plugins/railo.rb b/plugins/railo.rb index 65e49feb..931319ca 100644 --- a/plugins/railo.rb +++ b/plugins/railo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Railo" diff --git a/plugins/rainmail.rb b/plugins/rainmail.rb index 44ff7c91..993d411a 100644 --- a/plugins/rainmail.rb +++ b/plugins/rainmail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Rainmail" diff --git a/plugins/rapid-browser.rb b/plugins/rapid-browser.rb index 869714f7..8459fe22 100644 --- a/plugins/rapid-browser.rb +++ b/plugins/rapid-browser.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RAPID-Browser" diff --git a/plugins/rapidleech.rb b/plugins/rapidleech.rb index 58b820b0..36456a94 100644 --- a/plugins/rapidleech.rb +++ b/plugins/rapidleech.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Rapidleech" diff --git a/plugins/rapidsite.rb b/plugins/rapidsite.rb index 36f8d30c..ca009569 100644 --- a/plugins/rapidsite.rb +++ b/plugins/rapidsite.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RapidSite" diff --git a/plugins/raptor-firewall.rb b/plugins/raptor-firewall.rb index 73780d34..df322bad 100644 --- a/plugins/raptor-firewall.rb +++ b/plugins/raptor-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Raptor-Firewall" diff --git a/plugins/rcttools.rb b/plugins/rcttools.rb index 0ec5ff1d..bee08a2b 100644 --- a/plugins/rcttools.rb +++ b/plugins/rcttools.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RCTTools" diff --git a/plugins/real-estate-portal.rb b/plugins/real-estate-portal.rb index 85177fc9..f3ebacc2 100644 --- a/plugins/real-estate-portal.rb +++ b/plugins/real-estate-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "NetArtMedia-Real-Estate-Portal" diff --git a/plugins/realtor-747.rb b/plugins/realtor-747.rb index 4d57f1c6..8a4aa296 100644 --- a/plugins/realtor-747.rb +++ b/plugins/realtor-747.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Realtor-747" diff --git a/plugins/realvnc.rb b/plugins/realvnc.rb index e910630e..43cf0742 100644 --- a/plugins/realvnc.rb +++ b/plugins/realvnc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RealVNC" diff --git a/plugins/recaptcha.rb b/plugins/recaptcha.rb index 05f48b0a..e91a9772 100644 --- a/plugins/recaptcha.rb +++ b/plugins/recaptcha.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "reCAPTCHA" diff --git a/plugins/red-lion-hmi.rb b/plugins/red-lion-hmi.rb index 6d43bcd8..444003dd 100644 --- a/plugins/red-lion-hmi.rb +++ b/plugins/red-lion-hmi.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Red-Lion-HMI" diff --git a/plugins/redaxscript.rb b/plugins/redaxscript.rb index 8f278aae..b6bde5d8 100644 --- a/plugins/redaxscript.rb +++ b/plugins/redaxscript.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Redaxscript" diff --git a/plugins/redirect-location.rb b/plugins/redirect-location.rb index b7f0e10e..91cd8af8 100644 --- a/plugins/redirect-location.rb +++ b/plugins/redirect-location.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RedirectLocation" diff --git a/plugins/redmine.rb b/plugins/redmine.rb index 24dada65..616b6da9 100644 --- a/plugins/redmine.rb +++ b/plugins/redmine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Redmine" diff --git a/plugins/redshop.rb b/plugins/redshop.rb index 882093fd..4cbef4b5 100644 --- a/plugins/redshop.rb +++ b/plugins/redshop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RedShop" diff --git a/plugins/reflex-cms.rb b/plugins/reflex-cms.rb index 415ffc24..a429e000 100644 --- a/plugins/reflex-cms.rb +++ b/plugins/reflex-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ReFlex-CMS" diff --git a/plugins/reinvigorate.rb b/plugins/reinvigorate.rb index d6c3ee2a..bcb6c98e 100644 --- a/plugins/reinvigorate.rb +++ b/plugins/reinvigorate.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Reinvigorate" diff --git a/plugins/remotelyanywhere.rb b/plugins/remotelyanywhere.rb index cb5c3df7..525a842f 100644 --- a/plugins/remotelyanywhere.rb +++ b/plugins/remotelyanywhere.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RemotelyAnywhere" diff --git a/plugins/reos.rb b/plugins/reos.rb index 4174c3e6..d54b8341 100644 --- a/plugins/reos.rb +++ b/plugins/reos.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ReOS" diff --git a/plugins/request-tracker.rb b/plugins/request-tracker.rb index 84cf7c31..bb21c6dc 100644 --- a/plugins/request-tracker.rb +++ b/plugins/request-tracker.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Request-Tracker" diff --git a/plugins/resin.rb b/plugins/resin.rb index d6c10db7..2b12d687 100644 --- a/plugins/resin.rb +++ b/plugins/resin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Resin" diff --git a/plugins/restlet-framework.rb b/plugins/restlet-framework.rb index e980b05a..b4c087d3 100644 --- a/plugins/restlet-framework.rb +++ b/plugins/restlet-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Restlet-Framework" diff --git a/plugins/revsense.rb b/plugins/revsense.rb index 4fb5991d..acedfb9f 100644 --- a/plugins/revsense.rb +++ b/plugins/revsense.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RevSense" diff --git a/plugins/rfi-scanner-bot.rb b/plugins/rfi-scanner-bot.rb index ab2411d0..a322d011 100644 --- a/plugins/rfi-scanner-bot.rb +++ b/plugins/rfi-scanner-bot.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RFI-Scanner-Bot" diff --git a/plugins/ricoh-photocopier.rb b/plugins/ricoh-photocopier.rb index 3503ecde..a8d49191 100644 --- a/plugins/ricoh-photocopier.rb +++ b/plugins/ricoh-photocopier.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ricoh-Photocopier" diff --git a/plugins/rios.rb b/plugins/rios.rb index f1d982a1..7aa9c012 100644 --- a/plugins/rios.rb +++ b/plugins/rios.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RiOS" diff --git a/plugins/rips.rb b/plugins/rips.rb index 2b1e6a26..2df1235e 100644 --- a/plugins/rips.rb +++ b/plugins/rips.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RIPS" diff --git a/plugins/robots.txt.rb b/plugins/robots.txt.rb index b5c8ffaa..1a6fd5a4 100644 --- a/plugins/robots.txt.rb +++ b/plugins/robots.txt.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "robots_txt" diff --git a/plugins/robpoll.rb b/plugins/robpoll.rb index 989f5fd6..b6c176a2 100644 --- a/plugins/robpoll.rb +++ b/plugins/robpoll.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RobPoll" diff --git a/plugins/rospora.rb b/plugins/rospora.rb index 30e6ea4f..5411272b 100644 --- a/plugins/rospora.rb +++ b/plugins/rospora.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RoSpora" diff --git a/plugins/roundcube.rb b/plugins/roundcube.rb index 943acc88..0b685fc2 100644 --- a/plugins/roundcube.rb +++ b/plugins/roundcube.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RoundCube" diff --git a/plugins/roxen.rb b/plugins/roxen.rb index 00e06c39..92e70692 100644 --- a/plugins/roxen.rb +++ b/plugins/roxen.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Roxen" diff --git a/plugins/ruby-on-rails.rb b/plugins/ruby-on-rails.rb index e8291242..32a2b3f0 100644 --- a/plugins/ruby-on-rails.rb +++ b/plugins/ruby-on-rails.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ruby-on-Rails" diff --git a/plugins/ruby.rb b/plugins/ruby.rb index 2c027d81..cf3fe6f0 100644 --- a/plugins/ruby.rb +++ b/plugins/ruby.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ruby" @@ -10,8 +10,9 @@ authors [ "Brendan Coles ", # 2010-10-26 # v0.2 # 2011-05-24 # Added WEBrick detection. "Andrew Horton", # v0.3 # 2016-04-23 # Moved patterns from passive function to matches[]. + # "Andrew Horton", # v0.4 # 2021-02-28 # Added File Extensions ] -version "0.3" +version "0.4" description "Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write." website "http://www.ruby-lang.org/" @@ -36,6 +37,9 @@ matches [ # WEBrick Server # Ruby Version Detection { :version=>/^WEBrick\/[\d\.]+ \(Ruby\/([\d\.]+)\/[\d]{4}-[\d]{2}-[\d]{2}\)/, :search=>"headers[server]" }, + # File Extension + { :name=>"File extension", :regexp=>/^(rb|rhtml)$/, :search=>"uri.extension" } + ] end diff --git a/plugins/ruckus-wireless-router.rb b/plugins/ruckus-wireless-router.rb index 6415408a..91ef2f68 100644 --- a/plugins/ruckus-wireless-router.rb +++ b/plugins/ruckus-wireless-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ruckus-Wireless-Router" diff --git a/plugins/rumba-cms.rb b/plugins/rumba-cms.rb index 30222845..ec3bc005 100644 --- a/plugins/rumba-cms.rb +++ b/plugins/rumba-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Rumba-CMS" diff --git a/plugins/runcms.rb b/plugins/runcms.rb index 4ecab6cf..64ef6e91 100644 --- a/plugins/runcms.rb +++ b/plugins/runcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RunCMS" diff --git a/plugins/russian-apache.rb b/plugins/russian-apache.rb index ade21aab..f8ebd2bd 100644 --- a/plugins/russian-apache.rb +++ b/plugins/russian-apache.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Russian-Apache" diff --git a/plugins/rutorrent.rb b/plugins/rutorrent.rb index 9df2bb5f..efdcf07c 100644 --- a/plugins/rutorrent.rb +++ b/plugins/rutorrent.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ruTorrent" diff --git a/plugins/rvi-camera.rb b/plugins/rvi-camera.rb index 0a72fa97..0052a4a5 100644 --- a/plugins/rvi-camera.rb +++ b/plugins/rvi-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "RVI-Camera" diff --git a/plugins/s-cms.rb b/plugins/s-cms.rb index eade9c9d..e57b96aa 100644 --- a/plugins/s-cms.rb +++ b/plugins/s-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "S-CMS" diff --git a/plugins/sabnzbd.rb b/plugins/sabnzbd.rb index 033622ae..9bee0ac5 100644 --- a/plugins/sabnzbd.rb +++ b/plugins/sabnzbd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SABnzbd" diff --git a/plugins/sabros.us.rb b/plugins/sabros.us.rb index cb366ec0..cecee0d3 100644 --- a/plugins/sabros.us.rb +++ b/plugins/sabros.us.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "sabros_us" diff --git a/plugins/safedog.rb b/plugins/safedog.rb index 46b0d1d1..ed4e0022 100644 --- a/plugins/safedog.rb +++ b/plugins/safedog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name 'Safedog' diff --git a/plugins/sagem-router.rb b/plugins/sagem-router.rb index 054ad2b2..18d6016e 100644 --- a/plugins/sagem-router.rb +++ b/plugins/sagem-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sagem-Router" diff --git a/plugins/sailsjs.rb b/plugins/sailsjs.rb index e40d0b2c..9d309a68 100644 --- a/plugins/sailsjs.rb +++ b/plugins/sailsjs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SailsJS" diff --git a/plugins/saman-portal.rb b/plugins/saman-portal.rb index 969296ba..d9b4ffcb 100644 --- a/plugins/saman-portal.rb +++ b/plugins/saman-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Saman-Portal" diff --git a/plugins/sambar-server.rb b/plugins/sambar-server.rb index 4339836a..742d1bb1 100644 --- a/plugins/sambar-server.rb +++ b/plugins/sambar-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sambar-Server" diff --git a/plugins/samphpweb.rb b/plugins/samphpweb.rb index a1f9920f..6982a27a 100644 --- a/plugins/samphpweb.rb +++ b/plugins/samphpweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "samPHPweb" diff --git a/plugins/samsung-printer.rb b/plugins/samsung-printer.rb index 33705eac..0f0508db 100644 --- a/plugins/samsung-printer.rb +++ b/plugins/samsung-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Samsung-Printer" diff --git a/plugins/sap-netweaver.rb b/plugins/sap-netweaver.rb index 35a1b953..5497919b 100644 --- a/plugins/sap-netweaver.rb +++ b/plugins/sap-netweaver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SAP-NetWeaver" diff --git a/plugins/sarg.rb b/plugins/sarg.rb index 3aef4ccd..6a9cb7b6 100644 --- a/plugins/sarg.rb +++ b/plugins/sarg.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SARG" diff --git a/plugins/saurus-cms.rb b/plugins/saurus-cms.rb index 6592fa9c..0abdd25c 100644 --- a/plugins/saurus-cms.rb +++ b/plugins/saurus-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Saurus-CMS" diff --git a/plugins/savant.rb b/plugins/savant.rb index 2e1f291e..49d43700 100644 --- a/plugins/savant.rb +++ b/plugins/savant.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Savant" diff --git a/plugins/sawmill.rb b/plugins/sawmill.rb index 05b4d960..1a2386a5 100644 --- a/plugins/sawmill.rb +++ b/plugins/sawmill.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sawmill" diff --git a/plugins/sazcart.rb b/plugins/sazcart.rb index 5a856c5e..9f4fb021 100644 --- a/plugins/sazcart.rb +++ b/plugins/sazcart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SazCart" diff --git a/plugins/schoolwires-centricity.rb b/plugins/schoolwires-centricity.rb index d3028738..a14a65eb 100644 --- a/plugins/schoolwires-centricity.rb +++ b/plugins/schoolwires-centricity.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SchoolWire-Centricity" diff --git a/plugins/screwturn-wiki.rb b/plugins/screwturn-wiki.rb index a41229e7..23fe5a7d 100644 --- a/plugins/screwturn-wiki.rb +++ b/plugins/screwturn-wiki.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ScrewTurn-Wiki" diff --git a/plugins/script.rb b/plugins/script.rb index 346d49d6..3c1486b8 100644 --- a/plugins/script.rb +++ b/plugins/script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Script" diff --git a/plugins/scriptaculous.rb b/plugins/scriptaculous.rb index 0a461269..d866c88d 100644 --- a/plugins/scriptaculous.rb +++ b/plugins/scriptaculous.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Scriptaculous" diff --git a/plugins/scrutinizer.rb b/plugins/scrutinizer.rb index b24c3715..2de5cc85 100644 --- a/plugins/scrutinizer.rb +++ b/plugins/scrutinizer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Scrutinizer" diff --git a/plugins/sdcms.rb b/plugins/sdcms.rb index c46ab901..a157d995 100644 --- a/plugins/sdcms.rb +++ b/plugins/sdcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SDCMS" diff --git a/plugins/sdl-tridion-wcms.rb b/plugins/sdl-tridion-wcms.rb index c12af18e..fdd78828 100644 --- a/plugins/sdl-tridion-wcms.rb +++ b/plugins/sdl-tridion-wcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SDL-Tridion-WCMS" diff --git a/plugins/seagate-goflex.rb b/plugins/seagate-goflex.rb index 86f02c86..b5b9c847 100644 --- a/plugins/seagate-goflex.rb +++ b/plugins/seagate-goflex.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Seagate-GoFlex" diff --git a/plugins/seagull-php-framework.rb b/plugins/seagull-php-framework.rb index fc7a5916..aea71743 100644 --- a/plugins/seagull-php-framework.rb +++ b/plugins/seagull-php-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Seagull-PHP-Framework" diff --git a/plugins/searchfit-shopping-cart.rb b/plugins/searchfit-shopping-cart.rb index 048fe753..354388bb 100644 --- a/plugins/searchfit-shopping-cart.rb +++ b/plugins/searchfit-shopping-cart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SearchFitShoppingCart" diff --git a/plugins/secure-snapgear.rb b/plugins/secure-snapgear.rb index f34de1ac..7bc40896 100644 --- a/plugins/secure-snapgear.rb +++ b/plugins/secure-snapgear.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Secure-SnapGear" diff --git a/plugins/seditio.rb b/plugins/seditio.rb index f7b7ef01..69fa2bff 100644 --- a/plugins/seditio.rb +++ b/plugins/seditio.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Seditio" diff --git a/plugins/segpub.rb b/plugins/segpub.rb index 0ad25b88..c978f9da 100644 --- a/plugins/segpub.rb +++ b/plugins/segpub.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SegPub" diff --git a/plugins/seh-printserver.rb b/plugins/seh-printserver.rb index 2f1a74ae..8b291c29 100644 --- a/plugins/seh-printserver.rb +++ b/plugins/seh-printserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SEH-KYOCERA-PrintServer" diff --git a/plugins/semaphore.rb b/plugins/semaphore.rb index 62b542e0..c3a0de70 100644 --- a/plugins/semaphore.rb +++ b/plugins/semaphore.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Semaphore" diff --git a/plugins/seminole.rb b/plugins/seminole.rb index 1cd5e454..25b9d084 100644 --- a/plugins/seminole.rb +++ b/plugins/seminole.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Seminole" diff --git a/plugins/sendcard.rb b/plugins/sendcard.rb index 0b204df1..ef728173 100644 --- a/plugins/sendcard.rb +++ b/plugins/sendcard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sendcard" diff --git a/plugins/sendio-esp.rb b/plugins/sendio-esp.rb index d303bc19..d37893fe 100644 --- a/plugins/sendio-esp.rb +++ b/plugins/sendio-esp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sendio-ESP" diff --git a/plugins/sentinelserver.rb b/plugins/sentinelserver.rb index 2ae2f9fc..59f63748 100644 --- a/plugins/sentinelserver.rb +++ b/plugins/sentinelserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SentinelServer" diff --git a/plugins/seo-panel.rb b/plugins/seo-panel.rb index 7d0fcd2c..ffa311bb 100644 --- a/plugins/seo-panel.rb +++ b/plugins/seo-panel.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Seo-Panel" diff --git a/plugins/seportal.rb b/plugins/seportal.rb index d109084e..dfd5a1f6 100644 --- a/plugins/seportal.rb +++ b/plugins/seportal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SePortal" diff --git a/plugins/serendipity.rb b/plugins/serendipity.rb index f3da044a..7c96c2e5 100644 --- a/plugins/serendipity.rb +++ b/plugins/serendipity.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Serendipity" diff --git a/plugins/shaadi-zone.rb b/plugins/shaadi-zone.rb index d9431b92..a9a560ee 100644 --- a/plugins/shaadi-zone.rb +++ b/plugins/shaadi-zone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Shaadi-Zone" diff --git a/plugins/shadowed-portal.rb b/plugins/shadowed-portal.rb index 81e93e99..2a1ea82b 100644 --- a/plugins/shadowed-portal.rb +++ b/plugins/shadowed-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Shadowed-Portal" diff --git a/plugins/sharethis.rb b/plugins/sharethis.rb index 7ef12cd7..87ebc334 100644 --- a/plugins/sharethis.rb +++ b/plugins/sharethis.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ShareThis" diff --git a/plugins/shopex.rb b/plugins/shopex.rb index 798d3b4f..342af8dd 100644 --- a/plugins/shopex.rb +++ b/plugins/shopex.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ShopEx" diff --git a/plugins/shopify.rb b/plugins/shopify.rb index a5f7ef03..bd3441cd 100644 --- a/plugins/shopify.rb +++ b/plugins/shopify.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Shopify" diff --git a/plugins/shoretel-converged-conferencing.rb b/plugins/shoretel-converged-conferencing.rb index baba31bb..5ab59370 100644 --- a/plugins/shoretel-converged-conferencing.rb +++ b/plugins/shoretel-converged-conferencing.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ShoreTel-Converged-Conferencing" diff --git a/plugins/shoutcast-administrator.rb b/plugins/shoutcast-administrator.rb index 91dca11a..a905c6fc 100644 --- a/plugins/shoutcast-administrator.rb +++ b/plugins/shoutcast-administrator.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SHOUTcast-Administrator" diff --git a/plugins/siemens-router.rb b/plugins/siemens-router.rb index a4055c9f..2c673dc7 100644 --- a/plugins/siemens-router.rb +++ b/plugins/siemens-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Siemens-Router" diff --git a/plugins/siemens-simatic.rb b/plugins/siemens-simatic.rb index 44a6f2f0..644fd046 100644 --- a/plugins/siemens-simatic.rb +++ b/plugins/siemens-simatic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Siemens-Simatic" diff --git a/plugins/silex-print-server.rb b/plugins/silex-print-server.rb index 91dbe0ff..af8a9669 100644 --- a/plugins/silex-print-server.rb +++ b/plugins/silex-print-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Silex-Print-Server" diff --git a/plugins/sillysmart.rb b/plugins/sillysmart.rb index 709e992f..17555f39 100644 --- a/plugins/sillysmart.rb +++ b/plugins/sillysmart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SillySmart" diff --git a/plugins/silverstripe.rb b/plugins/silverstripe.rb index 8532f188..3a0154b0 100644 --- a/plugins/silverstripe.rb +++ b/plugins/silverstripe.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SilverStripe" diff --git a/plugins/simbix-framework.rb b/plugins/simbix-framework.rb index 8533cf45..3f01b537 100644 --- a/plugins/simbix-framework.rb +++ b/plugins/simbix-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Simbix-Framework" diff --git a/plugins/simple-directory-listing.rb b/plugins/simple-directory-listing.rb index 368de919..ecf46735 100644 --- a/plugins/simple-directory-listing.rb +++ b/plugins/simple-directory-listing.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Simple-Directory-Listing" diff --git a/plugins/simple-forum-php.rb b/plugins/simple-forum-php.rb index c9d69aca..50be394e 100644 --- a/plugins/simple-forum-php.rb +++ b/plugins/simple-forum-php.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Simple-Forum-PHP" diff --git a/plugins/simple-phishing-toolkit.rb b/plugins/simple-phishing-toolkit.rb index 7ff2f296..e8ac71e0 100644 --- a/plugins/simple-phishing-toolkit.rb +++ b/plugins/simple-phishing-toolkit.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Simple-Phishing-Toolkit" diff --git a/plugins/simplesamlphp.rb b/plugins/simplesamlphp.rb index 1bc2fe9c..66e84068 100644 --- a/plugins/simplesamlphp.rb +++ b/plugins/simplesamlphp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "simpleSAMLphp" diff --git a/plugins/simpletech-simpleshare-nas.rb b/plugins/simpletech-simpleshare-nas.rb index 387e63c9..f2892781 100644 --- a/plugins/simpletech-simpleshare-nas.rb +++ b/plugins/simpletech-simpleshare-nas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SimpleTech-SimpleShare-NAS" diff --git a/plugins/simplewire.rb b/plugins/simplewire.rb index 85e13708..d559fb06 100644 --- a/plugins/simplewire.rb +++ b/plugins/simplewire.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Simplewire" diff --git a/plugins/simpnews.rb b/plugins/simpnews.rb index 8b92f263..9b1a95a5 100644 --- a/plugins/simpnews.rb +++ b/plugins/simpnews.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SimpNews" diff --git a/plugins/simsweb.rb b/plugins/simsweb.rb index 50acd7d9..1411fbf0 100644 --- a/plugins/simsweb.rb +++ b/plugins/simsweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SIMSWeb" diff --git a/plugins/sipura-voip-phone.rb b/plugins/sipura-voip-phone.rb index 70bd548c..e36f3354 100644 --- a/plugins/sipura-voip-phone.rb +++ b/plugins/sipura-voip-phone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sipura-VoIP-Phone" diff --git a/plugins/site-meter.rb b/plugins/site-meter.rb index 937ef873..d0384b3c 100644 --- a/plugins/site-meter.rb +++ b/plugins/site-meter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Site-Meter" diff --git a/plugins/site-sift.rb b/plugins/site-sift.rb index 081c5b87..3393c029 100644 --- a/plugins/site-sift.rb +++ b/plugins/site-sift.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Site-Sift" diff --git a/plugins/site4.rb b/plugins/site4.rb index 6b442abc..cc14a970 100644 --- a/plugins/site4.rb +++ b/plugins/site4.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Site4" diff --git a/plugins/sitecaddy.rb b/plugins/sitecaddy.rb index 5fffec8d..fcb7cbe1 100644 --- a/plugins/sitecaddy.rb +++ b/plugins/sitecaddy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SiteCaddy" diff --git a/plugins/sitecom-nas.rb b/plugins/sitecom-nas.rb index 19d0e7b9..3373ad9d 100644 --- a/plugins/sitecom-nas.rb +++ b/plugins/sitecom-nas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sitecom-NAS" diff --git a/plugins/sitecore.rb b/plugins/sitecore.rb index aac44e1f..5bbe0b93 100644 --- a/plugins/sitecore.rb +++ b/plugins/sitecore.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SiteCore" diff --git a/plugins/sitefinity.rb b/plugins/sitefinity.rb index 6174596b..b256ef24 100644 --- a/plugins/sitefinity.rb +++ b/plugins/sitefinity.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sitefinity" diff --git a/plugins/sitegenius.rb b/plugins/sitegenius.rb index 5412927c..c21ddcf3 100644 --- a/plugins/sitegenius.rb +++ b/plugins/sitegenius.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "siteGENIUS" diff --git a/plugins/sitemajic.rb b/plugins/sitemajic.rb index c7ac6a6a..dc2b48d1 100644 --- a/plugins/sitemajic.rb +++ b/plugins/sitemajic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SiteMajic" diff --git a/plugins/siteplayer.rb b/plugins/siteplayer.rb index 77b173a1..7ad365cc 100644 --- a/plugins/siteplayer.rb +++ b/plugins/siteplayer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SitePlayer" diff --git a/plugins/skalinks.rb b/plugins/skalinks.rb index c3bc186e..82b17eb4 100644 --- a/plugins/skalinks.rb +++ b/plugins/skalinks.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SkaLinks" diff --git a/plugins/skillsoft-skillport-lms.rb b/plugins/skillsoft-skillport-lms.rb index acb7ba2a..41cfc027 100644 --- a/plugins/skillsoft-skillport-lms.rb +++ b/plugins/skillsoft-skillport-lms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Skillsoft-Skillport-LMS" diff --git a/plugins/skyx.rb b/plugins/skyx.rb index 93043302..a85c787b 100644 --- a/plugins/skyx.rb +++ b/plugins/skyx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SkyX" diff --git a/plugins/slack-workspace.rb b/plugins/slack-workspace.rb index 90450a96..ccf096ae 100644 --- a/plugins/slack-workspace.rb +++ b/plugins/slack-workspace.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Slack-Workspace" diff --git a/plugins/slaed-cms.rb b/plugins/slaed-cms.rb index 69fa037e..4cf1ca9e 100644 --- a/plugins/slaed-cms.rb +++ b/plugins/slaed-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SLAED-CMS" diff --git a/plugins/slideshowpro-director.rb b/plugins/slideshowpro-director.rb index b71aa3d5..648e2f20 100644 --- a/plugins/slideshowpro-director.rb +++ b/plugins/slideshowpro-director.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SlideShowPro-Director" diff --git a/plugins/slingbox.rb b/plugins/slingbox.rb index e7348531..8f3b160f 100644 --- a/plugins/slingbox.rb +++ b/plugins/slingbox.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SlingBox" diff --git a/plugins/sma-sunny-webbox.rb b/plugins/sma-sunny-webbox.rb index cd34e70d..01e7f071 100644 --- a/plugins/sma-sunny-webbox.rb +++ b/plugins/sma-sunny-webbox.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SMA-Sunny-WebBox" diff --git a/plugins/smart-soft-vcard-server.rb b/plugins/smart-soft-vcard-server.rb index d02a4b7f..a4bafd7a 100644 --- a/plugins/smart-soft-vcard-server.rb +++ b/plugins/smart-soft-vcard-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SMART-SOFT-VCard-Server" diff --git a/plugins/smartcds.rb b/plugins/smartcds.rb index b42aa017..551a0597 100644 --- a/plugins/smartcds.rb +++ b/plugins/smartcds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SmartCDS" diff --git a/plugins/smartermail.rb b/plugins/smartermail.rb index b0f95713..96f77e25 100644 --- a/plugins/smartermail.rb +++ b/plugins/smartermail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SmarterMail" diff --git a/plugins/smarterstats.rb b/plugins/smarterstats.rb index 66480d38..30944300 100644 --- a/plugins/smarterstats.rb +++ b/plugins/smarterstats.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SmarterStats" diff --git a/plugins/smartthumbs.rb b/plugins/smartthumbs.rb index bb33c090..fea11b4d 100644 --- a/plugins/smartthumbs.rb +++ b/plugins/smartthumbs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SmartThumbs" diff --git a/plugins/smf.rb b/plugins/smf.rb index 43e448ca..3c92ce50 100644 --- a/plugins/smf.rb +++ b/plugins/smf.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SMF" diff --git a/plugins/smodcms.rb b/plugins/smodcms.rb index ff6658ee..9935d024 100644 --- a/plugins/smodcms.rb +++ b/plugins/smodcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SmodCMS" diff --git a/plugins/smokeping.rb b/plugins/smokeping.rb index 47412d67..6b3446d5 100644 --- a/plugins/smokeping.rb +++ b/plugins/smokeping.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SmokePing" diff --git a/plugins/smugmug.rb b/plugins/smugmug.rb index b9aae421..b563e93f 100644 --- a/plugins/smugmug.rb +++ b/plugins/smugmug.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SmugMug" diff --git a/plugins/snap-appliance-server.rb b/plugins/snap-appliance-server.rb index 7f2ada5f..e8d29b8b 100644 --- a/plugins/snap-appliance-server.rb +++ b/plugins/snap-appliance-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Snap-Appliance-Server" diff --git a/plugins/snare.rb b/plugins/snare.rb index 3f96baba..24e1d360 100644 --- a/plugins/snare.rb +++ b/plugins/snare.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Snare" diff --git a/plugins/snews.rb b/plugins/snews.rb index 0ff24657..1b48f046 100644 --- a/plugins/snews.rb +++ b/plugins/snews.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "sNews" diff --git a/plugins/snografx.rb b/plugins/snografx.rb index 5bb13e76..1323e18e 100644 --- a/plugins/snografx.rb +++ b/plugins/snografx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SnoGrafx" diff --git a/plugins/snom-phone.rb b/plugins/snom-phone.rb index f9077e6c..5a3e0744 100644 --- a/plugins/snom-phone.rb +++ b/plugins/snom-phone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SnomPhone" diff --git a/plugins/snort-report.rb b/plugins/snort-report.rb index 3522ea9f..2fc93595 100644 --- a/plugins/snort-report.rb +++ b/plugins/snort-report.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Snort-Report" diff --git a/plugins/social-strata.rb b/plugins/social-strata.rb index dbf011d6..79123360 100644 --- a/plugins/social-strata.rb +++ b/plugins/social-strata.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Social-Strata" diff --git a/plugins/socketkb.rb b/plugins/socketkb.rb index a6a310be..08f6e467 100644 --- a/plugins/socketkb.rb +++ b/plugins/socketkb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SocketKB" diff --git a/plugins/sockettimesheet.rb b/plugins/sockettimesheet.rb index 8666ecaf..19751399 100644 --- a/plugins/sockettimesheet.rb +++ b/plugins/sockettimesheet.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SocketTimesheet" diff --git a/plugins/sockso.rb b/plugins/sockso.rb index ad5d6fc6..a9c65f7f 100644 --- a/plugins/sockso.rb +++ b/plugins/sockso.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sockso" diff --git a/plugins/socorro.rb b/plugins/socorro.rb index 457adc77..88c0247b 100644 --- a/plugins/socorro.rb +++ b/plugins/socorro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Socorro" diff --git a/plugins/softbiz-freelancers-script.rb b/plugins/softbiz-freelancers-script.rb index cac9f639..e468ff85 100644 --- a/plugins/softbiz-freelancers-script.rb +++ b/plugins/softbiz-freelancers-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Softbiz-Freelancers-Script" diff --git a/plugins/softbiz-online-auctions-script.rb b/plugins/softbiz-online-auctions-script.rb index 4cd01886..b4ea2a16 100644 --- a/plugins/softbiz-online-auctions-script.rb +++ b/plugins/softbiz-online-auctions-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Softbiz-Online-Auctions-Script" diff --git a/plugins/softbiz-online-classifieds.rb b/plugins/softbiz-online-classifieds.rb index e4ab21ac..61a46c4d 100644 --- a/plugins/softbiz-online-classifieds.rb +++ b/plugins/softbiz-online-classifieds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Softbiz-Online-Classifieds" diff --git a/plugins/softplc-controller.rb b/plugins/softplc-controller.rb index f143e135..9f5651e8 100644 --- a/plugins/softplc-controller.rb +++ b/plugins/softplc-controller.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SoftPLC-Controller" diff --git a/plugins/solarwinds-network-performance-monitor.rb b/plugins/solarwinds-network-performance-monitor.rb index 4f996308..cb0c0c34 100644 --- a/plugins/solarwinds-network-performance-monitor.rb +++ b/plugins/solarwinds-network-performance-monitor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SolarWinds-Network-Performance-Monitor" diff --git a/plugins/solidyne-inet-server.rb b/plugins/solidyne-inet-server.rb index bf4fd71d..be475509 100644 --- a/plugins/solidyne-inet-server.rb +++ b/plugins/solidyne-inet-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Solidyne-iNET-Server" diff --git a/plugins/sonicwall-firewall.rb b/plugins/sonicwall-firewall.rb index 4456a9bf..357bf6c8 100644 --- a/plugins/sonicwall-firewall.rb +++ b/plugins/sonicwall-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SonicWALL-Firewall" diff --git a/plugins/sonicwall-gms.rb b/plugins/sonicwall-gms.rb index 79a965b8..0bf72131 100644 --- a/plugins/sonicwall-gms.rb +++ b/plugins/sonicwall-gms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SonicWALL-GMS" diff --git a/plugins/sonicwall-ssl-vpn.rb b/plugins/sonicwall-ssl-vpn.rb index 36b3afff..d388d1ec 100644 --- a/plugins/sonicwall-ssl-vpn.rb +++ b/plugins/sonicwall-ssl-vpn.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SonicWALL-SSL-VPN" diff --git a/plugins/sony-locationfree-tv.rb b/plugins/sony-locationfree-tv.rb index d895b897..0e59fad3 100644 --- a/plugins/sony-locationfree-tv.rb +++ b/plugins/sony-locationfree-tv.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sony-LocationFree-TV" diff --git a/plugins/sony-network-camera.rb b/plugins/sony-network-camera.rb index c3ecf70e..74616dc6 100644 --- a/plugins/sony-network-camera.rb +++ b/plugins/sony-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sony-Network-Camera" diff --git a/plugins/sony-projector.rb b/plugins/sony-projector.rb index 08756fcf..75613b51 100644 --- a/plugins/sony-projector.rb +++ b/plugins/sony-projector.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sony-Projector" diff --git a/plugins/sony-video-network-station.rb b/plugins/sony-video-network-station.rb index 8a50e2b8..a3f4ab12 100644 --- a/plugins/sony-video-network-station.rb +++ b/plugins/sony-video-network-station.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sony-Video-Network-Station" diff --git a/plugins/sophos-email-appliance.rb b/plugins/sophos-email-appliance.rb index 379d21ac..9903e2e6 100644 --- a/plugins/sophos-email-appliance.rb +++ b/plugins/sophos-email-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sophos-Email-Appliance" diff --git a/plugins/sourcebans.rb b/plugins/sourcebans.rb index 49a20b63..3c26d244 100644 --- a/plugins/sourcebans.rb +++ b/plugins/sourcebans.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SourceBans" diff --git a/plugins/spamtitan.rb b/plugins/spamtitan.rb index 9ab7d127..b8ef6172 100644 --- a/plugins/spamtitan.rb +++ b/plugins/spamtitan.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SpamTitan" diff --git a/plugins/speakker.rb b/plugins/speakker.rb index 2db0e1cf..d2d10a7b 100644 --- a/plugins/speakker.rb +++ b/plugins/speakker.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Speakker" diff --git a/plugins/specialix-jetstream.rb b/plugins/specialix-jetstream.rb index a76c34cd..0e574ee9 100644 --- a/plugins/specialix-jetstream.rb +++ b/plugins/specialix-jetstream.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Specialix-JETSTREAM" diff --git a/plugins/speedstreamrouter.rb b/plugins/speedstreamrouter.rb index 4aa45dc8..d9eaa500 100644 --- a/plugins/speedstreamrouter.rb +++ b/plugins/speedstreamrouter.rb @@ -12,7 +12,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Siemens-SpeedStream-Router" diff --git a/plugins/speedtouch.rb b/plugins/speedtouch.rb index f659d580..27e48af8 100644 --- a/plugins/speedtouch.rb +++ b/plugins/speedtouch.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SpeedTouch" diff --git a/plugins/sphider.rb b/plugins/sphider.rb index 4e4c0d15..0521a43f 100644 --- a/plugins/sphider.rb +++ b/plugins/sphider.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sphider" diff --git a/plugins/sphinx.rb b/plugins/sphinx.rb index 15b43a6c..f6ace85a 100644 --- a/plugins/sphinx.rb +++ b/plugins/sphinx.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sphinx" diff --git a/plugins/spiceworks.rb b/plugins/spiceworks.rb index e3292f7f..96f419c5 100644 --- a/plugins/spiceworks.rb +++ b/plugins/spiceworks.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Spiceworks" diff --git a/plugins/spinetix-hyper-media-player.rb b/plugins/spinetix-hyper-media-player.rb index 7020576d..9ba591e9 100644 --- a/plugins/spinetix-hyper-media-player.rb +++ b/plugins/spinetix-hyper-media-player.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SpinetiX-Hyper-Media-Player" diff --git a/plugins/spinnaker.rb b/plugins/spinnaker.rb index 869587d6..0da6c7fb 100644 --- a/plugins/spinnaker.rb +++ b/plugins/spinnaker.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Spinnaker" diff --git a/plugins/spip.rb b/plugins/spip.rb index ea01555c..000808c3 100644 --- a/plugins/spip.rb +++ b/plugins/spip.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SPIP" diff --git a/plugins/spirepro-cms.rb b/plugins/spirepro-cms.rb index 36bdd938..a11148e1 100644 --- a/plugins/spirepro-cms.rb +++ b/plugins/spirepro-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SpirePRO-CMS" diff --git a/plugins/splunk.rb b/plugins/splunk.rb index 3580f3a1..db510878 100644 --- a/plugins/splunk.rb +++ b/plugins/splunk.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Splunk" diff --git a/plugins/spree-commerce.rb b/plugins/spree-commerce.rb index a1465550..f1d5f516 100644 --- a/plugins/spree-commerce.rb +++ b/plugins/spree-commerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Spree-Commerce" diff --git a/plugins/spring-framework.rb b/plugins/spring-framework.rb index 5475a40e..4c48d174 100644 --- a/plugins/spring-framework.rb +++ b/plugins/spring-framework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Spring-Framework" diff --git a/plugins/spryware-mis.rb b/plugins/spryware-mis.rb index a21dc7b7..203b9214 100644 --- a/plugins/spryware-mis.rb +++ b/plugins/spryware-mis.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SpryWare-MIS" diff --git a/plugins/sputnik.rb b/plugins/sputnik.rb index b2f7f569..dcf342c1 100644 --- a/plugins/sputnik.rb +++ b/plugins/sputnik.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sputnik" diff --git a/plugins/spyglass-microserver.rb b/plugins/spyglass-microserver.rb index c3c634d8..3b4a9a8f 100644 --- a/plugins/spyglass-microserver.rb +++ b/plugins/spyglass-microserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Spyglass-MicroServer" diff --git a/plugins/sql-buddy.rb b/plugins/sql-buddy.rb index ff15b21d..24f6e9ab 100644 --- a/plugins/sql-buddy.rb +++ b/plugins/sql-buddy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SQL-Buddy" diff --git a/plugins/sql-cms.rb b/plugins/sql-cms.rb index c0416634..95501010 100644 --- a/plugins/sql-cms.rb +++ b/plugins/sql-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SQL-CMS" diff --git a/plugins/sqlitemanager.rb b/plugins/sqlitemanager.rb index 33e2530c..b9186773 100644 --- a/plugins/sqlitemanager.rb +++ b/plugins/sqlitemanager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SQLiteManager" diff --git a/plugins/squarespace.rb b/plugins/squarespace.rb index 14f612eb..89c45921 100644 --- a/plugins/squarespace.rb +++ b/plugins/squarespace.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SquareSpace" diff --git a/plugins/squid-web-proxy-cache.rb b/plugins/squid-web-proxy-cache.rb index 139e220d..4b9d154c 100644 --- a/plugins/squid-web-proxy-cache.rb +++ b/plugins/squid-web-proxy-cache.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Squid-Web-Proxy-Cache" diff --git a/plugins/squirrelcart.rb b/plugins/squirrelcart.rb index 67ff61fe..a315f68f 100644 --- a/plugins/squirrelcart.rb +++ b/plugins/squirrelcart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Squirrelcart" diff --git a/plugins/squirrelmail.rb b/plugins/squirrelmail.rb index 48cabd71..648b3d22 100644 --- a/plugins/squirrelmail.rb +++ b/plugins/squirrelmail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SquirrelMail" diff --git a/plugins/ssl.rb b/plugins/ssl.rb index 3b493aea..85fb16f4 100644 --- a/plugins/ssl.rb +++ b/plugins/ssl.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SSL-Certificate" diff --git a/plugins/stackexchange.rb b/plugins/stackexchange.rb index c639c357..07bd1bf9 100644 --- a/plugins/stackexchange.rb +++ b/plugins/stackexchange.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "StackExchange" diff --git a/plugins/star-network.rb b/plugins/star-network.rb index 938a1d6b..7ddf1fac 100644 --- a/plugins/star-network.rb +++ b/plugins/star-network.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Star-Network" diff --git a/plugins/stardot-express.rb b/plugins/stardot-express.rb index e2e0c5c9..07d2d894 100644 --- a/plugins/stardot-express.rb +++ b/plugins/stardot-express.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Stardot-Express" diff --git a/plugins/stardot-netcam.rb b/plugins/stardot-netcam.rb index a040d346..fa3959c6 100644 --- a/plugins/stardot-netcam.rb +++ b/plugins/stardot-netcam.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "StarDot-NetCam" diff --git a/plugins/statusnet.rb b/plugins/statusnet.rb index ba872298..eecf301f 100644 --- a/plugins/statusnet.rb +++ b/plugins/statusnet.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "StatusNet" diff --git a/plugins/steam-steal0r-log.rb b/plugins/steam-steal0r-log.rb index d27994e2..c8bbca61 100644 --- a/plugins/steam-steal0r-log.rb +++ b/plugins/steam-steal0r-log.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Steam-Steal0r-Log" diff --git a/plugins/storagetek-nas.rb b/plugins/storagetek-nas.rb index 76f7eae6..9a698445 100644 --- a/plugins/storagetek-nas.rb +++ b/plugins/storagetek-nas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "StorageTek-NAS" diff --git a/plugins/strato-newsletter-manager.rb b/plugins/strato-newsletter-manager.rb index aeb23ddd..72ba6dae 100644 --- a/plugins/strato-newsletter-manager.rb +++ b/plugins/strato-newsletter-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "STRATO-Newsletter-Manager" diff --git a/plugins/streamline-php-media-server.rb b/plugins/streamline-php-media-server.rb index 723432f1..f59df91e 100644 --- a/plugins/streamline-php-media-server.rb +++ b/plugins/streamline-php-media-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Streamline-PHP-Media-Server" diff --git a/plugins/strict-transport-security.rb b/plugins/strict-transport-security.rb index 8f4a55b4..21114567 100644 --- a/plugins/strict-transport-security.rb +++ b/plugins/strict-transport-security.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Strict-Transport-Security" diff --git a/plugins/stronghold.rb b/plugins/stronghold.rb index 2b29ccb2..e55d1a81 100644 --- a/plugins/stronghold.rb +++ b/plugins/stronghold.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Stronghold" diff --git a/plugins/subdreamer-cms.rb b/plugins/subdreamer-cms.rb index dc210fe9..81890a79 100644 --- a/plugins/subdreamer-cms.rb +++ b/plugins/subdreamer-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Subdreamer-CMS" diff --git a/plugins/subrion-cms.rb b/plugins/subrion-cms.rb index 46a13d4a..96b11e72 100644 --- a/plugins/subrion-cms.rb +++ b/plugins/subrion-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Subrion-CMS" diff --git a/plugins/subsonic.rb b/plugins/subsonic.rb index 38180892..e3fd5edd 100644 --- a/plugins/subsonic.rb +++ b/plugins/subsonic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Subsonic" diff --git a/plugins/sugarcrm.rb b/plugins/sugarcrm.rb index 8f7db320..04862b97 100644 --- a/plugins/sugarcrm.rb +++ b/plugins/sugarcrm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SugarCRM" diff --git a/plugins/sun-cobalt.rb b/plugins/sun-cobalt.rb index f57d2fe9..35e70a12 100644 --- a/plugins/sun-cobalt.rb +++ b/plugins/sun-cobalt.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sun-Cobalt" diff --git a/plugins/sun-glassfish.rb b/plugins/sun-glassfish.rb index 7f366205..34d9d3f6 100644 --- a/plugins/sun-glassfish.rb +++ b/plugins/sun-glassfish.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sun-GlassFish" diff --git a/plugins/sun-java-system-calendar-express.rb b/plugins/sun-java-system-calendar-express.rb index c2f6bacf..b9719cd5 100644 --- a/plugins/sun-java-system-calendar-express.rb +++ b/plugins/sun-java-system-calendar-express.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sun-Java-System-Calendar-Express" diff --git a/plugins/sun-java-system-server.rb b/plugins/sun-java-system-server.rb index e6345d3e..c5f25be9 100644 --- a/plugins/sun-java-system-server.rb +++ b/plugins/sun-java-system-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sun-Java-System-Server" diff --git a/plugins/sun-web-server.rb b/plugins/sun-web-server.rb index 2b0ea1c2..884f327d 100644 --- a/plugins/sun-web-server.rb +++ b/plugins/sun-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sun-Web-Server" diff --git a/plugins/supersalon-pos.rb b/plugins/supersalon-pos.rb index a5b47eb0..d7f56056 100644 --- a/plugins/supersalon-pos.rb +++ b/plugins/supersalon-pos.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SuperSalon-POS" diff --git a/plugins/support-incident-tracker.rb b/plugins/support-incident-tracker.rb index 9646b729..5d740bab 100644 --- a/plugins/support-incident-tracker.rb +++ b/plugins/support-incident-tracker.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Support-Incident-Tracker" diff --git a/plugins/suspended-webpage.rb b/plugins/suspended-webpage.rb index 5c403292..6405f35c 100644 --- a/plugins/suspended-webpage.rb +++ b/plugins/suspended-webpage.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Suspended-Webpage" diff --git a/plugins/svn.rb b/plugins/svn.rb index a3930e60..9a6cbee9 100644 --- a/plugins/svn.rb +++ b/plugins/svn.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SVN" diff --git a/plugins/sweetrice.rb b/plugins/sweetrice.rb index d5153f9a..045ec7b7 100644 --- a/plugins/sweetrice.rb +++ b/plugins/sweetrice.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sweetrice" diff --git a/plugins/swiki.rb b/plugins/swiki.rb index 67a99aa8..8d36a7b8 100644 --- a/plugins/swiki.rb +++ b/plugins/swiki.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Swiki" diff --git a/plugins/sx-shop.rb b/plugins/sx-shop.rb index 31a20633..b7cdd7fe 100644 --- a/plugins/sx-shop.rb +++ b/plugins/sx-shop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "sX-Shop" diff --git a/plugins/sx-webserver.rb b/plugins/sx-webserver.rb index 13988544..d8b49fbd 100644 --- a/plugins/sx-webserver.rb +++ b/plugins/sx-webserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SX-Webserver" diff --git a/plugins/sybase-jaguar.rb b/plugins/sybase-jaguar.rb index aa2d9368..cefd61be 100644 --- a/plugins/sybase-jaguar.rb +++ b/plugins/sybase-jaguar.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Sybase-Jaguar" diff --git a/plugins/symantec-client-security.rb b/plugins/symantec-client-security.rb index e28ed51d..ef105226 100644 --- a/plugins/symantec-client-security.rb +++ b/plugins/symantec-client-security.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Symantec-Client-Security" diff --git a/plugins/symantec-endpoint-protection-manager.rb b/plugins/symantec-endpoint-protection-manager.rb index 6f8e221b..d4f3b7df 100644 --- a/plugins/symantec-endpoint-protection-manager.rb +++ b/plugins/symantec-endpoint-protection-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Symantec-Endpoint-Protection-Manager" diff --git a/plugins/symfony.rb b/plugins/symfony.rb index b307d2b1..d85b8cf8 100644 --- a/plugins/symfony.rb +++ b/plugins/symfony.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Symfony" diff --git a/plugins/symphony-cms.rb b/plugins/symphony-cms.rb index ad8f8edd..d1346ee4 100644 --- a/plugins/symphony-cms.rb +++ b/plugins/symphony-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Symphony-CMS" diff --git a/plugins/synchronet-bbs.rb b/plugins/synchronet-bbs.rb index 3728290c..93437d2a 100644 --- a/plugins/synchronet-bbs.rb +++ b/plugins/synchronet-bbs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Synchronet-BBS" diff --git a/plugins/syncrify.rb b/plugins/syncrify.rb index ba7ad1e5..74588af2 100644 --- a/plugins/syncrify.rb +++ b/plugins/syncrify.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Syncrify" diff --git a/plugins/syndeocms.rb b/plugins/syndeocms.rb index 5cb67fd4..e668df34 100644 --- a/plugins/syndeocms.rb +++ b/plugins/syndeocms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SyndeoCMS" diff --git a/plugins/synology-diskstation.rb b/plugins/synology-diskstation.rb index fa79d3cd..64812123 100644 --- a/plugins/synology-diskstation.rb +++ b/plugins/synology-diskstation.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Synology-DiskStation" diff --git a/plugins/syntaxcms.rb b/plugins/syntaxcms.rb index d6b38d1f..3920e60b 100644 --- a/plugins/syntaxcms.rb +++ b/plugins/syntaxcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "syntaxCMS" diff --git a/plugins/syntype-cms.rb b/plugins/syntype-cms.rb index de32db27..5450a506 100644 --- a/plugins/syntype-cms.rb +++ b/plugins/syntype-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "synType-CMS" diff --git a/plugins/sysmaster.rb b/plugins/sysmaster.rb index ce6a4da5..ae86c8b9 100644 --- a/plugins/sysmaster.rb +++ b/plugins/sysmaster.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SysMaster" diff --git a/plugins/system-shop.rb b/plugins/system-shop.rb index eea7fa0e..c9036df8 100644 --- a/plugins/system-shop.rb +++ b/plugins/system-shop.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "System-Shop" diff --git a/plugins/systembase-portbase.rb b/plugins/systembase-portbase.rb index bbc89c77..a789a853 100644 --- a/plugins/systembase-portbase.rb +++ b/plugins/systembase-portbase.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "SystemBase-PortBase" diff --git a/plugins/tab-and-link-manager.rb b/plugins/tab-and-link-manager.rb index 26d5f6d5..030ee06c 100644 --- a/plugins/tab-and-link-manager.rb +++ b/plugins/tab-and-link-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tab-and-Link-Manager" diff --git a/plugins/tac-xenta-controller.rb b/plugins/tac-xenta-controller.rb index 38eeed31..dbbeb2c6 100644 --- a/plugins/tac-xenta-controller.rb +++ b/plugins/tac-xenta-controller.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TAC-Xenta-Controller" diff --git a/plugins/talkswitch-phone.rb b/plugins/talkswitch-phone.rb index 7abecb03..2ce3174d 100644 --- a/plugins/talkswitch-phone.rb +++ b/plugins/talkswitch-phone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TalkSwitch-Phone" diff --git a/plugins/tanberg-videoconference-management-system.rb b/plugins/tanberg-videoconference-management-system.rb index 1ed6f46c..1782537e 100644 --- a/plugins/tanberg-videoconference-management-system.rb +++ b/plugins/tanberg-videoconference-management-system.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Videoconference-Management-System" diff --git a/plugins/tandberg-tv-web-server.rb b/plugins/tandberg-tv-web-server.rb index 1d5ebc99..11b1ca0f 100644 --- a/plugins/tandberg-tv-web-server.rb +++ b/plugins/tandberg-tv-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tandberg-TV-Web-Server" diff --git a/plugins/tangocms.rb b/plugins/tangocms.rb index 00ca54ab..dd22d97a 100644 --- a/plugins/tangocms.rb +++ b/plugins/tangocms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TangoCMS" diff --git a/plugins/taskfreak.rb b/plugins/taskfreak.rb index 955d3243..9fe4c028 100644 --- a/plugins/taskfreak.rb +++ b/plugins/taskfreak.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TaskFreak" diff --git a/plugins/taurus-server-appliance.rb b/plugins/taurus-server-appliance.rb index 334b94ae..ed670a31 100644 --- a/plugins/taurus-server-appliance.rb +++ b/plugins/taurus-server-appliance.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Taurus-Server-Appliance" diff --git a/plugins/tbdev-yse.rb b/plugins/tbdev-yse.rb index 4548778f..1eda4aea 100644 --- a/plugins/tbdev-yse.rb +++ b/plugins/tbdev-yse.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TBDev-YSE" diff --git a/plugins/tcexam.rb b/plugins/tcexam.rb index 43105297..45d2c79e 100644 --- a/plugins/tcexam.rb +++ b/plugins/tcexam.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TCExam" diff --git a/plugins/tcms.rb b/plugins/tcms.rb index 46e47c42..4994e37a 100644 --- a/plugins/tcms.rb +++ b/plugins/tcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TCMS" diff --git a/plugins/tealeaf.rb b/plugins/tealeaf.rb index a597cb9d..b33f64a9 100644 --- a/plugins/tealeaf.rb +++ b/plugins/tealeaf.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TeaLeaf" diff --git a/plugins/team-board.rb b/plugins/team-board.rb index f15f485a..aa66095a 100644 --- a/plugins/team-board.rb +++ b/plugins/team-board.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Team-Board" diff --git a/plugins/teamspeak-server-log.rb b/plugins/teamspeak-server-log.rb index 81864661..8f4d8b78 100644 --- a/plugins/teamspeak-server-log.rb +++ b/plugins/teamspeak-server-log.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TeamSpeak-Server-Log" diff --git a/plugins/teamviewer.rb b/plugins/teamviewer.rb index 68a85f8c..8e8f1e4f 100644 --- a/plugins/teamviewer.rb +++ b/plugins/teamviewer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TeamViewer" diff --git a/plugins/teapot.rb b/plugins/teapot.rb index 9c0c2f36..04079733 100644 --- a/plugins/teapot.rb +++ b/plugins/teapot.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Teapot" diff --git a/plugins/techno-dreams-faq-manager.rb b/plugins/techno-dreams-faq-manager.rb index a51bccf4..da88bcee 100644 --- a/plugins/techno-dreams-faq-manager.rb +++ b/plugins/techno-dreams-faq-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "FAQ-Manager" diff --git a/plugins/tektroniks.rb b/plugins/tektroniks.rb index d41de397..d535f471 100644 --- a/plugins/tektroniks.rb +++ b/plugins/tektroniks.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tektroniks" diff --git a/plugins/tele-data-cms.rb b/plugins/tele-data-cms.rb index 35fe73ec..bfc4c0a1 100644 --- a/plugins/tele-data-cms.rb +++ b/plugins/tele-data-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tele-Data-CMS" diff --git a/plugins/telefinder.rb b/plugins/telefinder.rb index 24402c18..390bf1b5 100644 --- a/plugins/telefinder.rb +++ b/plugins/telefinder.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TeleFinder" diff --git a/plugins/teleflora.rb b/plugins/teleflora.rb index a1a41c04..ac61c4d4 100644 --- a/plugins/teleflora.rb +++ b/plugins/teleflora.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # ## Plugin.define do diff --git a/plugins/telerik.rb b/plugins/telerik.rb index 314f5a1e..aab93773 100644 --- a/plugins/telerik.rb +++ b/plugins/telerik.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Telerik-UI" diff --git a/plugins/telligent-community-server.rb b/plugins/telligent-community-server.rb index 732cf354..63586dae 100644 --- a/plugins/telligent-community-server.rb +++ b/plugins/telligent-community-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Telligent-Community-Server" diff --git a/plugins/tencent-qq.rb b/plugins/tencent-qq.rb index 5c69b31f..07edc9cf 100644 --- a/plugins/tencent-qq.rb +++ b/plugins/tencent-qq.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tencent-QQ" diff --git a/plugins/tengine-web-server.rb b/plugins/tengine-web-server.rb index 874780b7..9e2ad5a8 100644 --- a/plugins/tengine-web-server.rb +++ b/plugins/tengine-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tengine-Web-Server" diff --git a/plugins/tenon-itools.rb b/plugins/tenon-itools.rb index 9974e406..09f3d821 100644 --- a/plugins/tenon-itools.rb +++ b/plugins/tenon-itools.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tenon-iTools" diff --git a/plugins/testlink.rb b/plugins/testlink.rb index 160127a1..b2e87ccc 100644 --- a/plugins/testlink.rb +++ b/plugins/testlink.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TestLink" diff --git a/plugins/teveolive-video-broadcast-software.rb b/plugins/teveolive-video-broadcast-software.rb index a8784621..f95cf1d3 100644 --- a/plugins/teveolive-video-broadcast-software.rb +++ b/plugins/teveolive-video-broadcast-software.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TeveoLive-Video-Broadcast-Software" diff --git a/plugins/textpattern-cms.rb b/plugins/textpattern-cms.rb index abb09370..a5d71f49 100644 --- a/plugins/textpattern-cms.rb +++ b/plugins/textpattern-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Textpattern-CMS" diff --git a/plugins/textpattern.rb b/plugins/textpattern.rb index 27c0f7f9..da713d0b 100644 --- a/plugins/textpattern.rb +++ b/plugins/textpattern.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Textpattern" diff --git a/plugins/tftgallery.rb b/plugins/tftgallery.rb index ce3f7c88..f282ac8a 100644 --- a/plugins/tftgallery.rb +++ b/plugins/tftgallery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TFTgallery" diff --git a/plugins/th-erp.rb b/plugins/th-erp.rb index f1dcec0e..d50ca9ea 100644 --- a/plugins/th-erp.rb +++ b/plugins/th-erp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "th-ERP" diff --git a/plugins/the-amazing-little-poll.rb b/plugins/the-amazing-little-poll.rb index 40a80566..056729f0 100644 --- a/plugins/the-amazing-little-poll.rb +++ b/plugins/the-amazing-little-poll.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "The-Amazing-Little-Poll" diff --git a/plugins/the-php-real-estate-script.rb b/plugins/the-php-real-estate-script.rb index 7af5010e..6c03c553 100644 --- a/plugins/the-php-real-estate-script.rb +++ b/plugins/the-php-real-estate-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "The-PHP-Real-Estate-Script" diff --git a/plugins/thehostingtool.rb b/plugins/thehostingtool.rb index c8a9e69e..2514ace3 100644 --- a/plugins/thehostingtool.rb +++ b/plugins/thehostingtool.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TheHostingTool" diff --git a/plugins/thin.rb b/plugins/thin.rb index f3f13321..d5f3dce5 100644 --- a/plugins/thin.rb +++ b/plugins/thin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "thin" diff --git a/plugins/think-plus.rb b/plugins/think-plus.rb index ef3484c2..887ed191 100644 --- a/plugins/think-plus.rb +++ b/plugins/think-plus.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Think-Plus" diff --git a/plugins/thoughtconduit.rb b/plugins/thoughtconduit.rb index f76659d4..fc55b545 100644 --- a/plugins/thoughtconduit.rb +++ b/plugins/thoughtconduit.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ThoughtConduit" diff --git a/plugins/thttpd.rb b/plugins/thttpd.rb index 6a7332c4..ea85df9b 100644 --- a/plugins/thttpd.rb +++ b/plugins/thttpd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "thttpd" diff --git a/plugins/tickets-cad-system.rb b/plugins/tickets-cad-system.rb index c0b2dcb4..33c60a50 100644 --- a/plugins/tickets-cad-system.rb +++ b/plugins/tickets-cad-system.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tickets-CAD-System" diff --git a/plugins/tiger-ip-connect.rb b/plugins/tiger-ip-connect.rb index c1649e7c..0600a9d3 100644 --- a/plugins/tiger-ip-connect.rb +++ b/plugins/tiger-ip-connect.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tiger-IP-Connect" diff --git a/plugins/tiger-netcom-device.rb b/plugins/tiger-netcom-device.rb index 2363eac2..03a466c6 100644 --- a/plugins/tiger-netcom-device.rb +++ b/plugins/tiger-netcom-device.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tiger-Netcom-Device" diff --git a/plugins/tilgin-router.rb b/plugins/tilgin-router.rb index 429e0698..2e7dd4e0 100644 --- a/plugins/tilgin-router.rb +++ b/plugins/tilgin-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tilgin-Router" diff --git a/plugins/timelink.rb b/plugins/timelink.rb index d9b5b387..7e00f453 100644 --- a/plugins/timelink.rb +++ b/plugins/timelink.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TimeLink" diff --git a/plugins/timelive.rb b/plugins/timelive.rb index 0d09262d..06f45bb3 100644 --- a/plugins/timelive.rb +++ b/plugins/timelive.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TimeLive" diff --git a/plugins/timesheet-ng.rb b/plugins/timesheet-ng.rb index 538aaff5..651eb3e1 100644 --- a/plugins/timesheet-ng.rb +++ b/plugins/timesheet-ng.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Timesheet-NG" diff --git a/plugins/tine-2.0.rb b/plugins/tine-2.0.rb index bdb8a9db..5deb0654 100644 --- a/plugins/tine-2.0.rb +++ b/plugins/tine-2.0.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tine-2" diff --git a/plugins/tinybb.rb b/plugins/tinybb.rb index c967da73..e2a02fd3 100644 --- a/plugins/tinybb.rb +++ b/plugins/tinybb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TinyBB" diff --git a/plugins/tinyproxy.rb b/plugins/tinyproxy.rb index 5996e797..6d79c3ef 100644 --- a/plugins/tinyproxy.rb +++ b/plugins/tinyproxy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tinyproxy" diff --git a/plugins/title.rb b/plugins/title.rb index c6ccfa25..7a86d30a 100644 --- a/plugins/title.rb +++ b/plugins/title.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Title" diff --git a/plugins/tivo.rb b/plugins/tivo.rb index 280c706c..d2570082 100644 --- a/plugins/tivo.rb +++ b/plugins/tivo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TiVo" diff --git a/plugins/tivoli-access-manager.rb b/plugins/tivoli-access-manager.rb index ee31e209..894090b8 100644 --- a/plugins/tivoli-access-manager.rb +++ b/plugins/tivoli-access-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tivoli-Access-Manager" diff --git a/plugins/tivowebplus.rb b/plugins/tivowebplus.rb index 88a45680..a610d963 100644 --- a/plugins/tivowebplus.rb +++ b/plugins/tivowebplus.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TivoWebPlus" diff --git a/plugins/tmsoft-myauth-gateway.rb b/plugins/tmsoft-myauth-gateway.rb index 5ed7f32f..cca109ee 100644 --- a/plugins/tmsoft-myauth-gateway.rb +++ b/plugins/tmsoft-myauth-gateway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TMSoft-MyAuth-Gateway" diff --git a/plugins/tmw-imaging.rb b/plugins/tmw-imaging.rb index e7f0b129..1eb31ac2 100644 --- a/plugins/tmw-imaging.rb +++ b/plugins/tmw-imaging.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TMW-Imaging" diff --git a/plugins/tomatocart.rb b/plugins/tomatocart.rb index 418d04f9..12e50fa0 100644 --- a/plugins/tomatocart.rb +++ b/plugins/tomatocart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TomatoCart" diff --git a/plugins/tomatocms.rb b/plugins/tomatocms.rb index d6c4d6c1..17c68232 100644 --- a/plugins/tomatocms.rb +++ b/plugins/tomatocms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TomatoCMS" diff --git a/plugins/toner-cart.rb b/plugins/toner-cart.rb index b84241e8..d0de64d8 100644 --- a/plugins/toner-cart.rb +++ b/plugins/toner-cart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Toner-Cart" diff --git a/plugins/torrentflux.rb b/plugins/torrentflux.rb index 9469da96..18e3e4da 100644 --- a/plugins/torrentflux.rb +++ b/plugins/torrentflux.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TorrentFlux" diff --git a/plugins/toshiba-cable-modem.rb b/plugins/toshiba-cable-modem.rb index 64973f9f..5319feed 100644 --- a/plugins/toshiba-cable-modem.rb +++ b/plugins/toshiba-cable-modem.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Toshiba-Cable-Modem" diff --git a/plugins/toshiba-network-camera.rb b/plugins/toshiba-network-camera.rb index 014738bc..54144c29 100644 --- a/plugins/toshiba-network-camera.rb +++ b/plugins/toshiba-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Toshiba-Network-Camera" diff --git a/plugins/toshiba-printer.rb b/plugins/toshiba-printer.rb index 3da323cd..8d98dcd7 100644 --- a/plugins/toshiba-printer.rb +++ b/plugins/toshiba-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ToshibaPrinter" diff --git a/plugins/toshiba-projector.rb b/plugins/toshiba-projector.rb index b75586e2..b27e4d0e 100644 --- a/plugins/toshiba-projector.rb +++ b/plugins/toshiba-projector.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Toshiba-Projector" diff --git a/plugins/totvs-smartclient.rb b/plugins/totvs-smartclient.rb index ce238cb5..ad10d9eb 100644 --- a/plugins/totvs-smartclient.rb +++ b/plugins/totvs-smartclient.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TOTVS-SmartClient" diff --git a/plugins/tp-link-router.rb b/plugins/tp-link-router.rb index a42b4207..31dff73a 100644 --- a/plugins/tp-link-router.rb +++ b/plugins/tp-link-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TP-Link-Router" diff --git a/plugins/trac.rb b/plugins/trac.rb index 54ac2327..71ff10f7 100644 --- a/plugins/trac.rb +++ b/plugins/trac.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Trac" diff --git a/plugins/tracewatch.rb b/plugins/tracewatch.rb index 5b0ee31c..5e190ba1 100644 --- a/plugins/tracewatch.rb +++ b/plugins/tracewatch.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TraceWatch" diff --git a/plugins/tradingeye.rb b/plugins/tradingeye.rb index f4a23cc3..0e4a6aba 100644 --- a/plugins/tradingeye.rb +++ b/plugins/tradingeye.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tradingeye" diff --git a/plugins/traffic-inspector.rb b/plugins/traffic-inspector.rb index d6456903..86fde641 100644 --- a/plugins/traffic-inspector.rb +++ b/plugins/traffic-inspector.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Traffic-Inspector" diff --git a/plugins/traidnt-up.rb b/plugins/traidnt-up.rb index 827e1543..b192d9cc 100644 --- a/plugins/traidnt-up.rb +++ b/plugins/traidnt-up.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Traidnt-UP" diff --git a/plugins/trbas.rb b/plugins/trbas.rb index 12470459..454c208a 100644 --- a/plugins/trbas.rb +++ b/plugins/trbas.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Trbas" diff --git a/plugins/treenews.rb b/plugins/treenews.rb index 31b133a9..2a1adc2f 100644 --- a/plugins/treenews.rb +++ b/plugins/treenews.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TreeNeWS" diff --git a/plugins/trend-micro.rb b/plugins/trend-micro.rb index b8bb746d..acd4a8f5 100644 --- a/plugins/trend-micro.rb +++ b/plugins/trend-micro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Trend-Micro" diff --git a/plugins/trendnet-print-server.rb b/plugins/trendnet-print-server.rb index 40dfe5c8..7d60a24d 100644 --- a/plugins/trendnet-print-server.rb +++ b/plugins/trendnet-print-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TRENDnet-Print-Server" diff --git a/plugins/trendnet-router.rb b/plugins/trendnet-router.rb index 52e32409..38faf1f7 100644 --- a/plugins/trendnet-router.rb +++ b/plugins/trendnet-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TRENDnet-Router" diff --git a/plugins/tribiq.rb b/plugins/tribiq.rb index d10e48bb..73798eea 100644 --- a/plugins/tribiq.rb +++ b/plugins/tribiq.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tribiq" diff --git a/plugins/tribune.rb b/plugins/tribune.rb index f09b8d3a..5818518f 100644 --- a/plugins/tribune.rb +++ b/plugins/tribune.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TribuneNews" diff --git a/plugins/trident7-wave7-olt.rb b/plugins/trident7-wave7-olt.rb index 074bd9bb..c9ccf83b 100644 --- a/plugins/trident7-wave7-olt.rb +++ b/plugins/trident7-wave7-olt.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TRIDENT7-Wave7-OLT" diff --git a/plugins/troy-serial-server.rb b/plugins/troy-serial-server.rb index 10251645..bb78e7bb 100644 --- a/plugins/troy-serial-server.rb +++ b/plugins/troy-serial-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TROY-Serial-Server" diff --git a/plugins/truition.rb b/plugins/truition.rb index 70c2aca3..8f5146e6 100644 --- a/plugins/truition.rb +++ b/plugins/truition.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Truition" diff --git a/plugins/tumblr.rb b/plugins/tumblr.rb index 5ae092bb..57489d42 100644 --- a/plugins/tumblr.rb +++ b/plugins/tumblr.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Tumblr" diff --git a/plugins/turbo-seek.rb b/plugins/turbo-seek.rb index 365c5884..9bf6cb3d 100644 --- a/plugins/turbo-seek.rb +++ b/plugins/turbo-seek.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Turbo-Seek" diff --git a/plugins/tutortrac.rb b/plugins/tutortrac.rb index 0e5d4fbc..9a2c239d 100644 --- a/plugins/tutortrac.rb +++ b/plugins/tutortrac.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TutorTrac" diff --git a/plugins/tversity.rb b/plugins/tversity.rb index 5d8992bb..7b34b8ff 100644 --- a/plugins/tversity.rb +++ b/plugins/tversity.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TVersity" diff --git a/plugins/twiki.rb b/plugins/twiki.rb index d6e82a58..bd38f512 100644 --- a/plugins/twiki.rb +++ b/plugins/twiki.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TWiki" diff --git a/plugins/twistedweb.rb b/plugins/twistedweb.rb index 5490f596..31a88860 100644 --- a/plugins/twistedweb.rb +++ b/plugins/twistedweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TwistedWeb" diff --git a/plugins/twonkyserver.rb b/plugins/twonkyserver.rb index cd78ddd9..023dd6c6 100644 --- a/plugins/twonkyserver.rb +++ b/plugins/twonkyserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TwonkyServer" diff --git a/plugins/typekit.rb b/plugins/typekit.rb index 5c257dc2..e3e0ccf5 100644 --- a/plugins/typekit.rb +++ b/plugins/typekit.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Typekit" diff --git a/plugins/typepad.rb b/plugins/typepad.rb index 824380ba..dc062550 100644 --- a/plugins/typepad.rb +++ b/plugins/typepad.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TypePad" diff --git a/plugins/typo3.rb b/plugins/typo3.rb index 45de72da..75275bba 100644 --- a/plugins/typo3.rb +++ b/plugins/typo3.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TYPO3" diff --git a/plugins/typolight.rb b/plugins/typolight.rb index 59bf581f..5b870691 100644 --- a/plugins/typolight.rb +++ b/plugins/typolight.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "TypoLight" diff --git a/plugins/ucenter-home.rb b/plugins/ucenter-home.rb index 566aff00..f269ffa9 100644 --- a/plugins/ucenter-home.rb +++ b/plugins/ucenter-home.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "UCenter-Home" diff --git a/plugins/uclinux-httpd.rb b/plugins/uclinux-httpd.rb index 8f7b907d..81c33194 100644 --- a/plugins/uclinux-httpd.rb +++ b/plugins/uclinux-httpd.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "uClinux-httpd" diff --git a/plugins/uebimiau-webmail.rb b/plugins/uebimiau-webmail.rb index 5761a19e..3bea27e9 100644 --- a/plugins/uebimiau-webmail.rb +++ b/plugins/uebimiau-webmail.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Uebimiau-Webmail" diff --git a/plugins/ultimatebb.rb b/plugins/ultimatebb.rb index 49194993..ac3f30b4 100644 --- a/plugins/ultimatebb.rb +++ b/plugins/ultimatebb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ultimate-Bulletin-Board" diff --git a/plugins/ultraseek.rb b/plugins/ultraseek.rb index 127593e0..7144b570 100644 --- a/plugins/ultraseek.rb +++ b/plugins/ultraseek.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ultraseek" diff --git a/plugins/ultrastats.rb b/plugins/ultrastats.rb index e0f231ea..673f2523 100644 --- a/plugins/ultrastats.rb +++ b/plugins/ultrastats.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ultrastats" diff --git a/plugins/umbraco.rb b/plugins/umbraco.rb index 68766b69..1a6f5032 100644 --- a/plugins/umbraco.rb +++ b/plugins/umbraco.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Umbraco" diff --git a/plugins/unbounce.rb b/plugins/unbounce.rb index 8a24006d..2b45b904 100644 --- a/plugins/unbounce.rb +++ b/plugins/unbounce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "UnBounce" diff --git a/plugins/uncommon-headers.rb b/plugins/uncommon-headers.rb index 23f733ce..9b335de3 100644 --- a/plugins/uncommon-headers.rb +++ b/plugins/uncommon-headers.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "UncommonHeaders" diff --git a/plugins/uniform-server.rb b/plugins/uniform-server.rb index d690eef6..325f9653 100644 --- a/plugins/uniform-server.rb +++ b/plugins/uniform-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Uniform-Server" diff --git a/plugins/unimep-station-controller.rb b/plugins/unimep-station-controller.rb index d96ce6ba..2b02cfdf 100644 --- a/plugins/unimep-station-controller.rb +++ b/plugins/unimep-station-controller.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Unimep-Station-Controller" diff --git a/plugins/unknown-router.rb b/plugins/unknown-router.rb index 584d75e9..70a34a87 100644 --- a/plugins/unknown-router.rb +++ b/plugins/unknown-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Router" diff --git a/plugins/uportal.rb b/plugins/uportal.rb index 459d7acf..01566b27 100644 --- a/plugins/uportal.rb +++ b/plugins/uportal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "uPortal" diff --git a/plugins/urlrewriter.net.rb b/plugins/urlrewriter.net.rb index 908ed8ac..cec488d6 100644 --- a/plugins/urlrewriter.net.rb +++ b/plugins/urlrewriter.net.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "UrlRewriter_NET" diff --git a/plugins/useresponse.rb b/plugins/useresponse.rb index d3bbe00e..940b3e54 100644 --- a/plugins/useresponse.rb +++ b/plugins/useresponse.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "UseResponse" diff --git a/plugins/userland-frontier.rb b/plugins/userland-frontier.rb index baaa92d4..7216e63d 100644 --- a/plugins/userland-frontier.rb +++ b/plugins/userland-frontier.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "UserLand-Frontier" diff --git a/plugins/ushahidi.rb b/plugins/ushahidi.rb index f81e64cb..b6657b1a 100644 --- a/plugins/ushahidi.rb +++ b/plugins/ushahidi.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Ushahidi" diff --git a/plugins/usp-secure-entry-server.rb b/plugins/usp-secure-entry-server.rb index b0cb1d3b..675a95a7 100644 --- a/plugins/usp-secure-entry-server.rb +++ b/plugins/usp-secure-entry-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "USP-Secure-Entry-Server" diff --git a/plugins/usp-secure-login-service.rb b/plugins/usp-secure-login-service.rb index 93f17bc3..22a2ce99 100644 --- a/plugins/usp-secure-login-service.rb +++ b/plugins/usp-secure-login-service.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "USP-Secure-Login-Service" diff --git a/plugins/utopia-news-pro.rb b/plugins/utopia-news-pro.rb index 384791a7..9faecbdf 100644 --- a/plugins/utopia-news-pro.rb +++ b/plugins/utopia-news-pro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Utopia-News-Pro" diff --git a/plugins/utorrent.rb b/plugins/utorrent.rb index 49c670f8..665648c7 100644 --- a/plugins/utorrent.rb +++ b/plugins/utorrent.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "uTorrent" diff --git a/plugins/vamcart.rb b/plugins/vamcart.rb index c71b5a71..19d87972 100644 --- a/plugins/vamcart.rb +++ b/plugins/vamcart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VamCart" diff --git a/plugins/vanilla-forums.rb b/plugins/vanilla-forums.rb index 7507d49d..cfe73fca 100644 --- a/plugins/vanilla-forums.rb +++ b/plugins/vanilla-forums.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Vanilla-Forums" diff --git a/plugins/varnish.rb b/plugins/varnish.rb index 7a1d57c4..4df302b8 100644 --- a/plugins/varnish.rb +++ b/plugins/varnish.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Varnish" diff --git a/plugins/vbportal.rb b/plugins/vbportal.rb index 48e0b3e2..d802d60e 100644 --- a/plugins/vbportal.rb +++ b/plugins/vbportal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "vbPortal" diff --git a/plugins/vbulletin.rb b/plugins/vbulletin.rb index 5e83e282..786f5dec 100644 --- a/plugins/vbulletin.rb +++ b/plugins/vbulletin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VBulletin" diff --git a/plugins/vcalendar.rb b/plugins/vcalendar.rb index 55195d9d..dcc5c743 100644 --- a/plugins/vcalendar.rb +++ b/plugins/vcalendar.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VCalendar" diff --git a/plugins/vcard.rb b/plugins/vcard.rb index ee4c180e..07e48b48 100644 --- a/plugins/vcard.rb +++ b/plugins/vcard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "vcard" diff --git a/plugins/velazquez.rb b/plugins/velazquez.rb index b4db2a26..6b961452 100644 --- a/plugins/velazquez.rb +++ b/plugins/velazquez.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Velazquez" diff --git a/plugins/veo-observer.rb b/plugins/veo-observer.rb index 130b00d6..e1ca6443 100644 --- a/plugins/veo-observer.rb +++ b/plugins/veo-observer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Veo-Observer" diff --git a/plugins/via.rb b/plugins/via.rb index 555f4952..e8503755 100644 --- a/plugins/via.rb +++ b/plugins/via.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Via-Proxy" diff --git a/plugins/video-cms.rb b/plugins/video-cms.rb index 677c8d34..2b4249bc 100644 --- a/plugins/video-cms.rb +++ b/plugins/video-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Video-CMS" diff --git a/plugins/video-share-enterprise.rb b/plugins/video-share-enterprise.rb index 4ad70f20..99289cdf 100644 --- a/plugins/video-share-enterprise.rb +++ b/plugins/video-share-enterprise.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VideoShareEnterprise" diff --git a/plugins/videodb.rb b/plugins/videodb.rb index 9bb0a39d..b4990552 100644 --- a/plugins/videodb.rb +++ b/plugins/videodb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VideoDB" diff --git a/plugins/videosmate-organizer.rb b/plugins/videosmate-organizer.rb index 12e8edd8..25311337 100644 --- a/plugins/videosmate-organizer.rb +++ b/plugins/videosmate-organizer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Videosmate-Organizer" diff --git a/plugins/vidiscript.rb b/plugins/vidiscript.rb index 2d165aed..815b86a9 100644 --- a/plugins/vidiscript.rb +++ b/plugins/vidiscript.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VidiScript" diff --git a/plugins/viewvc.rb b/plugins/viewvc.rb index 40fc2230..123fe0e6 100644 --- a/plugins/viewvc.rb +++ b/plugins/viewvc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ViewVC" diff --git a/plugins/vigor-router.rb b/plugins/vigor-router.rb index 09eed41f..8d1e6fb0 100644 --- a/plugins/vigor-router.rb +++ b/plugins/vigor-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Vigor-Router" diff --git a/plugins/viking.rb b/plugins/viking.rb index 049c64ea..b7a20625 100644 --- a/plugins/viking.rb +++ b/plugins/viking.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Viking" diff --git a/plugins/vimeo.rb b/plugins/vimeo.rb index 334b220f..b7717b8f 100644 --- a/plugins/vimeo.rb +++ b/plugins/vimeo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Vimeo" diff --git a/plugins/virtualmin.rb b/plugins/virtualmin.rb index 13d12a3a..12431495 100644 --- a/plugins/virtualmin.rb +++ b/plugins/virtualmin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Virtualmin" diff --git a/plugins/virtuemart.rb b/plugins/virtuemart.rb index c73b7ae1..322d09e1 100644 --- a/plugins/virtuemart.rb +++ b/plugins/virtuemart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VirtueMart" diff --git a/plugins/viscacha.rb b/plugins/viscacha.rb index d0a9f05f..fbc669e1 100644 --- a/plugins/viscacha.rb +++ b/plugins/viscacha.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Viscacha" diff --git a/plugins/visec.rb b/plugins/visec.rb index 4b427342..bafa57bd 100644 --- a/plugins/visec.rb +++ b/plugins/visec.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Visec" diff --git a/plugins/visiongs-webcam.rb b/plugins/visiongs-webcam.rb index a4e8e550..00e98812 100644 --- a/plugins/visiongs-webcam.rb +++ b/plugins/visiongs-webcam.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VisionGS-Webcam" diff --git a/plugins/visionweb.rb b/plugins/visionweb.rb index 3c2d33c7..cf29b4c6 100644 --- a/plugins/visionweb.rb +++ b/plugins/visionweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VisionWEB" diff --git a/plugins/visualroute.rb b/plugins/visualroute.rb index 548a467e..6256deaa 100644 --- a/plugins/visualroute.rb +++ b/plugins/visualroute.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VisualRoute" diff --git a/plugins/visualware-myconnection-server.rb b/plugins/visualware-myconnection-server.rb index 66d2041b..873a263e 100644 --- a/plugins/visualware-myconnection-server.rb +++ b/plugins/visualware-myconnection-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Visualware-MyConnection-Server" diff --git a/plugins/vivotek-network-camera.rb b/plugins/vivotek-network-camera.rb index dac5c86b..96f5a2cb 100644 --- a/plugins/vivotek-network-camera.rb +++ b/plugins/vivotek-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Vivotek-Network-Camera" diff --git a/plugins/vlc-web-interface.rb b/plugins/vlc-web-interface.rb index b1977166..bd193dd3 100644 --- a/plugins/vlc-web-interface.rb +++ b/plugins/vlc-web-interface.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VLC-Web-Interface" diff --git a/plugins/vmware-esxi-server.rb b/plugins/vmware-esxi-server.rb index bc9c186c..855ac209 100644 --- a/plugins/vmware-esxi-server.rb +++ b/plugins/vmware-esxi-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VMware-ESXi-Server" diff --git a/plugins/vmware-horizon.rb b/plugins/vmware-horizon.rb index 99cb69e7..57dddf4e 100644 --- a/plugins/vmware-horizon.rb +++ b/plugins/vmware-horizon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VMware-Horizon" diff --git a/plugins/vmware-virtualcenter.rb b/plugins/vmware-virtualcenter.rb index 0300b0bb..76efee44 100644 --- a/plugins/vmware-virtualcenter.rb +++ b/plugins/vmware-virtualcenter.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VMware-VirtualCenter" diff --git a/plugins/vmware-zimbra.rb b/plugins/vmware-zimbra.rb index ce0f3a87..eea912b9 100644 --- a/plugins/vmware-zimbra.rb +++ b/plugins/vmware-zimbra.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VMware-Zimbra" diff --git a/plugins/voip-router-gateway.rb b/plugins/voip-router-gateway.rb index f79b9e41..71f43fca 100644 --- a/plugins/voip-router-gateway.rb +++ b/plugins/voip-router-gateway.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VoIP-Router-Gateway" diff --git a/plugins/vp-asp.rb b/plugins/vp-asp.rb index ee168826..3108968b 100644 --- a/plugins/vp-asp.rb +++ b/plugins/vp-asp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VP-ASP" diff --git a/plugins/vpon.rb b/plugins/vpon.rb index a6700a9e..f18e592e 100644 --- a/plugins/vpon.rb +++ b/plugins/vpon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VPON" diff --git a/plugins/vqserver.rb b/plugins/vqserver.rb index 95f43646..c0223154 100644 --- a/plugins/vqserver.rb +++ b/plugins/vqserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "vqServer" diff --git a/plugins/vs-panel.rb b/plugins/vs-panel.rb index 5be5fad1..08580292 100644 --- a/plugins/vs-panel.rb +++ b/plugins/vs-panel.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VS-Panel" diff --git a/plugins/vsns-lemon.rb b/plugins/vsns-lemon.rb index 6f5e8439..b472459a 100644 --- a/plugins/vsns-lemon.rb +++ b/plugins/vsns-lemon.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VSNSLemon" diff --git a/plugins/vsp-stats-processor.rb b/plugins/vsp-stats-processor.rb index 47fda048..aa30edf1 100644 --- a/plugins/vsp-stats-processor.rb +++ b/plugins/vsp-stats-processor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VSP-Stats-Processor" diff --git a/plugins/vtigercrm.rb b/plugins/vtigercrm.rb index 64f30075..0b51dd30 100644 --- a/plugins/vtigercrm.rb +++ b/plugins/vtigercrm.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "vTigerCRM" diff --git a/plugins/vts.rb b/plugins/vts.rb index cde53cef..01d0e1bf 100644 --- a/plugins/vts.rb +++ b/plugins/vts.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "VTS" diff --git a/plugins/vulnerable-to-xss.rb b/plugins/vulnerable-to-xss.rb index ba37f1f4..c3277b44 100644 --- a/plugins/vulnerable-to-xss.rb +++ b/plugins/vulnerable-to-xss.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Vulnerable-To-XSS" diff --git a/plugins/w-agora.rb b/plugins/w-agora.rb index 56364640..ba226a94 100644 --- a/plugins/w-agora.rb +++ b/plugins/w-agora.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "w-agora" diff --git a/plugins/w3-total-cache.rb b/plugins/w3-total-cache.rb index d6fcc685..ebcf1d3a 100644 --- a/plugins/w3-total-cache.rb +++ b/plugins/w3-total-cache.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "W3-Total-Cache" diff --git a/plugins/w3mfc.rb b/plugins/w3mfc.rb index 02d6408a..cabf0505 100644 --- a/plugins/w3mfc.rb +++ b/plugins/w3mfc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "W3MFC" diff --git a/plugins/wacintaki-poteto-bbs.rb b/plugins/wacintaki-poteto-bbs.rb index 94fbe4f9..43b825e3 100644 --- a/plugins/wacintaki-poteto-bbs.rb +++ b/plugins/wacintaki-poteto-bbs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Wacintaki-Poteto-BBS" diff --git a/plugins/wampserver.rb b/plugins/wampserver.rb index 320b8ee3..c1824717 100644 --- a/plugins/wampserver.rb +++ b/plugins/wampserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WampServer" diff --git a/plugins/wanem.rb b/plugins/wanem.rb index 3b0bec68..528854fc 100644 --- a/plugins/wanem.rb +++ b/plugins/wanem.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WANem" diff --git a/plugins/warcraft-3-frozen-throne-config-file.rb b/plugins/warcraft-3-frozen-throne-config-file.rb index 936fa157..9cd06f75 100644 --- a/plugins/warcraft-3-frozen-throne-config-file.rb +++ b/plugins/warcraft-3-frozen-throne-config-file.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Warcraft-3-Frozen-Throne-Mod-Config-File" diff --git a/plugins/warning.rb b/plugins/warning.rb index 7e00d9c6..32042816 100644 --- a/plugins/warning.rb +++ b/plugins/warning.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Warning" diff --git a/plugins/watchguard-firewall.rb b/plugins/watchguard-firewall.rb index 30547c42..b35801b2 100644 --- a/plugins/watchguard-firewall.rb +++ b/plugins/watchguard-firewall.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WatchGuard-Firewall" diff --git a/plugins/watson.rb b/plugins/watson.rb index 5f996917..a6143e4c 100644 --- a/plugins/watson.rb +++ b/plugins/watson.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Watson-Router" diff --git a/plugins/weatimages.rb b/plugins/weatimages.rb index 487ef9f2..ac937b06 100644 --- a/plugins/weatimages.rb +++ b/plugins/weatimages.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Weatimages" diff --git a/plugins/web-calendar-system.rb b/plugins/web-calendar-system.rb index 1a41e311..d0c195d9 100644 --- a/plugins/web-calendar-system.rb +++ b/plugins/web-calendar-system.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Web-Calendar-System" diff --git a/plugins/web-control-panel.rb b/plugins/web-control-panel.rb index 97e45258..cd5f4976 100644 --- a/plugins/web-control-panel.rb +++ b/plugins/web-control-panel.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Web-Control-Panel" diff --git a/plugins/web-crossing-server.rb b/plugins/web-crossing-server.rb index da12da54..80be8d48 100644 --- a/plugins/web-crossing-server.rb +++ b/plugins/web-crossing-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Web-Crossing-Server" diff --git a/plugins/web-data-administrator.rb b/plugins/web-data-administrator.rb index 83bc0e9e..78086ec8 100644 --- a/plugins/web-data-administrator.rb +++ b/plugins/web-data-administrator.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Web-Data-Administrator" diff --git a/plugins/web-publishing-wizard.rb b/plugins/web-publishing-wizard.rb index 41bb779e..00074cb0 100644 --- a/plugins/web-publishing-wizard.rb +++ b/plugins/web-publishing-wizard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Web-Publishing-Wizard" diff --git a/plugins/web-wiz-rich-text-editor.rb b/plugins/web-wiz-rich-text-editor.rb index b10393bd..93497a23 100644 --- a/plugins/web-wiz-rich-text-editor.rb +++ b/plugins/web-wiz-rich-text-editor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Web-Wiz-Rich-Text-Editor" diff --git a/plugins/web2.rb b/plugins/web2.rb index 6c58b37b..e2c18fdf 100644 --- a/plugins/web2.rb +++ b/plugins/web2.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Web2" diff --git a/plugins/web2project.rb b/plugins/web2project.rb index 74a7a5c7..51cf09d0 100644 --- a/plugins/web2project.rb +++ b/plugins/web2project.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "web2Project" diff --git a/plugins/web2py.rb b/plugins/web2py.rb index 150072ee..6344eb34 100644 --- a/plugins/web2py.rb +++ b/plugins/web2py.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Web2py" diff --git a/plugins/webalizer-log.rb b/plugins/webalizer-log.rb index 9114c5a8..1f2d388d 100644 --- a/plugins/webalizer-log.rb +++ b/plugins/webalizer-log.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Webalizer-Log" diff --git a/plugins/webasyst-shop-script.rb b/plugins/webasyst-shop-script.rb index 9d4ffa20..876e44a6 100644 --- a/plugins/webasyst-shop-script.rb +++ b/plugins/webasyst-shop-script.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebAsyst-Shop-Script" diff --git a/plugins/webbackdoor.rb b/plugins/webbackdoor.rb index 876652fa..ed23b81c 100644 --- a/plugins/webbackdoor.rb +++ b/plugins/webbackdoor.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "webbackdoor" diff --git a/plugins/webbased-pear-package-manager.rb b/plugins/webbased-pear-package-manager.rb index 6286d17a..1f91c9bb 100644 --- a/plugins/webbased-pear-package-manager.rb +++ b/plugins/webbased-pear-package-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Webbased-PEAR-Package-Manager" diff --git a/plugins/webbler.rb b/plugins/webbler.rb index bd6288e1..4e5f6ea8 100644 --- a/plugins/webbler.rb +++ b/plugins/webbler.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Webbler" diff --git a/plugins/webcompro-cms.rb b/plugins/webcompro-cms.rb index e8b053c6..4b3b9004 100644 --- a/plugins/webcompro-cms.rb +++ b/plugins/webcompro-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WEBCOMpro-CMS" diff --git a/plugins/webdav.rb b/plugins/webdav.rb index ba969bb2..8acd7797 100644 --- a/plugins/webdav.rb +++ b/plugins/webdav.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebDAV" diff --git a/plugins/webduino.rb b/plugins/webduino.rb index 3ecd25dc..6f39e1b1 100644 --- a/plugins/webduino.rb +++ b/plugins/webduino.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Webduino" diff --git a/plugins/webdvr.rb b/plugins/webdvr.rb index 77947ee7..a197a044 100644 --- a/plugins/webdvr.rb +++ b/plugins/webdvr.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebDVR" diff --git a/plugins/webeye-network-camera.rb b/plugins/webeye-network-camera.rb index 6b554b52..9608601f 100644 --- a/plugins/webeye-network-camera.rb +++ b/plugins/webeye-network-camera.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebEye-Network-Camera" diff --git a/plugins/webfs.rb b/plugins/webfs.rb index d91203e9..80ec0866 100644 --- a/plugins/webfs.rb +++ b/plugins/webfs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "webfs" diff --git a/plugins/webgrind.rb b/plugins/webgrind.rb index 7b3724cb..e1a43f98 100644 --- a/plugins/webgrind.rb +++ b/plugins/webgrind.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Webgrind" diff --git a/plugins/webguard.rb b/plugins/webguard.rb index a1bba6c4..17070219 100644 --- a/plugins/webguard.rb +++ b/plugins/webguard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebGuard" diff --git a/plugins/webhare-application-portal.rb b/plugins/webhare-application-portal.rb index 447a8376..dcf90ee6 100644 --- a/plugins/webhare-application-portal.rb +++ b/plugins/webhare-application-portal.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebHare-Application-Portal" diff --git a/plugins/webid.rb b/plugins/webid.rb index 00bc33f8..d6948b69 100644 --- a/plugins/webid.rb +++ b/plugins/webid.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WeBid" diff --git a/plugins/webiis.rb b/plugins/webiis.rb index be50e55c..fd96098c 100644 --- a/plugins/webiis.rb +++ b/plugins/webiis.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebIIS" diff --git a/plugins/webissues.rb b/plugins/webissues.rb index 898dc90a..789cb3b4 100644 --- a/plugins/webissues.rb +++ b/plugins/webissues.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebIssues" diff --git a/plugins/webknight.rb b/plugins/webknight.rb index 940c382c..038223a7 100644 --- a/plugins/webknight.rb +++ b/plugins/webknight.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebKnight" diff --git a/plugins/webmatic.rb b/plugins/webmatic.rb index 164702dc..36f371e3 100644 --- a/plugins/webmatic.rb +++ b/plugins/webmatic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Webmatic" diff --git a/plugins/webmedia-explorer.rb b/plugins/webmedia-explorer.rb index d70637cf..c2e41bd4 100644 --- a/plugins/webmedia-explorer.rb +++ b/plugins/webmedia-explorer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Webmedia-Explorer" diff --git a/plugins/webobjects.rb b/plugins/webobjects.rb index 7cc6c63b..54a5d939 100644 --- a/plugins/webobjects.rb +++ b/plugins/webobjects.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebObjects" diff --git a/plugins/webpa.rb b/plugins/webpa.rb index dce6544c..47292678 100644 --- a/plugins/webpa.rb +++ b/plugins/webpa.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebPA" diff --git a/plugins/webpress.rb b/plugins/webpress.rb index 8d28d8fa..16291a3d 100644 --- a/plugins/webpress.rb +++ b/plugins/webpress.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebPress" diff --git a/plugins/websidestory.rb b/plugins/websidestory.rb index 5c8707ae..49dc464b 100644 --- a/plugins/websidestory.rb +++ b/plugins/websidestory.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebSideStory" diff --git a/plugins/website-tonight.rb b/plugins/website-tonight.rb index 872be55c..1c252658 100644 --- a/plugins/website-tonight.rb +++ b/plugins/website-tonight.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebsiteTonight" diff --git a/plugins/websitebaker-cms.rb b/plugins/websitebaker-cms.rb index 893e5587..55e5ce23 100644 --- a/plugins/websitebaker-cms.rb +++ b/plugins/websitebaker-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebsiteBaker-CMS" diff --git a/plugins/websitepro.rb b/plugins/websitepro.rb index 1bfe4bed..293e5ffa 100644 --- a/plugins/websitepro.rb +++ b/plugins/websitepro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebSitePro" diff --git a/plugins/websocket.rb b/plugins/websocket.rb index fc7a4675..2c280234 100644 --- a/plugins/websocket.rb +++ b/plugins/websocket.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebSocket" diff --git a/plugins/webspell.rb b/plugins/webspell.rb index 1c999bc3..a7e8e5f0 100644 --- a/plugins/webspell.rb +++ b/plugins/webspell.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "webSPELL" diff --git a/plugins/webspotblogging.rb b/plugins/webspotblogging.rb index 76bae7b3..6002b7c4 100644 --- a/plugins/webspotblogging.rb +++ b/plugins/webspotblogging.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebspotBlogging" diff --git a/plugins/websvn.rb b/plugins/websvn.rb index cedfc80a..e8de058b 100644 --- a/plugins/websvn.rb +++ b/plugins/websvn.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebSVN" diff --git a/plugins/webtrends.rb b/plugins/webtrends.rb index ca39d0a4..ca4d86a7 100644 --- a/plugins/webtrends.rb +++ b/plugins/webtrends.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebTrends" diff --git a/plugins/webyep.rb b/plugins/webyep.rb index 78bfe937..40a92e1f 100644 --- a/plugins/webyep.rb +++ b/plugins/webyep.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WebYep" diff --git a/plugins/weebly.rb b/plugins/weebly.rb index 9f3c0dab..6764b57c 100644 --- a/plugins/weebly.rb +++ b/plugins/weebly.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Weebly" diff --git a/plugins/werkzeug.rb b/plugins/werkzeug.rb index caf0e270..b77c51d9 100644 --- a/plugins/werkzeug.rb +++ b/plugins/werkzeug.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Werkzeug" diff --git a/plugins/whatsup.rb b/plugins/whatsup.rb index 3224dc7d..7989b65c 100644 --- a/plugins/whatsup.rb +++ b/plugins/whatsup.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WhatsUp" diff --git a/plugins/whatweb-plugin.rb b/plugins/whatweb-plugin.rb index ccbad175..75672ff6 100644 --- a/plugins/whatweb-plugin.rb +++ b/plugins/whatweb-plugin.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WhatWeb-Plugin" diff --git a/plugins/whiteboard.rb b/plugins/whiteboard.rb index 908cf3bf..593dc832 100644 --- a/plugins/whiteboard.rb +++ b/plugins/whiteboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WhiteBoard" diff --git a/plugins/whizzy-cms.rb b/plugins/whizzy-cms.rb index d9f3073b..63fda0a8 100644 --- a/plugins/whizzy-cms.rb +++ b/plugins/whizzy-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Whizzy-CMS" diff --git a/plugins/whmcs.rb b/plugins/whmcs.rb index b5956d17..af1d2f61 100644 --- a/plugins/whmcs.rb +++ b/plugins/whmcs.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WHMCS" diff --git a/plugins/wifidog.rb b/plugins/wifidog.rb index 8c7d9dec..73319e38 100644 --- a/plugins/wifidog.rb +++ b/plugins/wifidog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WiFiDog" diff --git a/plugins/wikidforum.rb b/plugins/wikidforum.rb index f4a7a77e..0370939f 100644 --- a/plugins/wikidforum.rb +++ b/plugins/wikidforum.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WikidForum" diff --git a/plugins/wikiwebhelp.rb b/plugins/wikiwebhelp.rb index 319c1ba4..4c1aa196 100644 --- a/plugins/wikiwebhelp.rb +++ b/plugins/wikiwebhelp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WikiWebHelp" diff --git a/plugins/wildcat.rb b/plugins/wildcat.rb index ec516a4f..ebea2ee3 100644 --- a/plugins/wildcat.rb +++ b/plugins/wildcat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Wildcat" diff --git a/plugins/winamp-web-interface.rb b/plugins/winamp-web-interface.rb index 0a87337d..cde63177 100644 --- a/plugins/winamp-web-interface.rb +++ b/plugins/winamp-web-interface.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Winamp-Web-Interface" diff --git a/plugins/winconnection.rb b/plugins/winconnection.rb index eca920d6..df7d992f 100644 --- a/plugins/winconnection.rb +++ b/plugins/winconnection.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Winconnection" diff --git a/plugins/windows-internet-printing.rb b/plugins/windows-internet-printing.rb index 7562cfbc..7dcf8645 100644 --- a/plugins/windows-internet-printing.rb +++ b/plugins/windows-internet-printing.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Windows-Internet-Printing" diff --git a/plugins/windows-remote-printing.rb b/plugins/windows-remote-printing.rb index a977954a..12db9f71 100644 --- a/plugins/windows-remote-printing.rb +++ b/plugins/windows-remote-printing.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Windows-Remote-Printing" diff --git a/plugins/windweb.rb b/plugins/windweb.rb index ffd57fa7..352a896d 100644 --- a/plugins/windweb.rb +++ b/plugins/windweb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WindWeb" diff --git a/plugins/wing-ftp-server.rb b/plugins/wing-ftp-server.rb index 0498c7a7..d8d1477a 100644 --- a/plugins/wing-ftp-server.rb +++ b/plugins/wing-ftp-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Wing-FTP-Server" diff --git a/plugins/winmail-server.rb b/plugins/winmail-server.rb index 56be1947..93b7c053 100644 --- a/plugins/winmail-server.rb +++ b/plugins/winmail-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Winmail-Server" diff --git a/plugins/winstone.rb b/plugins/winstone.rb index 3ce40b8b..39c23fe6 100644 --- a/plugins/winstone.rb +++ b/plugins/winstone.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Winstone" diff --git a/plugins/wiseguy.rb b/plugins/wiseguy.rb index 7a6a667c..3e02bbac 100644 --- a/plugins/wiseguy.rb +++ b/plugins/wiseguy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Wiseguy" diff --git a/plugins/wix.rb b/plugins/wix.rb index 4acc1398..0152b93c 100644 --- a/plugins/wix.rb +++ b/plugins/wix.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Wix" diff --git a/plugins/wobserver.rb b/plugins/wobserver.rb index acd453e0..6f5d57d0 100644 --- a/plugins/wobserver.rb +++ b/plugins/wobserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Wobserver" diff --git a/plugins/wolfcms.rb b/plugins/wolfcms.rb index ae9e6622..8b3b6f56 100644 --- a/plugins/wolfcms.rb +++ b/plugins/wolfcms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WolfCMS" diff --git a/plugins/wooframework.rb b/plugins/wooframework.rb index b5284cf3..9b716b59 100644 --- a/plugins/wooframework.rb +++ b/plugins/wooframework.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WooFramework" diff --git a/plugins/wordfence.rb b/plugins/wordfence.rb index 72faf1e6..1e43a911 100644 --- a/plugins/wordfence.rb +++ b/plugins/wordfence.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # ## Plugin.define do diff --git a/plugins/wordfusion.rb b/plugins/wordfusion.rb index 6faef931..e5fad3b0 100644 --- a/plugins/wordfusion.rb +++ b/plugins/wordfusion.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WordFusion" diff --git a/plugins/wordpress-contact-form.rb b/plugins/wordpress-contact-form.rb index 21e1bae5..ae73468d 100644 --- a/plugins/wordpress-contact-form.rb +++ b/plugins/wordpress-contact-form.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Wordpress-Contact-Form" diff --git a/plugins/wordpress-mobile-pack.rb b/plugins/wordpress-mobile-pack.rb index a991ec7b..05c1aafc 100644 --- a/plugins/wordpress-mobile-pack.rb +++ b/plugins/wordpress-mobile-pack.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WordPress-Mobile-Pack" diff --git a/plugins/wordpress-spamfree.rb b/plugins/wordpress-spamfree.rb index 7f5c50d4..66b7823e 100644 --- a/plugins/wordpress-spamfree.rb +++ b/plugins/wordpress-spamfree.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WordPressSpamFree" diff --git a/plugins/wordpress-stats.rb b/plugins/wordpress-stats.rb index 7f3b80c4..6dc36b4e 100644 --- a/plugins/wordpress-stats.rb +++ b/plugins/wordpress-stats.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WordPress-Stats" diff --git a/plugins/wordpress-supercache.rb b/plugins/wordpress-supercache.rb index 572fd28c..c9d61ad1 100644 --- a/plugins/wordpress-supercache.rb +++ b/plugins/wordpress-supercache.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WordpressSuperCache" diff --git a/plugins/wordpress.rb b/plugins/wordpress.rb index 86dd8484..746b32cd 100644 --- a/plugins/wordpress.rb +++ b/plugins/wordpress.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WordPress" @@ -15,6 +15,7 @@ authors [ "@SlivTaMere", # v0.7 # 2016-10-25 # Added "wp-includes" and "wp-json" in href and src detection.. "@anoroozian", # v0.8 # 2016-12-16 # Aggressive version detection matches 4.0 -> 4.0-beta4. Plugin format update. "@ajgon", # v0.9 # 2019-01-19 # @ajgon (Igor Rzegocki) # Updated version detection list from Wordpress 3.9.1 to 5.0.2. + "@juananpe", #v1.0 #2021-02-28 # Updated version detection, from 5.0.3 to 5.6.0 ] version "0.9" description "WordPress is an opensource blogging system commonly used as a CMS." @@ -1436,9 +1437,138 @@ aggressive do ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], '5.0.2' => [['wp-includes/js/dist/edit-post.js', 'b8a4b45d991460d09f63361df8cece80'], - ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']] - ] - + ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], + '5.0.3'=> + [['wp-includes/js/dist/edit-post.js', '3a8f886d748dd1bc6390f29b8b1cc909'], + ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], + '5.0.4'=> + [['wp-includes/js/dist/edit-post.js', '3a8f886d748dd1bc6390f29b8b1cc909'], + ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], + '5.0.6'=> + [['wp-includes/js/dist/edit-post.js', '3a8f886d748dd1bc6390f29b8b1cc909'], + ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], + '5.0.7'=> + [['wp-includes/js/dist/edit-post.js', '3a8f886d748dd1bc6390f29b8b1cc909'], + ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], + '5.0.8'=> + [['wp-includes/js/dist/edit-post.js', '3a8f886d748dd1bc6390f29b8b1cc909'], + ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], + '5.0.9'=> + [['wp-includes/js/dist/edit-post.js', '3a8f886d748dd1bc6390f29b8b1cc909'], + ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], + '5.0.10'=> + [['wp-includes/js/dist/edit-post.js', '3a8f886d748dd1bc6390f29b8b1cc909'], + ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], + '5.0.11'=> + [['wp-includes/js/dist/edit-post.js', '3a8f886d748dd1bc6390f29b8b1cc909'], + ['wp-includes/css/editor.css', '049a4b5288c49f627f02b150bc28a8be']], + '5.1.0'=> + [['wp-includes/js/dist/edit-post.js', '6205cc50d16c3911195c4ba650eae2a5'], + ['wp-includes/css/editor.css', '8f9006245f6630fe4dd7c0768668ea6d']], + '5.1.1'=> + [['wp-includes/js/dist/edit-post.js', '6205cc50d16c3911195c4ba650eae2a5'], + ['wp-includes/css/editor.css', '8f9006245f6630fe4dd7c0768668ea6d']], + '5.1.2'=> + [['wp-includes/js/dist/edit-post.js', '6205cc50d16c3911195c4ba650eae2a5'], + ['wp-includes/css/editor.css', '8f9006245f6630fe4dd7c0768668ea6d']], + '5.1.3'=> + [['wp-includes/js/dist/edit-post.js', '6205cc50d16c3911195c4ba650eae2a5'], + ['wp-includes/css/editor.css', '8f9006245f6630fe4dd7c0768668ea6d']], + '5.1.4'=> + [['wp-includes/js/dist/edit-post.js', '6205cc50d16c3911195c4ba650eae2a5'], + ['wp-includes/css/editor.css', '8f9006245f6630fe4dd7c0768668ea6d']], + '5.1.5'=> + [['wp-includes/js/dist/edit-post.js', '6205cc50d16c3911195c4ba650eae2a5'], + ['wp-includes/css/editor.css', '8f9006245f6630fe4dd7c0768668ea6d']], + '5.1.6'=> + [['wp-includes/js/dist/edit-post.js', '6205cc50d16c3911195c4ba650eae2a5'], + ['wp-includes/css/editor.css', '8f9006245f6630fe4dd7c0768668ea6d']], + '5.1.7'=> + [['wp-includes/js/dist/edit-post.js', '6205cc50d16c3911195c4ba650eae2a5'], + ['wp-includes/css/editor.css', '8f9006245f6630fe4dd7c0768668ea6d']], + '5.1.8'=> + [['wp-includes/js/dist/edit-post.js', '6205cc50d16c3911195c4ba650eae2a5'], + ['wp-includes/css/editor.css', '8f9006245f6630fe4dd7c0768668ea6d']], + '5.2.1'=> + [['wp-includes/js/dist/edit-post.js', '4d75a79aec7e44bd8e9ecb609af8ef0b'], + ['wp-includes/css/editor.css', '517db4d19d1e3484a0339dc765cd3902']], + '5.2.2'=> + [['wp-includes/js/dist/edit-post.js', '4d75a79aec7e44bd8e9ecb609af8ef0b'], + ['wp-includes/css/editor.css', '517db4d19d1e3484a0339dc765cd3902']], + '5.2.3'=> + [['wp-includes/js/dist/edit-post.js', '4d75a79aec7e44bd8e9ecb609af8ef0b'], + ['wp-includes/css/editor.css', '517db4d19d1e3484a0339dc765cd3902']], + '5.2.4'=> + [['wp-includes/js/dist/edit-post.js', '4d75a79aec7e44bd8e9ecb609af8ef0b'], + ['wp-includes/css/editor.css', '517db4d19d1e3484a0339dc765cd3902']], + '5.2.5'=> + [['wp-includes/js/dist/edit-post.js', '4d75a79aec7e44bd8e9ecb609af8ef0b'], + ['wp-includes/css/editor.css', '517db4d19d1e3484a0339dc765cd3902']], + '5.2.6'=> + [['wp-includes/js/dist/edit-post.js', '4d75a79aec7e44bd8e9ecb609af8ef0b'], + ['wp-includes/css/editor.css', '517db4d19d1e3484a0339dc765cd3902']], + '5.2.7'=> + [['wp-includes/js/dist/edit-post.js', '4d75a79aec7e44bd8e9ecb609af8ef0b'], + ['wp-includes/css/editor.css', '517db4d19d1e3484a0339dc765cd3902']], + '5.2.8'=> + [['wp-includes/js/dist/edit-post.js', '4d75a79aec7e44bd8e9ecb609af8ef0b'], + ['wp-includes/css/editor.css', '517db4d19d1e3484a0339dc765cd3902']], + '5.2.9'=> + [['wp-includes/js/dist/edit-post.js', '4d75a79aec7e44bd8e9ecb609af8ef0b'], + ['wp-includes/css/editor.css', '517db4d19d1e3484a0339dc765cd3902']], + '5.3.0'=> + [['wp-includes/js/dist/edit-post.js', '401d4d2ca31482d7008b546483ce4ed7'], + ['wp-includes/css/editor.css', 'c449b708d25d875ac9266227666fef95']], + '5.3.1'=> + [['wp-includes/js/dist/edit-post.js', '401d4d2ca31482d7008b546483ce4ed7'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.3.2'=> + [['wp-includes/js/dist/edit-post.js', '401d4d2ca31482d7008b546483ce4ed7'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.3.3'=> + [['wp-includes/js/dist/edit-post.js', '401d4d2ca31482d7008b546483ce4ed7'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.3.4'=> + [['wp-includes/js/dist/edit-post.js', '401d4d2ca31482d7008b546483ce4ed7'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.3.5'=> + [['wp-includes/js/dist/edit-post.js', '401d4d2ca31482d7008b546483ce4ed7'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.3.6'=> + [['wp-includes/js/dist/edit-post.js', '401d4d2ca31482d7008b546483ce4ed7'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.4.0'=> + [['wp-includes/js/dist/edit-post.js', '7ac36a48ae712d480e11fdc9a45b193c'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.4.1'=> + [['wp-includes/js/dist/edit-post.js', '7ac36a48ae712d480e11fdc9a45b193c'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.4.2'=> + [['wp-includes/js/dist/edit-post.js', '7ac36a48ae712d480e11fdc9a45b193c'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.4.3'=> + [['wp-includes/js/dist/edit-post.js', '7ac36a48ae712d480e11fdc9a45b193c'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.4.4'=> + [['wp-includes/js/dist/edit-post.js', '7ac36a48ae712d480e11fdc9a45b193c'], + ['wp-includes/css/editor.css', 'b440cfaf53dc78b60e479c8e43df12d1']], + '5.5.0'=> + [['wp-includes/js/dist/edit-post.js', '9620f0a72d8c82019c7ec8a45dd14f92'], + ['wp-includes/css/editor.css', '1e7b5cfcfc656cad1c8dcd3bb09ee8ca']], + '5.5.1'=> + [['wp-includes/js/dist/edit-post.js', '9620f0a72d8c82019c7ec8a45dd14f92'], + ['wp-includes/css/editor.css', '1e7b5cfcfc656cad1c8dcd3bb09ee8ca']], + '5.5.2'=> + [['wp-includes/js/dist/edit-post.js', '9620f0a72d8c82019c7ec8a45dd14f92'], + ['wp-includes/css/editor.css', '1e7b5cfcfc656cad1c8dcd3bb09ee8ca']], + '5.5.3'=> + [['wp-includes/js/dist/edit-post.js', '9620f0a72d8c82019c7ec8a45dd14f92'], + ['wp-includes/css/editor.css', '1e7b5cfcfc656cad1c8dcd3bb09ee8ca']], + '5.6.0'=> + [['wp-includes/js/dist/edit-post.js', '22419332501f620be339216513af3f5f'], + ['wp-includes/css/editor.css', '6c1db6b35d1f5b39a367f03fbbb6363e']] + ] + v = Version.new('WordPress', versions, @base_uri) version = v.matches_format diff --git a/plugins/world-now.rb b/plugins/world-now.rb index ff0a6733..cd51c69e 100644 --- a/plugins/world-now.rb +++ b/plugins/world-now.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WorldNow" diff --git a/plugins/worldgroup-server.rb b/plugins/worldgroup-server.rb index c89af992..6d4094e6 100644 --- a/plugins/worldgroup-server.rb +++ b/plugins/worldgroup-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Worldgroup-Server" diff --git a/plugins/wow-raid-manager.rb b/plugins/wow-raid-manager.rb index 49021c2e..fc79ad59 100644 --- a/plugins/wow-raid-manager.rb +++ b/plugins/wow-raid-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WoW-Raid-Manager" diff --git a/plugins/wow-server-status.rb b/plugins/wow-server-status.rb index 01729760..fb2c7cf4 100644 --- a/plugins/wow-server-status.rb +++ b/plugins/wow-server-status.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WoW-Server-Status" diff --git a/plugins/wowza-media-server.rb b/plugins/wowza-media-server.rb index 28d384a4..e91863c5 100644 --- a/plugins/wowza-media-server.rb +++ b/plugins/wowza-media-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Wowza-Media-Server" diff --git a/plugins/wp-slimstat.rb b/plugins/wp-slimstat.rb index c84e0763..9e4601ed 100644 --- a/plugins/wp-slimstat.rb +++ b/plugins/wp-slimstat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WP-SlimStat" diff --git a/plugins/wpml.rb b/plugins/wpml.rb index 7f9a5051..a6cced59 100644 --- a/plugins/wpml.rb +++ b/plugins/wpml.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WPML-Plugin" diff --git a/plugins/wpquiz.rb b/plugins/wpquiz.rb index 4866afc7..f5bc8c28 100644 --- a/plugins/wpquiz.rb +++ b/plugins/wpquiz.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "wpQuiz" diff --git a/plugins/ws_ftp-log.rb b/plugins/ws_ftp-log.rb index c6df7f0c..8e3fe399 100644 --- a/plugins/ws_ftp-log.rb +++ b/plugins/ws_ftp-log.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WS_FTP-log" diff --git a/plugins/wsn-classifieds.rb b/plugins/wsn-classifieds.rb index a01e0dd5..3856d4de 100644 --- a/plugins/wsn-classifieds.rb +++ b/plugins/wsn-classifieds.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WSN-Classifieds" diff --git a/plugins/wsn-directory.rb b/plugins/wsn-directory.rb index a9d4991a..0315962f 100644 --- a/plugins/wsn-directory.rb +++ b/plugins/wsn-directory.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WSN-Directory" diff --git a/plugins/wsn-forum.rb b/plugins/wsn-forum.rb index ad2c15ce..a377be4c 100644 --- a/plugins/wsn-forum.rb +++ b/plugins/wsn-forum.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WSN-Forum" diff --git a/plugins/wsn-gallery.rb b/plugins/wsn-gallery.rb index 0140b0e0..75856fb2 100644 --- a/plugins/wsn-gallery.rb +++ b/plugins/wsn-gallery.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WSN-Gallery" diff --git a/plugins/wsn-knowledge-base.rb b/plugins/wsn-knowledge-base.rb index 44d14096..ec312e8a 100644 --- a/plugins/wsn-knowledge-base.rb +++ b/plugins/wsn-knowledge-base.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WSN-Knowledge-Base" diff --git a/plugins/wsn-links.rb b/plugins/wsn-links.rb index c23b5889..420d79d3 100644 --- a/plugins/wsn-links.rb +++ b/plugins/wsn-links.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WSN-Links" diff --git a/plugins/wsn-software-directory.rb b/plugins/wsn-software-directory.rb index 1ef9cd9e..2b22f11e 100644 --- a/plugins/wsn-software-directory.rb +++ b/plugins/wsn-software-directory.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WSN-Software-Directory" diff --git a/plugins/wstool.rb b/plugins/wstool.rb index 808782f7..22affe59 100644 --- a/plugins/wstool.rb +++ b/plugins/wstool.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WSTOOL" diff --git a/plugins/www-authenticate.rb b/plugins/www-authenticate.rb index 229ae4eb..29096889 100644 --- a/plugins/www-authenticate.rb +++ b/plugins/www-authenticate.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WWW-Authenticate" diff --git a/plugins/www-file-share-pro.rb b/plugins/www-file-share-pro.rb index d41120ea..4054e50c 100644 --- a/plugins/www-file-share-pro.rb +++ b/plugins/www-file-share-pro.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WWW-File-Share-Pro" diff --git a/plugins/wwwboard.rb b/plugins/wwwboard.rb index 776bf23a..36374901 100644 --- a/plugins/wwwboard.rb +++ b/plugins/wwwboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WWWBoard" diff --git a/plugins/wwwphoto.rb b/plugins/wwwphoto.rb index c33d214c..bc368cb5 100644 --- a/plugins/wwwphoto.rb +++ b/plugins/wwwphoto.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "WWWPhoto" diff --git a/plugins/x-backend.rb b/plugins/x-backend.rb index ec8f9059..6b9aa092 100644 --- a/plugins/x-backend.rb +++ b/plugins/x-backend.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X-Backend" diff --git a/plugins/x-cache.rb b/plugins/x-cache.rb index 419bd255..265ebf73 100644 --- a/plugins/x-cache.rb +++ b/plugins/x-cache.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X-Cache" diff --git a/plugins/x-forwarded-for.rb b/plugins/x-forwarded-for.rb index a296c72e..a51fe236 100644 --- a/plugins/x-forwarded-for.rb +++ b/plugins/x-forwarded-for.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X-Forwarded-For" diff --git a/plugins/x-frame-options.rb b/plugins/x-frame-options.rb index 11181528..03a67118 100644 --- a/plugins/x-frame-options.rb +++ b/plugins/x-frame-options.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X-Frame-Options" diff --git a/plugins/x-hacker.rb b/plugins/x-hacker.rb index f0e6d19c..418badc9 100644 --- a/plugins/x-hacker.rb +++ b/plugins/x-hacker.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "x-hacker" diff --git a/plugins/x-host.rb b/plugins/x-host.rb index 9774cd4f..f9826e92 100644 --- a/plugins/x-host.rb +++ b/plugins/x-host.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X-Host" diff --git a/plugins/x-machine.rb b/plugins/x-machine.rb index 7a7820b9..7d7a8f5c 100644 --- a/plugins/x-machine.rb +++ b/plugins/x-machine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "x-machine" diff --git a/plugins/x-pingback.rb b/plugins/x-pingback.rb index 1f0a9bb2..e6da6719 100644 --- a/plugins/x-pingback.rb +++ b/plugins/x-pingback.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "x-pingback" diff --git a/plugins/x-powered-by-header.rb b/plugins/x-powered-by-header.rb index 0fa7f910..f2627de2 100644 --- a/plugins/x-powered-by-header.rb +++ b/plugins/x-powered-by-header.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X-Powered-By" diff --git a/plugins/x-ua-compatible.rb b/plugins/x-ua-compatible.rb index 70214807..df3b30d4 100644 --- a/plugins/x-ua-compatible.rb +++ b/plugins/x-ua-compatible.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X-UA-Compatible" diff --git a/plugins/x-vortech-php.rb b/plugins/x-vortech-php.rb index 8ba74fd0..3566ad77 100644 --- a/plugins/x-vortech-php.rb +++ b/plugins/x-vortech-php.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X-Vortech-PHP" diff --git a/plugins/x-xss-protection.rb b/plugins/x-xss-protection.rb index 080f7976..ea18a40e 100644 --- a/plugins/x-xss-protection.rb +++ b/plugins/x-xss-protection.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X-XSS-Protection" diff --git a/plugins/x10media-mp3-search-engine.rb b/plugins/x10media-mp3-search-engine.rb index 719183ce..83c93eee 100644 --- a/plugins/x10media-mp3-search-engine.rb +++ b/plugins/x10media-mp3-search-engine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X10media-MP3-Search-Engine" diff --git a/plugins/x10media-torrent-search-engine.rb b/plugins/x10media-torrent-search-engine.rb index ef126e03..554e3ad1 100644 --- a/plugins/x10media-torrent-search-engine.rb +++ b/plugins/x10media-torrent-search-engine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X10media-Torrent-Search-Engine" diff --git a/plugins/x7chat.rb b/plugins/x7chat.rb index 7528cef6..64e7f3fc 100644 --- a/plugins/x7chat.rb +++ b/plugins/x7chat.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "X7-Chat" diff --git a/plugins/xampp.rb b/plugins/xampp.rb index 3af66fea..6f448e05 100644 --- a/plugins/xampp.rb +++ b/plugins/xampp.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XAMPP" diff --git a/plugins/xataface.rb b/plugins/xataface.rb index 836e3ebe..66dfc856 100644 --- a/plugins/xataface.rb +++ b/plugins/xataface.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Xataface" diff --git a/plugins/xavante.rb b/plugins/xavante.rb index bf76a432..f6db17de 100644 --- a/plugins/xavante.rb +++ b/plugins/xavante.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Xavante" diff --git a/plugins/xbmc.rb b/plugins/xbmc.rb index 4b229d69..773bfc22 100644 --- a/plugins/xbmc.rb +++ b/plugins/xbmc.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XBMC" diff --git a/plugins/xchangeboard.rb b/plugins/xchangeboard.rb index d2037aeb..9ee5c1c2 100644 --- a/plugins/xchangeboard.rb +++ b/plugins/xchangeboard.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XchangeBoard" diff --git a/plugins/xeneo-web-server.rb b/plugins/xeneo-web-server.rb index 89b1628c..06988043 100644 --- a/plugins/xeneo-web-server.rb +++ b/plugins/xeneo-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Xeneo-Web-Server" diff --git a/plugins/xenforo.rb b/plugins/xenforo.rb index b60ee163..71dcdc32 100644 --- a/plugins/xenforo.rb +++ b/plugins/xenforo.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XenForo" diff --git a/plugins/xerox-printer.rb b/plugins/xerox-printer.rb index 158b3cba..355d7b33 100644 --- a/plugins/xerox-printer.rb +++ b/plugins/xerox-printer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Xerox-Printers" diff --git a/plugins/xerver.rb b/plugins/xerver.rb index 800092de..00937b46 100644 --- a/plugins/xerver.rb +++ b/plugins/xerver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Xerver" diff --git a/plugins/xgb.rb b/plugins/xgb.rb index 730372df..65a920b9 100644 --- a/plugins/xgb.rb +++ b/plugins/xgb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "xGB" diff --git a/plugins/xhp-cms.rb b/plugins/xhp-cms.rb index 6dcecb17..022cd6ab 100644 --- a/plugins/xhp-cms.rb +++ b/plugins/xhp-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XHP-CMS" diff --git a/plugins/xitami.rb b/plugins/xitami.rb index 055e08bf..3e1a5d14 100644 --- a/plugins/xitami.rb +++ b/plugins/xitami.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Xitami" diff --git a/plugins/xmb.rb b/plugins/xmb.rb index 49f42a62..4d674edb 100644 --- a/plugins/xmb.rb +++ b/plugins/xmb.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "eXtreme-Message-Board" diff --git a/plugins/xoops-cube.rb b/plugins/xoops-cube.rb index 66e600b4..e22c2c78 100644 --- a/plugins/xoops-cube.rb +++ b/plugins/xoops-cube.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XOOPS-Cube" diff --git a/plugins/xoops.rb b/plugins/xoops.rb index fcb954f5..8870f6fb 100644 --- a/plugins/xoops.rb +++ b/plugins/xoops.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XOOPS" diff --git a/plugins/xproxy.rb b/plugins/xproxy.rb index 96fc4ad4..cad9bffa 100644 --- a/plugins/xproxy.rb +++ b/plugins/xproxy.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "xproxy" diff --git a/plugins/xt-commerce.rb b/plugins/xt-commerce.rb index e99d8ac0..243d8cef 100644 --- a/plugins/xt-commerce.rb +++ b/plugins/xt-commerce.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "xt-Commerce" diff --git a/plugins/xtra-business-hosting.rb b/plugins/xtra-business-hosting.rb index 067709f9..5e8105b7 100644 --- a/plugins/xtra-business-hosting.rb +++ b/plugins/xtra-business-hosting.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XtraBusinessHosting" diff --git a/plugins/xwiki.rb b/plugins/xwiki.rb index 7ba22fff..e4f8c3ba 100644 --- a/plugins/xwiki.rb +++ b/plugins/xwiki.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XWiki" diff --git a/plugins/xybershield.rb b/plugins/xybershield.rb index b47a67d8..055ca6ae 100644 --- a/plugins/xybershield.rb +++ b/plugins/xybershield.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "XyberShield" diff --git a/plugins/yaf.rb b/plugins/yaf.rb index f7deb9ae..487f0330 100644 --- a/plugins/yaf.rb +++ b/plugins/yaf.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "YAF.NET" diff --git a/plugins/yamamah.rb b/plugins/yamamah.rb index d69006f1..b9e5f11b 100644 --- a/plugins/yamamah.rb +++ b/plugins/yamamah.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Yamamah" diff --git a/plugins/youtube.rb b/plugins/youtube.rb index d773178b..a7294297 100644 --- a/plugins/youtube.rb +++ b/plugins/youtube.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "YouTube" diff --git a/plugins/zabbix.rb b/plugins/zabbix.rb index 6961efdf..ad4a85a9 100644 --- a/plugins/zabbix.rb +++ b/plugins/zabbix.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zabbix" diff --git a/plugins/zebranet-printserver.rb b/plugins/zebranet-printserver.rb index 3d9984cb..300e4e26 100644 --- a/plugins/zebranet-printserver.rb +++ b/plugins/zebranet-printserver.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ZebraNet-PrintServer" diff --git a/plugins/zen-cart.rb b/plugins/zen-cart.rb index bb28dd85..712fae74 100644 --- a/plugins/zen-cart.rb +++ b/plugins/zen-cart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zen-Cart" diff --git a/plugins/zen-load-balancer.rb b/plugins/zen-load-balancer.rb index 0044171b..904f7a1b 100644 --- a/plugins/zen-load-balancer.rb +++ b/plugins/zen-load-balancer.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zen-Load-Balancer" diff --git a/plugins/zend.rb b/plugins/zend.rb index dc5de378..ba0dd1c4 100644 --- a/plugins/zend.rb +++ b/plugins/zend.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zend" diff --git a/plugins/zenoss-core.rb b/plugins/zenoss-core.rb index 0167fbf0..4aeebdf6 100644 --- a/plugins/zenoss-core.rb +++ b/plugins/zenoss-core.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zenoss-Core" diff --git a/plugins/zero-one-technology-print-server.rb b/plugins/zero-one-technology-print-server.rb index b6a70ec4..f1ccb4d2 100644 --- a/plugins/zero-one-technology-print-server.rb +++ b/plugins/zero-one-technology-print-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zero-One-Technology-Print-Server" diff --git a/plugins/zest-web-engine.rb b/plugins/zest-web-engine.rb index 32686411..02b8d59d 100644 --- a/plugins/zest-web-engine.rb +++ b/plugins/zest-web-engine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zest-Web-Engine" diff --git a/plugins/zeus-cart.rb b/plugins/zeus-cart.rb index 339ac492..83a72dc4 100644 --- a/plugins/zeus-cart.rb +++ b/plugins/zeus-cart.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zeus-Cart" diff --git a/plugins/zeus-traffic-manager.rb b/plugins/zeus-traffic-manager.rb index a6cd46a3..52ff2587 100644 --- a/plugins/zeus-traffic-manager.rb +++ b/plugins/zeus-traffic-manager.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zeus-Traffic-Manager" diff --git a/plugins/zeus-web-server.rb b/plugins/zeus-web-server.rb index b27397c1..ff4604b8 100644 --- a/plugins/zeus-web-server.rb +++ b/plugins/zeus-web-server.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zeus-Web-Server" diff --git a/plugins/zfeeder.rb b/plugins/zfeeder.rb index 854fa488..439be7c6 100644 --- a/plugins/zfeeder.rb +++ b/plugins/zfeeder.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "zFeeder" diff --git a/plugins/zikula.rb b/plugins/zikula.rb index 6dcfc456..cd0bce52 100644 --- a/plugins/zikula.rb +++ b/plugins/zikula.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zikula" diff --git a/plugins/zimplit-cms.rb b/plugins/zimplit-cms.rb index 85de583e..03ab9da2 100644 --- a/plugins/zimplit-cms.rb +++ b/plugins/zimplit-cms.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zimplit-CMS" diff --git a/plugins/zipbox-media.rb b/plugins/zipbox-media.rb index f16689b5..5b9dd04f 100644 --- a/plugins/zipbox-media.rb +++ b/plugins/zipbox-media.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ZIPBOX-Media" diff --git a/plugins/zomplog.rb b/plugins/zomplog.rb index f973a3f7..8b13d8e4 100644 --- a/plugins/zomplog.rb +++ b/plugins/zomplog.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zomplog" diff --git a/plugins/zoneminder.rb b/plugins/zoneminder.rb index 56fdd75c..a2ce29d3 100644 --- a/plugins/zoneminder.rb +++ b/plugins/zoneminder.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ZoneMinder" diff --git a/plugins/zones-web-solution.rb b/plugins/zones-web-solution.rb index 18ecad13..1e006dd7 100644 --- a/plugins/zones-web-solution.rb +++ b/plugins/zones-web-solution.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zones-Web-Solution" diff --git a/plugins/zoom-search-engine.rb b/plugins/zoom-search-engine.rb index 52d515aa..0b93314d 100644 --- a/plugins/zoom-search-engine.rb +++ b/plugins/zoom-search-engine.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zoom-Search-Engine" diff --git a/plugins/zoom.rb b/plugins/zoom.rb index a9be236c..9449468b 100644 --- a/plugins/zoom.rb +++ b/plugins/zoom.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zoom" diff --git a/plugins/zope.rb b/plugins/zope.rb index ccbcb257..254013e3 100644 --- a/plugins/zope.rb +++ b/plugins/zope.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zope" diff --git a/plugins/zoph.rb b/plugins/zoph.rb index 15d17bd1..ab4bd5e0 100644 --- a/plugins/zoph.rb +++ b/plugins/zoph.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zoph" diff --git a/plugins/zotonic.rb b/plugins/zotonic.rb index 66378ddd..4a6c0c91 100644 --- a/plugins/zotonic.rb +++ b/plugins/zotonic.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zotonic" diff --git a/plugins/zte-iad.rb b/plugins/zte-iad.rb index 2222879a..7610c7b0 100644 --- a/plugins/zte-iad.rb +++ b/plugins/zte-iad.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ZTE-IAD" diff --git a/plugins/zylone-it.rb b/plugins/zylone-it.rb index 96ae972b..56953880 100644 --- a/plugins/zylone-it.rb +++ b/plugins/zylone-it.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "Zylone-IT" diff --git a/plugins/zyxel-router.rb b/plugins/zyxel-router.rb index a2245c96..dfa4bda5 100644 --- a/plugins/zyxel-router.rb +++ b/plugins/zyxel-router.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## Plugin.define do name "ZyXEL-Router" diff --git a/test/integration.rb b/test/integration.rb index a19c89af..255c72b2 100644 --- a/test/integration.rb +++ b/test/integration.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## require 'minitest/autorun' require 'json' @@ -25,7 +25,7 @@ class WhatWebTest < Minitest::Test res = p.read.to_s p.close assert res - assert res =~ %r{^WhatWeb version ([\d\.]+(-dev)?) \( https://www.morningstarsecurity.com/research/whatweb/ \)$} + assert res =~ %r{^WhatWeb version ([\d\.]+(-dev)?) \( https://morningstarsecurity.com/research/whatweb/ \)$} end def test_usage diff --git a/test/plugins/deprecated-plugin-format.rb b/test/plugins/deprecated-plugin-format.rb index b6e00761..a1a576b7 100644 --- a/test/plugins/deprecated-plugin-format.rb +++ b/test/plugins/deprecated-plugin-format.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb # Plugin.define "Deprecated-Plugin-Format" do author "Andrew Horton" diff --git a/test/unit/test_scan.rb b/test/unit/test_scan.rb index 1bfaae0c..d27e318c 100644 --- a/test/unit/test_scan.rb +++ b/test/unit/test_scan.rb @@ -2,7 +2,7 @@ # 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://www.morningstarsecurity.com/research/whatweb +# https://morningstarsecurity.com/research/whatweb ## require 'minitest/autorun' require './lib/whatweb' diff --git a/whatweb b/whatweb index fdb8981e..20182f15 100755 --- a/whatweb +++ b/whatweb @@ -13,7 +13,7 @@ # WhatWeb - Next generation web scanner. # Developed by Andrew Horton (urbanadventurer) and Brendan Coles (bcoles) # -# Homepage: https://www.morningstarsecurity.com/research/whatweb +# Homepage: https://morningstarsecurity.com/research/whatweb # # Copyright 2009 to 2020 Andrew Horton and Brendan Coles # @@ -45,7 +45,7 @@ def usage_full puts(<<-EOT) WhatWeb - Next generation web scanner version #{WhatWeb::VERSION}. Developed by Andrew Horton (urbanadventurer) and Brendan Coles (bcoles). -Homepage: https://www.morningstarsecurity.com/research/whatweb +Homepage: https://morningstarsecurity.com/research/whatweb Usage: whatweb [options] @@ -206,7 +206,7 @@ def usage_short puts(<<-EOT) WhatWeb - Next generation web scanner version #{WhatWeb::VERSION}. Developed by Andrew Horton (urbanadventurer) and Brendan Coles (bcoles) -Homepage: https://www.morningstarsecurity.com/research/whatweb +Homepage: https://morningstarsecurity.com/research/whatweb Usage: whatweb [options] @@ -532,7 +532,7 @@ begin when '-v', '--verbose' $verbose = $verbose + 1 when '--version' - puts "WhatWeb version #{WhatWeb::VERSION} ( https://www.morningstarsecurity.com/research/whatweb/ )" + puts "WhatWeb version #{WhatWeb::VERSION} ( https://morningstarsecurity.com/research/whatweb/ )" exit end end diff --git a/whatweb.1 b/whatweb.1 index 989b3dbe..45c707b0 100644 --- a/whatweb.1 +++ b/whatweb.1 @@ -272,7 +272,7 @@ Report bugs and feature requests to https://github.com/urbanadventurer/WhatWeb Developed by Andrew Horton (urbanadventurer) and Brendan Coles (bcoles). .SH HOMEPAGE -https://www.morningstarsecurity.com/research/whatweb +https://morningstarsecurity.com/research/whatweb .SH SOURCECODE https://github.com/urbanadventurer/WhatWeb/