Updated plugin contributions with version numbers and author details. Fixed WhatWeb Logo hosting

This commit is contained in:
Andrew Horton
2025-10-18 14:57:23 +11:00
parent 4d8a46edcf
commit cfc8948657
6 changed files with 37 additions and 11 deletions
+20
View File
@@ -1,3 +1,23 @@
Version 0.6.3 - October 18, 2025
## FIXES
* Fix typo in plugin-tutorial-7.rb (@mtisec)
## MISC
*
## NEW PLUGINS
* Cisco Meraki (John de Kroon @johndekroon)
* GoAnywhere Web Client (@frapava98)
* Oracle EBS (@frapava98)
* Google Tag Manager (Michael Ippolito @spookycave)
## PLUGIN UPDATES
* Cisco-Adaptive-Security-Appliance (@frapava98)
* JQuery (added another version pattern) (@mkauschi)
* Google Analytics (Michael Ippolito @spookycave)
Version 0.6.2 - August 25, 2025
Changelog:
+9 -5
View File
@@ -1,17 +1,15 @@
[![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.6.2-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://morningstarsecurity.com/wp-content/uploads/2019/02/WhatWeb-Logo-800px.png "WhatWeb Logo")
![logo](https://github.com/user-attachments/assets/57950281-dec2-4132-a166-6387331bfd34 "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.6.2. August 25, 2025
Latest Release: v0.6.3. October 18, 2025
License: GPLv2
This product is subject to the terms detailed in the license agreement. For more information about WhatWeb visit:
Homepage: https://morningstarsecurity.com/research/whatweb
This product is subject to the terms detailed in the license agreement. For more information about WhatWeb visit https://github.com/urbanadventurer/
Wiki: https://github.com/urbanadventurer/WhatWeb/wiki/
@@ -534,6 +532,12 @@ Thank you to the following people who have contributed to WhatWeb.
+ Baptiste Fontaine (@bfontaine)
+ @definity
+ @huntertl
+ Michael Ippolito (@spookycave)
+ @mkauschi
+ @frapava98
+ John de Kroon (@johndekroon)
+ @mtisec
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.
+1 -1
View File
@@ -15,5 +15,5 @@
# You should have received a copy of the GNU General Public License
# along with WhatWeb. If not, see <http://www.gnu.org/licenses/>.
module WhatWeb
VERSION = '0.6.2'.freeze
VERSION = '0.6.3'.freeze
end
+3 -2
View File
@@ -7,9 +7,10 @@
Plugin.define do
name "Google-Analytics"
authors [
"Peter van der Laan",
"Peter van der Laan", # v0.1
"spookycave" # v0.2 ippolito patterns
]
version "0.1"
version "0.2"
description "This plugin identifies the Google Analytics account."
website "http://www.google.com/analytics/"
+1 -1
View File
@@ -7,7 +7,7 @@
Plugin.define do
name "Google-Tag-Manager"
authors [
"Michael Ippolito"
"Michael Ippolito" # v0.1 @spookycave
]
version "0.1"
description "This plugin identifies Google Tag Manager."
+3 -2
View File
@@ -12,8 +12,9 @@ authors [
# v0.3 # rewrite.
"Eric Sesterhenn", # v0.4 # added another match line
"Janosch Maier @Phylu", # v0.5 # 2018-04-20 # added a version detection.
"mkauschi" # v0.6 # 2021-10-21 # added a version
]
version "0.5"
version "0.6"
description "A fast, concise, JavaScript that simplifies how to traverse HTML documents, handle events, perform animations, and add AJAX."
website "http://jquery.com/"
@@ -27,7 +28,7 @@ matches [
{ :version=>/jquery(\.min)?\.js\?ver=([0-9\.]+)['"]/, :offset=>1 },
{ :version=>/jquery\/([0-9\.]+)\/jquery(\.min)?\.js/, :offset=>0 },
{ :version=>/jquery-([0-9\.]+)(\.min)?\.js/, :offset=>0 },
{ :version=>/jquery(\.min)?\.js(\.[a-z&=;\?]*)(\?|;)(v|ver)=([0-9\.]+)['"]/, :offset=>4 },
{ :version=>/jquery(\.min)?\.js(\.[a-z&=;\?]*)(\?|;)(v|ver)=([0-9\.]+)['"]/, :offset=>5 },
]