diff --git a/CHANGELOG.md b/CHANGELOG.md index 85137cd4..511714b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/README.md b/README.md index 5ebb8c9e..c407432e 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/lib/whatweb/version.rb b/lib/whatweb/version.rb index 1d26ef7e..3b49b223 100644 --- a/lib/whatweb/version.rb +++ b/lib/whatweb/version.rb @@ -15,5 +15,5 @@ # You should have received a copy of the GNU General Public License # along with WhatWeb. If not, see . module WhatWeb - VERSION = '0.6.2'.freeze + VERSION = '0.6.3'.freeze end diff --git a/plugins/google-analytics.rb b/plugins/google-analytics.rb index b2cb3367..45ae0891 100644 --- a/plugins/google-analytics.rb +++ b/plugins/google-analytics.rb @@ -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/" diff --git a/plugins/google-tag-manager.rb b/plugins/google-tag-manager.rb index 14053a2c..084f7046 100644 --- a/plugins/google-tag-manager.rb +++ b/plugins/google-tag-manager.rb @@ -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." diff --git a/plugins/jquery.rb b/plugins/jquery.rb index 7382429c..bcfaac31 100644 --- a/plugins/jquery.rb +++ b/plugins/jquery.rb @@ -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 }, ]