diff --git a/Dockerfile b/Dockerfile index 98da1dd31..1207287a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/Gemfile b/Gemfile index ab69413e6..7233e22bb 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # @@ -23,7 +23,7 @@ gem 'espeak-ruby', '~> 1.1.0' # Text-to-Voice gem 'rake', '~> 13.3' gem 'activerecord', '~> 8.1' gem 'otr-activerecord', '~> 2.6.0' -gem 'sqlite3', '~> 2.8' +gem 'sqlite3', '~> 2.9' gem 'rubocop', '~> 1.82.1', require: false # Geolocation support diff --git a/Gemfile.lock b/Gemfile.lock index eab90edd7..9da52d3e7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -229,14 +229,14 @@ GEM rack-session (>= 2.0.0, < 3) tilt (~> 2.0) slack-notifier (2.4.0) - sqlite3 (2.8.1-aarch64-linux-gnu) - sqlite3 (2.8.1-aarch64-linux-musl) - sqlite3 (2.8.1-arm-linux-gnu) - sqlite3 (2.8.1-arm-linux-musl) - sqlite3 (2.8.1-arm64-darwin) - sqlite3 (2.8.1-x86_64-darwin) - sqlite3 (2.8.1-x86_64-linux-gnu) - sqlite3 (2.8.1-x86_64-linux-musl) + sqlite3 (2.9.0-aarch64-linux-gnu) + sqlite3 (2.9.0-aarch64-linux-musl) + sqlite3 (2.9.0-arm-linux-gnu) + sqlite3 (2.9.0-arm-linux-musl) + sqlite3 (2.9.0-arm64-darwin) + sqlite3 (2.9.0-x86_64-darwin) + sqlite3 (2.9.0-x86_64-linux-gnu) + sqlite3 (2.9.0-x86_64-linux-musl) stringio (3.2.0) sync (0.5.0) term-ansicolor (1.11.3) @@ -334,7 +334,7 @@ DEPENDENCIES selenium-webdriver (~> 4.39) sinatra (~> 4.1) slack-notifier (~> 2.4) - sqlite3 (~> 2.8) + sqlite3 (~> 2.9) term-ansicolor test-unit-full (~> 0.0.5) thin (~> 2.0) diff --git a/INSTALL.txt b/INSTALL.txt index 163e6bf11..af644e799 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -1,6 +1,6 @@ =============================================================================== - Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net + Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - https://beefproject.com See the file 'doc/COPYING' for copying permission diff --git a/README.md b/README.md index 09a660590..c1701a7d2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ =============================================================================== - Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net + Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - https://beefproject.com See the file 'doc/COPYING' for copying permission diff --git a/Rakefile b/Rakefile index 258b392ba..6a80c1b39 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/VERSION b/VERSION index 92c49aba6..5c1e5b14d 100644 --- a/VERSION +++ b/VERSION @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/beef b/beef index e0d9375a6..147384898 100755 --- a/beef +++ b/beef @@ -1,7 +1,7 @@ #!/usr/bin/env ruby # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # @@ -39,6 +39,10 @@ $root_dir = File.join(File.expand_path(File.dirname(File.realpath(__FILE__))), ' $:.unshift($root_dir) $home_dir = File.expand_path("#{Dir.home}/.beef/", __FILE__).freeze +# @note Parse BeEF CLI options early (prevents Rack help from taking over) +require 'core/main/console/commandline' +BeEF::Core::Console::CommandLine.parse + # # @note Require core loader # diff --git a/config.yaml b/config.yaml index 8ad8a65c3..d054bd66f 100644 --- a/config.yaml +++ b/config.yaml @@ -1,12 +1,12 @@ # -# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # # BeEF Configuration file beef: - version: '0.5.4.0' + version: '0.6.0.0' # More verbose messages (server-side) debug: false # More verbose messages (client-side) diff --git a/core/api.rb b/core/api.rb index 0e4531aac..8d044b33c 100644 --- a/core/api.rb +++ b/core/api.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/extension.rb b/core/api/extension.rb index 4b91f82c5..d657dc322 100644 --- a/core/api/extension.rb +++ b/core/api/extension.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/extensions.rb b/core/api/extensions.rb index 400fbe717..f900917a6 100644 --- a/core/api/extensions.rb +++ b/core/api/extensions.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/main/configuration.rb b/core/api/main/configuration.rb index 86c89e1cb..6d07a2939 100644 --- a/core/api/main/configuration.rb +++ b/core/api/main/configuration.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/main/migration.rb b/core/api/main/migration.rb index 741a7ab7b..7ed887390 100644 --- a/core/api/main/migration.rb +++ b/core/api/main/migration.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/main/network_stack/assethandler.rb b/core/api/main/network_stack/assethandler.rb index 14238bd60..a1d681b38 100644 --- a/core/api/main/network_stack/assethandler.rb +++ b/core/api/main/network_stack/assethandler.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/main/server.rb b/core/api/main/server.rb index 14356356b..9d749ea47 100644 --- a/core/api/main/server.rb +++ b/core/api/main/server.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/main/server/hook.rb b/core/api/main/server/hook.rb index 582dfc9ee..cbc3796e0 100644 --- a/core/api/main/server/hook.rb +++ b/core/api/main/server/hook.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/module.rb b/core/api/module.rb index ab4e35d8f..820c2c0f8 100644 --- a/core/api/module.rb +++ b/core/api/module.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/modules.rb b/core/api/modules.rb index d860cc4ad..18b5097bd 100644 --- a/core/api/modules.rb +++ b/core/api/modules.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/bootstrap.rb b/core/bootstrap.rb index c191fedb9..4f69dbf37 100644 --- a/core/bootstrap.rb +++ b/core/bootstrap.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/core.rb b/core/core.rb index ccc21ccaf..53ad3c72f 100644 --- a/core/core.rb +++ b/core/core.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/extension.rb b/core/extension.rb index 3a02c6fda..6b3fca5e9 100644 --- a/core/extension.rb +++ b/core/extension.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/extensions.rb b/core/extensions.rb index 4b978155a..f2621aacb 100644 --- a/core/extensions.rb +++ b/core/extensions.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters.rb b/core/filters.rb index 0c85e4348..dae5e766f 100644 --- a/core/filters.rb +++ b/core/filters.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/base.rb b/core/filters/base.rb index 5bf170f0d..c8da8ff9a 100644 --- a/core/filters/base.rb +++ b/core/filters/base.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/browser.rb b/core/filters/browser.rb index a6d43fbef..2d7d1e305 100644 --- a/core/filters/browser.rb +++ b/core/filters/browser.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/command.rb b/core/filters/command.rb index c6bab44c1..586adbc45 100644 --- a/core/filters/command.rb +++ b/core/filters/command.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/http.rb b/core/filters/http.rb index f1bf9dc3e..5cae790af 100644 --- a/core/filters/http.rb +++ b/core/filters/http.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/page.rb b/core/filters/page.rb index 21fcc8fd5..1a55ac14a 100644 --- a/core/filters/page.rb +++ b/core/filters/page.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/hbmanager.rb b/core/hbmanager.rb index 0350e3dde..f18579cad 100644 --- a/core/hbmanager.rb +++ b/core/hbmanager.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/loader.rb b/core/loader.rb index 8a8d70e8d..45f03962c 100644 --- a/core/loader.rb +++ b/core/loader.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/logger.rb b/core/logger.rb index dd248cecc..92f712cb0 100644 --- a/core/logger.rb +++ b/core/logger.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/autorun_engine/engine.rb b/core/main/autorun_engine/engine.rb index 6bd17625b..d5621dba5 100644 --- a/core/main/autorun_engine/engine.rb +++ b/core/main/autorun_engine/engine.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/autorun_engine/parser.rb b/core/main/autorun_engine/parser.rb index 93a4c34b9..0b02fa9ae 100644 --- a/core/main/autorun_engine/parser.rb +++ b/core/main/autorun_engine/parser.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/autorun_engine/rule_loader.rb b/core/main/autorun_engine/rule_loader.rb index 889dcbfe3..3a78f9cb0 100644 --- a/core/main/autorun_engine/rule_loader.rb +++ b/core/main/autorun_engine/rule_loader.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/client/are.js b/core/main/client/are.js index 517151ca6..126482a4f 100644 --- a/core/main/client/are.js +++ b/core/main/client/are.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/beef.js b/core/main/client/beef.js index 2b17ac57d..61dc15d0a 100644 --- a/core/main/client/beef.js +++ b/core/main/client/beef.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/browser.js b/core/main/client/browser.js index 9cc3014db..30c6889ef 100644 --- a/core/main/client/browser.js +++ b/core/main/client/browser.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/browser/cookie.js b/core/main/client/browser/cookie.js index 12aef4193..29a7d637b 100644 --- a/core/main/client/browser/cookie.js +++ b/core/main/client/browser/cookie.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/browser/popup.js b/core/main/client/browser/popup.js index 46ff33852..4e5e48bbb 100644 --- a/core/main/client/browser/popup.js +++ b/core/main/client/browser/popup.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/dom.js b/core/main/client/dom.js index 79b5644fd..6dcf8b7b2 100644 --- a/core/main/client/dom.js +++ b/core/main/client/dom.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/encode/base64.js b/core/main/client/encode/base64.js index a6da88419..beaf16ebf 100644 --- a/core/main/client/encode/base64.js +++ b/core/main/client/encode/base64.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/encode/json.js b/core/main/client/encode/json.js index e80e33aef..956f02831 100644 --- a/core/main/client/encode/json.js +++ b/core/main/client/encode/json.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/geolocation.js b/core/main/client/geolocation.js index 4ae6d0ffc..17ce01965 100644 --- a/core/main/client/geolocation.js +++ b/core/main/client/geolocation.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/hardware.js b/core/main/client/hardware.js index 5e3d5a5d6..8487c268f 100644 --- a/core/main/client/hardware.js +++ b/core/main/client/hardware.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/init.js b/core/main/client/init.js index b47c7ea37..2756c00ab 100644 --- a/core/main/client/init.js +++ b/core/main/client/init.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/lib/evercookie.js b/core/main/client/lib/evercookie.js index 5b88fce57..03b1984a9 100644 --- a/core/main/client/lib/evercookie.js +++ b/core/main/client/lib/evercookie.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/logger.js b/core/main/client/logger.js index f90f16282..849d96c17 100644 --- a/core/main/client/logger.js +++ b/core/main/client/logger.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/mitb.js b/core/main/client/mitb.js index 3fff376fc..f68fd379f 100644 --- a/core/main/client/mitb.js +++ b/core/main/client/mitb.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/net.js b/core/main/client/net.js index c03e49596..fc9bb8450 100644 --- a/core/main/client/net.js +++ b/core/main/client/net.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/net/connection.js b/core/main/client/net/connection.js index 623f5b4ff..a771fd61b 100644 --- a/core/main/client/net/connection.js +++ b/core/main/client/net/connection.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/net/dns.js b/core/main/client/net/dns.js index 74086ccea..b9d6fa256 100644 --- a/core/main/client/net/dns.js +++ b/core/main/client/net/dns.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/net/local.js b/core/main/client/net/local.js index 58ce2037b..aec18c020 100644 --- a/core/main/client/net/local.js +++ b/core/main/client/net/local.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/net/portscanner.js b/core/main/client/net/portscanner.js index f477bce99..bba1fca5f 100644 --- a/core/main/client/net/portscanner.js +++ b/core/main/client/net/portscanner.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/net/requester.js b/core/main/client/net/requester.js index aec9f2ff1..8bcf8829c 100644 --- a/core/main/client/net/requester.js +++ b/core/main/client/net/requester.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/os.js b/core/main/client/os.js index d3aac1698..64c95ac54 100644 --- a/core/main/client/os.js +++ b/core/main/client/os.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/session.js b/core/main/client/session.js index 0a2579ddf..33b466746 100644 --- a/core/main/client/session.js +++ b/core/main/client/session.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/timeout.js b/core/main/client/timeout.js index 02d6059c4..660af20ee 100644 --- a/core/main/client/timeout.js +++ b/core/main/client/timeout.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/updater.js b/core/main/client/updater.js index 3e2583447..3680d03fa 100644 --- a/core/main/client/updater.js +++ b/core/main/client/updater.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/webrtc.js b/core/main/client/webrtc.js index dc61ea598..c336dd14c 100644 --- a/core/main/client/webrtc.js +++ b/core/main/client/webrtc.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/client/websocket.js b/core/main/client/websocket.js index a615d0046..89f659186 100644 --- a/core/main/client/websocket.js +++ b/core/main/client/websocket.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/command.rb b/core/main/command.rb index 2a68763a3..65580a380 100644 --- a/core/main/command.rb +++ b/core/main/command.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/configuration.rb b/core/main/configuration.rb index e3a37144c..ba53b69be 100644 --- a/core/main/configuration.rb +++ b/core/main/configuration.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/console/banners.rb b/core/main/console/banners.rb index d26233813..167e8b4ac 100644 --- a/core/main/console/banners.rb +++ b/core/main/console/banners.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/console/commandline.rb b/core/main/console/commandline.rb index 3e4fa0499..f8c1a7a37 100644 --- a/core/main/console/commandline.rb +++ b/core/main/console/commandline.rb @@ -1,8 +1,10 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # +require 'optparse' + module BeEF module Core module Console @@ -38,7 +40,7 @@ module BeEF @options[:verbose] = true end - opts.on('-a', '--ascii_art', 'Prints BeEF ascii art') do + opts.on('-a', '--ascii-art', 'Prints BeEF ascii art') do @options[:ascii_art] = true end @@ -54,14 +56,19 @@ module BeEF @options[:ws_port] = ws_port end - opts.on('-ud', '--update_disabled', 'Skips update') do + opts.on('-d', '--update-disabled', 'Skips update') do @options[:update_disabled] = true end - opts.on('-ua', '--update_auto', 'Automatic update with no prompt') do + opts.on('-u', '--update-auto', 'Automatic update with no prompt') do @options[:update_auto] = true end + opts.on('-h', '--help', 'Show this help') do + puts opts + exit 0 + end + end optparse.parse! diff --git a/core/main/constants/browsers.rb b/core/main/constants/browsers.rb index a95796b88..afc381bb9 100644 --- a/core/main/constants/browsers.rb +++ b/core/main/constants/browsers.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/constants/commandmodule.rb b/core/main/constants/commandmodule.rb index da13075f7..54fe8a1b1 100644 --- a/core/main/constants/commandmodule.rb +++ b/core/main/constants/commandmodule.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/constants/hardware.rb b/core/main/constants/hardware.rb index 18b3b865d..03cad7bf7 100644 --- a/core/main/constants/hardware.rb +++ b/core/main/constants/hardware.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/constants/os.rb b/core/main/constants/os.rb index 2fe734568..a347ffa4b 100644 --- a/core/main/constants/os.rb +++ b/core/main/constants/os.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/crypto.rb b/core/main/crypto.rb index 1f1b642d0..5e4ea6b75 100644 --- a/core/main/crypto.rb +++ b/core/main/crypto.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/geoip.rb b/core/main/geoip.rb index 7ccc05a14..57eed2997 100644 --- a/core/main/geoip.rb +++ b/core/main/geoip.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/handlers/browserdetails.rb b/core/main/handlers/browserdetails.rb index f69eef948..3d02f2225 100644 --- a/core/main/handlers/browserdetails.rb +++ b/core/main/handlers/browserdetails.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/handlers/commands.rb b/core/main/handlers/commands.rb index 8d033b9e7..24d832cca 100644 --- a/core/main/handlers/commands.rb +++ b/core/main/handlers/commands.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/handlers/hookedbrowsers.rb b/core/main/handlers/hookedbrowsers.rb index ea08a6f5b..b15ad1b08 100644 --- a/core/main/handlers/hookedbrowsers.rb +++ b/core/main/handlers/hookedbrowsers.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/handlers/modules/beefjs.rb b/core/main/handlers/modules/beefjs.rb index 3c95cb512..8e4d42bc6 100644 --- a/core/main/handlers/modules/beefjs.rb +++ b/core/main/handlers/modules/beefjs.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/handlers/modules/command.rb b/core/main/handlers/modules/command.rb index 006da1c2d..5cf39aedf 100644 --- a/core/main/handlers/modules/command.rb +++ b/core/main/handlers/modules/command.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # @@ -72,7 +72,7 @@ module BeEF if config.get('beef.http.websocket.enable') && ws.getsocket(hooked_browser.session) # content = command_module.output.gsub('// # // - # // Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net + # // Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # // Browser Exploitation Framework (BeEF) - https://beefproject.com # // See the file 'doc/COPYING' for copying permission # // diff --git a/core/main/handlers/modules/legacybeefjs.rb b/core/main/handlers/modules/legacybeefjs.rb index 66d59b14a..240a83659 100644 --- a/core/main/handlers/modules/legacybeefjs.rb +++ b/core/main/handlers/modules/legacybeefjs.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/handlers/modules/multistagebeefjs.rb b/core/main/handlers/modules/multistagebeefjs.rb index 40f590182..e054fcf5c 100644 --- a/core/main/handlers/modules/multistagebeefjs.rb +++ b/core/main/handlers/modules/multistagebeefjs.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/logger.rb b/core/main/logger.rb index d62161597..15cdaafc3 100644 --- a/core/main/logger.rb +++ b/core/main/logger.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/migration.rb b/core/main/migration.rb index 9517f6680..a2683f80e 100644 --- a/core/main/migration.rb +++ b/core/main/migration.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/model.rb b/core/main/model.rb index b522a47f3..9b750e508 100644 --- a/core/main/model.rb +++ b/core/main/model.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/browserdetails.rb b/core/main/models/browserdetails.rb index 2f1d0a8e8..ee884b740 100644 --- a/core/main/models/browserdetails.rb +++ b/core/main/models/browserdetails.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/command.rb b/core/main/models/command.rb index e464d1f52..882c1a8fd 100644 --- a/core/main/models/command.rb +++ b/core/main/models/command.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/commandmodule.rb b/core/main/models/commandmodule.rb index 8d68e7de5..cbe807b7e 100644 --- a/core/main/models/commandmodule.rb +++ b/core/main/models/commandmodule.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/execution.rb b/core/main/models/execution.rb index 3d4051f17..199104795 100644 --- a/core/main/models/execution.rb +++ b/core/main/models/execution.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/hookedbrowser.rb b/core/main/models/hookedbrowser.rb index 003a5dea2..d9a72e228 100644 --- a/core/main/models/hookedbrowser.rb +++ b/core/main/models/hookedbrowser.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/legacybrowseruseragents.rb b/core/main/models/legacybrowseruseragents.rb index cc383fe76..48efcb227 100644 --- a/core/main/models/legacybrowseruseragents.rb +++ b/core/main/models/legacybrowseruseragents.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/log.rb b/core/main/models/log.rb index 4953b3495..ff2db8665 100644 --- a/core/main/models/log.rb +++ b/core/main/models/log.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/optioncache.rb b/core/main/models/optioncache.rb index af01422a2..542ba385d 100644 --- a/core/main/models/optioncache.rb +++ b/core/main/models/optioncache.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/result.rb b/core/main/models/result.rb index e05e05443..586bbe955 100644 --- a/core/main/models/result.rb +++ b/core/main/models/result.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/models/rule.rb b/core/main/models/rule.rb index 271e7b716..e56bb4d2a 100644 --- a/core/main/models/rule.rb +++ b/core/main/models/rule.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/network_stack/api.rb b/core/main/network_stack/api.rb index c9a1c899f..1e39f7b1e 100644 --- a/core/main/network_stack/api.rb +++ b/core/main/network_stack/api.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/network_stack/assethandler.rb b/core/main/network_stack/assethandler.rb index a0ef71c57..27d31f8c9 100644 --- a/core/main/network_stack/assethandler.rb +++ b/core/main/network_stack/assethandler.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/network_stack/handlers/dynamicreconstruction.rb b/core/main/network_stack/handlers/dynamicreconstruction.rb index 039e8419a..9a26add50 100644 --- a/core/main/network_stack/handlers/dynamicreconstruction.rb +++ b/core/main/network_stack/handlers/dynamicreconstruction.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/network_stack/handlers/raw.rb b/core/main/network_stack/handlers/raw.rb index b3183eabb..81ac3c41c 100644 --- a/core/main/network_stack/handlers/raw.rb +++ b/core/main/network_stack/handlers/raw.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/network_stack/handlers/redirector.rb b/core/main/network_stack/handlers/redirector.rb index 5265028f9..495646d99 100644 --- a/core/main/network_stack/handlers/redirector.rb +++ b/core/main/network_stack/handlers/redirector.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/network_stack/websocket/websocket.rb b/core/main/network_stack/websocket/websocket.rb index 31fed5b2c..b0399532a 100644 --- a/core/main/network_stack/websocket/websocket.rb +++ b/core/main/network_stack/websocket/websocket.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/rest/api.rb b/core/main/rest/api.rb index 248f99336..207c596ff 100644 --- a/core/main/rest/api.rb +++ b/core/main/rest/api.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/rest/handlers/admin.rb b/core/main/rest/handlers/admin.rb index decd7218f..aa3a6c9d1 100644 --- a/core/main/rest/handlers/admin.rb +++ b/core/main/rest/handlers/admin.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/rest/handlers/autorun_engine.rb b/core/main/rest/handlers/autorun_engine.rb index 24b73b02e..c2e311067 100644 --- a/core/main/rest/handlers/autorun_engine.rb +++ b/core/main/rest/handlers/autorun_engine.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/rest/handlers/browserdetails.rb b/core/main/rest/handlers/browserdetails.rb index 0d402a688..13d67e06d 100644 --- a/core/main/rest/handlers/browserdetails.rb +++ b/core/main/rest/handlers/browserdetails.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/rest/handlers/categories.rb b/core/main/rest/handlers/categories.rb index 51591c379..df382bb15 100644 --- a/core/main/rest/handlers/categories.rb +++ b/core/main/rest/handlers/categories.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/rest/handlers/hookedbrowsers.rb b/core/main/rest/handlers/hookedbrowsers.rb index 0b504099a..5b5c0c475 100644 --- a/core/main/rest/handlers/hookedbrowsers.rb +++ b/core/main/rest/handlers/hookedbrowsers.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/rest/handlers/logs.rb b/core/main/rest/handlers/logs.rb index 4cf396009..8ad120861 100644 --- a/core/main/rest/handlers/logs.rb +++ b/core/main/rest/handlers/logs.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/rest/handlers/modules.rb b/core/main/rest/handlers/modules.rb index 3ae859419..5994f3507 100644 --- a/core/main/rest/handlers/modules.rb +++ b/core/main/rest/handlers/modules.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/rest/handlers/server.rb b/core/main/rest/handlers/server.rb index 2f118608f..0077cc5bc 100644 --- a/core/main/rest/handlers/server.rb +++ b/core/main/rest/handlers/server.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/router/api.rb b/core/main/router/api.rb index 226f45cce..fb348f964 100644 --- a/core/main/router/api.rb +++ b/core/main/router/api.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/router/router.rb b/core/main/router/router.rb index a91ea007a..215273171 100644 --- a/core/main/router/router.rb +++ b/core/main/router/router.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/server.rb b/core/main/server.rb index d71c7dce1..d898682ce 100644 --- a/core/main/server.rb +++ b/core/main/server.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/module.rb b/core/module.rb index a6b29fc95..56b303589 100644 --- a/core/module.rb +++ b/core/module.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/modules.rb b/core/modules.rb index ceda48853..7136d6f2f 100644 --- a/core/modules.rb +++ b/core/modules.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby.rb b/core/ruby.rb index 72b4308e9..98444a7a2 100644 --- a/core/ruby.rb +++ b/core/ruby.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/hash.rb b/core/ruby/hash.rb index 7a320644a..f8c87b81b 100644 --- a/core/ruby/hash.rb +++ b/core/ruby/hash.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/module.rb b/core/ruby/module.rb index cac928504..10eb34ea4 100644 --- a/core/ruby/module.rb +++ b/core/ruby/module.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/print.rb b/core/ruby/print.rb index fbf932ac0..63d38aaf9 100644 --- a/core/ruby/print.rb +++ b/core/ruby/print.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/security.rb b/core/ruby/security.rb index 5ddef0da6..c07b16eee 100644 --- a/core/ruby/security.rb +++ b/core/ruby/security.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/string.rb b/core/ruby/string.rb index 756447a96..b3c235421 100644 --- a/core/ruby/string.rb +++ b/core/ruby/string.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/settings.rb b/core/settings.rb index 75fc803e3..9c3179e86 100644 --- a/core/settings.rb +++ b/core/settings.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - https://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/doc/COPYING b/doc/COPYING index 87c82b72b..0742865fb 100644 --- a/doc/COPYING +++ b/doc/COPYING @@ -2,7 +2,7 @@ COPYING -- Describes the terms under which the Browser Exploitation Framework (BeEF) is distributed. A copy of the GNU General Public License (GPL) is appended to this file. -BeEF (Browser Exploitation Framework) is (C) 2006-2020 Wade Alcorn. +BeEF (Browser Exploitation Framework) is (C) 2006-2026 Wade Alcorn. This program is free software; you may redistribute and/or modify it under the terms of the GNU General Public License as published by the Free diff --git a/doc/boilerplate b/doc/boilerplate index 56394a89b..208696ee2 100644 --- a/doc/boilerplate +++ b/doc/boilerplate @@ -1,3 +1,3 @@ -Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net +Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - https://beefproject.com See the file 'doc/COPYING' for copying permission \ No newline at end of file diff --git a/docs/are.js.html b/docs/are.js.html index e33299674..6e3a42056 100644 --- a/docs/are.js.html +++ b/docs/are.js.html @@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/beef.js.html b/docs/beef.js.html
index 0f4ba23a3..ab86880dc 100644
--- a/docs/beef.js.html
+++ b/docs/beef.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/browser.js.html b/docs/browser.js.html
index 2ee3b5a09..359bb80eb 100644
--- a/docs/browser.js.html
+++ b/docs/browser.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/browser_cookie.js.html b/docs/browser_cookie.js.html
index 4f7c9e63e..c818ed004 100644
--- a/docs/browser_cookie.js.html
+++ b/docs/browser_cookie.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/browser_popup.js.html b/docs/browser_popup.js.html
index b266947cf..8d2575447 100644
--- a/docs/browser_popup.js.html
+++ b/docs/browser_popup.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/dom.js.html b/docs/dom.js.html
index 5e26521af..916ac7950 100644
--- a/docs/dom.js.html
+++ b/docs/dom.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/encode_base64.js.html b/docs/encode_base64.js.html
index 8b6e4dca2..5d1bfb529 100644
--- a/docs/encode_base64.js.html
+++ b/docs/encode_base64.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/encode_json.js.html b/docs/encode_json.js.html
index 50e5e952d..586569f00 100644
--- a/docs/encode_json.js.html
+++ b/docs/encode_json.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/geolocation.js.html b/docs/geolocation.js.html
index 05524d11c..0dbdb24ca 100644
--- a/docs/geolocation.js.html
+++ b/docs/geolocation.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/hardware.js.html b/docs/hardware.js.html
index 15aed2012..436028ae5 100644
--- a/docs/hardware.js.html
+++ b/docs/hardware.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/index.html b/docs/index.html
index ca147b207..e420cbdba 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -44,7 +44,7 @@
 
     

===============================================================================

-
Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+
Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 Browser Exploitation Framework (BeEF) - https://beefproject.com
 See the file 'doc/COPYING' for copying permission
 
diff --git a/docs/init.js.html b/docs/init.js.html index 6a052e0c2..76a5150e7 100644 --- a/docs/init.js.html +++ b/docs/init.js.html @@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/logger.js.html b/docs/logger.js.html
index 904b83e85..974377c23 100644
--- a/docs/logger.js.html
+++ b/docs/logger.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/mitb.js.html b/docs/mitb.js.html
index 017a095e2..2da91c138 100644
--- a/docs/mitb.js.html
+++ b/docs/mitb.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/net.js.html b/docs/net.js.html
index d493f01b7..ab8d7b2eb 100644
--- a/docs/net.js.html
+++ b/docs/net.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/net_connection.js.html b/docs/net_connection.js.html
index ae47c3817..fc0c5281d 100644
--- a/docs/net_connection.js.html
+++ b/docs/net_connection.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/net_dns.js.html b/docs/net_dns.js.html
index 23cde8dbd..aab60a15c 100644
--- a/docs/net_dns.js.html
+++ b/docs/net_dns.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/net_local.js.html b/docs/net_local.js.html
index 19cae3bc6..ef0f6bb50 100644
--- a/docs/net_local.js.html
+++ b/docs/net_local.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/net_portscanner.js.html b/docs/net_portscanner.js.html
index 72b6a1947..9a95f179b 100644
--- a/docs/net_portscanner.js.html
+++ b/docs/net_portscanner.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/net_requester.js.html b/docs/net_requester.js.html
index 5be29b0b7..253845966 100644
--- a/docs/net_requester.js.html
+++ b/docs/net_requester.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/os.js.html b/docs/os.js.html
index 1440452c1..7ab3d2f7e 100644
--- a/docs/os.js.html
+++ b/docs/os.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/session.js.html b/docs/session.js.html
index 90cbd5ce9..e179b6524 100644
--- a/docs/session.js.html
+++ b/docs/session.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/timeout.js.html b/docs/timeout.js.html
index d420e1f6d..9b4217ea8 100644
--- a/docs/timeout.js.html
+++ b/docs/timeout.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/updater.js.html b/docs/updater.js.html
index 069696e09..21c9b21cc 100644
--- a/docs/updater.js.html
+++ b/docs/updater.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/webrtc.js.html b/docs/webrtc.js.html
index dd372503f..998f36b03 100644
--- a/docs/webrtc.js.html
+++ b/docs/webrtc.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/websocket.js.html b/docs/websocket.js.html
index 6e7e6e3a0..cc184141d 100644
--- a/docs/websocket.js.html
+++ b/docs/websocket.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/api/handler.rb b/extensions/admin_ui/api/handler.rb
index c220af8ba..b4c53e914 100644
--- a/extensions/admin_ui/api/handler.rb
+++ b/extensions/admin_ui/api/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/classes/httpcontroller.rb b/extensions/admin_ui/classes/httpcontroller.rb
index 85bc91bc4..d4fedde77 100644
--- a/extensions/admin_ui/classes/httpcontroller.rb
+++ b/extensions/admin_ui/classes/httpcontroller.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/classes/session.rb b/extensions/admin_ui/classes/session.rb
index d54883313..6ed46b44c 100644
--- a/extensions/admin_ui/classes/session.rb
+++ b/extensions/admin_ui/classes/session.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/config.yaml b/extensions/admin_ui/config.yaml
index 362dc20e9..6a17337cd 100644
--- a/extensions/admin_ui/config.yaml
+++ b/extensions/admin_ui/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/constants/icons.rb b/extensions/admin_ui/constants/icons.rb
index df3f616f3..b8c9a3cda 100644
--- a/extensions/admin_ui/constants/icons.rb
+++ b/extensions/admin_ui/constants/icons.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/controllers/authentication/authentication.rb b/extensions/admin_ui/controllers/authentication/authentication.rb
index 8aa6c3931..a0d8f13f5 100644
--- a/extensions/admin_ui/controllers/authentication/authentication.rb
+++ b/extensions/admin_ui/controllers/authentication/authentication.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/controllers/authentication/index.html b/extensions/admin_ui/controllers/authentication/index.html
index c0137a9a9..b4f4e999e 100644
--- a/extensions/admin_ui/controllers/authentication/index.html
+++ b/extensions/admin_ui/controllers/authentication/index.html
@@ -1,5 +1,5 @@
 
diff --git a/extensions/admin_ui/controllers/modules/modules.rb b/extensions/admin_ui/controllers/modules/modules.rb
index 36c863fe1..cf9c40077 100644
--- a/extensions/admin_ui/controllers/modules/modules.rb
+++ b/extensions/admin_ui/controllers/modules/modules.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/controllers/panel/index.html b/extensions/admin_ui/controllers/panel/index.html
index 6ab8e6fd5..eb01f71a9 100644
--- a/extensions/admin_ui/controllers/panel/index.html
+++ b/extensions/admin_ui/controllers/panel/index.html
@@ -1,5 +1,5 @@
 
diff --git a/extensions/admin_ui/controllers/panel/panel.rb b/extensions/admin_ui/controllers/panel/panel.rb
index a170faaac..c0dae08c7 100644
--- a/extensions/admin_ui/controllers/panel/panel.rb
+++ b/extensions/admin_ui/controllers/panel/panel.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/extension.rb b/extensions/admin_ui/extension.rb
index a104b0ff1..398a5c6c5 100644
--- a/extensions/admin_ui/extension.rb
+++ b/extensions/admin_ui/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/handlers/ui.rb b/extensions/admin_ui/handlers/ui.rb
index 208811a6c..4687f6f0d 100644
--- a/extensions/admin_ui/handlers/ui.rb
+++ b/extensions/admin_ui/handlers/ui.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/admin_ui/media/css/base.css b/extensions/admin_ui/media/css/base.css
index 80c15a693..782cd1b32 100644
--- a/extensions/admin_ui/media/css/base.css
+++ b/extensions/admin_ui/media/css/base.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/extensions/admin_ui/media/css/ext-all.css b/extensions/admin_ui/media/css/ext-all.css
index fb078b88e..80d41b6be 100644
--- a/extensions/admin_ui/media/css/ext-all.css
+++ b/extensions/admin_ui/media/css/ext-all.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/extensions/admin_ui/media/javascript/esapi/Class.create.js b/extensions/admin_ui/media/javascript/esapi/Class.create.js
index dfdbfe588..8807eae1e 100644
--- a/extensions/admin_ui/media/javascript/esapi/Class.create.js
+++ b/extensions/admin_ui/media/javascript/esapi/Class.create.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/extensions/admin_ui/media/javascript/ui/authentication.js b/extensions/admin_ui/media/javascript/ui/authentication.js
index 2448aa3ce..da739f329 100644
--- a/extensions/admin_ui/media/javascript/ui/authentication.js
+++ b/extensions/admin_ui/media/javascript/ui/authentication.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/common/beef_common.js b/extensions/admin_ui/media/javascript/ui/common/beef_common.js
index 9939cc455..e86cf26a3 100644
--- a/extensions/admin_ui/media/javascript/ui/common/beef_common.js
+++ b/extensions/admin_ui/media/javascript/ui/common/beef_common.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js b/extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js
index 924064eb8..89845b5e7 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/HooksTab.js b/extensions/admin_ui/media/javascript/ui/panel/HooksTab.js
index 77c7baaad..5de7bd657 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/HooksTab.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/HooksTab.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/Logout.js b/extensions/admin_ui/media/javascript/ui/panel/Logout.js
index 40c5d959a..580a22529 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/Logout.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/Logout.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js b/extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js
index 9522833e8..1712faf82 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/MainPanel.js b/extensions/admin_ui/media/javascript/ui/panel/MainPanel.js
index f0e32533e..49e58cb34 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/MainPanel.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/MainPanel.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js b/extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js
index 045368faa..ab767aae3 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js b/extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js
index c6e61ad59..517e829b8 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js b/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
index 8e1674a51..268788f6f 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js b/extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js
index a97057e29..3370167c0 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js b/extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js
index edac7d6e5..cea336504 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js b/extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js
index a3a56374f..ef72b1bbf 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js b/extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js
index ef117d30d..25c5063d6 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/common.js b/extensions/admin_ui/media/javascript/ui/panel/common.js
index c02389038..063ab1673 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/common.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/common.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js
index 18e3bbbf7..c7d780ead 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js
index 82ba0d186..0122ee8c6 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js
index dd1b03ac0..0162ba51c 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js
index 60fbe91f5..37ff46671 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js
index a264a3679..0bacd51e1 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js
index 5db323caf..2a37eb191 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js
index 992230e5e..5eb1678c7 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js b/extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js
index 2a4db252a..e9c1c2ace 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ux/PagingStore.js b/extensions/admin_ui/media/javascript/ux/PagingStore.js
index 342493326..8d78c4c41 100644
--- a/extensions/admin_ui/media/javascript/ux/PagingStore.js
+++ b/extensions/admin_ui/media/javascript/ux/PagingStore.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ux/StatusBar.js b/extensions/admin_ui/media/javascript/ux/StatusBar.js
index 831034270..fccb26f59 100644
--- a/extensions/admin_ui/media/javascript/ux/StatusBar.js
+++ b/extensions/admin_ui/media/javascript/ux/StatusBar.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/admin_ui/media/javascript/ux/TabCloseMenu.js b/extensions/admin_ui/media/javascript/ux/TabCloseMenu.js
index 00feaf2bb..3ba1abbf8 100644
--- a/extensions/admin_ui/media/javascript/ux/TabCloseMenu.js
+++ b/extensions/admin_ui/media/javascript/ux/TabCloseMenu.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/autoloader/config.yaml b/extensions/autoloader/config.yaml
index eb96b17dd..a6ed6db31 100644
--- a/extensions/autoloader/config.yaml
+++ b/extensions/autoloader/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/autoloader/extension.rb b/extensions/autoloader/extension.rb
index b9340d085..a10237480 100644
--- a/extensions/autoloader/extension.rb
+++ b/extensions/autoloader/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/autoloader/model.rb b/extensions/autoloader/model.rb
index aaea573af..437c0dc27 100644
--- a/extensions/autoloader/model.rb
+++ b/extensions/autoloader/model.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/customhook/api.rb b/extensions/customhook/api.rb
index 540490fdd..0318381b2 100644
--- a/extensions/customhook/api.rb
+++ b/extensions/customhook/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/customhook/config.yaml b/extensions/customhook/config.yaml
index c6d45feaf..719f9219b 100644
--- a/extensions/customhook/config.yaml
+++ b/extensions/customhook/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/customhook/extension.rb b/extensions/customhook/extension.rb
index 099b3c69c..9d0e20ede 100644
--- a/extensions/customhook/extension.rb
+++ b/extensions/customhook/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/customhook/handler.rb b/extensions/customhook/handler.rb
index 7803da54b..bc9cbdb1f 100644
--- a/extensions/customhook/handler.rb
+++ b/extensions/customhook/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/customhook/html/index.html b/extensions/customhook/html/index.html
index 25a580f9d..a799a0418 100644
--- a/extensions/customhook/html/index.html
+++ b/extensions/customhook/html/index.html
@@ -1,5 +1,5 @@
 
diff --git a/extensions/demos/api.rb b/extensions/demos/api.rb
index 8c39552a7..9b0c445bb 100644
--- a/extensions/demos/api.rb
+++ b/extensions/demos/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/demos/config.yaml b/extensions/demos/config.yaml
index 8d0b8ad61..f46949ff6 100644
--- a/extensions/demos/config.yaml
+++ b/extensions/demos/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/demos/extension.rb b/extensions/demos/extension.rb
index 12d22f6f5..a89e15541 100644
--- a/extensions/demos/extension.rb
+++ b/extensions/demos/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/demos/handler.rb b/extensions/demos/handler.rb
index d52eb18fe..2e23c0ee9 100644
--- a/extensions/demos/handler.rb
+++ b/extensions/demos/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/demos/html/basic.html b/extensions/demos/html/basic.html
index 2bf552324..50d1c9d4f 100644
--- a/extensions/demos/html/basic.html
+++ b/extensions/demos/html/basic.html
@@ -1,7 +1,7 @@
 
 
 
diff --git a/extensions/demos/html/butcher/butch.css b/extensions/demos/html/butcher/butch.css
index dec8d9640..8dee52d15 100644
--- a/extensions/demos/html/butcher/butch.css
+++ b/extensions/demos/html/butcher/butch.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/extensions/demos/html/butcher/index.html b/extensions/demos/html/butcher/index.html
index e17f99b2a..7ba5f6b21 100644
--- a/extensions/demos/html/butcher/index.html
+++ b/extensions/demos/html/butcher/index.html
@@ -1,5 +1,5 @@
 
diff --git a/extensions/demos/html/clickjacking/clickjack_attack.html b/extensions/demos/html/clickjacking/clickjack_attack.html
index 21e0207e0..6bcb1b505 100644
--- a/extensions/demos/html/clickjacking/clickjack_attack.html
+++ b/extensions/demos/html/clickjacking/clickjack_attack.html
@@ -1,5 +1,5 @@
 
diff --git a/extensions/demos/html/clickjacking/clickjack_victim.html b/extensions/demos/html/clickjacking/clickjack_victim.html
index fd6d14dc6..3c446fdb1 100644
--- a/extensions/demos/html/clickjacking/clickjack_victim.html
+++ b/extensions/demos/html/clickjacking/clickjack_victim.html
@@ -1,5 +1,5 @@
 
diff --git a/extensions/demos/html/plain.html b/extensions/demos/html/plain.html
index 4453eeab5..f303d02f3 100644
--- a/extensions/demos/html/plain.html
+++ b/extensions/demos/html/plain.html
@@ -1,5 +1,5 @@
 
diff --git a/extensions/demos/html/report.html b/extensions/demos/html/report.html
index 4c2744e6a..b2745aaf2 100644
--- a/extensions/demos/html/report.html
+++ b/extensions/demos/html/report.html
@@ -1,5 +1,5 @@
 
diff --git a/extensions/demos/html/secret_page.html b/extensions/demos/html/secret_page.html
index ea0bd94ff..28a18aa62 100644
--- a/extensions/demos/html/secret_page.html
+++ b/extensions/demos/html/secret_page.html
@@ -1,5 +1,5 @@
 
diff --git a/extensions/dns/api.rb b/extensions/dns/api.rb
index f4e14551c..6c12e6ead 100644
--- a/extensions/dns/api.rb
+++ b/extensions/dns/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/config.yaml b/extensions/dns/config.yaml
index b0fbeff42..e0abbe35b 100644
--- a/extensions/dns/config.yaml
+++ b/extensions/dns/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/dns.rb b/extensions/dns/dns.rb
index ccddb4513..9a0d0f7fd 100644
--- a/extensions/dns/dns.rb
+++ b/extensions/dns/dns.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/extension.rb b/extensions/dns/extension.rb
index 88214af7b..53a175fca 100644
--- a/extensions/dns/extension.rb
+++ b/extensions/dns/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/logger.rb b/extensions/dns/logger.rb
index 0a8324964..3611571d2 100644
--- a/extensions/dns/logger.rb
+++ b/extensions/dns/logger.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/model.rb b/extensions/dns/model.rb
index 04633aa87..51e5204bb 100644
--- a/extensions/dns/model.rb
+++ b/extensions/dns/model.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/rest/dns.rb b/extensions/dns/rest/dns.rb
index ac3f2a831..da14775ec 100644
--- a/extensions/dns/rest/dns.rb
+++ b/extensions/dns/rest/dns.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns_rebinding/api.rb b/extensions/dns_rebinding/api.rb
index c270c92de..99ccb2582 100644
--- a/extensions/dns_rebinding/api.rb
+++ b/extensions/dns_rebinding/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns_rebinding/config.yaml b/extensions/dns_rebinding/config.yaml
index 58b88037d..8e9a345fd 100644
--- a/extensions/dns_rebinding/config.yaml
+++ b/extensions/dns_rebinding/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns_rebinding/extension.rb b/extensions/dns_rebinding/extension.rb
index a8abcdf30..d6bde15b1 100644
--- a/extensions/dns_rebinding/extension.rb
+++ b/extensions/dns_rebinding/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/etag/api.rb b/extensions/etag/api.rb
index 76fdbc9f6..73c65f329 100644
--- a/extensions/etag/api.rb
+++ b/extensions/etag/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/etag/config.yaml b/extensions/etag/config.yaml
index a70a6836d..d0352a071 100644
--- a/extensions/etag/config.yaml
+++ b/extensions/etag/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/etag/etag.rb b/extensions/etag/etag.rb
index 51425af55..979662de9 100644
--- a/extensions/etag/etag.rb
+++ b/extensions/etag/etag.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/etag/extension.rb b/extensions/etag/extension.rb
index 9ce0e84b1..ebe1ba49c 100644
--- a/extensions/etag/extension.rb
+++ b/extensions/etag/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/config.yaml b/extensions/evasion/config.yaml
index 8be400e81..1c6f0e1ca 100644
--- a/extensions/evasion/config.yaml
+++ b/extensions/evasion/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/evasion.rb b/extensions/evasion/evasion.rb
index 9b10d3891..0a5f7e342 100644
--- a/extensions/evasion/evasion.rb
+++ b/extensions/evasion/evasion.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/extension.rb b/extensions/evasion/extension.rb
index dade3a809..70dffb331 100644
--- a/extensions/evasion/extension.rb
+++ b/extensions/evasion/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/obfuscation/base_64.rb b/extensions/evasion/obfuscation/base_64.rb
index 771c9b51c..599da5a73 100644
--- a/extensions/evasion/obfuscation/base_64.rb
+++ b/extensions/evasion/obfuscation/base_64.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/obfuscation/minify.rb b/extensions/evasion/obfuscation/minify.rb
index 27571c8e7..b44a9f2fc 100644
--- a/extensions/evasion/obfuscation/minify.rb
+++ b/extensions/evasion/obfuscation/minify.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/obfuscation/scramble.rb b/extensions/evasion/obfuscation/scramble.rb
index 1ebfc0ee0..ab06977a1 100644
--- a/extensions/evasion/obfuscation/scramble.rb
+++ b/extensions/evasion/obfuscation/scramble.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/obfuscation/whitespace.rb b/extensions/evasion/obfuscation/whitespace.rb
index 90f318568..73d1d7c8e 100644
--- a/extensions/evasion/obfuscation/whitespace.rb
+++ b/extensions/evasion/obfuscation/whitespace.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/events/api.rb b/extensions/events/api.rb
index d6e99cd0f..592bc9916 100644
--- a/extensions/events/api.rb
+++ b/extensions/events/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/events/config.yaml b/extensions/events/config.yaml
index a289f4287..9e5b456d1 100644
--- a/extensions/events/config.yaml
+++ b/extensions/events/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/events/extension.rb b/extensions/events/extension.rb
index 0385acb35..340fbea7e 100644
--- a/extensions/events/extension.rb
+++ b/extensions/events/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/events/handler.rb b/extensions/events/handler.rb
index 3239c2519..95d9b6443 100644
--- a/extensions/events/handler.rb
+++ b/extensions/events/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/api.rb b/extensions/metasploit/api.rb
index d5078387e..182e23b32 100644
--- a/extensions/metasploit/api.rb
+++ b/extensions/metasploit/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/config.yaml b/extensions/metasploit/config.yaml
index ce7ea297d..1b0c985c1 100644
--- a/extensions/metasploit/config.yaml
+++ b/extensions/metasploit/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/extension.rb b/extensions/metasploit/extension.rb
index acf1d18c4..7d6c2fcfb 100644
--- a/extensions/metasploit/extension.rb
+++ b/extensions/metasploit/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/module.rb b/extensions/metasploit/module.rb
index 33eb7c50f..199226ee4 100644
--- a/extensions/metasploit/module.rb
+++ b/extensions/metasploit/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/rest/msf.rb b/extensions/metasploit/rest/msf.rb
index e848e4a71..764ca88e1 100644
--- a/extensions/metasploit/rest/msf.rb
+++ b/extensions/metasploit/rest/msf.rb
@@ -1,6 +1,6 @@
 require_relative '../../../core/main/router/router'
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/rpcclient.rb b/extensions/metasploit/rpcclient.rb
index a7502c0f9..9bdb79c06 100644
--- a/extensions/metasploit/rpcclient.rb
+++ b/extensions/metasploit/rpcclient.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/network/api.rb b/extensions/network/api.rb
index ab1a2ad1b..9f44b5725 100644
--- a/extensions/network/api.rb
+++ b/extensions/network/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/network/config.yaml b/extensions/network/config.yaml
index d1b161fdb..595cc7103 100644
--- a/extensions/network/config.yaml
+++ b/extensions/network/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/network/extension.rb b/extensions/network/extension.rb
index 2bde49be9..5358e87f0 100644
--- a/extensions/network/extension.rb
+++ b/extensions/network/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/network/models/network_host.rb b/extensions/network/models/network_host.rb
index 441247777..90c3f7343 100644
--- a/extensions/network/models/network_host.rb
+++ b/extensions/network/models/network_host.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/network/models/network_service.rb b/extensions/network/models/network_service.rb
index ffe52bdb5..9a8f59ee9 100644
--- a/extensions/network/models/network_service.rb
+++ b/extensions/network/models/network_service.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/network/rest/network.rb b/extensions/network/rest/network.rb
index f5a9563b2..04c48ab82 100644
--- a/extensions/network/rest/network.rb
+++ b/extensions/network/rest/network.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/notifications/channels/email.rb b/extensions/notifications/channels/email.rb
index b2222044f..f003f7fb1 100644
--- a/extensions/notifications/channels/email.rb
+++ b/extensions/notifications/channels/email.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/notifications/channels/slack_workspace.rb b/extensions/notifications/channels/slack_workspace.rb
index 6f3e87231..b1cc0b853 100644
--- a/extensions/notifications/channels/slack_workspace.rb
+++ b/extensions/notifications/channels/slack_workspace.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/notifications/config.yaml b/extensions/notifications/config.yaml
index 17999fcb0..17adfbfab 100644
--- a/extensions/notifications/config.yaml
+++ b/extensions/notifications/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/notifications/extension.rb b/extensions/notifications/extension.rb
index dfe0cb858..8c1d8b8cc 100644
--- a/extensions/notifications/extension.rb
+++ b/extensions/notifications/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/notifications/notifications.rb b/extensions/notifications/notifications.rb
index b42179b40..ecbeabe43 100644
--- a/extensions/notifications/notifications.rb
+++ b/extensions/notifications/notifications.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/proxy/api.rb b/extensions/proxy/api.rb
index 21bdbbaa6..2c89aa170 100644
--- a/extensions/proxy/api.rb
+++ b/extensions/proxy/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/proxy/config.yaml b/extensions/proxy/config.yaml
index fdce35aaa..a37117e5b 100644
--- a/extensions/proxy/config.yaml
+++ b/extensions/proxy/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/proxy/extension.rb b/extensions/proxy/extension.rb
index 5891c6f6c..36005969e 100644
--- a/extensions/proxy/extension.rb
+++ b/extensions/proxy/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/proxy/proxy.rb b/extensions/proxy/proxy.rb
index e5ed5fbf4..a9bd95222 100644
--- a/extensions/proxy/proxy.rb
+++ b/extensions/proxy/proxy.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/proxy/rest/proxy.rb b/extensions/proxy/rest/proxy.rb
index 3753103df..a0bba9c39 100644
--- a/extensions/proxy/rest/proxy.rb
+++ b/extensions/proxy/rest/proxy.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/qrcode/config.yaml b/extensions/qrcode/config.yaml
index 7e001da81..53526ae3c 100644
--- a/extensions/qrcode/config.yaml
+++ b/extensions/qrcode/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/qrcode/extension.rb b/extensions/qrcode/extension.rb
index ca57ecc79..81eabc33a 100644
--- a/extensions/qrcode/extension.rb
+++ b/extensions/qrcode/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/qrcode/qrcode.rb b/extensions/qrcode/qrcode.rb
index 6f4df2901..6fbfd9dd0 100644
--- a/extensions/qrcode/qrcode.rb
+++ b/extensions/qrcode/qrcode.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/requester/api.rb b/extensions/requester/api.rb
index b23959c00..e85a0de3d 100644
--- a/extensions/requester/api.rb
+++ b/extensions/requester/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/requester/api/hook.rb b/extensions/requester/api/hook.rb
index 6c3f72990..524596fc1 100644
--- a/extensions/requester/api/hook.rb
+++ b/extensions/requester/api/hook.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
@@ -37,7 +37,7 @@ module BeEF
             # If we use WebSockets, just reply wih the component contents
             if config.get('beef.http.websocket.enable') && ws.getsocket(hb.session)
               content = File.read(find_beefjs_component_path('beef.net.requester')).gsub('//
-              //   Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+              //   Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
               //   Browser Exploitation Framework (BeEF) - https://beefproject.com
               //   See the file \'doc/COPYING\' for copying permission
               //', '')
diff --git a/extensions/requester/config.yaml b/extensions/requester/config.yaml
index 8ae12a895..98c98c936 100644
--- a/extensions/requester/config.yaml
+++ b/extensions/requester/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/requester/extension.rb b/extensions/requester/extension.rb
index 2d1512979..4cd8ec5bc 100644
--- a/extensions/requester/extension.rb
+++ b/extensions/requester/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/requester/handler.rb b/extensions/requester/handler.rb
index b866e65e7..d77a5c7d8 100644
--- a/extensions/requester/handler.rb
+++ b/extensions/requester/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/requester/models/http.rb b/extensions/requester/models/http.rb
index 8b859d4f5..e3c4dadb3 100644
--- a/extensions/requester/models/http.rb
+++ b/extensions/requester/models/http.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/requester/rest/requester.rb b/extensions/requester/rest/requester.rb
index 76585bddb..57368ded9 100644
--- a/extensions/requester/rest/requester.rb
+++ b/extensions/requester/rest/requester.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/s2c_dns_tunnel/api.rb b/extensions/s2c_dns_tunnel/api.rb
index 6dd3b9dc8..4773a743b 100644
--- a/extensions/s2c_dns_tunnel/api.rb
+++ b/extensions/s2c_dns_tunnel/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/s2c_dns_tunnel/config.yaml b/extensions/s2c_dns_tunnel/config.yaml
index 458e7c71d..e99487370 100644
--- a/extensions/s2c_dns_tunnel/config.yaml
+++ b/extensions/s2c_dns_tunnel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/s2c_dns_tunnel/dnsd.rb b/extensions/s2c_dns_tunnel/dnsd.rb
index aa9ef8f70..34d1573ad 100644
--- a/extensions/s2c_dns_tunnel/dnsd.rb
+++ b/extensions/s2c_dns_tunnel/dnsd.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/s2c_dns_tunnel/extension.rb b/extensions/s2c_dns_tunnel/extension.rb
index 491963bfe..f2da48b2d 100644
--- a/extensions/s2c_dns_tunnel/extension.rb
+++ b/extensions/s2c_dns_tunnel/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/social_engineering/config.yaml b/extensions/social_engineering/config.yaml
index 586f616a9..ad6bb6fbc 100644
--- a/extensions/social_engineering/config.yaml
+++ b/extensions/social_engineering/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/social_engineering/extension.rb b/extensions/social_engineering/extension.rb
index 592a5cf8b..664579525 100644
--- a/extensions/social_engineering/extension.rb
+++ b/extensions/social_engineering/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/social_engineering/models/interceptor.rb b/extensions/social_engineering/models/interceptor.rb
index 286baad99..64005793c 100644
--- a/extensions/social_engineering/models/interceptor.rb
+++ b/extensions/social_engineering/models/interceptor.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/social_engineering/models/web_cloner.rb b/extensions/social_engineering/models/web_cloner.rb
index 54fae9726..76cbc41d2 100644
--- a/extensions/social_engineering/models/web_cloner.rb
+++ b/extensions/social_engineering/models/web_cloner.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/social_engineering/powershell/bind_powershell.rb b/extensions/social_engineering/powershell/bind_powershell.rb
index 87c0e7656..2d2b2d17d 100644
--- a/extensions/social_engineering/powershell/bind_powershell.rb
+++ b/extensions/social_engineering/powershell/bind_powershell.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/social_engineering/rest/socialengineering.rb b/extensions/social_engineering/rest/socialengineering.rb
index fad214500..00a3680f8 100644
--- a/extensions/social_engineering/rest/socialengineering.rb
+++ b/extensions/social_engineering/rest/socialengineering.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/social_engineering/web_cloner/interceptor.rb b/extensions/social_engineering/web_cloner/interceptor.rb
index 5a6bc031f..f1bb25703 100644
--- a/extensions/social_engineering/web_cloner/interceptor.rb
+++ b/extensions/social_engineering/web_cloner/interceptor.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/social_engineering/web_cloner/web_cloner.rb b/extensions/social_engineering/web_cloner/web_cloner.rb
index 67fab749d..020f531c3 100644
--- a/extensions/social_engineering/web_cloner/web_cloner.rb
+++ b/extensions/social_engineering/web_cloner/web_cloner.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/api.rb b/extensions/webrtc/api.rb
index d227734f5..03b3d8438 100644
--- a/extensions/webrtc/api.rb
+++ b/extensions/webrtc/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/api/hook.rb b/extensions/webrtc/api/hook.rb
index c7dff3155..3b3486790 100644
--- a/extensions/webrtc/api/hook.rb
+++ b/extensions/webrtc/api/hook.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/config.yaml b/extensions/webrtc/config.yaml
index c1f6d643d..7dddff856 100644
--- a/extensions/webrtc/config.yaml
+++ b/extensions/webrtc/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/extension.rb b/extensions/webrtc/extension.rb
index afc1e4788..80f140c2b 100644
--- a/extensions/webrtc/extension.rb
+++ b/extensions/webrtc/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/handlers.rb b/extensions/webrtc/handlers.rb
index 7c9f97d87..c6406d2e0 100644
--- a/extensions/webrtc/handlers.rb
+++ b/extensions/webrtc/handlers.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/models/rtcmanage.rb b/extensions/webrtc/models/rtcmanage.rb
index 04e5a55ff..12b6eae38 100644
--- a/extensions/webrtc/models/rtcmanage.rb
+++ b/extensions/webrtc/models/rtcmanage.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/models/rtcmodulestatus.rb b/extensions/webrtc/models/rtcmodulestatus.rb
index b1f64c26b..3421c1bf8 100644
--- a/extensions/webrtc/models/rtcmodulestatus.rb
+++ b/extensions/webrtc/models/rtcmodulestatus.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/models/rtcsignal.rb b/extensions/webrtc/models/rtcsignal.rb
index 41cb6513a..ac57233d1 100644
--- a/extensions/webrtc/models/rtcsignal.rb
+++ b/extensions/webrtc/models/rtcsignal.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/models/rtcstatus.rb b/extensions/webrtc/models/rtcstatus.rb
index 0a0a21ec0..7a46ffafe 100644
--- a/extensions/webrtc/models/rtcstatus.rb
+++ b/extensions/webrtc/models/rtcstatus.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/rest/webrtc.rb b/extensions/webrtc/rest/webrtc.rb
index 752efacd3..25f8048c8 100644
--- a/extensions/webrtc/rest/webrtc.rb
+++ b/extensions/webrtc/rest/webrtc.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/api.rb b/extensions/xssrays/api.rb
index fbdee124c..abcedb5ce 100644
--- a/extensions/xssrays/api.rb
+++ b/extensions/xssrays/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/api/scan.rb b/extensions/xssrays/api/scan.rb
index d3c335024..e0eff3e49 100644
--- a/extensions/xssrays/api/scan.rb
+++ b/extensions/xssrays/api/scan.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
@@ -43,7 +43,7 @@ module BeEF
             # If we use WebSockets, just reply wih the component contents
             if config.get('beef.http.websocket.enable') && ws.getsocket(hb.session)
               content = File.read(find_beefjs_component_path('beef.net.xssrays')).gsub('//
-              //   Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+              //   Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
               //   Browser Exploitation Framework (BeEF) - https://beefproject.com
               //   See the file \'doc/COPYING\' for copying permission
               //', '')
diff --git a/extensions/xssrays/config.yaml b/extensions/xssrays/config.yaml
index 783eab49e..b642c58b9 100644
--- a/extensions/xssrays/config.yaml
+++ b/extensions/xssrays/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/extension.rb b/extensions/xssrays/extension.rb
index a21db582f..47e8c3c9a 100644
--- a/extensions/xssrays/extension.rb
+++ b/extensions/xssrays/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/handler.rb b/extensions/xssrays/handler.rb
index b1624ed0d..ef484ba8a 100644
--- a/extensions/xssrays/handler.rb
+++ b/extensions/xssrays/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/models/xssraysdetail.rb b/extensions/xssrays/models/xssraysdetail.rb
index e1e95944f..7ccd600fd 100644
--- a/extensions/xssrays/models/xssraysdetail.rb
+++ b/extensions/xssrays/models/xssraysdetail.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/models/xssraysscan.rb b/extensions/xssrays/models/xssraysscan.rb
index 0aaaa17a0..e2eda89f1 100644
--- a/extensions/xssrays/models/xssraysscan.rb
+++ b/extensions/xssrays/models/xssraysscan.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/rest/xssrays.rb b/extensions/xssrays/rest/xssrays.rb
index 0f10ca545..84d70be09 100644
--- a/extensions/xssrays/rest/xssrays.rb
+++ b/extensions/xssrays/rest/xssrays.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/install b/install
index 01ac8a388..a6c8ca40b 100755
--- a/install
+++ b/install
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/avant_steal_history/command.js b/modules/browser/avant_steal_history/command.js
index 503b007ac..9f40b2cab 100644
--- a/modules/browser/avant_steal_history/command.js
+++ b/modules/browser/avant_steal_history/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
diff --git a/modules/browser/avant_steal_history/config.yaml b/modules/browser/avant_steal_history/config.yaml
index 48738c10a..3051875a4 100644
--- a/modules/browser/avant_steal_history/config.yaml
+++ b/modules/browser/avant_steal_history/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/browser/avant_steal_history/module.rb b/modules/browser/avant_steal_history/module.rb
index 24b39ffcc..18d07323e 100644
--- a/modules/browser/avant_steal_history/module.rb
+++ b/modules/browser/avant_steal_history/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/browser/browser_fingerprinting/command.js b/modules/browser/browser_fingerprinting/command.js
index 0f209e2f1..a3310464a 100644
--- a/modules/browser/browser_fingerprinting/command.js
+++ b/modules/browser/browser_fingerprinting/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/browser_fingerprinting/config.yaml b/modules/browser/browser_fingerprinting/config.yaml
index 6cde9ccd1..03cf83096 100644
--- a/modules/browser/browser_fingerprinting/config.yaml
+++ b/modules/browser/browser_fingerprinting/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/browser_fingerprinting/module.rb b/modules/browser/browser_fingerprinting/module.rb
index ca9ab638d..21b1da271 100644
--- a/modules/browser/browser_fingerprinting/module.rb
+++ b/modules/browser/browser_fingerprinting/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_activex/command.js b/modules/browser/detect_activex/command.js
index 4777891c3..23e34dfe5 100644
--- a/modules/browser/detect_activex/command.js
+++ b/modules/browser/detect_activex/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_activex/config.yaml b/modules/browser/detect_activex/config.yaml
index f93bea4bd..c317e17dc 100644
--- a/modules/browser/detect_activex/config.yaml
+++ b/modules/browser/detect_activex/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_activex/module.rb b/modules/browser/detect_activex/module.rb
index 3dcd1c97e..5cada33c0 100644
--- a/modules/browser/detect_activex/module.rb
+++ b/modules/browser/detect_activex/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_evernote_clipper/command.js b/modules/browser/detect_evernote_clipper/command.js
index 17dc0c468..68f523eb2 100644
--- a/modules/browser/detect_evernote_clipper/command.js
+++ b/modules/browser/detect_evernote_clipper/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_evernote_clipper/config.yaml b/modules/browser/detect_evernote_clipper/config.yaml
index b9e2a5f52..517646bb6 100644
--- a/modules/browser/detect_evernote_clipper/config.yaml
+++ b/modules/browser/detect_evernote_clipper/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_evernote_clipper/module.rb b/modules/browser/detect_evernote_clipper/module.rb
index 0c7aa4cf1..bd4621137 100644
--- a/modules/browser/detect_evernote_clipper/module.rb
+++ b/modules/browser/detect_evernote_clipper/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_extensions/command.js b/modules/browser/detect_extensions/command.js
index a8528fbbc..87500ea15 100644
--- a/modules/browser/detect_extensions/command.js
+++ b/modules/browser/detect_extensions/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_extensions/config.yaml b/modules/browser/detect_extensions/config.yaml
index 45328436f..562375a29 100644
--- a/modules/browser/detect_extensions/config.yaml
+++ b/modules/browser/detect_extensions/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_extensions/module.rb b/modules/browser/detect_extensions/module.rb
index 2007a87ce..b73455d86 100644
--- a/modules/browser/detect_extensions/module.rb
+++ b/modules/browser/detect_extensions/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_firebug/command.js b/modules/browser/detect_firebug/command.js
index 1868c7c66..d9480e974 100644
--- a/modules/browser/detect_firebug/command.js
+++ b/modules/browser/detect_firebug/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_firebug/config.yaml b/modules/browser/detect_firebug/config.yaml
index 1f546e945..d9706ca5f 100644
--- a/modules/browser/detect_firebug/config.yaml
+++ b/modules/browser/detect_firebug/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_firebug/module.rb b/modules/browser/detect_firebug/module.rb
index d50c9dddc..0247cd1a2 100644
--- a/modules/browser/detect_firebug/module.rb
+++ b/modules/browser/detect_firebug/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_foxit/command.js b/modules/browser/detect_foxit/command.js
index db0823daa..464dc41a6 100644
--- a/modules/browser/detect_foxit/command.js
+++ b/modules/browser/detect_foxit/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_foxit/config.yaml b/modules/browser/detect_foxit/config.yaml
index 852fb18fa..1897414be 100644
--- a/modules/browser/detect_foxit/config.yaml
+++ b/modules/browser/detect_foxit/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_foxit/module.rb b/modules/browser/detect_foxit/module.rb
index 205d19339..bc7ea865f 100644
--- a/modules/browser/detect_foxit/module.rb
+++ b/modules/browser/detect_foxit/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_lastpass/command.js b/modules/browser/detect_lastpass/command.js
index 278685a9c..fb42b4e73 100644
--- a/modules/browser/detect_lastpass/command.js
+++ b/modules/browser/detect_lastpass/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_lastpass/config.yaml b/modules/browser/detect_lastpass/config.yaml
index d354c742c..9f9440a51 100644
--- a/modules/browser/detect_lastpass/config.yaml
+++ b/modules/browser/detect_lastpass/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_lastpass/module.rb b/modules/browser/detect_lastpass/module.rb
index f060a8f32..735be4b7f 100644
--- a/modules/browser/detect_lastpass/module.rb
+++ b/modules/browser/detect_lastpass/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_mime_types/command.js b/modules/browser/detect_mime_types/command.js
index cb188da5a..789a676ab 100644
--- a/modules/browser/detect_mime_types/command.js
+++ b/modules/browser/detect_mime_types/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_mime_types/config.yaml b/modules/browser/detect_mime_types/config.yaml
index 59c1ff97b..efb10161a 100644
--- a/modules/browser/detect_mime_types/config.yaml
+++ b/modules/browser/detect_mime_types/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_mime_types/module.rb b/modules/browser/detect_mime_types/module.rb
index 7e043f301..818899d2b 100644
--- a/modules/browser/detect_mime_types/module.rb
+++ b/modules/browser/detect_mime_types/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_office/command.js b/modules/browser/detect_office/command.js
index 59713c7e6..e2aa4bf59 100644
--- a/modules/browser/detect_office/command.js
+++ b/modules/browser/detect_office/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_office/config.yaml b/modules/browser/detect_office/config.yaml
index b59667029..0093a31d5 100644
--- a/modules/browser/detect_office/config.yaml
+++ b/modules/browser/detect_office/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_office/module.rb b/modules/browser/detect_office/module.rb
index 4705402b6..2535130d8 100644
--- a/modules/browser/detect_office/module.rb
+++ b/modules/browser/detect_office/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_popup_blocker/command.js b/modules/browser/detect_popup_blocker/command.js
index ac232433d..ab41b485b 100644
--- a/modules/browser/detect_popup_blocker/command.js
+++ b/modules/browser/detect_popup_blocker/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_popup_blocker/config.yaml b/modules/browser/detect_popup_blocker/config.yaml
index 6eab2798d..2701bbbb5 100644
--- a/modules/browser/detect_popup_blocker/config.yaml
+++ b/modules/browser/detect_popup_blocker/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_popup_blocker/module.rb b/modules/browser/detect_popup_blocker/module.rb
index 3c0602474..a6bc42e4d 100644
--- a/modules/browser/detect_popup_blocker/module.rb
+++ b/modules/browser/detect_popup_blocker/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_quicktime/command.js b/modules/browser/detect_quicktime/command.js
index b6c543e0f..070083227 100644
--- a/modules/browser/detect_quicktime/command.js
+++ b/modules/browser/detect_quicktime/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_quicktime/config.yaml b/modules/browser/detect_quicktime/config.yaml
index a219be95e..5ad814f5a 100644
--- a/modules/browser/detect_quicktime/config.yaml
+++ b/modules/browser/detect_quicktime/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_quicktime/module.rb b/modules/browser/detect_quicktime/module.rb
index af8a05be4..ff002ef8b 100644
--- a/modules/browser/detect_quicktime/module.rb
+++ b/modules/browser/detect_quicktime/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_realplayer/command.js b/modules/browser/detect_realplayer/command.js
index f5513e777..6df327568 100644
--- a/modules/browser/detect_realplayer/command.js
+++ b/modules/browser/detect_realplayer/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_realplayer/config.yaml b/modules/browser/detect_realplayer/config.yaml
index 00263ef9e..a24803e56 100644
--- a/modules/browser/detect_realplayer/config.yaml
+++ b/modules/browser/detect_realplayer/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_realplayer/module.rb b/modules/browser/detect_realplayer/module.rb
index 425c81001..f58ef47a4 100644
--- a/modules/browser/detect_realplayer/module.rb
+++ b/modules/browser/detect_realplayer/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_silverlight/command.js b/modules/browser/detect_silverlight/command.js
index a3c0cfebf..96dd245b4 100644
--- a/modules/browser/detect_silverlight/command.js
+++ b/modules/browser/detect_silverlight/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_silverlight/config.yaml b/modules/browser/detect_silverlight/config.yaml
index 280270ffe..5d0d6d7ab 100644
--- a/modules/browser/detect_silverlight/config.yaml
+++ b/modules/browser/detect_silverlight/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_silverlight/module.rb b/modules/browser/detect_silverlight/module.rb
index 00accbdb5..4b23482dd 100644
--- a/modules/browser/detect_silverlight/module.rb
+++ b/modules/browser/detect_silverlight/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_simple_adblock/command.js b/modules/browser/detect_simple_adblock/command.js
index cad8b480b..713cabaa2 100644
--- a/modules/browser/detect_simple_adblock/command.js
+++ b/modules/browser/detect_simple_adblock/command.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_simple_adblock/config.yaml b/modules/browser/detect_simple_adblock/config.yaml
index 792fe7c2c..d30c3b520 100644
--- a/modules/browser/detect_simple_adblock/config.yaml
+++ b/modules/browser/detect_simple_adblock/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_simple_adblock/module.rb b/modules/browser/detect_simple_adblock/module.rb
index 58c53e6e0..1d126902b 100644
--- a/modules/browser/detect_simple_adblock/module.rb
+++ b/modules/browser/detect_simple_adblock/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_toolbars/command.js b/modules/browser/detect_toolbars/command.js
index 04433e982..f065a52ba 100644
--- a/modules/browser/detect_toolbars/command.js
+++ b/modules/browser/detect_toolbars/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_toolbars/config.yaml b/modules/browser/detect_toolbars/config.yaml
index d92c2d946..3486da7ab 100644
--- a/modules/browser/detect_toolbars/config.yaml
+++ b/modules/browser/detect_toolbars/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_toolbars/module.rb b/modules/browser/detect_toolbars/module.rb
index 35630377e..0d682469f 100644
--- a/modules/browser/detect_toolbars/module.rb
+++ b/modules/browser/detect_toolbars/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_unity/command.js b/modules/browser/detect_unity/command.js
index da4676bc8..9810a8a79 100644
--- a/modules/browser/detect_unity/command.js
+++ b/modules/browser/detect_unity/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_unity/config.yaml b/modules/browser/detect_unity/config.yaml
index 6bc7ab103..894ed20f9 100644
--- a/modules/browser/detect_unity/config.yaml
+++ b/modules/browser/detect_unity/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_unity/module.rb b/modules/browser/detect_unity/module.rb
index 8a14f1502..575be816b 100644
--- a/modules/browser/detect_unity/module.rb
+++ b/modules/browser/detect_unity/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_unsafe_activex/command.js b/modules/browser/detect_unsafe_activex/command.js
index b0646b3fa..fe870394a 100644
--- a/modules/browser/detect_unsafe_activex/command.js
+++ b/modules/browser/detect_unsafe_activex/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_unsafe_activex/config.yaml b/modules/browser/detect_unsafe_activex/config.yaml
index ec4a6c152..738f93c95 100644
--- a/modules/browser/detect_unsafe_activex/config.yaml
+++ b/modules/browser/detect_unsafe_activex/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_unsafe_activex/module.rb b/modules/browser/detect_unsafe_activex/module.rb
index c32c7e176..5c0f50186 100644
--- a/modules/browser/detect_unsafe_activex/module.rb
+++ b/modules/browser/detect_unsafe_activex/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_vlc/command.js b/modules/browser/detect_vlc/command.js
index 2e7c4294c..fffc8233c 100644
--- a/modules/browser/detect_vlc/command.js
+++ b/modules/browser/detect_vlc/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_vlc/config.yaml b/modules/browser/detect_vlc/config.yaml
index b198d2777..0feb3eb8c 100644
--- a/modules/browser/detect_vlc/config.yaml
+++ b/modules/browser/detect_vlc/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_vlc/module.rb b/modules/browser/detect_vlc/module.rb
index 3c66cee1c..9255b7e27 100644
--- a/modules/browser/detect_vlc/module.rb
+++ b/modules/browser/detect_vlc/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_wmp/command.js b/modules/browser/detect_wmp/command.js
index dd5257ec5..06310fabf 100644
--- a/modules/browser/detect_wmp/command.js
+++ b/modules/browser/detect_wmp/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/detect_wmp/config.yaml b/modules/browser/detect_wmp/config.yaml
index 5ee55dc6f..e2580bd2a 100644
--- a/modules/browser/detect_wmp/config.yaml
+++ b/modules/browser/detect_wmp/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/detect_wmp/module.rb b/modules/browser/detect_wmp/module.rb
index dc712ff0d..b280734f4 100644
--- a/modules/browser/detect_wmp/module.rb
+++ b/modules/browser/detect_wmp/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/fingerprint_browser/command.js b/modules/browser/fingerprint_browser/command.js
index 789894f42..3d2d6a88e 100644
--- a/modules/browser/fingerprint_browser/command.js
+++ b/modules/browser/fingerprint_browser/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/fingerprint_browser/config.yaml b/modules/browser/fingerprint_browser/config.yaml
index 88e34305a..8f30a78e9 100644
--- a/modules/browser/fingerprint_browser/config.yaml
+++ b/modules/browser/fingerprint_browser/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/fingerprint_browser/module.rb b/modules/browser/fingerprint_browser/module.rb
index f6c1b0603..64a108008 100644
--- a/modules/browser/fingerprint_browser/module.rb
+++ b/modules/browser/fingerprint_browser/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/get_visited_domains/command.js b/modules/browser/get_visited_domains/command.js
index 97bf550db..15a67e3a7 100644
--- a/modules/browser/get_visited_domains/command.js
+++ b/modules/browser/get_visited_domains/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/get_visited_domains/config.yaml b/modules/browser/get_visited_domains/config.yaml
index ddeefcc95..eef5ef5d4 100644
--- a/modules/browser/get_visited_domains/config.yaml
+++ b/modules/browser/get_visited_domains/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/get_visited_domains/module.rb b/modules/browser/get_visited_domains/module.rb
index d5c1ff407..3f54740f8 100644
--- a/modules/browser/get_visited_domains/module.rb
+++ b/modules/browser/get_visited_domains/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/get_visited_urls/command.js b/modules/browser/get_visited_urls/command.js
index ff9170f22..6fc9a1cab 100644
--- a/modules/browser/get_visited_urls/command.js
+++ b/modules/browser/get_visited_urls/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/get_visited_urls/config.yaml b/modules/browser/get_visited_urls/config.yaml
index ec54073cb..11339eeb0 100644
--- a/modules/browser/get_visited_urls/config.yaml
+++ b/modules/browser/get_visited_urls/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/get_visited_urls/module.rb b/modules/browser/get_visited_urls/module.rb
index d987e9a7c..f6758dfc3 100644
--- a/modules/browser/get_visited_urls/module.rb
+++ b/modules/browser/get_visited_urls/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/ajax_fingerprint/command.js b/modules/browser/hooked_origin/ajax_fingerprint/command.js
index 6291864b1..6b8a20da5 100644
--- a/modules/browser/hooked_origin/ajax_fingerprint/command.js
+++ b/modules/browser/hooked_origin/ajax_fingerprint/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/ajax_fingerprint/config.yaml b/modules/browser/hooked_origin/ajax_fingerprint/config.yaml
index c13f8d124..62eb86773 100644
--- a/modules/browser/hooked_origin/ajax_fingerprint/config.yaml
+++ b/modules/browser/hooked_origin/ajax_fingerprint/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/ajax_fingerprint/module.rb b/modules/browser/hooked_origin/ajax_fingerprint/module.rb
index e30e998bd..614707d9a 100644
--- a/modules/browser/hooked_origin/ajax_fingerprint/module.rb
+++ b/modules/browser/hooked_origin/ajax_fingerprint/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/alert_dialog/command.js b/modules/browser/hooked_origin/alert_dialog/command.js
index 6ce31d8f6..d75cb5756 100644
--- a/modules/browser/hooked_origin/alert_dialog/command.js
+++ b/modules/browser/hooked_origin/alert_dialog/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/alert_dialog/config.yaml b/modules/browser/hooked_origin/alert_dialog/config.yaml
index 0cfd8b8c0..af078c058 100644
--- a/modules/browser/hooked_origin/alert_dialog/config.yaml
+++ b/modules/browser/hooked_origin/alert_dialog/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/alert_dialog/module.rb b/modules/browser/hooked_origin/alert_dialog/module.rb
index e82078cf9..d44fcb03e 100644
--- a/modules/browser/hooked_origin/alert_dialog/module.rb
+++ b/modules/browser/hooked_origin/alert_dialog/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js
index ddad1d59f..9d0fc7a81 100644
--- a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js
+++ b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/config.yaml b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/config.yaml
index 17f665c85..409f97107 100644
--- a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/config.yaml
+++ b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb
index c7268a93d..9be6ee89c 100644
--- a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb
+++ b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js b/modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js
index 8f365b55d..240d0b8ef 100644
--- a/modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js
+++ b/modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/cisco_asa_password_disclosure/config.yaml b/modules/browser/hooked_origin/cisco_asa_password_disclosure/config.yaml
index 64ce89fbc..efdcefd0d 100644
--- a/modules/browser/hooked_origin/cisco_asa_password_disclosure/config.yaml
+++ b/modules/browser/hooked_origin/cisco_asa_password_disclosure/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb b/modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb
index 40f38af8b..440b52156 100644
--- a/modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb
+++ b/modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/clear_console/command.js b/modules/browser/hooked_origin/clear_console/command.js
index a4e584d69..e5ed8e44b 100644
--- a/modules/browser/hooked_origin/clear_console/command.js
+++ b/modules/browser/hooked_origin/clear_console/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/clear_console/config.yaml b/modules/browser/hooked_origin/clear_console/config.yaml
index ea5ac618c..00bc8dd72 100644
--- a/modules/browser/hooked_origin/clear_console/config.yaml
+++ b/modules/browser/hooked_origin/clear_console/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/clear_console/module.rb b/modules/browser/hooked_origin/clear_console/module.rb
index a78957eb5..9a55c5b12 100644
--- a/modules/browser/hooked_origin/clear_console/module.rb
+++ b/modules/browser/hooked_origin/clear_console/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/deface_web_page/command.js b/modules/browser/hooked_origin/deface_web_page/command.js
index 2bd472e77..c9cf6844e 100644
--- a/modules/browser/hooked_origin/deface_web_page/command.js
+++ b/modules/browser/hooked_origin/deface_web_page/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/deface_web_page/config.yaml b/modules/browser/hooked_origin/deface_web_page/config.yaml
index 7ff15ffb8..6f7d58b42 100644
--- a/modules/browser/hooked_origin/deface_web_page/config.yaml
+++ b/modules/browser/hooked_origin/deface_web_page/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/deface_web_page/module.rb b/modules/browser/hooked_origin/deface_web_page/module.rb
index 1c67c9ee3..2d6d5a788 100644
--- a/modules/browser/hooked_origin/deface_web_page/module.rb
+++ b/modules/browser/hooked_origin/deface_web_page/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/deface_web_page_component/command.js b/modules/browser/hooked_origin/deface_web_page_component/command.js
index 3aa12014f..5bd9a46bb 100644
--- a/modules/browser/hooked_origin/deface_web_page_component/command.js
+++ b/modules/browser/hooked_origin/deface_web_page_component/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/deface_web_page_component/config.yaml b/modules/browser/hooked_origin/deface_web_page_component/config.yaml
index 609343ee9..52a1dcaf6 100644
--- a/modules/browser/hooked_origin/deface_web_page_component/config.yaml
+++ b/modules/browser/hooked_origin/deface_web_page_component/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/deface_web_page_component/module.rb b/modules/browser/hooked_origin/deface_web_page_component/module.rb
index ce4970ad5..41ec3e1df 100644
--- a/modules/browser/hooked_origin/deface_web_page_component/module.rb
+++ b/modules/browser/hooked_origin/deface_web_page_component/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/disable_developer_tools/command.js b/modules/browser/hooked_origin/disable_developer_tools/command.js
index 66d02dfdc..9249c4d15 100644
--- a/modules/browser/hooked_origin/disable_developer_tools/command.js
+++ b/modules/browser/hooked_origin/disable_developer_tools/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/disable_developer_tools/config.yaml b/modules/browser/hooked_origin/disable_developer_tools/config.yaml
index 843f43c13..aac37a7e3 100644
--- a/modules/browser/hooked_origin/disable_developer_tools/config.yaml
+++ b/modules/browser/hooked_origin/disable_developer_tools/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/disable_developer_tools/module.rb b/modules/browser/hooked_origin/disable_developer_tools/module.rb
index fbb973b51..843a74a7a 100644
--- a/modules/browser/hooked_origin/disable_developer_tools/module.rb
+++ b/modules/browser/hooked_origin/disable_developer_tools/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_autocomplete_creds/command.js b/modules/browser/hooked_origin/get_autocomplete_creds/command.js
index 04407172d..8cd848064 100644
--- a/modules/browser/hooked_origin/get_autocomplete_creds/command.js
+++ b/modules/browser/hooked_origin/get_autocomplete_creds/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/get_autocomplete_creds/config.yaml b/modules/browser/hooked_origin/get_autocomplete_creds/config.yaml
index c776e6b50..104728d6e 100644
--- a/modules/browser/hooked_origin/get_autocomplete_creds/config.yaml
+++ b/modules/browser/hooked_origin/get_autocomplete_creds/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_autocomplete_creds/module.rb b/modules/browser/hooked_origin/get_autocomplete_creds/module.rb
index 7e4258e1b..b42447455 100644
--- a/modules/browser/hooked_origin/get_autocomplete_creds/module.rb
+++ b/modules/browser/hooked_origin/get_autocomplete_creds/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_cookie/command.js b/modules/browser/hooked_origin/get_cookie/command.js
index 6f13b9b05..fc00572e1 100644
--- a/modules/browser/hooked_origin/get_cookie/command.js
+++ b/modules/browser/hooked_origin/get_cookie/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/get_cookie/config.yaml b/modules/browser/hooked_origin/get_cookie/config.yaml
index 8119b24a7..60b0a5f80 100644
--- a/modules/browser/hooked_origin/get_cookie/config.yaml
+++ b/modules/browser/hooked_origin/get_cookie/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_cookie/module.rb b/modules/browser/hooked_origin/get_cookie/module.rb
index 5c8364002..345b5e279 100644
--- a/modules/browser/hooked_origin/get_cookie/module.rb
+++ b/modules/browser/hooked_origin/get_cookie/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_form_values/command.js b/modules/browser/hooked_origin/get_form_values/command.js
index d939dc363..f24649e96 100644
--- a/modules/browser/hooked_origin/get_form_values/command.js
+++ b/modules/browser/hooked_origin/get_form_values/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/get_form_values/config.yaml b/modules/browser/hooked_origin/get_form_values/config.yaml
index ec2765adf..908a2268d 100644
--- a/modules/browser/hooked_origin/get_form_values/config.yaml
+++ b/modules/browser/hooked_origin/get_form_values/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_form_values/module.rb b/modules/browser/hooked_origin/get_form_values/module.rb
index 1a6162a1b..7a5e427bd 100644
--- a/modules/browser/hooked_origin/get_form_values/module.rb
+++ b/modules/browser/hooked_origin/get_form_values/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_local_storage/command.js b/modules/browser/hooked_origin/get_local_storage/command.js
index b011bad2a..c165d691f 100644
--- a/modules/browser/hooked_origin/get_local_storage/command.js
+++ b/modules/browser/hooked_origin/get_local_storage/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/get_local_storage/config.yaml b/modules/browser/hooked_origin/get_local_storage/config.yaml
index 31239a02e..17eb4e674 100644
--- a/modules/browser/hooked_origin/get_local_storage/config.yaml
+++ b/modules/browser/hooked_origin/get_local_storage/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_local_storage/module.rb b/modules/browser/hooked_origin/get_local_storage/module.rb
index 52345cec7..538029b3f 100644
--- a/modules/browser/hooked_origin/get_local_storage/module.rb
+++ b/modules/browser/hooked_origin/get_local_storage/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_page_html/command.js b/modules/browser/hooked_origin/get_page_html/command.js
index 1c0b943db..092e0e575 100644
--- a/modules/browser/hooked_origin/get_page_html/command.js
+++ b/modules/browser/hooked_origin/get_page_html/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/get_page_html/config.yaml b/modules/browser/hooked_origin/get_page_html/config.yaml
index efc3cc106..c3411eab8 100644
--- a/modules/browser/hooked_origin/get_page_html/config.yaml
+++ b/modules/browser/hooked_origin/get_page_html/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_page_html/module.rb b/modules/browser/hooked_origin/get_page_html/module.rb
index d10f9ddef..067c9bc14 100644
--- a/modules/browser/hooked_origin/get_page_html/module.rb
+++ b/modules/browser/hooked_origin/get_page_html/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_page_html_iframe/command.js b/modules/browser/hooked_origin/get_page_html_iframe/command.js
index ffb2b0604..67324501e 100644
--- a/modules/browser/hooked_origin/get_page_html_iframe/command.js
+++ b/modules/browser/hooked_origin/get_page_html_iframe/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/get_page_html_iframe/config.yaml b/modules/browser/hooked_origin/get_page_html_iframe/config.yaml
index 7730a3962..4f83eaf61 100644
--- a/modules/browser/hooked_origin/get_page_html_iframe/config.yaml
+++ b/modules/browser/hooked_origin/get_page_html_iframe/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_page_html_iframe/module.rb b/modules/browser/hooked_origin/get_page_html_iframe/module.rb
index 825dc693b..612a1dded 100644
--- a/modules/browser/hooked_origin/get_page_html_iframe/module.rb
+++ b/modules/browser/hooked_origin/get_page_html_iframe/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_page_links/command.js b/modules/browser/hooked_origin/get_page_links/command.js
index 8e4155710..217377071 100644
--- a/modules/browser/hooked_origin/get_page_links/command.js
+++ b/modules/browser/hooked_origin/get_page_links/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/get_page_links/config.yaml b/modules/browser/hooked_origin/get_page_links/config.yaml
index 33dc0f1c0..b68f908a9 100644
--- a/modules/browser/hooked_origin/get_page_links/config.yaml
+++ b/modules/browser/hooked_origin/get_page_links/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_page_links/module.rb b/modules/browser/hooked_origin/get_page_links/module.rb
index 74b96388c..2d0baf6e8 100644
--- a/modules/browser/hooked_origin/get_page_links/module.rb
+++ b/modules/browser/hooked_origin/get_page_links/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_session_storage/command.js b/modules/browser/hooked_origin/get_session_storage/command.js
index c51cbd77c..76ee2b6a1 100644
--- a/modules/browser/hooked_origin/get_session_storage/command.js
+++ b/modules/browser/hooked_origin/get_session_storage/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/get_session_storage/config.yaml b/modules/browser/hooked_origin/get_session_storage/config.yaml
index de0bc575d..3a9e7737d 100644
--- a/modules/browser/hooked_origin/get_session_storage/config.yaml
+++ b/modules/browser/hooked_origin/get_session_storage/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_session_storage/module.rb b/modules/browser/hooked_origin/get_session_storage/module.rb
index 748d6a8d9..28ac58df3 100644
--- a/modules/browser/hooked_origin/get_session_storage/module.rb
+++ b/modules/browser/hooked_origin/get_session_storage/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_stored_credentials/command.js b/modules/browser/hooked_origin/get_stored_credentials/command.js
index 2714da474..093a9ee76 100644
--- a/modules/browser/hooked_origin/get_stored_credentials/command.js
+++ b/modules/browser/hooked_origin/get_stored_credentials/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/get_stored_credentials/config.yaml b/modules/browser/hooked_origin/get_stored_credentials/config.yaml
index a22698c89..2c2df0dd8 100644
--- a/modules/browser/hooked_origin/get_stored_credentials/config.yaml
+++ b/modules/browser/hooked_origin/get_stored_credentials/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/get_stored_credentials/module.rb b/modules/browser/hooked_origin/get_stored_credentials/module.rb
index 16ff188f4..1f17eeb37 100644
--- a/modules/browser/hooked_origin/get_stored_credentials/module.rb
+++ b/modules/browser/hooked_origin/get_stored_credentials/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/link_rewrite/command.js b/modules/browser/hooked_origin/link_rewrite/command.js
index 05da6a861..010a20a99 100644
--- a/modules/browser/hooked_origin/link_rewrite/command.js
+++ b/modules/browser/hooked_origin/link_rewrite/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/link_rewrite/config.yaml b/modules/browser/hooked_origin/link_rewrite/config.yaml
index ddbca4ed7..ebe3e8d84 100644
--- a/modules/browser/hooked_origin/link_rewrite/config.yaml
+++ b/modules/browser/hooked_origin/link_rewrite/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/link_rewrite/module.rb b/modules/browser/hooked_origin/link_rewrite/module.rb
index a9869f38c..e14b91b48 100644
--- a/modules/browser/hooked_origin/link_rewrite/module.rb
+++ b/modules/browser/hooked_origin/link_rewrite/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/link_rewrite_click_events/command.js b/modules/browser/hooked_origin/link_rewrite_click_events/command.js
index fa41f55a8..a89c35f3c 100644
--- a/modules/browser/hooked_origin/link_rewrite_click_events/command.js
+++ b/modules/browser/hooked_origin/link_rewrite_click_events/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/link_rewrite_click_events/config.yaml b/modules/browser/hooked_origin/link_rewrite_click_events/config.yaml
index cc3f00cc7..473e4c41c 100644
--- a/modules/browser/hooked_origin/link_rewrite_click_events/config.yaml
+++ b/modules/browser/hooked_origin/link_rewrite_click_events/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/link_rewrite_click_events/module.rb b/modules/browser/hooked_origin/link_rewrite_click_events/module.rb
index a8696b2d0..ad6c8f954 100644
--- a/modules/browser/hooked_origin/link_rewrite_click_events/module.rb
+++ b/modules/browser/hooked_origin/link_rewrite_click_events/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/link_rewrite_sslstrip/command.js b/modules/browser/hooked_origin/link_rewrite_sslstrip/command.js
index af746c5f1..0a1d19380 100644
--- a/modules/browser/hooked_origin/link_rewrite_sslstrip/command.js
+++ b/modules/browser/hooked_origin/link_rewrite_sslstrip/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/link_rewrite_sslstrip/config.yaml b/modules/browser/hooked_origin/link_rewrite_sslstrip/config.yaml
index c8d9d7e1c..f166e9591 100644
--- a/modules/browser/hooked_origin/link_rewrite_sslstrip/config.yaml
+++ b/modules/browser/hooked_origin/link_rewrite_sslstrip/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb b/modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb
index 348565a17..d5c26c264 100644
--- a/modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb
+++ b/modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/link_rewrite_tel/command.js b/modules/browser/hooked_origin/link_rewrite_tel/command.js
index f4bee5b21..3c23989a9 100644
--- a/modules/browser/hooked_origin/link_rewrite_tel/command.js
+++ b/modules/browser/hooked_origin/link_rewrite_tel/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/link_rewrite_tel/config.yaml b/modules/browser/hooked_origin/link_rewrite_tel/config.yaml
index 62df1193a..5853c51cd 100644
--- a/modules/browser/hooked_origin/link_rewrite_tel/config.yaml
+++ b/modules/browser/hooked_origin/link_rewrite_tel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/link_rewrite_tel/module.rb b/modules/browser/hooked_origin/link_rewrite_tel/module.rb
index 7bb004165..00db4a203 100644
--- a/modules/browser/hooked_origin/link_rewrite_tel/module.rb
+++ b/modules/browser/hooked_origin/link_rewrite_tel/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js b/modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js
index 6768fc191..1e44a67d8 100644
--- a/modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js
+++ b/modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/mobilesafari_address_spoofing/config.yaml b/modules/browser/hooked_origin/mobilesafari_address_spoofing/config.yaml
index bf16b3878..a11340feb 100644
--- a/modules/browser/hooked_origin/mobilesafari_address_spoofing/config.yaml
+++ b/modules/browser/hooked_origin/mobilesafari_address_spoofing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb b/modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb
index 529322801..c401ed789 100644
--- a/modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb
+++ b/modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/overflow_cookiejar/command.js b/modules/browser/hooked_origin/overflow_cookiejar/command.js
index 1c7ebcbf5..f2fe1b97b 100644
--- a/modules/browser/hooked_origin/overflow_cookiejar/command.js
+++ b/modules/browser/hooked_origin/overflow_cookiejar/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/overflow_cookiejar/config.yaml b/modules/browser/hooked_origin/overflow_cookiejar/config.yaml
index 469e2ad67..e6815908b 100644
--- a/modules/browser/hooked_origin/overflow_cookiejar/config.yaml
+++ b/modules/browser/hooked_origin/overflow_cookiejar/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/overflow_cookiejar/module.rb b/modules/browser/hooked_origin/overflow_cookiejar/module.rb
index c0014c11b..bdba616c2 100644
--- a/modules/browser/hooked_origin/overflow_cookiejar/module.rb
+++ b/modules/browser/hooked_origin/overflow_cookiejar/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/prompt_dialog/command.js b/modules/browser/hooked_origin/prompt_dialog/command.js
index 0531c1f4e..e0af93552 100644
--- a/modules/browser/hooked_origin/prompt_dialog/command.js
+++ b/modules/browser/hooked_origin/prompt_dialog/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/prompt_dialog/config.yaml b/modules/browser/hooked_origin/prompt_dialog/config.yaml
index 90b70f037..74fd9ebb3 100644
--- a/modules/browser/hooked_origin/prompt_dialog/config.yaml
+++ b/modules/browser/hooked_origin/prompt_dialog/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/prompt_dialog/module.rb b/modules/browser/hooked_origin/prompt_dialog/module.rb
index 58c456ed7..d8f9a1dba 100644
--- a/modules/browser/hooked_origin/prompt_dialog/module.rb
+++ b/modules/browser/hooked_origin/prompt_dialog/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/remove_stuck_iframes/command.js b/modules/browser/hooked_origin/remove_stuck_iframes/command.js
index 35091707d..5a3be1c5a 100644
--- a/modules/browser/hooked_origin/remove_stuck_iframes/command.js
+++ b/modules/browser/hooked_origin/remove_stuck_iframes/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/remove_stuck_iframes/config.yaml b/modules/browser/hooked_origin/remove_stuck_iframes/config.yaml
index 6e1c2013e..f255c9654 100644
--- a/modules/browser/hooked_origin/remove_stuck_iframes/config.yaml
+++ b/modules/browser/hooked_origin/remove_stuck_iframes/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/remove_stuck_iframes/module.rb b/modules/browser/hooked_origin/remove_stuck_iframes/module.rb
index 9c9dbfedd..cf85f8f94 100644
--- a/modules/browser/hooked_origin/remove_stuck_iframes/module.rb
+++ b/modules/browser/hooked_origin/remove_stuck_iframes/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/replace_video/command.js b/modules/browser/hooked_origin/replace_video/command.js
index 9029e3c74..8834b29f8 100644
--- a/modules/browser/hooked_origin/replace_video/command.js
+++ b/modules/browser/hooked_origin/replace_video/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/replace_video/config.yaml b/modules/browser/hooked_origin/replace_video/config.yaml
index cc23ed6c2..9ed5f7f23 100644
--- a/modules/browser/hooked_origin/replace_video/config.yaml
+++ b/modules/browser/hooked_origin/replace_video/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/replace_video/module.rb b/modules/browser/hooked_origin/replace_video/module.rb
index 811adf3f3..515506d9b 100644
--- a/modules/browser/hooked_origin/replace_video/module.rb
+++ b/modules/browser/hooked_origin/replace_video/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/rickroll/command.js b/modules/browser/hooked_origin/rickroll/command.js
index 4d1b24d13..b75376e97 100644
--- a/modules/browser/hooked_origin/rickroll/command.js
+++ b/modules/browser/hooked_origin/rickroll/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/rickroll/config.yaml b/modules/browser/hooked_origin/rickroll/config.yaml
index 7d36f43d7..62dd7afe3 100644
--- a/modules/browser/hooked_origin/rickroll/config.yaml
+++ b/modules/browser/hooked_origin/rickroll/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/rickroll/module.rb b/modules/browser/hooked_origin/rickroll/module.rb
index 81f9a8bb8..23afe3841 100644
--- a/modules/browser/hooked_origin/rickroll/module.rb
+++ b/modules/browser/hooked_origin/rickroll/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/site_redirect/command.js b/modules/browser/hooked_origin/site_redirect/command.js
index da67699c7..b9ca86fcc 100644
--- a/modules/browser/hooked_origin/site_redirect/command.js
+++ b/modules/browser/hooked_origin/site_redirect/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/site_redirect/config.yaml b/modules/browser/hooked_origin/site_redirect/config.yaml
index a8f09fb4f..c5cde05f3 100644
--- a/modules/browser/hooked_origin/site_redirect/config.yaml
+++ b/modules/browser/hooked_origin/site_redirect/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/site_redirect/module.rb b/modules/browser/hooked_origin/site_redirect/module.rb
index aa10ae130..bdac9b91f 100644
--- a/modules/browser/hooked_origin/site_redirect/module.rb
+++ b/modules/browser/hooked_origin/site_redirect/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/site_redirect_iframe/command.js b/modules/browser/hooked_origin/site_redirect_iframe/command.js
index d45cfdeb9..d9c9793a5 100644
--- a/modules/browser/hooked_origin/site_redirect_iframe/command.js
+++ b/modules/browser/hooked_origin/site_redirect_iframe/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/hooked_origin/site_redirect_iframe/config.yaml b/modules/browser/hooked_origin/site_redirect_iframe/config.yaml
index 82ba8cf8f..a02a6906e 100644
--- a/modules/browser/hooked_origin/site_redirect_iframe/config.yaml
+++ b/modules/browser/hooked_origin/site_redirect_iframe/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/hooked_origin/site_redirect_iframe/module.rb b/modules/browser/hooked_origin/site_redirect_iframe/module.rb
index d24092a2e..b07ec473e 100644
--- a/modules/browser/hooked_origin/site_redirect_iframe/module.rb
+++ b/modules/browser/hooked_origin/site_redirect_iframe/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/play_sound/command.js b/modules/browser/play_sound/command.js
index 98ec4bd59..cd386b1aa 100644
--- a/modules/browser/play_sound/command.js
+++ b/modules/browser/play_sound/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/play_sound/config.yaml b/modules/browser/play_sound/config.yaml
index 413ebfb52..969c12223 100644
--- a/modules/browser/play_sound/config.yaml
+++ b/modules/browser/play_sound/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/play_sound/module.rb b/modules/browser/play_sound/module.rb
index 6526c159e..238ecab80 100644
--- a/modules/browser/play_sound/module.rb
+++ b/modules/browser/play_sound/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/remove_hook_element/command.js b/modules/browser/remove_hook_element/command.js
index d3a18a6fd..1b49eaeb9 100644
--- a/modules/browser/remove_hook_element/command.js
+++ b/modules/browser/remove_hook_element/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/remove_hook_element/config.yaml b/modules/browser/remove_hook_element/config.yaml
index fccd88066..443844786 100644
--- a/modules/browser/remove_hook_element/config.yaml
+++ b/modules/browser/remove_hook_element/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/remove_hook_element/module.rb b/modules/browser/remove_hook_element/module.rb
index 5c8b2a22d..bb4d9d474 100644
--- a/modules/browser/remove_hook_element/module.rb
+++ b/modules/browser/remove_hook_element/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/spyder_eye/command.js b/modules/browser/spyder_eye/command.js
index f27c32b4e..401886fef 100644
--- a/modules/browser/spyder_eye/command.js
+++ b/modules/browser/spyder_eye/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/spyder_eye/config.yaml b/modules/browser/spyder_eye/config.yaml
index 72945b338..8e1f97e3b 100644
--- a/modules/browser/spyder_eye/config.yaml
+++ b/modules/browser/spyder_eye/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/spyder_eye/module.rb b/modules/browser/spyder_eye/module.rb
index 2582c8b52..139789089 100644
--- a/modules/browser/spyder_eye/module.rb
+++ b/modules/browser/spyder_eye/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/unhook/command.js b/modules/browser/unhook/command.js
index bd9dd909c..7a1cb8228 100644
--- a/modules/browser/unhook/command.js
+++ b/modules/browser/unhook/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/unhook/config.yaml b/modules/browser/unhook/config.yaml
index 890fcf11a..b600fc2c0 100644
--- a/modules/browser/unhook/config.yaml
+++ b/modules/browser/unhook/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/unhook/module.rb b/modules/browser/unhook/module.rb
index ddbcfdb06..812d208ec 100644
--- a/modules/browser/unhook/module.rb
+++ b/modules/browser/unhook/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/webcam_flash/command.js b/modules/browser/webcam_flash/command.js
index 696ecf63d..299ceeea0 100644
--- a/modules/browser/webcam_flash/command.js
+++ b/modules/browser/webcam_flash/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/webcam_flash/config.yaml b/modules/browser/webcam_flash/config.yaml
index 8bf3d5aec..4b6c8d1e8 100644
--- a/modules/browser/webcam_flash/config.yaml
+++ b/modules/browser/webcam_flash/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/webcam_flash/module.rb b/modules/browser/webcam_flash/module.rb
index 5e3260ffc..e2b1aa1df 100644
--- a/modules/browser/webcam_flash/module.rb
+++ b/modules/browser/webcam_flash/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/webcam_html5/command.js b/modules/browser/webcam_html5/command.js
index b6e7d8ab6..fcd3b42f5 100644
--- a/modules/browser/webcam_html5/command.js
+++ b/modules/browser/webcam_html5/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/webcam_html5/config.yaml b/modules/browser/webcam_html5/config.yaml
index 846f503b1..c17a99490 100644
--- a/modules/browser/webcam_html5/config.yaml
+++ b/modules/browser/webcam_html5/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/webcam_html5/module.rb b/modules/browser/webcam_html5/module.rb
index 62c755c2a..6e6059e1b 100644
--- a/modules/browser/webcam_html5/module.rb
+++ b/modules/browser/webcam_html5/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/webcam_permission_check/cameraCheck.as b/modules/browser/webcam_permission_check/cameraCheck.as
index b2161cb87..197c97bc5 100644
--- a/modules/browser/webcam_permission_check/cameraCheck.as
+++ b/modules/browser/webcam_permission_check/cameraCheck.as
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/webcam_permission_check/command.js b/modules/browser/webcam_permission_check/command.js
index e759bc5be..2bc01c553 100644
--- a/modules/browser/webcam_permission_check/command.js
+++ b/modules/browser/webcam_permission_check/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/browser/webcam_permission_check/config.yaml b/modules/browser/webcam_permission_check/config.yaml
index cc5b0b864..b751697cc 100644
--- a/modules/browser/webcam_permission_check/config.yaml
+++ b/modules/browser/webcam_permission_check/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/browser/webcam_permission_check/module.rb b/modules/browser/webcam_permission_check/module.rb
index a6b9c6394..bb6ec3735 100644
--- a/modules/browser/webcam_permission_check/module.rb
+++ b/modules/browser/webcam_permission_check/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/execute_tabs/command.js b/modules/chrome_extensions/execute_tabs/command.js
index b5757274a..fe611758e 100644
--- a/modules/chrome_extensions/execute_tabs/command.js
+++ b/modules/chrome_extensions/execute_tabs/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/chrome_extensions/execute_tabs/config.yaml b/modules/chrome_extensions/execute_tabs/config.yaml
index 66696fd79..e1b364149 100644
--- a/modules/chrome_extensions/execute_tabs/config.yaml
+++ b/modules/chrome_extensions/execute_tabs/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/execute_tabs/module.rb b/modules/chrome_extensions/execute_tabs/module.rb
index a4f22e10a..7df6ec319 100644
--- a/modules/chrome_extensions/execute_tabs/module.rb
+++ b/modules/chrome_extensions/execute_tabs/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/get_all_cookies/command.js b/modules/chrome_extensions/get_all_cookies/command.js
index c2ae757ee..8276828fb 100755
--- a/modules/chrome_extensions/get_all_cookies/command.js
+++ b/modules/chrome_extensions/get_all_cookies/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/chrome_extensions/get_all_cookies/config.yaml b/modules/chrome_extensions/get_all_cookies/config.yaml
index fa239465f..eac63f249 100755
--- a/modules/chrome_extensions/get_all_cookies/config.yaml
+++ b/modules/chrome_extensions/get_all_cookies/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/get_all_cookies/module.rb b/modules/chrome_extensions/get_all_cookies/module.rb
index bf79148f3..9e3e30f1f 100755
--- a/modules/chrome_extensions/get_all_cookies/module.rb
+++ b/modules/chrome_extensions/get_all_cookies/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/grab_google_contacts/command.js b/modules/chrome_extensions/grab_google_contacts/command.js
index 3389f573f..dc507f540 100644
--- a/modules/chrome_extensions/grab_google_contacts/command.js
+++ b/modules/chrome_extensions/grab_google_contacts/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/chrome_extensions/grab_google_contacts/config.yaml b/modules/chrome_extensions/grab_google_contacts/config.yaml
index 00ff7d8c4..f326491f7 100644
--- a/modules/chrome_extensions/grab_google_contacts/config.yaml
+++ b/modules/chrome_extensions/grab_google_contacts/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/grab_google_contacts/module.rb b/modules/chrome_extensions/grab_google_contacts/module.rb
index 4907db583..bd69f893d 100644
--- a/modules/chrome_extensions/grab_google_contacts/module.rb
+++ b/modules/chrome_extensions/grab_google_contacts/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/inject_beef/command.js b/modules/chrome_extensions/inject_beef/command.js
index db3393472..27604cc36 100755
--- a/modules/chrome_extensions/inject_beef/command.js
+++ b/modules/chrome_extensions/inject_beef/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/chrome_extensions/inject_beef/config.yaml b/modules/chrome_extensions/inject_beef/config.yaml
index 79290310f..e6bdc1b00 100755
--- a/modules/chrome_extensions/inject_beef/config.yaml
+++ b/modules/chrome_extensions/inject_beef/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/inject_beef/module.rb b/modules/chrome_extensions/inject_beef/module.rb
index 2c86466f4..611376b85 100755
--- a/modules/chrome_extensions/inject_beef/module.rb
+++ b/modules/chrome_extensions/inject_beef/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/screenshot/command.js b/modules/chrome_extensions/screenshot/command.js
index 693cc1712..e4adfa4ea 100755
--- a/modules/chrome_extensions/screenshot/command.js
+++ b/modules/chrome_extensions/screenshot/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/chrome_extensions/screenshot/config.yaml b/modules/chrome_extensions/screenshot/config.yaml
index 7e3576885..766654952 100755
--- a/modules/chrome_extensions/screenshot/config.yaml
+++ b/modules/chrome_extensions/screenshot/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/screenshot/module.rb b/modules/chrome_extensions/screenshot/module.rb
index 5f891f56f..3ff1e0556 100755
--- a/modules/chrome_extensions/screenshot/module.rb
+++ b/modules/chrome_extensions/screenshot/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/send_gvoice_sms/command.js b/modules/chrome_extensions/send_gvoice_sms/command.js
index 17bd68224..48005f69c 100755
--- a/modules/chrome_extensions/send_gvoice_sms/command.js
+++ b/modules/chrome_extensions/send_gvoice_sms/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/chrome_extensions/send_gvoice_sms/config.yaml b/modules/chrome_extensions/send_gvoice_sms/config.yaml
index 71ad0e135..ba6846df8 100755
--- a/modules/chrome_extensions/send_gvoice_sms/config.yaml
+++ b/modules/chrome_extensions/send_gvoice_sms/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/chrome_extensions/send_gvoice_sms/module.rb b/modules/chrome_extensions/send_gvoice_sms/module.rb
index e248fd876..feb281787 100755
--- a/modules/chrome_extensions/send_gvoice_sms/module.rb
+++ b/modules/chrome_extensions/send_gvoice_sms/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_beef_debug/command.js b/modules/debug/test_beef_debug/command.js
index 211c447f9..957f95617 100644
--- a/modules/debug/test_beef_debug/command.js
+++ b/modules/debug/test_beef_debug/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/debug/test_beef_debug/config.yaml b/modules/debug/test_beef_debug/config.yaml
index 3e4a9b212..d2a1dcd43 100644
--- a/modules/debug/test_beef_debug/config.yaml
+++ b/modules/debug/test_beef_debug/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_beef_debug/module.rb b/modules/debug/test_beef_debug/module.rb
index 1e283f244..ccf5ba4da 100644
--- a/modules/debug/test_beef_debug/module.rb
+++ b/modules/debug/test_beef_debug/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_cors_request/command.js b/modules/debug/test_cors_request/command.js
index c1046030a..fededde49 100644
--- a/modules/debug/test_cors_request/command.js
+++ b/modules/debug/test_cors_request/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/debug/test_cors_request/config.yaml b/modules/debug/test_cors_request/config.yaml
index 7f421d896..ef3d3cceb 100644
--- a/modules/debug/test_cors_request/config.yaml
+++ b/modules/debug/test_cors_request/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_cors_request/module.rb b/modules/debug/test_cors_request/module.rb
index d85e58230..edbeb85eb 100644
--- a/modules/debug/test_cors_request/module.rb
+++ b/modules/debug/test_cors_request/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_dns_tunnel_client/command.js b/modules/debug/test_dns_tunnel_client/command.js
index df56a2a25..944b6bff8 100644
--- a/modules/debug/test_dns_tunnel_client/command.js
+++ b/modules/debug/test_dns_tunnel_client/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/debug/test_dns_tunnel_client/config.yaml b/modules/debug/test_dns_tunnel_client/config.yaml
index 630a616fb..a40b1a68d 100644
--- a/modules/debug/test_dns_tunnel_client/config.yaml
+++ b/modules/debug/test_dns_tunnel_client/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_dns_tunnel_client/module.rb b/modules/debug/test_dns_tunnel_client/module.rb
index e5daff576..7b0d0d23e 100644
--- a/modules/debug/test_dns_tunnel_client/module.rb
+++ b/modules/debug/test_dns_tunnel_client/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_get_variable/command.js b/modules/debug/test_get_variable/command.js
index f86dd66c1..07bbdb5e0 100644
--- a/modules/debug/test_get_variable/command.js
+++ b/modules/debug/test_get_variable/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/debug/test_get_variable/config.yaml b/modules/debug/test_get_variable/config.yaml
index 48bbe4a0a..a4492085e 100644
--- a/modules/debug/test_get_variable/config.yaml
+++ b/modules/debug/test_get_variable/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_get_variable/module.rb b/modules/debug/test_get_variable/module.rb
index 289daf016..ad2648b0c 100644
--- a/modules/debug/test_get_variable/module.rb
+++ b/modules/debug/test_get_variable/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_http_redirect/command.js b/modules/debug/test_http_redirect/command.js
index f0b7b2f70..da5f21755 100644
--- a/modules/debug/test_http_redirect/command.js
+++ b/modules/debug/test_http_redirect/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/debug/test_http_redirect/config.yaml b/modules/debug/test_http_redirect/config.yaml
index 20affd7a0..799d8ae31 100644
--- a/modules/debug/test_http_redirect/config.yaml
+++ b/modules/debug/test_http_redirect/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_http_redirect/module.rb b/modules/debug/test_http_redirect/module.rb
index ae9cc1938..283815261 100644
--- a/modules/debug/test_http_redirect/module.rb
+++ b/modules/debug/test_http_redirect/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_network_request/command.js b/modules/debug/test_network_request/command.js
index f23ef7516..0ab1609ad 100644
--- a/modules/debug/test_network_request/command.js
+++ b/modules/debug/test_network_request/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/debug/test_network_request/config.yaml b/modules/debug/test_network_request/config.yaml
index 117e1b755..b27d8c9ed 100644
--- a/modules/debug/test_network_request/config.yaml
+++ b/modules/debug/test_network_request/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_network_request/module.rb b/modules/debug/test_network_request/module.rb
index e332cacbe..bee9b5aaf 100644
--- a/modules/debug/test_network_request/module.rb
+++ b/modules/debug/test_network_request/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_return_ascii_chars/command.js b/modules/debug/test_return_ascii_chars/command.js
index 1b3fb9187..00d5a1c6c 100644
--- a/modules/debug/test_return_ascii_chars/command.js
+++ b/modules/debug/test_return_ascii_chars/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/debug/test_return_ascii_chars/config.yaml b/modules/debug/test_return_ascii_chars/config.yaml
index 7963995b0..996efc47e 100644
--- a/modules/debug/test_return_ascii_chars/config.yaml
+++ b/modules/debug/test_return_ascii_chars/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_return_ascii_chars/module.rb b/modules/debug/test_return_ascii_chars/module.rb
index b2fef93e0..9f5c89ff6 100644
--- a/modules/debug/test_return_ascii_chars/module.rb
+++ b/modules/debug/test_return_ascii_chars/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_return_image/command.js b/modules/debug/test_return_image/command.js
index 8cb563222..c8cfa28ec 100644
--- a/modules/debug/test_return_image/command.js
+++ b/modules/debug/test_return_image/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/debug/test_return_image/config.yaml b/modules/debug/test_return_image/config.yaml
index e76f5a8a3..dc57f90cc 100644
--- a/modules/debug/test_return_image/config.yaml
+++ b/modules/debug/test_return_image/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_return_image/module.rb b/modules/debug/test_return_image/module.rb
index 7a9e1e18f..6315e4950 100644
--- a/modules/debug/test_return_image/module.rb
+++ b/modules/debug/test_return_image/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_return_long_string/command.js b/modules/debug/test_return_long_string/command.js
index 1695c9319..53ab58712 100644
--- a/modules/debug/test_return_long_string/command.js
+++ b/modules/debug/test_return_long_string/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/debug/test_return_long_string/config.yaml b/modules/debug/test_return_long_string/config.yaml
index 7f08f772c..4a9a3e54e 100644
--- a/modules/debug/test_return_long_string/config.yaml
+++ b/modules/debug/test_return_long_string/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/debug/test_return_long_string/module.rb b/modules/debug/test_return_long_string/module.rb
index 599a318b4..5366f2af6 100644
--- a/modules/debug/test_return_long_string/module.rb
+++ b/modules/debug/test_return_long_string/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/apache_cookie_disclosure/command.js b/modules/exploits/apache_cookie_disclosure/command.js
index 4b938ae22..2b7055dbf 100644
--- a/modules/exploits/apache_cookie_disclosure/command.js
+++ b/modules/exploits/apache_cookie_disclosure/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/apache_cookie_disclosure/config.yaml b/modules/exploits/apache_cookie_disclosure/config.yaml
index 19613a67c..489cad858 100644
--- a/modules/exploits/apache_cookie_disclosure/config.yaml
+++ b/modules/exploits/apache_cookie_disclosure/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/apache_cookie_disclosure/module.rb b/modules/exploits/apache_cookie_disclosure/module.rb
index eb0f04dbc..61ac18ae1 100644
--- a/modules/exploits/apache_cookie_disclosure/module.rb
+++ b/modules/exploits/apache_cookie_disclosure/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/apache_felix_remote_shell/command.js b/modules/exploits/apache_felix_remote_shell/command.js
index da881ada8..71c7b94d9 100644
--- a/modules/exploits/apache_felix_remote_shell/command.js
+++ b/modules/exploits/apache_felix_remote_shell/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/apache_felix_remote_shell/config.yaml b/modules/exploits/apache_felix_remote_shell/config.yaml
index 17728f42c..6057032f0 100644
--- a/modules/exploits/apache_felix_remote_shell/config.yaml
+++ b/modules/exploits/apache_felix_remote_shell/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/apache_felix_remote_shell/module.rb b/modules/exploits/apache_felix_remote_shell/module.rb
index 5934fd7a7..ba3bac39c 100644
--- a/modules/exploits/apache_felix_remote_shell/module.rb
+++ b/modules/exploits/apache_felix_remote_shell/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/beefbind/beef_bind_shell/command.js b/modules/exploits/beefbind/beef_bind_shell/command.js
index b6d3f1e76..9d1891bf2 100755
--- a/modules/exploits/beefbind/beef_bind_shell/command.js
+++ b/modules/exploits/beefbind/beef_bind_shell/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/beefbind/beef_bind_shell/config.yaml b/modules/exploits/beefbind/beef_bind_shell/config.yaml
index d178f3b5c..fd537d3f8 100755
--- a/modules/exploits/beefbind/beef_bind_shell/config.yaml
+++ b/modules/exploits/beefbind/beef_bind_shell/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/beefbind/beef_bind_shell/module.rb b/modules/exploits/beefbind/beef_bind_shell/module.rb
index 67806f8c6..b06412866 100755
--- a/modules/exploits/beefbind/beef_bind_shell/module.rb
+++ b/modules/exploits/beefbind/beef_bind_shell/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/beefbind/shellcode_sources/linux/x64/socket64.c b/modules/exploits/beefbind/shellcode_sources/linux/x64/socket64.c
index 9c1883bdc..6447cdebc 100755
--- a/modules/exploits/beefbind/shellcode_sources/linux/x64/socket64.c
+++ b/modules/exploits/beefbind/shellcode_sources/linux/x64/socket64.c
@@ -1,5 +1,5 @@
 /**
- Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  Browser Exploitation Framework (BeEF) - https://beefproject.com
  See the file 'doc/COPYING' for copying permission
  
diff --git a/modules/exploits/beefbind/shellcode_sources/linux/x86/socket.c b/modules/exploits/beefbind/shellcode_sources/linux/x86/socket.c
index 127182a2c..dd75d5e55 100644
--- a/modules/exploits/beefbind/shellcode_sources/linux/x86/socket.c
+++ b/modules/exploits/beefbind/shellcode_sources/linux/x86/socket.c
@@ -1,5 +1,5 @@
 /**
- Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  Browser Exploitation Framework (BeEF) - https://beefproject.com
  See the file 'doc/COPYING' for copying permission
  
diff --git a/modules/exploits/beefbind/shellcode_sources/linux/x86/stage.nasm b/modules/exploits/beefbind/shellcode_sources/linux/x86/stage.nasm
index f86c3ff0f..17a4af9d9 100644
--- a/modules/exploits/beefbind/shellcode_sources/linux/x86/stage.nasm
+++ b/modules/exploits/beefbind/shellcode_sources/linux/x86/stage.nasm
@@ -1,4 +1,4 @@
-; Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+; Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 ; Browser Exploitation Framework (BeEF) - https://beefproject.com
 ; See the file 'doc/COPYING' for copying permission
 
diff --git a/modules/exploits/beefbind/shellcode_sources/linux/x86/stager.nasm b/modules/exploits/beefbind/shellcode_sources/linux/x86/stager.nasm
index 3c62125f9..80c26bcba 100644
--- a/modules/exploits/beefbind/shellcode_sources/linux/x86/stager.nasm
+++ b/modules/exploits/beefbind/shellcode_sources/linux/x86/stager.nasm
@@ -1,4 +1,4 @@
-; Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+; Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 ; Browser Exploitation Framework (BeEF) - https://beefproject.com
 ; See the file 'doc/COPYING' for copying permission
 
diff --git a/modules/exploits/beefbind/shellcode_sources/windows/socket.c b/modules/exploits/beefbind/shellcode_sources/windows/socket.c
index 43b403758..d9f5a8251 100644
--- a/modules/exploits/beefbind/shellcode_sources/windows/socket.c
+++ b/modules/exploits/beefbind/shellcode_sources/windows/socket.c
@@ -1,5 +1,5 @@
 /**
- Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  Browser Exploitation Framework (BeEF) - https://beefproject.com
  See the file 'doc/COPYING' for copying permission
 
diff --git a/modules/exploits/boastmachine_3_1_add_user_csrf/command.js b/modules/exploits/boastmachine_3_1_add_user_csrf/command.js
index 5729dbfdc..07088f0fc 100644
--- a/modules/exploits/boastmachine_3_1_add_user_csrf/command.js
+++ b/modules/exploits/boastmachine_3_1_add_user_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/boastmachine_3_1_add_user_csrf/config.yaml b/modules/exploits/boastmachine_3_1_add_user_csrf/config.yaml
index d10efc97a..bc8afd1fb 100644
--- a/modules/exploits/boastmachine_3_1_add_user_csrf/config.yaml
+++ b/modules/exploits/boastmachine_3_1_add_user_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/boastmachine_3_1_add_user_csrf/module.rb b/modules/exploits/boastmachine_3_1_add_user_csrf/module.rb
index 4fefcc694..0b9feb96d 100644
--- a/modules/exploits/boastmachine_3_1_add_user_csrf/module.rb
+++ b/modules/exploits/boastmachine_3_1_add_user_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/camera/airlive_ip_camera_csrf/command.js b/modules/exploits/camera/airlive_ip_camera_csrf/command.js
index 811c12248..a4874a27e 100644
--- a/modules/exploits/camera/airlive_ip_camera_csrf/command.js
+++ b/modules/exploits/camera/airlive_ip_camera_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/camera/airlive_ip_camera_csrf/config.yaml b/modules/exploits/camera/airlive_ip_camera_csrf/config.yaml
index e10dbe76b..1dc245c9e 100644
--- a/modules/exploits/camera/airlive_ip_camera_csrf/config.yaml
+++ b/modules/exploits/camera/airlive_ip_camera_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/camera/airlive_ip_camera_csrf/module.rb b/modules/exploits/camera/airlive_ip_camera_csrf/module.rb
index e9446e738..906155dec 100644
--- a/modules/exploits/camera/airlive_ip_camera_csrf/module.rb
+++ b/modules/exploits/camera/airlive_ip_camera_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/camera/dlink_dcs_series_csrf/command.js b/modules/exploits/camera/dlink_dcs_series_csrf/command.js
index 14b1d0961..aad1e6043 100644
--- a/modules/exploits/camera/dlink_dcs_series_csrf/command.js
+++ b/modules/exploits/camera/dlink_dcs_series_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/camera/dlink_dcs_series_csrf/config.yaml b/modules/exploits/camera/dlink_dcs_series_csrf/config.yaml
index 21dad3e70..8446aa966 100644
--- a/modules/exploits/camera/dlink_dcs_series_csrf/config.yaml
+++ b/modules/exploits/camera/dlink_dcs_series_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/camera/dlink_dcs_series_csrf/module.rb b/modules/exploits/camera/dlink_dcs_series_csrf/module.rb
index 52e47b7fb..153745c99 100644
--- a/modules/exploits/camera/dlink_dcs_series_csrf/module.rb
+++ b/modules/exploits/camera/dlink_dcs_series_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js
index 37f9c72aa..6f0d3a46e 100644
--- a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js
+++ b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/config.yaml b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/config.yaml
index f6e9ab862..520fbd903 100644
--- a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/config.yaml
+++ b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb
index 53c6ef8d4..081311e4d 100644
--- a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb
+++ b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/coldfusion_dir_traversal_exploit/command.js b/modules/exploits/coldfusion_dir_traversal_exploit/command.js
index e7c333d68..266f644b7 100644
--- a/modules/exploits/coldfusion_dir_traversal_exploit/command.js
+++ b/modules/exploits/coldfusion_dir_traversal_exploit/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/coldfusion_dir_traversal_exploit/config.yaml b/modules/exploits/coldfusion_dir_traversal_exploit/config.yaml
index 9e1ee999e..8b31aea21 100644
--- a/modules/exploits/coldfusion_dir_traversal_exploit/config.yaml
+++ b/modules/exploits/coldfusion_dir_traversal_exploit/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/coldfusion_dir_traversal_exploit/module.rb b/modules/exploits/coldfusion_dir_traversal_exploit/module.rb
index 80531836a..374e3eee7 100644
--- a/modules/exploits/coldfusion_dir_traversal_exploit/module.rb
+++ b/modules/exploits/coldfusion_dir_traversal_exploit/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/extract_cmd_exec/command.js b/modules/exploits/extract_cmd_exec/command.js
index f20ba6763..03949fcdf 100644
--- a/modules/exploits/extract_cmd_exec/command.js
+++ b/modules/exploits/extract_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/extract_cmd_exec/config.yaml b/modules/exploits/extract_cmd_exec/config.yaml
index 1786e2d21..ff1320852 100644
--- a/modules/exploits/extract_cmd_exec/config.yaml
+++ b/modules/exploits/extract_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/extract_cmd_exec/module.rb b/modules/exploits/extract_cmd_exec/module.rb
index 1c360ae62..ff5f97e1c 100644
--- a/modules/exploits/extract_cmd_exec/module.rb
+++ b/modules/exploits/extract_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 ###
diff --git a/modules/exploits/firephp/command.js b/modules/exploits/firephp/command.js
index abfd28ae0..b192529ae 100644
--- a/modules/exploits/firephp/command.js
+++ b/modules/exploits/firephp/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/firephp/config.yaml b/modules/exploits/firephp/config.yaml
index 56cede387..63568eec7 100644
--- a/modules/exploits/firephp/config.yaml
+++ b/modules/exploits/firephp/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/firephp/module.rb b/modules/exploits/firephp/module.rb
index be470a439..e1d0ce433 100644
--- a/modules/exploits/firephp/module.rb
+++ b/modules/exploits/firephp/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 ###
diff --git a/modules/exploits/glassfish_war_upload_xsrf/command.js b/modules/exploits/glassfish_war_upload_xsrf/command.js
index 4bb659d3f..edb579406 100644
--- a/modules/exploits/glassfish_war_upload_xsrf/command.js
+++ b/modules/exploits/glassfish_war_upload_xsrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/glassfish_war_upload_xsrf/config.yaml b/modules/exploits/glassfish_war_upload_xsrf/config.yaml
index ab73d3d0b..645dfd46a 100644
--- a/modules/exploits/glassfish_war_upload_xsrf/config.yaml
+++ b/modules/exploits/glassfish_war_upload_xsrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/glassfish_war_upload_xsrf/module.rb b/modules/exploits/glassfish_war_upload_xsrf/module.rb
index 8f9534e7d..2c6b025f2 100644
--- a/modules/exploits/glassfish_war_upload_xsrf/module.rb
+++ b/modules/exploits/glassfish_war_upload_xsrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/groovyshell_server_cmd_exec/command.js b/modules/exploits/groovyshell_server_cmd_exec/command.js
index 4b93d0af1..7fc74ab35 100644
--- a/modules/exploits/groovyshell_server_cmd_exec/command.js
+++ b/modules/exploits/groovyshell_server_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/groovyshell_server_cmd_exec/config.yaml b/modules/exploits/groovyshell_server_cmd_exec/config.yaml
index cdf208d44..8e8ca9d23 100644
--- a/modules/exploits/groovyshell_server_cmd_exec/config.yaml
+++ b/modules/exploits/groovyshell_server_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/groovyshell_server_cmd_exec/module.rb b/modules/exploits/groovyshell_server_cmd_exec/module.rb
index 8eb9cde13..c35370ed4 100644
--- a/modules/exploits/groovyshell_server_cmd_exec/module.rb
+++ b/modules/exploits/groovyshell_server_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/hp_ucmdb_add_user_csrf/command.js b/modules/exploits/hp_ucmdb_add_user_csrf/command.js
index b4f43581f..18994ffd4 100644
--- a/modules/exploits/hp_ucmdb_add_user_csrf/command.js
+++ b/modules/exploits/hp_ucmdb_add_user_csrf/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/exploits/hp_ucmdb_add_user_csrf/config.yaml b/modules/exploits/hp_ucmdb_add_user_csrf/config.yaml
index d6fbd4091..9a21b7c58 100644
--- a/modules/exploits/hp_ucmdb_add_user_csrf/config.yaml
+++ b/modules/exploits/hp_ucmdb_add_user_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/hp_ucmdb_add_user_csrf/module.rb b/modules/exploits/hp_ucmdb_add_user_csrf/module.rb
index 77d15f8e8..3583696f0 100644
--- a/modules/exploits/hp_ucmdb_add_user_csrf/module.rb
+++ b/modules/exploits/hp_ucmdb_add_user_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/jboss_jmx_upload_exploit/command.js b/modules/exploits/jboss_jmx_upload_exploit/command.js
index ed16c3e5c..6e98819e9 100644
--- a/modules/exploits/jboss_jmx_upload_exploit/command.js
+++ b/modules/exploits/jboss_jmx_upload_exploit/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/jboss_jmx_upload_exploit/config.yaml b/modules/exploits/jboss_jmx_upload_exploit/config.yaml
index fe2bacf51..9db5d20cd 100644
--- a/modules/exploits/jboss_jmx_upload_exploit/config.yaml
+++ b/modules/exploits/jboss_jmx_upload_exploit/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/jboss_jmx_upload_exploit/module.rb b/modules/exploits/jboss_jmx_upload_exploit/module.rb
index 2f2250732..9da3bdd9b 100644
--- a/modules/exploits/jboss_jmx_upload_exploit/module.rb
+++ b/modules/exploits/jboss_jmx_upload_exploit/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/jenkins_groovy_code_exec/command.js b/modules/exploits/jenkins_groovy_code_exec/command.js
index 3174dc7fc..1ec4eba7e 100644
--- a/modules/exploits/jenkins_groovy_code_exec/command.js
+++ b/modules/exploits/jenkins_groovy_code_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/jenkins_groovy_code_exec/config.yaml b/modules/exploits/jenkins_groovy_code_exec/config.yaml
index c2e3fdac3..4de19983c 100644
--- a/modules/exploits/jenkins_groovy_code_exec/config.yaml
+++ b/modules/exploits/jenkins_groovy_code_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/jenkins_groovy_code_exec/module.rb b/modules/exploits/jenkins_groovy_code_exec/module.rb
index 024279e17..7a0897a45 100644
--- a/modules/exploits/jenkins_groovy_code_exec/module.rb
+++ b/modules/exploits/jenkins_groovy_code_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/kemp_command_execution/command.js b/modules/exploits/kemp_command_execution/command.js
index 154832940..1e03900cf 100644
--- a/modules/exploits/kemp_command_execution/command.js
+++ b/modules/exploits/kemp_command_execution/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/kemp_command_execution/config.yaml b/modules/exploits/kemp_command_execution/config.yaml
index d05c27d31..7d6f85e62 100644
--- a/modules/exploits/kemp_command_execution/config.yaml
+++ b/modules/exploits/kemp_command_execution/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/kemp_command_execution/module.rb b/modules/exploits/kemp_command_execution/module.rb
index fd45043fa..ed39c9124 100644
--- a/modules/exploits/kemp_command_execution/module.rb
+++ b/modules/exploits/kemp_command_execution/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/activex_command_execution/command.js b/modules/exploits/local_host/activex_command_execution/command.js
index fc3c42347..ae4a5bd09 100755
--- a/modules/exploits/local_host/activex_command_execution/command.js
+++ b/modules/exploits/local_host/activex_command_execution/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/local_host/activex_command_execution/config.yaml b/modules/exploits/local_host/activex_command_execution/config.yaml
index 10c5628e6..9259a7808 100755
--- a/modules/exploits/local_host/activex_command_execution/config.yaml
+++ b/modules/exploits/local_host/activex_command_execution/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/activex_command_execution/module.rb b/modules/exploits/local_host/activex_command_execution/module.rb
index ee31c259a..25e01e41c 100755
--- a/modules/exploits/local_host/activex_command_execution/module.rb
+++ b/modules/exploits/local_host/activex_command_execution/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/java_payload/command.js b/modules/exploits/local_host/java_payload/command.js
index c0552765e..a0889af72 100755
--- a/modules/exploits/local_host/java_payload/command.js
+++ b/modules/exploits/local_host/java_payload/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/local_host/java_payload/config.yaml b/modules/exploits/local_host/java_payload/config.yaml
index fd1d2dd36..46cc7f186 100755
--- a/modules/exploits/local_host/java_payload/config.yaml
+++ b/modules/exploits/local_host/java_payload/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/java_payload/module.rb b/modules/exploits/local_host/java_payload/module.rb
index 05d68ee4b..a543703dd 100755
--- a/modules/exploits/local_host/java_payload/module.rb
+++ b/modules/exploits/local_host/java_payload/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js b/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js
index f1de015e9..c00abc1a9 100644
--- a/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js
+++ b/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/local_host/mozilla_nsiprocess_interface/config.yaml b/modules/exploits/local_host/mozilla_nsiprocess_interface/config.yaml
index cb5910ade..d87fb3315 100644
--- a/modules/exploits/local_host/mozilla_nsiprocess_interface/config.yaml
+++ b/modules/exploits/local_host/mozilla_nsiprocess_interface/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb b/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb
index 5fb331b88..2be16d402 100644
--- a/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb
+++ b/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/safari_launch_app/command.js b/modules/exploits/local_host/safari_launch_app/command.js
index 186843106..fad57bf4b 100755
--- a/modules/exploits/local_host/safari_launch_app/command.js
+++ b/modules/exploits/local_host/safari_launch_app/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/local_host/safari_launch_app/config.yaml b/modules/exploits/local_host/safari_launch_app/config.yaml
index 9f9472215..44f1a300f 100755
--- a/modules/exploits/local_host/safari_launch_app/config.yaml
+++ b/modules/exploits/local_host/safari_launch_app/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/safari_launch_app/module.rb b/modules/exploits/local_host/safari_launch_app/module.rb
index d61496223..7fff4ebfb 100755
--- a/modules/exploits/local_host/safari_launch_app/module.rb
+++ b/modules/exploits/local_host/safari_launch_app/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/signed_applet_dropper/applet/SM.java b/modules/exploits/local_host/signed_applet_dropper/applet/SM.java
index c39ae2006..7b8104d68 100755
--- a/modules/exploits/local_host/signed_applet_dropper/applet/SM.java
+++ b/modules/exploits/local_host/signed_applet_dropper/applet/SM.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  *
  * author: antisnatchor
diff --git a/modules/exploits/local_host/signed_applet_dropper/applet/SignedApplet.java b/modules/exploits/local_host/signed_applet_dropper/applet/SignedApplet.java
index 396cf3a16..87b4c3157 100755
--- a/modules/exploits/local_host/signed_applet_dropper/applet/SignedApplet.java
+++ b/modules/exploits/local_host/signed_applet_dropper/applet/SignedApplet.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  *
  * author: antisnatchor
diff --git a/modules/exploits/local_host/signed_applet_dropper/command.js b/modules/exploits/local_host/signed_applet_dropper/command.js
index 61b7662cb..8927a0d6a 100755
--- a/modules/exploits/local_host/signed_applet_dropper/command.js
+++ b/modules/exploits/local_host/signed_applet_dropper/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/local_host/signed_applet_dropper/config.yaml b/modules/exploits/local_host/signed_applet_dropper/config.yaml
index 42287d503..ef19d0fb5 100755
--- a/modules/exploits/local_host/signed_applet_dropper/config.yaml
+++ b/modules/exploits/local_host/signed_applet_dropper/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/signed_applet_dropper/module.rb b/modules/exploits/local_host/signed_applet_dropper/module.rb
index feec78c28..a46d1d6eb 100755
--- a/modules/exploits/local_host/signed_applet_dropper/module.rb
+++ b/modules/exploits/local_host/signed_applet_dropper/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/window_mail_client_dos/command.js b/modules/exploits/local_host/window_mail_client_dos/command.js
index fc9b0dea0..a2fa45099 100644
--- a/modules/exploits/local_host/window_mail_client_dos/command.js
+++ b/modules/exploits/local_host/window_mail_client_dos/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/local_host/window_mail_client_dos/config.yaml b/modules/exploits/local_host/window_mail_client_dos/config.yaml
index 1f02108f5..073e4b317 100644
--- a/modules/exploits/local_host/window_mail_client_dos/config.yaml
+++ b/modules/exploits/local_host/window_mail_client_dos/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/local_host/window_mail_client_dos/module.rb b/modules/exploits/local_host/window_mail_client_dos/module.rb
index 959fd2139..30a196d94 100644
--- a/modules/exploits/local_host/window_mail_client_dos/module.rb
+++ b/modules/exploits/local_host/window_mail_client_dos/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js b/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js
index db882e7c5..73c87a8f6 100644
--- a/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js
+++ b/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/nas/dlink_sharecenter_cmd_exec/config.yaml b/modules/exploits/nas/dlink_sharecenter_cmd_exec/config.yaml
index 3d502db02..98b5be9f1 100644
--- a/modules/exploits/nas/dlink_sharecenter_cmd_exec/config.yaml
+++ b/modules/exploits/nas/dlink_sharecenter_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb b/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb
index cf111bb1e..21720e550 100644
--- a/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb
+++ b/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 ###
diff --git a/modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js b/modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js
index 962821ab6..59d010d9d 100644
--- a/modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js
+++ b/modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/nas/freenas_reverse_root_shell_csrf/config.yaml b/modules/exploits/nas/freenas_reverse_root_shell_csrf/config.yaml
index 622502727..99fe12edc 100644
--- a/modules/exploits/nas/freenas_reverse_root_shell_csrf/config.yaml
+++ b/modules/exploits/nas/freenas_reverse_root_shell_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb b/modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb
index 2168ca64d..ca7da9ce7 100644
--- a/modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb
+++ b/modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/ntfscommoncreate_dos/command.js b/modules/exploits/ntfscommoncreate_dos/command.js
index b4de753b5..995a6314b 100644
--- a/modules/exploits/ntfscommoncreate_dos/command.js
+++ b/modules/exploits/ntfscommoncreate_dos/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/ntfscommoncreate_dos/config.yaml b/modules/exploits/ntfscommoncreate_dos/config.yaml
index f9b2f78ab..e057df04f 100644
--- a/modules/exploits/ntfscommoncreate_dos/config.yaml
+++ b/modules/exploits/ntfscommoncreate_dos/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/ntfscommoncreate_dos/module.rb b/modules/exploits/ntfscommoncreate_dos/module.rb
index 3c544e5bc..39c1dea79 100644
--- a/modules/exploits/ntfscommoncreate_dos/module.rb
+++ b/modules/exploits/ntfscommoncreate_dos/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/opencart_reset_password/command.js b/modules/exploits/opencart_reset_password/command.js
index 216330fb5..e67040a14 100644
--- a/modules/exploits/opencart_reset_password/command.js
+++ b/modules/exploits/opencart_reset_password/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/opencart_reset_password/config.yaml b/modules/exploits/opencart_reset_password/config.yaml
index 4af5158ed..c3a344e85 100644
--- a/modules/exploits/opencart_reset_password/config.yaml
+++ b/modules/exploits/opencart_reset_password/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/opencart_reset_password/module.rb b/modules/exploits/opencart_reset_password/module.rb
index 567d3d1a9..81189fba1 100644
--- a/modules/exploits/opencart_reset_password/module.rb
+++ b/modules/exploits/opencart_reset_password/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/command.js b/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/command.js
index 06963f55f..1aab1e606 100644
--- a/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/command.js
+++ b/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/config.yaml b/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/config.yaml
index cc3bd8b85..6f334f551 100644
--- a/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/config.yaml
+++ b/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/module.rb b/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/module.rb
index 76c8c085f..aceee8193 100644
--- a/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/module.rb
+++ b/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js
index 492780657..bb47fd6e9 100644
--- a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js
+++ b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/config.yaml b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/config.yaml
index 40b4299ad..51e9e293a 100644
--- a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/config.yaml
+++ b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb
index caaa4eb0b..e68f01ccd 100644
--- a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb
+++ b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/php-5.3.9-dos/command.js b/modules/exploits/php-5.3.9-dos/command.js
index 91dc0fb00..c3cd2bfaa 100644
--- a/modules/exploits/php-5.3.9-dos/command.js
+++ b/modules/exploits/php-5.3.9-dos/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/php-5.3.9-dos/config.yaml b/modules/exploits/php-5.3.9-dos/config.yaml
index eabe1ec0b..388d006f0 100644
--- a/modules/exploits/php-5.3.9-dos/config.yaml
+++ b/modules/exploits/php-5.3.9-dos/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/php-5.3.9-dos/module.rb b/modules/exploits/php-5.3.9-dos/module.rb
index 0d2a65dc0..7a668bbac 100644
--- a/modules/exploits/php-5.3.9-dos/module.rb
+++ b/modules/exploits/php-5.3.9-dos/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js b/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js
index b5b702c11..f3045547e 100644
--- a/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js
+++ b/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/qemu_monitor_migrate_cmd_exec/config.yaml b/modules/exploits/qemu_monitor_migrate_cmd_exec/config.yaml
index e963958a1..bc344b3a3 100644
--- a/modules/exploits/qemu_monitor_migrate_cmd_exec/config.yaml
+++ b/modules/exploits/qemu_monitor_migrate_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb b/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb
index 57d0f8487..69e567b26 100644
--- a/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb
+++ b/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/qnx_qconn_command_execution/command.js b/modules/exploits/qnx_qconn_command_execution/command.js
index 17aa0cd81..e4febb059 100644
--- a/modules/exploits/qnx_qconn_command_execution/command.js
+++ b/modules/exploits/qnx_qconn_command_execution/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/qnx_qconn_command_execution/config.yaml b/modules/exploits/qnx_qconn_command_execution/config.yaml
index 42d74c4b5..5f56811e7 100644
--- a/modules/exploits/qnx_qconn_command_execution/config.yaml
+++ b/modules/exploits/qnx_qconn_command_execution/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/qnx_qconn_command_execution/module.rb b/modules/exploits/qnx_qconn_command_execution/module.rb
index 67c73fb1d..21965483a 100644
--- a/modules/exploits/qnx_qconn_command_execution/module.rb
+++ b/modules/exploits/qnx_qconn_command_execution/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/resource_exhaustion_dos/command.js b/modules/exploits/resource_exhaustion_dos/command.js
index 52568f62c..2a5d147e1 100644
--- a/modules/exploits/resource_exhaustion_dos/command.js
+++ b/modules/exploits/resource_exhaustion_dos/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/resource_exhaustion_dos/config.yaml b/modules/exploits/resource_exhaustion_dos/config.yaml
index ffc9960f6..27a17a76f 100644
--- a/modules/exploits/resource_exhaustion_dos/config.yaml
+++ b/modules/exploits/resource_exhaustion_dos/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/resource_exhaustion_dos/module.rb b/modules/exploits/resource_exhaustion_dos/module.rb
index b5cd8400a..37595be3a 100644
--- a/modules/exploits/resource_exhaustion_dos/module.rb
+++ b/modules/exploits/resource_exhaustion_dos/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/rfi_scanner/command.js b/modules/exploits/rfi_scanner/command.js
index 030e5e9df..cae860061 100644
--- a/modules/exploits/rfi_scanner/command.js
+++ b/modules/exploits/rfi_scanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/rfi_scanner/config.yaml b/modules/exploits/rfi_scanner/config.yaml
index ee7b326b6..a0cce462a 100644
--- a/modules/exploits/rfi_scanner/config.yaml
+++ b/modules/exploits/rfi_scanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/rfi_scanner/module.rb b/modules/exploits/rfi_scanner/module.rb
index 6e329d735..90401de19 100644
--- a/modules/exploits/rfi_scanner/module.rb
+++ b/modules/exploits/rfi_scanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/3com_officeconnect_cmd_exec/command.js b/modules/exploits/router/3com_officeconnect_cmd_exec/command.js
index 1faba65d2..57f19eb29 100644
--- a/modules/exploits/router/3com_officeconnect_cmd_exec/command.js
+++ b/modules/exploits/router/3com_officeconnect_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/3com_officeconnect_cmd_exec/config.yaml b/modules/exploits/router/3com_officeconnect_cmd_exec/config.yaml
index b89d20707..1df47b793 100644
--- a/modules/exploits/router/3com_officeconnect_cmd_exec/config.yaml
+++ b/modules/exploits/router/3com_officeconnect_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb b/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
index a9c875445..823190436 100644
--- a/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
+++ b/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/actiontec_q1000_csrf/command.js b/modules/exploits/router/actiontec_q1000_csrf/command.js
index 7bd6aa27e..cd4776b0b 100644
--- a/modules/exploits/router/actiontec_q1000_csrf/command.js
+++ b/modules/exploits/router/actiontec_q1000_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/actiontec_q1000_csrf/config.yaml b/modules/exploits/router/actiontec_q1000_csrf/config.yaml
index 577cd7c69..5c1f89666 100644
--- a/modules/exploits/router/actiontec_q1000_csrf/config.yaml
+++ b/modules/exploits/router/actiontec_q1000_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/actiontec_q1000_csrf/module.rb b/modules/exploits/router/actiontec_q1000_csrf/module.rb
index 03e16592e..1cd54ddba 100644
--- a/modules/exploits/router/actiontec_q1000_csrf/module.rb
+++ b/modules/exploits/router/actiontec_q1000_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/argw4_adsl_dns_hijack/command.js b/modules/exploits/router/argw4_adsl_dns_hijack/command.js
index 2d74ff0ed..919ecc228 100644
--- a/modules/exploits/router/argw4_adsl_dns_hijack/command.js
+++ b/modules/exploits/router/argw4_adsl_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/argw4_adsl_dns_hijack/config.yaml b/modules/exploits/router/argw4_adsl_dns_hijack/config.yaml
index bf3d58c37..8835a84c1 100644
--- a/modules/exploits/router/argw4_adsl_dns_hijack/config.yaml
+++ b/modules/exploits/router/argw4_adsl_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/argw4_adsl_dns_hijack/module.rb b/modules/exploits/router/argw4_adsl_dns_hijack/module.rb
index adccfa2e4..5796e9129 100644
--- a/modules/exploits/router/argw4_adsl_dns_hijack/module.rb
+++ b/modules/exploits/router/argw4_adsl_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js b/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
index 848c597cc..9c8971f92 100644
--- a/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
+++ b/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml b/modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml
index cc1ddccd8..bd5dd673a 100644
--- a/modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml
+++ b/modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb b/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
index 41b1bd116..1ea3ec589 100644
--- a/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
+++ b/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/asus_dslx11_dns_hijack/command.js b/modules/exploits/router/asus_dslx11_dns_hijack/command.js
index 763e18ca8..25c13c957 100644
--- a/modules/exploits/router/asus_dslx11_dns_hijack/command.js
+++ b/modules/exploits/router/asus_dslx11_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/asus_dslx11_dns_hijack/config.yaml b/modules/exploits/router/asus_dslx11_dns_hijack/config.yaml
index be290b4da..eac1ad5ff 100644
--- a/modules/exploits/router/asus_dslx11_dns_hijack/config.yaml
+++ b/modules/exploits/router/asus_dslx11_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/asus_dslx11_dns_hijack/module.rb b/modules/exploits/router/asus_dslx11_dns_hijack/module.rb
index 21dd36bb5..291a6ea72 100644
--- a/modules/exploits/router/asus_dslx11_dns_hijack/module.rb
+++ b/modules/exploits/router/asus_dslx11_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/asus_rt_n12e_get_info/command.js b/modules/exploits/router/asus_rt_n12e_get_info/command.js
index 84729c889..bc7bcb098 100644
--- a/modules/exploits/router/asus_rt_n12e_get_info/command.js
+++ b/modules/exploits/router/asus_rt_n12e_get_info/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/asus_rt_n12e_get_info/config.yaml b/modules/exploits/router/asus_rt_n12e_get_info/config.yaml
index 46a38560e..e3f51b529 100644
--- a/modules/exploits/router/asus_rt_n12e_get_info/config.yaml
+++ b/modules/exploits/router/asus_rt_n12e_get_info/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/asus_rt_n12e_get_info/module.rb b/modules/exploits/router/asus_rt_n12e_get_info/module.rb
index 7736fb15f..4799b65ad 100644
--- a/modules/exploits/router/asus_rt_n12e_get_info/module.rb
+++ b/modules/exploits/router/asus_rt_n12e_get_info/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js b/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
index c42ae1d22..f8750b6cf 100755
--- a/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
+++ b/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml b/modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml
index 97922a9ae..9005350eb 100755
--- a/modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml
+++ b/modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb b/modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb
index 0d26f6ba1..d52d5a186 100755
--- a/modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb
+++ b/modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js
index 15f175f20..402d4044a 100644
--- a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js
+++ b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/config.yaml b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/config.yaml
index adbf78eb3..412737ab8 100644
--- a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/config.yaml
+++ b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb
index 5fbd8b81d..057ba8349 100644
--- a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb
+++ b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/belkin_dns_csrf/command.js b/modules/exploits/router/belkin_dns_csrf/command.js
index 4e31cb787..ef5133402 100644
--- a/modules/exploits/router/belkin_dns_csrf/command.js
+++ b/modules/exploits/router/belkin_dns_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/belkin_dns_csrf/config.yaml b/modules/exploits/router/belkin_dns_csrf/config.yaml
index 8a20b4cca..5ecbfdab1 100644
--- a/modules/exploits/router/belkin_dns_csrf/config.yaml
+++ b/modules/exploits/router/belkin_dns_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/belkin_dns_csrf/module.rb b/modules/exploits/router/belkin_dns_csrf/module.rb
index 394f00f03..c9f1b8cea 100644
--- a/modules/exploits/router/belkin_dns_csrf/module.rb
+++ b/modules/exploits/router/belkin_dns_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/bt_home_hub_csrf/command.js b/modules/exploits/router/bt_home_hub_csrf/command.js
index 624368277..9a1e2df3d 100644
--- a/modules/exploits/router/bt_home_hub_csrf/command.js
+++ b/modules/exploits/router/bt_home_hub_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/bt_home_hub_csrf/config.yaml b/modules/exploits/router/bt_home_hub_csrf/config.yaml
index 6bd91f431..b2f58a307 100644
--- a/modules/exploits/router/bt_home_hub_csrf/config.yaml
+++ b/modules/exploits/router/bt_home_hub_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/bt_home_hub_csrf/module.rb b/modules/exploits/router/bt_home_hub_csrf/module.rb
index 52dbd7fa6..57cac7ea2 100644
--- a/modules/exploits/router/bt_home_hub_csrf/module.rb
+++ b/modules/exploits/router/bt_home_hub_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/cisco_e2400_csrf/command.js b/modules/exploits/router/cisco_e2400_csrf/command.js
index 9ec2b3bf5..63d017af1 100644
--- a/modules/exploits/router/cisco_e2400_csrf/command.js
+++ b/modules/exploits/router/cisco_e2400_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/cisco_e2400_csrf/config.yaml b/modules/exploits/router/cisco_e2400_csrf/config.yaml
index b2c68252f..0a8552fe2 100644
--- a/modules/exploits/router/cisco_e2400_csrf/config.yaml
+++ b/modules/exploits/router/cisco_e2400_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/cisco_e2400_csrf/module.rb b/modules/exploits/router/cisco_e2400_csrf/module.rb
index 1c6dcd3b4..e76d49d6d 100644
--- a/modules/exploits/router/cisco_e2400_csrf/module.rb
+++ b/modules/exploits/router/cisco_e2400_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/comtrend_ct5367_csrf/command.js b/modules/exploits/router/comtrend_ct5367_csrf/command.js
index d1f139326..15c404c70 100644
--- a/modules/exploits/router/comtrend_ct5367_csrf/command.js
+++ b/modules/exploits/router/comtrend_ct5367_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/comtrend_ct5367_csrf/config.yaml b/modules/exploits/router/comtrend_ct5367_csrf/config.yaml
index e58fa8047..3d88bfbb0 100644
--- a/modules/exploits/router/comtrend_ct5367_csrf/config.yaml
+++ b/modules/exploits/router/comtrend_ct5367_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/comtrend_ct5367_csrf/module.rb b/modules/exploits/router/comtrend_ct5367_csrf/module.rb
index fda716af4..e809650b6 100644
--- a/modules/exploits/router/comtrend_ct5367_csrf/module.rb
+++ b/modules/exploits/router/comtrend_ct5367_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/comtrend_ct5624_csrf/command.js b/modules/exploits/router/comtrend_ct5624_csrf/command.js
index 3bd6f554f..c2dc33469 100644
--- a/modules/exploits/router/comtrend_ct5624_csrf/command.js
+++ b/modules/exploits/router/comtrend_ct5624_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/comtrend_ct5624_csrf/config.yaml b/modules/exploits/router/comtrend_ct5624_csrf/config.yaml
index 08dbe8873..d2b776d74 100644
--- a/modules/exploits/router/comtrend_ct5624_csrf/config.yaml
+++ b/modules/exploits/router/comtrend_ct5624_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/comtrend_ct5624_csrf/module.rb b/modules/exploits/router/comtrend_ct5624_csrf/module.rb
index d19a6bea5..fd25fed2d 100644
--- a/modules/exploits/router/comtrend_ct5624_csrf/module.rb
+++ b/modules/exploits/router/comtrend_ct5624_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/comtrend_ct_series_dns_hijack/command.js b/modules/exploits/router/comtrend_ct_series_dns_hijack/command.js
index 7ec6f8b58..d3a5a9dfd 100644
--- a/modules/exploits/router/comtrend_ct_series_dns_hijack/command.js
+++ b/modules/exploits/router/comtrend_ct_series_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/comtrend_ct_series_dns_hijack/config.yaml b/modules/exploits/router/comtrend_ct_series_dns_hijack/config.yaml
index 1edd94262..72aa870cd 100644
--- a/modules/exploits/router/comtrend_ct_series_dns_hijack/config.yaml
+++ b/modules/exploits/router/comtrend_ct_series_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb b/modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb
index 5bb539002..ed41832da 100644
--- a/modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb
+++ b/modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js
index d3c981356..58a0d5254 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js
+++ b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml
index d8cf7cfa8..b602cdc32 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml
+++ b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb
index 39c4bdafc..96197cb00 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb
+++ b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js b/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
index 8441eed27..3784d9c35 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
+++ b/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml b/modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml
index 6dfe27b9e..e4bc03ffc 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml
+++ b/modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb b/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
index 067e2bb82..514068cea 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
+++ b/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dir_615_csrf/command.js b/modules/exploits/router/dlink_dir_615_csrf/command.js
index 5d158c6e5..176af86c7 100644
--- a/modules/exploits/router/dlink_dir_615_csrf/command.js
+++ b/modules/exploits/router/dlink_dir_615_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/dlink_dir_615_csrf/config.yaml b/modules/exploits/router/dlink_dir_615_csrf/config.yaml
index 2e6c2673f..1f5078ecc 100644
--- a/modules/exploits/router/dlink_dir_615_csrf/config.yaml
+++ b/modules/exploits/router/dlink_dir_615_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dir_615_csrf/module.rb b/modules/exploits/router/dlink_dir_615_csrf/module.rb
index 2fa3a5fd6..22c36586a 100644
--- a/modules/exploits/router/dlink_dir_615_csrf/module.rb
+++ b/modules/exploits/router/dlink_dir_615_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
index 8f562511b..755b9a674 100644
--- a/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/dlink_dsl2640b_dns_hijack/config.yaml b/modules/exploits/router/dlink_dsl2640b_dns_hijack/config.yaml
index 8abaf2014..399b1e7ce 100644
--- a/modules/exploits/router/dlink_dsl2640b_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl2640b_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
index 0c37c377b..0ae695880 100644
--- a/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
index b766f6a08..3b4d128fd 100644
--- a/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/dlink_dsl2640u_dns_hijack/config.yaml b/modules/exploits/router/dlink_dsl2640u_dns_hijack/config.yaml
index 8df2fba4a..8afdeb741 100644
--- a/modules/exploits/router/dlink_dsl2640u_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl2640u_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
index 82bdb3e14..1006eb3fa 100644
--- a/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
index a339af3a0..b957b9765 100644
--- a/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/dlink_dsl2740r_dns_hijack/config.yaml b/modules/exploits/router/dlink_dsl2740r_dns_hijack/config.yaml
index e8450024a..546e795fc 100644
--- a/modules/exploits/router/dlink_dsl2740r_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl2740r_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
index 0d003b9b5..114761eb8 100644
--- a/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
index 858762d22..8367e07fe 100644
--- a/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/dlink_dsl2780b_dns_hijack/config.yaml b/modules/exploits/router/dlink_dsl2780b_dns_hijack/config.yaml
index b34dece75..160a2adbd 100644
--- a/modules/exploits/router/dlink_dsl2780b_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl2780b_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
index 13867014f..034b382bf 100644
--- a/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl500t_csrf/command.js b/modules/exploits/router/dlink_dsl500t_csrf/command.js
index aacbc5baf..73cbb4f48 100644
--- a/modules/exploits/router/dlink_dsl500t_csrf/command.js
+++ b/modules/exploits/router/dlink_dsl500t_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/dlink_dsl500t_csrf/config.yaml b/modules/exploits/router/dlink_dsl500t_csrf/config.yaml
index 8c95d9de4..e38a3684a 100644
--- a/modules/exploits/router/dlink_dsl500t_csrf/config.yaml
+++ b/modules/exploits/router/dlink_dsl500t_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl500t_csrf/module.rb b/modules/exploits/router/dlink_dsl500t_csrf/module.rb
index 19bc48a4a..b321e2776 100644
--- a/modules/exploits/router/dlink_dsl500t_csrf/module.rb
+++ b/modules/exploits/router/dlink_dsl500t_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js b/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
index 9438789c9..9185aeeed 100644
--- a/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/dlink_dsl526b_dns_hijack/config.yaml b/modules/exploits/router/dlink_dsl526b_dns_hijack/config.yaml
index 3a65ca3f0..dad381916 100644
--- a/modules/exploits/router/dlink_dsl526b_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl526b_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
index d69c38f88..df3df7407 100644
--- a/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js
index 028a2ad7d..a3fcf2de9 100644
--- a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js
+++ b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml
index ff1068b45..b94eb3e6c 100644
--- a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml
+++ b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb
index bf06e9a1a..2288dd203 100644
--- a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb
+++ b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/huawei_smartax_mt880/command.js b/modules/exploits/router/huawei_smartax_mt880/command.js
index a6c5d8cd0..071209e5a 100644
--- a/modules/exploits/router/huawei_smartax_mt880/command.js
+++ b/modules/exploits/router/huawei_smartax_mt880/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/huawei_smartax_mt880/config.yaml b/modules/exploits/router/huawei_smartax_mt880/config.yaml
index 33140b027..f2ce50179 100644
--- a/modules/exploits/router/huawei_smartax_mt880/config.yaml
+++ b/modules/exploits/router/huawei_smartax_mt880/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/huawei_smartax_mt880/module.rb b/modules/exploits/router/huawei_smartax_mt880/module.rb
index faac960b3..a3c9d3f2e 100644
--- a/modules/exploits/router/huawei_smartax_mt880/module.rb
+++ b/modules/exploits/router/huawei_smartax_mt880/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/command.js b/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/command.js
index c41d90b9c..1d326ac47 100644
--- a/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/command.js
+++ b/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/config.yaml b/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/config.yaml
index 898cc69c1..672796996 100644
--- a/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/config.yaml
+++ b/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/module.rb b/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/module.rb
index f138d497a..b2fcd5bbf 100644
--- a/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/module.rb
+++ b/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js
index b4982219a..633f44562 100644
--- a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js
+++ b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/config.yaml b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/config.yaml
index 08df6f067..9e48141f0 100644
--- a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/config.yaml
+++ b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb
index da3f47549..d3abdd6c1 100644
--- a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb
+++ b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_befsr41_csrf/command.js b/modules/exploits/router/linksys_befsr41_csrf/command.js
index d7788ead0..019dc26bf 100644
--- a/modules/exploits/router/linksys_befsr41_csrf/command.js
+++ b/modules/exploits/router/linksys_befsr41_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/linksys_befsr41_csrf/config.yaml b/modules/exploits/router/linksys_befsr41_csrf/config.yaml
index ff9fbbdc5..0774ba4de 100644
--- a/modules/exploits/router/linksys_befsr41_csrf/config.yaml
+++ b/modules/exploits/router/linksys_befsr41_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_befsr41_csrf/module.rb b/modules/exploits/router/linksys_befsr41_csrf/module.rb
index a2fb1f085..64de16808 100644
--- a/modules/exploits/router/linksys_befsr41_csrf/module.rb
+++ b/modules/exploits/router/linksys_befsr41_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_e2500_csrf/command.js b/modules/exploits/router/linksys_e2500_csrf/command.js
index 708734e4f..1c7a09102 100644
--- a/modules/exploits/router/linksys_e2500_csrf/command.js
+++ b/modules/exploits/router/linksys_e2500_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/linksys_e2500_csrf/config.yaml b/modules/exploits/router/linksys_e2500_csrf/config.yaml
index c0c793560..2b48578b4 100644
--- a/modules/exploits/router/linksys_e2500_csrf/config.yaml
+++ b/modules/exploits/router/linksys_e2500_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_e2500_csrf/module.rb b/modules/exploits/router/linksys_e2500_csrf/module.rb
index ba669aed9..5c55f7a62 100644
--- a/modules/exploits/router/linksys_e2500_csrf/module.rb
+++ b/modules/exploits/router/linksys_e2500_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_e2500_dns_hijack/command.js b/modules/exploits/router/linksys_e2500_dns_hijack/command.js
index ae8a57c4f..8f004f51b 100644
--- a/modules/exploits/router/linksys_e2500_dns_hijack/command.js
+++ b/modules/exploits/router/linksys_e2500_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/linksys_e2500_dns_hijack/config.yaml b/modules/exploits/router/linksys_e2500_dns_hijack/config.yaml
index 60c144a17..da8dc06dd 100644
--- a/modules/exploits/router/linksys_e2500_dns_hijack/config.yaml
+++ b/modules/exploits/router/linksys_e2500_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_e2500_dns_hijack/module.rb b/modules/exploits/router/linksys_e2500_dns_hijack/module.rb
index 1a12e2849..48413a221 100644
--- a/modules/exploits/router/linksys_e2500_dns_hijack/module.rb
+++ b/modules/exploits/router/linksys_e2500_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_e2500_shell/command.js b/modules/exploits/router/linksys_e2500_shell/command.js
index 8cbb3d3ed..a3e3d4be4 100644
--- a/modules/exploits/router/linksys_e2500_shell/command.js
+++ b/modules/exploits/router/linksys_e2500_shell/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/linksys_e2500_shell/config.yaml b/modules/exploits/router/linksys_e2500_shell/config.yaml
index ac6f5da16..59f48dc79 100644
--- a/modules/exploits/router/linksys_e2500_shell/config.yaml
+++ b/modules/exploits/router/linksys_e2500_shell/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_e2500_shell/module.rb b/modules/exploits/router/linksys_e2500_shell/module.rb
index 82fda497e..fa80d4871 100644
--- a/modules/exploits/router/linksys_e2500_shell/module.rb
+++ b/modules/exploits/router/linksys_e2500_shell/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_wrt54g2_csrf/command.js b/modules/exploits/router/linksys_wrt54g2_csrf/command.js
index 18694b0b6..c2d8d69b3 100644
--- a/modules/exploits/router/linksys_wrt54g2_csrf/command.js
+++ b/modules/exploits/router/linksys_wrt54g2_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/linksys_wrt54g2_csrf/config.yaml b/modules/exploits/router/linksys_wrt54g2_csrf/config.yaml
index 0e2d1611b..ffab0732c 100644
--- a/modules/exploits/router/linksys_wrt54g2_csrf/config.yaml
+++ b/modules/exploits/router/linksys_wrt54g2_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_wrt54g2_csrf/module.rb b/modules/exploits/router/linksys_wrt54g2_csrf/module.rb
index ae9396df8..d6dfd4e6b 100644
--- a/modules/exploits/router/linksys_wrt54g2_csrf/module.rb
+++ b/modules/exploits/router/linksys_wrt54g2_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_wrt54g_csrf/command.js b/modules/exploits/router/linksys_wrt54g_csrf/command.js
index 70d296141..7033c1b32 100644
--- a/modules/exploits/router/linksys_wrt54g_csrf/command.js
+++ b/modules/exploits/router/linksys_wrt54g_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/linksys_wrt54g_csrf/config.yaml b/modules/exploits/router/linksys_wrt54g_csrf/config.yaml
index 2f4fb9b7e..7847fb8fb 100644
--- a/modules/exploits/router/linksys_wrt54g_csrf/config.yaml
+++ b/modules/exploits/router/linksys_wrt54g_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/linksys_wrt54g_csrf/module.rb b/modules/exploits/router/linksys_wrt54g_csrf/module.rb
index 916f9633f..409d23726 100644
--- a/modules/exploits/router/linksys_wrt54g_csrf/module.rb
+++ b/modules/exploits/router/linksys_wrt54g_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js
index 942add5a1..3fbb8d3b3 100644
--- a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js
+++ b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/config.yaml b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/config.yaml
index 1b9a54d20..2f33b17c9 100644
--- a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/config.yaml
+++ b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb
index 1c435e9df..2dcee9b30 100644
--- a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb
+++ b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js b/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js
index b36ca8386..b592761f6 100755
--- a/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js
+++ b/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/netgear_dgn2200_cmd_exec/config.yaml b/modules/exploits/router/netgear_dgn2200_cmd_exec/config.yaml
index 78ca59c6f..2cde5def3 100755
--- a/modules/exploits/router/netgear_dgn2200_cmd_exec/config.yaml
+++ b/modules/exploits/router/netgear_dgn2200_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb b/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb
index 89a1e57fd..6b024dd4c 100755
--- a/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb
+++ b/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/phillips_dns_hijack/command.js b/modules/exploits/router/phillips_dns_hijack/command.js
index 318c2d18a..56a7f19bd 100644
--- a/modules/exploits/router/phillips_dns_hijack/command.js
+++ b/modules/exploits/router/phillips_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/phillips_dns_hijack/config.yaml b/modules/exploits/router/phillips_dns_hijack/config.yaml
index bc717afc6..01c65bd3d 100644
--- a/modules/exploits/router/phillips_dns_hijack/config.yaml
+++ b/modules/exploits/router/phillips_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/phillips_dns_hijack/module.rb b/modules/exploits/router/phillips_dns_hijack/module.rb
index 4de62a55a..0117594bb 100644
--- a/modules/exploits/router/phillips_dns_hijack/module.rb
+++ b/modules/exploits/router/phillips_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 class Philips_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/pikatel_96338_dns_hijack/command.js b/modules/exploits/router/pikatel_96338_dns_hijack/command.js
index f62efbd3b..b77672bdf 100644
--- a/modules/exploits/router/pikatel_96338_dns_hijack/command.js
+++ b/modules/exploits/router/pikatel_96338_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/pikatel_96338_dns_hijack/config.yaml b/modules/exploits/router/pikatel_96338_dns_hijack/config.yaml
index e3329ef0d..2e06b0ea6 100644
--- a/modules/exploits/router/pikatel_96338_dns_hijack/config.yaml
+++ b/modules/exploits/router/pikatel_96338_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/pikatel_96338_dns_hijack/module.rb b/modules/exploits/router/pikatel_96338_dns_hijack/module.rb
index 13148aea9..1b936b841 100644
--- a/modules/exploits/router/pikatel_96338_dns_hijack/module.rb
+++ b/modules/exploits/router/pikatel_96338_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js
index b6f2a095a..b741a99a3 100644
--- a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js
+++ b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/config.yaml b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/config.yaml
index 76a280a55..32f7593ad 100644
--- a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/config.yaml
+++ b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb
index 80a99a35e..d06810080 100644
--- a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb
+++ b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js
index 862a8df3b..6c54a4a02 100644
--- a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js
+++ b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/config.yaml b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/config.yaml
index 545c92b37..ff6f0f5b9 100644
--- a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/config.yaml
+++ b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb
index 41bec7f9c..ca846ad89 100644
--- a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb
+++ b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/telstra_zte_mf91_change_pw/command.js b/modules/exploits/router/telstra_zte_mf91_change_pw/command.js
index 2ec071518..91b950648 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_pw/command.js
+++ b/modules/exploits/router/telstra_zte_mf91_change_pw/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/telstra_zte_mf91_change_pw/config.yaml b/modules/exploits/router/telstra_zte_mf91_change_pw/config.yaml
index 2b206f33a..2f5faea7b 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_pw/config.yaml
+++ b/modules/exploits/router/telstra_zte_mf91_change_pw/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/telstra_zte_mf91_change_pw/module.rb b/modules/exploits/router/telstra_zte_mf91_change_pw/module.rb
index 12ae8056f..3e8ef8dd9 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_pw/module.rb
+++ b/modules/exploits/router/telstra_zte_mf91_change_pw/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/telstra_zte_mf91_change_ssid/command.js b/modules/exploits/router/telstra_zte_mf91_change_ssid/command.js
index 170fafe23..b89bcf3fe 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_ssid/command.js
+++ b/modules/exploits/router/telstra_zte_mf91_change_ssid/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/telstra_zte_mf91_change_ssid/config.yaml b/modules/exploits/router/telstra_zte_mf91_change_ssid/config.yaml
index 1cb1d514b..f4c1fc208 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_ssid/config.yaml
+++ b/modules/exploits/router/telstra_zte_mf91_change_ssid/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb b/modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb
index fe38db0e2..400f2bb89 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb
+++ b/modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/command.js b/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/command.js
index 8c038d982..d9e067c49 100644
--- a/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/command.js
+++ b/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/config.yaml b/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/config.yaml
index 614e87986..c86455444 100644
--- a/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/config.yaml
+++ b/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/module.rb b/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/module.rb
index 827671ed0..6ccf28adb 100644
--- a/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/module.rb
+++ b/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/tenda_adsl_dns_hijack/command.js b/modules/exploits/router/tenda_adsl_dns_hijack/command.js
index be20d0ab1..fbf41df8d 100644
--- a/modules/exploits/router/tenda_adsl_dns_hijack/command.js
+++ b/modules/exploits/router/tenda_adsl_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/tenda_adsl_dns_hijack/config.yaml b/modules/exploits/router/tenda_adsl_dns_hijack/config.yaml
index 87b14d564..223a7c3d5 100644
--- a/modules/exploits/router/tenda_adsl_dns_hijack/config.yaml
+++ b/modules/exploits/router/tenda_adsl_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/tenda_adsl_dns_hijack/module.rb b/modules/exploits/router/tenda_adsl_dns_hijack/module.rb
index fa44714a3..e20679d20 100644
--- a/modules/exploits/router/tenda_adsl_dns_hijack/module.rb
+++ b/modules/exploits/router/tenda_adsl_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/tplink_dns_csrf/command.js b/modules/exploits/router/tplink_dns_csrf/command.js
index 14a9af235..46828ce8d 100644
--- a/modules/exploits/router/tplink_dns_csrf/command.js
+++ b/modules/exploits/router/tplink_dns_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/tplink_dns_csrf/config.yaml b/modules/exploits/router/tplink_dns_csrf/config.yaml
index 1795a233e..b35b20a51 100644
--- a/modules/exploits/router/tplink_dns_csrf/config.yaml
+++ b/modules/exploits/router/tplink_dns_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/tplink_dns_csrf/module.rb b/modules/exploits/router/tplink_dns_csrf/module.rb
index 130a83555..fd76ea88b 100644
--- a/modules/exploits/router/tplink_dns_csrf/module.rb
+++ b/modules/exploits/router/tplink_dns_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js
index ab0480504..8559eed71 100644
--- a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js
+++ b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/config.yaml b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/config.yaml
index b7a4a5043..8e029c926 100644
--- a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/config.yaml
+++ b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb
index 3e8bfc39c..57d9af460 100644
--- a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb
+++ b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/virgin_superhub_csrf/command.js b/modules/exploits/router/virgin_superhub_csrf/command.js
index 8e75f97eb..fa6604dd9 100644
--- a/modules/exploits/router/virgin_superhub_csrf/command.js
+++ b/modules/exploits/router/virgin_superhub_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/virgin_superhub_csrf/config.yaml b/modules/exploits/router/virgin_superhub_csrf/config.yaml
index 4f2f02a5f..004870581 100644
--- a/modules/exploits/router/virgin_superhub_csrf/config.yaml
+++ b/modules/exploits/router/virgin_superhub_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/virgin_superhub_csrf/module.rb b/modules/exploits/router/virgin_superhub_csrf/module.rb
index 9ec62cf64..ed57f5d72 100644
--- a/modules/exploits/router/virgin_superhub_csrf/module.rb
+++ b/modules/exploits/router/virgin_superhub_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/wipg1000_cmd_injection/command.js b/modules/exploits/router/wipg1000_cmd_injection/command.js
index 2e2d153e5..e8f59b054 100644
--- a/modules/exploits/router/wipg1000_cmd_injection/command.js
+++ b/modules/exploits/router/wipg1000_cmd_injection/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/router/wipg1000_cmd_injection/config.yaml b/modules/exploits/router/wipg1000_cmd_injection/config.yaml
index 69a44681a..440bb873a 100644
--- a/modules/exploits/router/wipg1000_cmd_injection/config.yaml
+++ b/modules/exploits/router/wipg1000_cmd_injection/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/router/wipg1000_cmd_injection/module.rb b/modules/exploits/router/wipg1000_cmd_injection/module.rb
index 531c43e4b..debfce810 100644
--- a/modules/exploits/router/wipg1000_cmd_injection/module.rb
+++ b/modules/exploits/router/wipg1000_cmd_injection/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/ruby_nntpd_cmd_exec/command.js b/modules/exploits/ruby_nntpd_cmd_exec/command.js
index 30d9348b7..984208162 100644
--- a/modules/exploits/ruby_nntpd_cmd_exec/command.js
+++ b/modules/exploits/ruby_nntpd_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/ruby_nntpd_cmd_exec/config.yaml b/modules/exploits/ruby_nntpd_cmd_exec/config.yaml
index f274a679e..6c7f62177 100644
--- a/modules/exploits/ruby_nntpd_cmd_exec/config.yaml
+++ b/modules/exploits/ruby_nntpd_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/ruby_nntpd_cmd_exec/module.rb b/modules/exploits/ruby_nntpd_cmd_exec/module.rb
index de64c5901..ac7670e97 100644
--- a/modules/exploits/ruby_nntpd_cmd_exec/module.rb
+++ b/modules/exploits/ruby_nntpd_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 ###
diff --git a/modules/exploits/shell_shock_scanner/command.js b/modules/exploits/shell_shock_scanner/command.js
index 0ce745c4a..05de833c5 100644
--- a/modules/exploits/shell_shock_scanner/command.js
+++ b/modules/exploits/shell_shock_scanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/shell_shock_scanner/config.yaml b/modules/exploits/shell_shock_scanner/config.yaml
index 9703d53d1..f4c6d55be 100644
--- a/modules/exploits/shell_shock_scanner/config.yaml
+++ b/modules/exploits/shell_shock_scanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/shell_shock_scanner/module.rb b/modules/exploits/shell_shock_scanner/module.rb
index c8f14ea40..4d2f5e3cd 100644
--- a/modules/exploits/shell_shock_scanner/module.rb
+++ b/modules/exploits/shell_shock_scanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/shell_shocked/command.js b/modules/exploits/shell_shocked/command.js
index 500b35522..62c68d9c7 100644
--- a/modules/exploits/shell_shocked/command.js
+++ b/modules/exploits/shell_shocked/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/shell_shocked/config.yaml b/modules/exploits/shell_shocked/config.yaml
index 8c87ca6e2..f7b915782 100644
--- a/modules/exploits/shell_shocked/config.yaml
+++ b/modules/exploits/shell_shocked/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/shell_shocked/module.rb b/modules/exploits/shell_shocked/module.rb
index ded7c35a7..6c61c91a8 100644
--- a/modules/exploits/shell_shocked/module.rb
+++ b/modules/exploits/shell_shocked/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/skype_xss/command.js b/modules/exploits/skype_xss/command.js
index fa157f685..b37b52132 100644
--- a/modules/exploits/skype_xss/command.js
+++ b/modules/exploits/skype_xss/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/skype_xss/config.yaml b/modules/exploits/skype_xss/config.yaml
index 8dc04c88d..c5979306e 100644
--- a/modules/exploits/skype_xss/config.yaml
+++ b/modules/exploits/skype_xss/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/skype_xss/module.rb b/modules/exploits/skype_xss/module.rb
index 507534e2e..d10e97c94 100644
--- a/modules/exploits/skype_xss/module.rb
+++ b/modules/exploits/skype_xss/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/spring_framework_malicious_jar/command.js b/modules/exploits/spring_framework_malicious_jar/command.js
index a36e03b69..b83553cd0 100644
--- a/modules/exploits/spring_framework_malicious_jar/command.js
+++ b/modules/exploits/spring_framework_malicious_jar/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/spring_framework_malicious_jar/config.yaml b/modules/exploits/spring_framework_malicious_jar/config.yaml
index 508d375a2..b1877641e 100644
--- a/modules/exploits/spring_framework_malicious_jar/config.yaml
+++ b/modules/exploits/spring_framework_malicious_jar/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/spring_framework_malicious_jar/module.rb b/modules/exploits/spring_framework_malicious_jar/module.rb
index f12248582..825f8653e 100644
--- a/modules/exploits/spring_framework_malicious_jar/module.rb
+++ b/modules/exploits/spring_framework_malicious_jar/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/switch/dlink_dgs_1100_device_reset/command.js b/modules/exploits/switch/dlink_dgs_1100_device_reset/command.js
index b73e712f3..ddcf970f2 100644
--- a/modules/exploits/switch/dlink_dgs_1100_device_reset/command.js
+++ b/modules/exploits/switch/dlink_dgs_1100_device_reset/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/switch/dlink_dgs_1100_device_reset/config.yaml b/modules/exploits/switch/dlink_dgs_1100_device_reset/config.yaml
index 26d169575..9092e460b 100644
--- a/modules/exploits/switch/dlink_dgs_1100_device_reset/config.yaml
+++ b/modules/exploits/switch/dlink_dgs_1100_device_reset/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb b/modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb
index e5299bf51..e3abb95ef 100644
--- a/modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb
+++ b/modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js
index 44baa969c..b3fc7b87f 100644
--- a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js
+++ b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/config.yaml b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/config.yaml
index ede0ade98..48e3d729b 100644
--- a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/config.yaml
+++ b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb
index fd146e219..c38997217 100644
--- a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb
+++ b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js
index 9affbad0b..7ff391f1b 100644
--- a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js
+++ b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/config.yaml b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/config.yaml
index 9ceb0c4c8..179a3fae0 100644
--- a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/config.yaml
+++ b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb
index 4e0a4c63f..a127c26d3 100644
--- a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb
+++ b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/switch/netgear_gs108t_csrf/command.js b/modules/exploits/switch/netgear_gs108t_csrf/command.js
index d2004e47c..ecdf1fccf 100644
--- a/modules/exploits/switch/netgear_gs108t_csrf/command.js
+++ b/modules/exploits/switch/netgear_gs108t_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/switch/netgear_gs108t_csrf/config.yaml b/modules/exploits/switch/netgear_gs108t_csrf/config.yaml
index 3070005e5..97818f189 100644
--- a/modules/exploits/switch/netgear_gs108t_csrf/config.yaml
+++ b/modules/exploits/switch/netgear_gs108t_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/switch/netgear_gs108t_csrf/module.rb b/modules/exploits/switch/netgear_gs108t_csrf/module.rb
index d74b1cf42..404f8fe1f 100644
--- a/modules/exploits/switch/netgear_gs108t_csrf/module.rb
+++ b/modules/exploits/switch/netgear_gs108t_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/vtiger_crm_upload_exploit/command.js b/modules/exploits/vtiger_crm_upload_exploit/command.js
index f812f375c..951dc9da5 100644
--- a/modules/exploits/vtiger_crm_upload_exploit/command.js
+++ b/modules/exploits/vtiger_crm_upload_exploit/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/vtiger_crm_upload_exploit/config.yaml b/modules/exploits/vtiger_crm_upload_exploit/config.yaml
index 618fca647..8696f2353 100644
--- a/modules/exploits/vtiger_crm_upload_exploit/config.yaml
+++ b/modules/exploits/vtiger_crm_upload_exploit/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/vtiger_crm_upload_exploit/module.rb b/modules/exploits/vtiger_crm_upload_exploit/module.rb
index 8c0b677e3..10dfc44b2 100644
--- a/modules/exploits/vtiger_crm_upload_exploit/module.rb
+++ b/modules/exploits/vtiger_crm_upload_exploit/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/wanem_command_execution/command.js b/modules/exploits/wanem_command_execution/command.js
index e0eae5497..70065d0c3 100644
--- a/modules/exploits/wanem_command_execution/command.js
+++ b/modules/exploits/wanem_command_execution/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/wanem_command_execution/config.yaml b/modules/exploits/wanem_command_execution/config.yaml
index 40f9fd61e..f5ed652b1 100644
--- a/modules/exploits/wanem_command_execution/config.yaml
+++ b/modules/exploits/wanem_command_execution/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/wanem_command_execution/module.rb b/modules/exploits/wanem_command_execution/module.rb
index d1508871d..3c07c7c3b 100644
--- a/modules/exploits/wanem_command_execution/module.rb
+++ b/modules/exploits/wanem_command_execution/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/wifi_pineapple_csrf/command.js b/modules/exploits/wifi_pineapple_csrf/command.js
index 4d259b7bb..2cae2d3be 100644
--- a/modules/exploits/wifi_pineapple_csrf/command.js
+++ b/modules/exploits/wifi_pineapple_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/wifi_pineapple_csrf/config.yaml b/modules/exploits/wifi_pineapple_csrf/config.yaml
index 9662feaf3..4d7bb0470 100644
--- a/modules/exploits/wifi_pineapple_csrf/config.yaml
+++ b/modules/exploits/wifi_pineapple_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/wifi_pineapple_csrf/module.rb b/modules/exploits/wifi_pineapple_csrf/module.rb
index ec25ab6d4..fdeddb90b 100644
--- a/modules/exploits/wifi_pineapple_csrf/module.rb
+++ b/modules/exploits/wifi_pineapple_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/xss/alienvault_ossim_3.1_xss/command.js b/modules/exploits/xss/alienvault_ossim_3.1_xss/command.js
index a815187cb..60e30e2d6 100644
--- a/modules/exploits/xss/alienvault_ossim_3.1_xss/command.js
+++ b/modules/exploits/xss/alienvault_ossim_3.1_xss/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/xss/alienvault_ossim_3.1_xss/config.yaml b/modules/exploits/xss/alienvault_ossim_3.1_xss/config.yaml
index b82aa90bc..d1c1814d7 100644
--- a/modules/exploits/xss/alienvault_ossim_3.1_xss/config.yaml
+++ b/modules/exploits/xss/alienvault_ossim_3.1_xss/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb b/modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb
index 6ae33a58f..de60db4dd 100644
--- a/modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb
+++ b/modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/xss/cisco_collaboration_server_5_xss/command.js b/modules/exploits/xss/cisco_collaboration_server_5_xss/command.js
index c2b3b75f1..b74251f20 100644
--- a/modules/exploits/xss/cisco_collaboration_server_5_xss/command.js
+++ b/modules/exploits/xss/cisco_collaboration_server_5_xss/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/xss/cisco_collaboration_server_5_xss/config.yaml b/modules/exploits/xss/cisco_collaboration_server_5_xss/config.yaml
index 13032aff1..3b196dc7b 100644
--- a/modules/exploits/xss/cisco_collaboration_server_5_xss/config.yaml
+++ b/modules/exploits/xss/cisco_collaboration_server_5_xss/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb b/modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb
index 27cfd3849..61b0a27ab 100644
--- a/modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb
+++ b/modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/xss/serendipity_1.6_xss/command.js b/modules/exploits/xss/serendipity_1.6_xss/command.js
index bbb70c5f2..f6bc3146e 100644
--- a/modules/exploits/xss/serendipity_1.6_xss/command.js
+++ b/modules/exploits/xss/serendipity_1.6_xss/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/xss/serendipity_1.6_xss/config.yaml b/modules/exploits/xss/serendipity_1.6_xss/config.yaml
index 26c58bd16..05c3bc26e 100644
--- a/modules/exploits/xss/serendipity_1.6_xss/config.yaml
+++ b/modules/exploits/xss/serendipity_1.6_xss/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/xss/serendipity_1.6_xss/module.rb b/modules/exploits/xss/serendipity_1.6_xss/module.rb
index 81420e1fa..d3ee06712 100644
--- a/modules/exploits/xss/serendipity_1.6_xss/module.rb
+++ b/modules/exploits/xss/serendipity_1.6_xss/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/xss/sqlitemanager_xss/command.js b/modules/exploits/xss/sqlitemanager_xss/command.js
index bbb70c5f2..f6bc3146e 100644
--- a/modules/exploits/xss/sqlitemanager_xss/command.js
+++ b/modules/exploits/xss/sqlitemanager_xss/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/xss/sqlitemanager_xss/config.yaml b/modules/exploits/xss/sqlitemanager_xss/config.yaml
index e3a5cd783..4112ee601 100644
--- a/modules/exploits/xss/sqlitemanager_xss/config.yaml
+++ b/modules/exploits/xss/sqlitemanager_xss/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/xss/sqlitemanager_xss/module.rb b/modules/exploits/xss/sqlitemanager_xss/module.rb
index df9982ea3..8c9c68222 100644
--- a/modules/exploits/xss/sqlitemanager_xss/module.rb
+++ b/modules/exploits/xss/sqlitemanager_xss/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zenoss_3x_command_execution/command.js b/modules/exploits/zenoss_3x_command_execution/command.js
index 5d34d20f0..d98f089c2 100644
--- a/modules/exploits/zenoss_3x_command_execution/command.js
+++ b/modules/exploits/zenoss_3x_command_execution/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zenoss_3x_command_execution/config.yaml b/modules/exploits/zenoss_3x_command_execution/config.yaml
index a2ddb2476..d799be0af 100644
--- a/modules/exploits/zenoss_3x_command_execution/config.yaml
+++ b/modules/exploits/zenoss_3x_command_execution/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zenoss_3x_command_execution/module.rb b/modules/exploits/zenoss_3x_command_execution/module.rb
index d69b496a9..267542ea3 100644
--- a/modules/exploits/zenoss_3x_command_execution/module.rb
+++ b/modules/exploits/zenoss_3x_command_execution/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zenoss_add_user_csrf/command.js b/modules/exploits/zenoss_add_user_csrf/command.js
index 4d9e51d20..bb613a913 100644
--- a/modules/exploits/zenoss_add_user_csrf/command.js
+++ b/modules/exploits/zenoss_add_user_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zenoss_add_user_csrf/config.yaml b/modules/exploits/zenoss_add_user_csrf/config.yaml
index a41350a01..144e9ce2d 100644
--- a/modules/exploits/zenoss_add_user_csrf/config.yaml
+++ b/modules/exploits/zenoss_add_user_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zenoss_add_user_csrf/module.rb b/modules/exploits/zenoss_add_user_csrf/module.rb
index dede7272b..72c4b8e91 100644
--- a/modules/exploits/zenoss_add_user_csrf/module.rb
+++ b/modules/exploits/zenoss_add_user_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/command.js
index e4f11bbbc..339886897 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/config.yaml b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/config.yaml
index 03fbae25a..e71906155 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/module.rb
index bfd33de5a..a53add8fb 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js
index 42f1a5825..61c3b25d1 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/config.yaml b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/config.yaml
index 0cb151956..94656b188 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb
index ecd2991fc..501849171 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/command.js
index b9bd26430..7ff47723e 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/config.yaml b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/config.yaml
index 90cbaa639..454711441 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/module.rb
index 61c83d94c..be0dbc3b9 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js
index c327c58bb..7deee471d 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/config.yaml b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/config.yaml
index 476b9938a..3c16a80e3 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb
index 84695d745..02660d7da 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js
index 979d8ceae..831744c36 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/config.yaml b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/config.yaml
index 3e95bdbda..d21b48500 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb
index bd764a831..f7589449b 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/command.js
index b2d7bd559..92bdaebd3 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/config.yaml b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/config.yaml
index 877be1370..5b6cfa159 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/module.rb
index ae89a8c36..91bd54e97 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/command.js
index 4f0e939e0..a4ad1647f 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/config.yaml b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/config.yaml
index 4044d4dfb..8e608d938 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/module.rb
index f31912b14..e2fef0d8a 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js
index 29cc67cef..5b88d50ca 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/config.yaml b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/config.yaml
index 56bf4bf9e..cdb624df4 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb
index 2faca507c..354a8834e 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/clipboard_theft/command.js b/modules/host/clipboard_theft/command.js
index 991b84030..6e58b3133 100644
--- a/modules/host/clipboard_theft/command.js
+++ b/modules/host/clipboard_theft/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/clipboard_theft/config.yaml b/modules/host/clipboard_theft/config.yaml
index a820d4c8f..5d235f9ae 100644
--- a/modules/host/clipboard_theft/config.yaml
+++ b/modules/host/clipboard_theft/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/clipboard_theft/module.rb b/modules/host/clipboard_theft/module.rb
index 2b1b66f2e..a3f7019a4 100644
--- a/modules/host/clipboard_theft/module.rb
+++ b/modules/host/clipboard_theft/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_airdroid/command.js b/modules/host/detect_airdroid/command.js
index 9b92b1823..182b889d6 100644
--- a/modules/host/detect_airdroid/command.js
+++ b/modules/host/detect_airdroid/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_airdroid/config.yaml b/modules/host/detect_airdroid/config.yaml
index 5daba4fa4..3c97dc71a 100644
--- a/modules/host/detect_airdroid/config.yaml
+++ b/modules/host/detect_airdroid/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_airdroid/module.rb b/modules/host/detect_airdroid/module.rb
index c52e59db3..d6694efa9 100644
--- a/modules/host/detect_airdroid/module.rb
+++ b/modules/host/detect_airdroid/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_antivirus/command.js b/modules/host/detect_antivirus/command.js
index 23f9d8b31..d04999d98 100644
--- a/modules/host/detect_antivirus/command.js
+++ b/modules/host/detect_antivirus/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_antivirus/config.yaml b/modules/host/detect_antivirus/config.yaml
index 34cfd3970..b6442c365 100644
--- a/modules/host/detect_antivirus/config.yaml
+++ b/modules/host/detect_antivirus/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_antivirus/module.rb b/modules/host/detect_antivirus/module.rb
index e2901e7cc..58e703433 100644
--- a/modules/host/detect_antivirus/module.rb
+++ b/modules/host/detect_antivirus/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_coupon_printer/command.js b/modules/host/detect_coupon_printer/command.js
index 6d69f8563..497ec5b1a 100644
--- a/modules/host/detect_coupon_printer/command.js
+++ b/modules/host/detect_coupon_printer/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_coupon_printer/config.yaml b/modules/host/detect_coupon_printer/config.yaml
index 5a19042ce..409d718fb 100644
--- a/modules/host/detect_coupon_printer/config.yaml
+++ b/modules/host/detect_coupon_printer/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_coupon_printer/module.rb b/modules/host/detect_coupon_printer/module.rb
index 1c16cc4cd..80dfffe55 100644
--- a/modules/host/detect_coupon_printer/module.rb
+++ b/modules/host/detect_coupon_printer/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_cups/command.js b/modules/host/detect_cups/command.js
index 7091a3303..f1707124a 100644
--- a/modules/host/detect_cups/command.js
+++ b/modules/host/detect_cups/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_cups/config.yaml b/modules/host/detect_cups/config.yaml
index a5408a931..720fe568f 100644
--- a/modules/host/detect_cups/config.yaml
+++ b/modules/host/detect_cups/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_cups/module.rb b/modules/host/detect_cups/module.rb
index 32d0e42e9..e6d347aec 100644
--- a/modules/host/detect_cups/module.rb
+++ b/modules/host/detect_cups/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_default_browser/command.js b/modules/host/detect_default_browser/command.js
index fb5bcf710..0fc429b47 100644
--- a/modules/host/detect_default_browser/command.js
+++ b/modules/host/detect_default_browser/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_default_browser/config.yaml b/modules/host/detect_default_browser/config.yaml
index 98b4a8554..2ed32ece4 100644
--- a/modules/host/detect_default_browser/config.yaml
+++ b/modules/host/detect_default_browser/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_default_browser/module.rb b/modules/host/detect_default_browser/module.rb
index c149cc4ae..3a5dbfcc6 100644
--- a/modules/host/detect_default_browser/module.rb
+++ b/modules/host/detect_default_browser/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_google_desktop/command.js b/modules/host/detect_google_desktop/command.js
index ffd780544..3f1d7e0fd 100644
--- a/modules/host/detect_google_desktop/command.js
+++ b/modules/host/detect_google_desktop/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_google_desktop/config.yaml b/modules/host/detect_google_desktop/config.yaml
index ad96e194d..16bfa0bb5 100644
--- a/modules/host/detect_google_desktop/config.yaml
+++ b/modules/host/detect_google_desktop/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_google_desktop/module.rb b/modules/host/detect_google_desktop/module.rb
index eaaa04571..581d19a5e 100644
--- a/modules/host/detect_google_desktop/module.rb
+++ b/modules/host/detect_google_desktop/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_hp/command.js b/modules/host/detect_hp/command.js
index 9e0b388e5..cba56be2f 100644
--- a/modules/host/detect_hp/command.js
+++ b/modules/host/detect_hp/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_hp/config.yaml b/modules/host/detect_hp/config.yaml
index a5b3e5a24..e7ee9c054 100644
--- a/modules/host/detect_hp/config.yaml
+++ b/modules/host/detect_hp/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_hp/module.rb b/modules/host/detect_hp/module.rb
index e590736b5..88fc6f33b 100644
--- a/modules/host/detect_hp/module.rb
+++ b/modules/host/detect_hp/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_local_drives/command.js b/modules/host/detect_local_drives/command.js
index 3ccd244c7..fc041a309 100644
--- a/modules/host/detect_local_drives/command.js
+++ b/modules/host/detect_local_drives/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_local_drives/config.yaml b/modules/host/detect_local_drives/config.yaml
index f5785b4c2..a7059e877 100644
--- a/modules/host/detect_local_drives/config.yaml
+++ b/modules/host/detect_local_drives/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_local_drives/module.rb b/modules/host/detect_local_drives/module.rb
index 476d51af6..d14de1a62 100644
--- a/modules/host/detect_local_drives/module.rb
+++ b/modules/host/detect_local_drives/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_protocol_handlers/command.js b/modules/host/detect_protocol_handlers/command.js
index 87b60a1b9..2e91bd5ed 100644
--- a/modules/host/detect_protocol_handlers/command.js
+++ b/modules/host/detect_protocol_handlers/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_protocol_handlers/config.yaml b/modules/host/detect_protocol_handlers/config.yaml
index d893aaa94..fbc27811b 100644
--- a/modules/host/detect_protocol_handlers/config.yaml
+++ b/modules/host/detect_protocol_handlers/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_protocol_handlers/module.rb b/modules/host/detect_protocol_handlers/module.rb
index 871dc1a44..6a2133b31 100644
--- a/modules/host/detect_protocol_handlers/module.rb
+++ b/modules/host/detect_protocol_handlers/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_software/command.js b/modules/host/detect_software/command.js
index 0343fbc7e..1e8f78285 100644
--- a/modules/host/detect_software/command.js
+++ b/modules/host/detect_software/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_software/config.yaml b/modules/host/detect_software/config.yaml
index e88a7fab4..c3a8547a7 100644
--- a/modules/host/detect_software/config.yaml
+++ b/modules/host/detect_software/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_software/module.rb b/modules/host/detect_software/module.rb
index cfbb67034..678caf6c6 100644
--- a/modules/host/detect_software/module.rb
+++ b/modules/host/detect_software/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_users/command.js b/modules/host/detect_users/command.js
index e0f7745f6..148c07174 100644
--- a/modules/host/detect_users/command.js
+++ b/modules/host/detect_users/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/detect_users/config.yaml b/modules/host/detect_users/config.yaml
index 2f3a4464e..17c250872 100644
--- a/modules/host/detect_users/config.yaml
+++ b/modules/host/detect_users/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/detect_users/module.rb b/modules/host/detect_users/module.rb
index a3b7fbf21..b444a5fbc 100644
--- a/modules/host/detect_users/module.rb
+++ b/modules/host/detect_users/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_battery_status/command.js b/modules/host/get_battery_status/command.js
index 84bb0207a..3750c84b4 100644
--- a/modules/host/get_battery_status/command.js
+++ b/modules/host/get_battery_status/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/get_battery_status/config.yaml b/modules/host/get_battery_status/config.yaml
index 6397cecdf..84b26e68d 100644
--- a/modules/host/get_battery_status/config.yaml
+++ b/modules/host/get_battery_status/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_battery_status/module.rb b/modules/host/get_battery_status/module.rb
index caab4a3fb..321199ffb 100644
--- a/modules/host/get_battery_status/module.rb
+++ b/modules/host/get_battery_status/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_connection_type/command.js b/modules/host/get_connection_type/command.js
index 1635067b8..88d785a46 100755
--- a/modules/host/get_connection_type/command.js
+++ b/modules/host/get_connection_type/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/get_connection_type/config.yaml b/modules/host/get_connection_type/config.yaml
index afe85b724..0f0a3074b 100755
--- a/modules/host/get_connection_type/config.yaml
+++ b/modules/host/get_connection_type/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_connection_type/module.rb b/modules/host/get_connection_type/module.rb
index d67ee310c..fc0ffd0c9 100755
--- a/modules/host/get_connection_type/module.rb
+++ b/modules/host/get_connection_type/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_internal_ip_java/command.js b/modules/host/get_internal_ip_java/command.js
index 072e5c62c..c55531645 100755
--- a/modules/host/get_internal_ip_java/command.js
+++ b/modules/host/get_internal_ip_java/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/get_internal_ip_java/config.yaml b/modules/host/get_internal_ip_java/config.yaml
index e2b30aaf8..af330a174 100755
--- a/modules/host/get_internal_ip_java/config.yaml
+++ b/modules/host/get_internal_ip_java/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_internal_ip_java/get_internal_ip.java b/modules/host/get_internal_ip_java/get_internal_ip.java
index c0076afd5..3f3d0dd61 100755
--- a/modules/host/get_internal_ip_java/get_internal_ip.java
+++ b/modules/host/get_internal_ip_java/get_internal_ip.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/host/get_internal_ip_java/module.rb b/modules/host/get_internal_ip_java/module.rb
index 33e656f58..e04669457 100755
--- a/modules/host/get_internal_ip_java/module.rb
+++ b/modules/host/get_internal_ip_java/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_internal_ip_webrtc/command.js b/modules/host/get_internal_ip_webrtc/command.js
index 0ac6ef44f..8a3dfcca1 100755
--- a/modules/host/get_internal_ip_webrtc/command.js
+++ b/modules/host/get_internal_ip_webrtc/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/get_internal_ip_webrtc/config.yaml b/modules/host/get_internal_ip_webrtc/config.yaml
index 3845bb2d2..9f3f491b4 100755
--- a/modules/host/get_internal_ip_webrtc/config.yaml
+++ b/modules/host/get_internal_ip_webrtc/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_internal_ip_webrtc/module.rb b/modules/host/get_internal_ip_webrtc/module.rb
index b73273edf..2a9a004b7 100755
--- a/modules/host/get_internal_ip_webrtc/module.rb
+++ b/modules/host/get_internal_ip_webrtc/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_registry_keys/command.js b/modules/host/get_registry_keys/command.js
index 10b6338a5..cb9b6f208 100644
--- a/modules/host/get_registry_keys/command.js
+++ b/modules/host/get_registry_keys/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/get_registry_keys/config.yaml b/modules/host/get_registry_keys/config.yaml
index c75a8c02d..d6667380c 100644
--- a/modules/host/get_registry_keys/config.yaml
+++ b/modules/host/get_registry_keys/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_registry_keys/module.rb b/modules/host/get_registry_keys/module.rb
index ca499b3ab..97bb8e383 100644
--- a/modules/host/get_registry_keys/module.rb
+++ b/modules/host/get_registry_keys/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_system_info_java/command.js b/modules/host/get_system_info_java/command.js
index 92361f859..e12554d25 100644
--- a/modules/host/get_system_info_java/command.js
+++ b/modules/host/get_system_info_java/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/get_system_info_java/config.yaml b/modules/host/get_system_info_java/config.yaml
index 03330e9fb..62bc13639 100644
--- a/modules/host/get_system_info_java/config.yaml
+++ b/modules/host/get_system_info_java/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_system_info_java/getSystemInfo.java b/modules/host/get_system_info_java/getSystemInfo.java
index b00e74a38..fcc13df9d 100644
--- a/modules/host/get_system_info_java/getSystemInfo.java
+++ b/modules/host/get_system_info_java/getSystemInfo.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/host/get_system_info_java/module.rb b/modules/host/get_system_info_java/module.rb
index ce8896bb7..69d8e49b3 100644
--- a/modules/host/get_system_info_java/module.rb
+++ b/modules/host/get_system_info_java/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_wireless_keys/command.js b/modules/host/get_wireless_keys/command.js
index 0d2ccaa5c..8ac129ff8 100644
--- a/modules/host/get_wireless_keys/command.js
+++ b/modules/host/get_wireless_keys/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/host/get_wireless_keys/config.yaml b/modules/host/get_wireless_keys/config.yaml
index 2a1b20c33..ff1243095 100644
--- a/modules/host/get_wireless_keys/config.yaml
+++ b/modules/host/get_wireless_keys/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_wireless_keys/module.rb b/modules/host/get_wireless_keys/module.rb
index 30d415675..3e5f0d93e 100644
--- a/modules/host/get_wireless_keys/module.rb
+++ b/modules/host/get_wireless_keys/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/get_wireless_keys/wirelessZeroConfig.java b/modules/host/get_wireless_keys/wirelessZeroConfig.java
index b2c1ffdcf..10b49bfda 100644
--- a/modules/host/get_wireless_keys/wirelessZeroConfig.java
+++ b/modules/host/get_wireless_keys/wirelessZeroConfig.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/host/hook_default_browser/command.js b/modules/host/hook_default_browser/command.js
index 34a211641..2e7c41cb9 100644
--- a/modules/host/hook_default_browser/command.js
+++ b/modules/host/hook_default_browser/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/hook_default_browser/config.yaml b/modules/host/hook_default_browser/config.yaml
index ee9e3a2c3..b1e57e5ed 100644
--- a/modules/host/hook_default_browser/config.yaml
+++ b/modules/host/hook_default_browser/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/hook_default_browser/module.rb b/modules/host/hook_default_browser/module.rb
index e544bbd8f..d29ce1330 100644
--- a/modules/host/hook_default_browser/module.rb
+++ b/modules/host/hook_default_browser/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/hook_microsoft_edge/command.js b/modules/host/hook_microsoft_edge/command.js
index 2f6ce9107..7038f1aee 100644
--- a/modules/host/hook_microsoft_edge/command.js
+++ b/modules/host/hook_microsoft_edge/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/hook_microsoft_edge/config.yaml b/modules/host/hook_microsoft_edge/config.yaml
index dd41ddc98..a43c999f3 100644
--- a/modules/host/hook_microsoft_edge/config.yaml
+++ b/modules/host/hook_microsoft_edge/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/hook_microsoft_edge/module.rb b/modules/host/hook_microsoft_edge/module.rb
index f4c085da7..68320e845 100644
--- a/modules/host/hook_microsoft_edge/module.rb
+++ b/modules/host/hook_microsoft_edge/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/insecure_url_skype/command.js b/modules/host/insecure_url_skype/command.js
index 039bfbcd3..420a2dcdf 100644
--- a/modules/host/insecure_url_skype/command.js
+++ b/modules/host/insecure_url_skype/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/insecure_url_skype/config.yaml b/modules/host/insecure_url_skype/config.yaml
index a6ab52bcf..3bb7302a4 100644
--- a/modules/host/insecure_url_skype/config.yaml
+++ b/modules/host/insecure_url_skype/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/insecure_url_skype/module.rb b/modules/host/insecure_url_skype/module.rb
index f1ec0bbf2..903686380 100644
--- a/modules/host/insecure_url_skype/module.rb
+++ b/modules/host/insecure_url_skype/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/iphone_tel/command.js b/modules/host/iphone_tel/command.js
index ad9624ef1..215eff128 100644
--- a/modules/host/iphone_tel/command.js
+++ b/modules/host/iphone_tel/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/iphone_tel/config.yaml b/modules/host/iphone_tel/config.yaml
index 5b2c177d3..3719d36bb 100644
--- a/modules/host/iphone_tel/config.yaml
+++ b/modules/host/iphone_tel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/iphone_tel/module.rb b/modules/host/iphone_tel/module.rb
index c7c066dcc..ac800e0ef 100644
--- a/modules/host/iphone_tel/module.rb
+++ b/modules/host/iphone_tel/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/physical_location/command.js b/modules/host/physical_location/command.js
index f3390a1b7..9ed0ffe7d 100644
--- a/modules/host/physical_location/command.js
+++ b/modules/host/physical_location/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/physical_location/config.yaml b/modules/host/physical_location/config.yaml
index e32caffe4..7a152b9c1 100644
--- a/modules/host/physical_location/config.yaml
+++ b/modules/host/physical_location/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/physical_location/module.rb b/modules/host/physical_location/module.rb
index 09cc3b9aa..50eda06a5 100644
--- a/modules/host/physical_location/module.rb
+++ b/modules/host/physical_location/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/physical_location_thirdparty/command.js b/modules/host/physical_location_thirdparty/command.js
index 14cf296b3..72c195729 100644
--- a/modules/host/physical_location_thirdparty/command.js
+++ b/modules/host/physical_location_thirdparty/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/host/physical_location_thirdparty/config.yaml b/modules/host/physical_location_thirdparty/config.yaml
index eacf1e3d5..d279a2e10 100644
--- a/modules/host/physical_location_thirdparty/config.yaml
+++ b/modules/host/physical_location_thirdparty/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/host/physical_location_thirdparty/module.rb b/modules/host/physical_location_thirdparty/module.rb
index 5bcfbdaa8..953c0940e 100644
--- a/modules/host/physical_location_thirdparty/module.rb
+++ b/modules/host/physical_location_thirdparty/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/cross_site_faxing/command.js b/modules/ipec/cross_site_faxing/command.js
index f80f07316..54f0ee039 100644
--- a/modules/ipec/cross_site_faxing/command.js
+++ b/modules/ipec/cross_site_faxing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/cross_site_faxing/config.yaml b/modules/ipec/cross_site_faxing/config.yaml
index 012ffc8d6..0925e528f 100644
--- a/modules/ipec/cross_site_faxing/config.yaml
+++ b/modules/ipec/cross_site_faxing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/cross_site_faxing/module.rb b/modules/ipec/cross_site_faxing/module.rb
index 290e33cfb..b96d9f2f0 100644
--- a/modules/ipec/cross_site_faxing/module.rb
+++ b/modules/ipec/cross_site_faxing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/cross_site_printing/command.js b/modules/ipec/cross_site_printing/command.js
index 0f9296dd9..aceec820b 100644
--- a/modules/ipec/cross_site_printing/command.js
+++ b/modules/ipec/cross_site_printing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/cross_site_printing/config.yaml b/modules/ipec/cross_site_printing/config.yaml
index 9f9933d3e..49d9f65da 100644
--- a/modules/ipec/cross_site_printing/config.yaml
+++ b/modules/ipec/cross_site_printing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/cross_site_printing/module.rb b/modules/ipec/cross_site_printing/module.rb
index 9fe942a60..7ef10f0f2 100644
--- a/modules/ipec/cross_site_printing/module.rb
+++ b/modules/ipec/cross_site_printing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/dns_tunnel/command.js b/modules/ipec/dns_tunnel/command.js
index 917d6a7f2..e66150144 100644
--- a/modules/ipec/dns_tunnel/command.js
+++ b/modules/ipec/dns_tunnel/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/dns_tunnel/config.yaml b/modules/ipec/dns_tunnel/config.yaml
index fc177a39c..901e9fb8e 100644
--- a/modules/ipec/dns_tunnel/config.yaml
+++ b/modules/ipec/dns_tunnel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/dns_tunnel/module.rb b/modules/ipec/dns_tunnel/module.rb
index 34b7a2241..62ea54b25 100644
--- a/modules/ipec/dns_tunnel/module.rb
+++ b/modules/ipec/dns_tunnel/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/etag_client/command.js b/modules/ipec/etag_client/command.js
index 18c576558..372a7280d 100644
--- a/modules/ipec/etag_client/command.js
+++ b/modules/ipec/etag_client/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/etag_client/config.yaml b/modules/ipec/etag_client/config.yaml
index 5572e20c5..da93f2ad2 100644
--- a/modules/ipec/etag_client/config.yaml
+++ b/modules/ipec/etag_client/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/etag_client/module.rb b/modules/ipec/etag_client/module.rb
index cf481aa93..5a632cf1e 100644
--- a/modules/ipec/etag_client/module.rb
+++ b/modules/ipec/etag_client/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_imap/command.js b/modules/ipec/inter_protocol_imap/command.js
index 7be1471f8..c8a394ae2 100644
--- a/modules/ipec/inter_protocol_imap/command.js
+++ b/modules/ipec/inter_protocol_imap/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/inter_protocol_imap/config.yaml b/modules/ipec/inter_protocol_imap/config.yaml
index bcbfd8893..66376483d 100644
--- a/modules/ipec/inter_protocol_imap/config.yaml
+++ b/modules/ipec/inter_protocol_imap/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_imap/module.rb b/modules/ipec/inter_protocol_imap/module.rb
index dea1a30ea..9367c16ab 100644
--- a/modules/ipec/inter_protocol_imap/module.rb
+++ b/modules/ipec/inter_protocol_imap/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_irc/command.js b/modules/ipec/inter_protocol_irc/command.js
index eb145bf6f..cd1931619 100644
--- a/modules/ipec/inter_protocol_irc/command.js
+++ b/modules/ipec/inter_protocol_irc/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/inter_protocol_irc/config.yaml b/modules/ipec/inter_protocol_irc/config.yaml
index 6468358b0..57c2e65a7 100644
--- a/modules/ipec/inter_protocol_irc/config.yaml
+++ b/modules/ipec/inter_protocol_irc/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_irc/module.rb b/modules/ipec/inter_protocol_irc/module.rb
index 904b617b4..afb797274 100644
--- a/modules/ipec/inter_protocol_irc/module.rb
+++ b/modules/ipec/inter_protocol_irc/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_posix_bindshell/command.js b/modules/ipec/inter_protocol_posix_bindshell/command.js
index 9a6c8403c..57cf783af 100644
--- a/modules/ipec/inter_protocol_posix_bindshell/command.js
+++ b/modules/ipec/inter_protocol_posix_bindshell/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/inter_protocol_posix_bindshell/config.yaml b/modules/ipec/inter_protocol_posix_bindshell/config.yaml
index bb6c584b2..4f4fd080c 100644
--- a/modules/ipec/inter_protocol_posix_bindshell/config.yaml
+++ b/modules/ipec/inter_protocol_posix_bindshell/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_posix_bindshell/module.rb b/modules/ipec/inter_protocol_posix_bindshell/module.rb
index eab391985..58016facb 100644
--- a/modules/ipec/inter_protocol_posix_bindshell/module.rb
+++ b/modules/ipec/inter_protocol_posix_bindshell/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_redis/command.js b/modules/ipec/inter_protocol_redis/command.js
index 299d611d5..6765c8445 100644
--- a/modules/ipec/inter_protocol_redis/command.js
+++ b/modules/ipec/inter_protocol_redis/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/inter_protocol_redis/config.yaml b/modules/ipec/inter_protocol_redis/config.yaml
index bfc7a6421..d07929f53 100644
--- a/modules/ipec/inter_protocol_redis/config.yaml
+++ b/modules/ipec/inter_protocol_redis/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_redis/module.rb b/modules/ipec/inter_protocol_redis/module.rb
index 3d03d5dcb..ecd320eee 100644
--- a/modules/ipec/inter_protocol_redis/module.rb
+++ b/modules/ipec/inter_protocol_redis/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_win_bindshell/command.js b/modules/ipec/inter_protocol_win_bindshell/command.js
index 67481c750..557ccb2fe 100644
--- a/modules/ipec/inter_protocol_win_bindshell/command.js
+++ b/modules/ipec/inter_protocol_win_bindshell/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/inter_protocol_win_bindshell/command.old.js b/modules/ipec/inter_protocol_win_bindshell/command.old.js
index d90236b53..74ff97c7c 100644
--- a/modules/ipec/inter_protocol_win_bindshell/command.old.js
+++ b/modules/ipec/inter_protocol_win_bindshell/command.old.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/inter_protocol_win_bindshell/config.yaml b/modules/ipec/inter_protocol_win_bindshell/config.yaml
index 84806b2a4..58698a453 100644
--- a/modules/ipec/inter_protocol_win_bindshell/config.yaml
+++ b/modules/ipec/inter_protocol_win_bindshell/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/inter_protocol_win_bindshell/module.rb b/modules/ipec/inter_protocol_win_bindshell/module.rb
index 46c62ea02..bc8c72512 100644
--- a/modules/ipec/inter_protocol_win_bindshell/module.rb
+++ b/modules/ipec/inter_protocol_win_bindshell/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/s2c_dns_tunnel/command.js b/modules/ipec/s2c_dns_tunnel/command.js
index 1fbd3c0d0..ce5273fbe 100644
--- a/modules/ipec/s2c_dns_tunnel/command.js
+++ b/modules/ipec/s2c_dns_tunnel/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/ipec/s2c_dns_tunnel/config.yaml b/modules/ipec/s2c_dns_tunnel/config.yaml
index 9ea9e3d16..b1f7fb2ef 100644
--- a/modules/ipec/s2c_dns_tunnel/config.yaml
+++ b/modules/ipec/s2c_dns_tunnel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/ipec/s2c_dns_tunnel/module.rb b/modules/ipec/s2c_dns_tunnel/module.rb
index 00b6a48e4..1b32b4f78 100644
--- a/modules/ipec/s2c_dns_tunnel/module.rb
+++ b/modules/ipec/s2c_dns_tunnel/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/metasploit/browser_autopwn/command.js b/modules/metasploit/browser_autopwn/command.js
index 08faf98c7..5d941c2a2 100644
--- a/modules/metasploit/browser_autopwn/command.js
+++ b/modules/metasploit/browser_autopwn/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/metasploit/browser_autopwn/config.yaml b/modules/metasploit/browser_autopwn/config.yaml
index 71ad78c07..37e0839a4 100644
--- a/modules/metasploit/browser_autopwn/config.yaml
+++ b/modules/metasploit/browser_autopwn/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/metasploit/browser_autopwn/module.rb b/modules/metasploit/browser_autopwn/module.rb
index c0b441b4a..afd8f7386 100644
--- a/modules/metasploit/browser_autopwn/module.rb
+++ b/modules/metasploit/browser_autopwn/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/blockui/command.js b/modules/misc/blockui/command.js
index 65821b461..c2c95f617 100644
--- a/modules/misc/blockui/command.js
+++ b/modules/misc/blockui/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/blockui/config.yaml b/modules/misc/blockui/config.yaml
index 70546856f..1f070b779 100644
--- a/modules/misc/blockui/config.yaml
+++ b/modules/misc/blockui/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/blockui/module.rb b/modules/misc/blockui/module.rb
index 7405df105..2bdb01525 100644
--- a/modules/misc/blockui/module.rb
+++ b/modules/misc/blockui/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/ibm_inotes/extract_inotes_list/command.js b/modules/misc/ibm_inotes/extract_inotes_list/command.js
index 39cd7756f..579c3a1ab 100644
--- a/modules/misc/ibm_inotes/extract_inotes_list/command.js
+++ b/modules/misc/ibm_inotes/extract_inotes_list/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/extract_inotes_list/config.yaml b/modules/misc/ibm_inotes/extract_inotes_list/config.yaml
index fc575a444..8552d9126 100644
--- a/modules/misc/ibm_inotes/extract_inotes_list/config.yaml
+++ b/modules/misc/ibm_inotes/extract_inotes_list/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/extract_inotes_list/module.rb b/modules/misc/ibm_inotes/extract_inotes_list/module.rb
index da8abb0f0..439747ba0 100644
--- a/modules/misc/ibm_inotes/extract_inotes_list/module.rb
+++ b/modules/misc/ibm_inotes/extract_inotes_list/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/inotes_flooder/command.js b/modules/misc/ibm_inotes/inotes_flooder/command.js
index f1f02ed13..ce7317913 100644
--- a/modules/misc/ibm_inotes/inotes_flooder/command.js
+++ b/modules/misc/ibm_inotes/inotes_flooder/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/inotes_flooder/config.yaml b/modules/misc/ibm_inotes/inotes_flooder/config.yaml
index eec8b1d39..ddb343c95 100644
--- a/modules/misc/ibm_inotes/inotes_flooder/config.yaml
+++ b/modules/misc/ibm_inotes/inotes_flooder/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/inotes_flooder/module.rb b/modules/misc/ibm_inotes/inotes_flooder/module.rb
index 218449ea4..e5db42f0c 100644
--- a/modules/misc/ibm_inotes/inotes_flooder/module.rb
+++ b/modules/misc/ibm_inotes/inotes_flooder/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/read_inotes/command.js b/modules/misc/ibm_inotes/read_inotes/command.js
index 5cecee6ec..ba256afbf 100644
--- a/modules/misc/ibm_inotes/read_inotes/command.js
+++ b/modules/misc/ibm_inotes/read_inotes/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/read_inotes/config.yaml b/modules/misc/ibm_inotes/read_inotes/config.yaml
index 4b9b64daa..40a90bbf8 100644
--- a/modules/misc/ibm_inotes/read_inotes/config.yaml
+++ b/modules/misc/ibm_inotes/read_inotes/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/read_inotes/module.rb b/modules/misc/ibm_inotes/read_inotes/module.rb
index 2d7f12d4c..32ceadfc0 100644
--- a/modules/misc/ibm_inotes/read_inotes/module.rb
+++ b/modules/misc/ibm_inotes/read_inotes/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/send_inotes/command.js b/modules/misc/ibm_inotes/send_inotes/command.js
index bbb0fd72b..4b0526cca 100644
--- a/modules/misc/ibm_inotes/send_inotes/command.js
+++ b/modules/misc/ibm_inotes/send_inotes/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/send_inotes/config.yaml b/modules/misc/ibm_inotes/send_inotes/config.yaml
index aef6fb1a1..d333bb299 100644
--- a/modules/misc/ibm_inotes/send_inotes/config.yaml
+++ b/modules/misc/ibm_inotes/send_inotes/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/send_inotes/module.rb b/modules/misc/ibm_inotes/send_inotes/module.rb
index 70b682e54..fd0661538 100644
--- a/modules/misc/ibm_inotes/send_inotes/module.rb
+++ b/modules/misc/ibm_inotes/send_inotes/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/send_inotes_with_attachment/command.js b/modules/misc/ibm_inotes/send_inotes_with_attachment/command.js
index d875e6e97..3ef0f84c0 100644
--- a/modules/misc/ibm_inotes/send_inotes_with_attachment/command.js
+++ b/modules/misc/ibm_inotes/send_inotes_with_attachment/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/send_inotes_with_attachment/config.yaml b/modules/misc/ibm_inotes/send_inotes_with_attachment/config.yaml
index 5f7090cf1..b005d6c73 100644
--- a/modules/misc/ibm_inotes/send_inotes_with_attachment/config.yaml
+++ b/modules/misc/ibm_inotes/send_inotes_with_attachment/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/ibm_inotes/send_inotes_with_attachment/module.rb b/modules/misc/ibm_inotes/send_inotes_with_attachment/module.rb
index 2e35903fd..c44681be6 100644
--- a/modules/misc/ibm_inotes/send_inotes_with_attachment/module.rb
+++ b/modules/misc/ibm_inotes/send_inotes_with_attachment/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/iframe_keylogger/command.js b/modules/misc/iframe_keylogger/command.js
index 5516a8472..8bec3e7f0 100644
--- a/modules/misc/iframe_keylogger/command.js
+++ b/modules/misc/iframe_keylogger/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/iframe_keylogger/config.yaml b/modules/misc/iframe_keylogger/config.yaml
index 1cc8a9b9c..30e9ebe4b 100644
--- a/modules/misc/iframe_keylogger/config.yaml
+++ b/modules/misc/iframe_keylogger/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/iframe_keylogger/module.rb b/modules/misc/iframe_keylogger/module.rb
index 2485c1f45..f39fdbeac 100644
--- a/modules/misc/iframe_keylogger/module.rb
+++ b/modules/misc/iframe_keylogger/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/iframe_sniffer/command.js b/modules/misc/iframe_sniffer/command.js
index c8bb4d457..9e4d31705 100644
--- a/modules/misc/iframe_sniffer/command.js
+++ b/modules/misc/iframe_sniffer/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/iframe_sniffer/config.yaml b/modules/misc/iframe_sniffer/config.yaml
index fca9f9e69..347541c61 100644
--- a/modules/misc/iframe_sniffer/config.yaml
+++ b/modules/misc/iframe_sniffer/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/iframe_sniffer/module.rb b/modules/misc/iframe_sniffer/module.rb
index 69a8b9a7d..64e473413 100644
--- a/modules/misc/iframe_sniffer/module.rb
+++ b/modules/misc/iframe_sniffer/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/invisible_iframe/command.js b/modules/misc/invisible_iframe/command.js
index 07ad688e7..5a008208e 100644
--- a/modules/misc/invisible_iframe/command.js
+++ b/modules/misc/invisible_iframe/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/invisible_iframe/config.yaml b/modules/misc/invisible_iframe/config.yaml
index 2b293710d..decbc35e8 100644
--- a/modules/misc/invisible_iframe/config.yaml
+++ b/modules/misc/invisible_iframe/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/invisible_iframe/module.rb b/modules/misc/invisible_iframe/module.rb
index 5635e9551..476e66b2a 100644
--- a/modules/misc/invisible_iframe/module.rb
+++ b/modules/misc/invisible_iframe/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/local_file_theft/command.js b/modules/misc/local_file_theft/command.js
index 5f281bd9b..7be9339f8 100644
--- a/modules/misc/local_file_theft/command.js
+++ b/modules/misc/local_file_theft/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/local_file_theft/config.yaml b/modules/misc/local_file_theft/config.yaml
index b38eb419b..503a84b48 100644
--- a/modules/misc/local_file_theft/config.yaml
+++ b/modules/misc/local_file_theft/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/local_file_theft/module.rb b/modules/misc/local_file_theft/module.rb
index 9719672fb..73459c860 100644
--- a/modules/misc/local_file_theft/module.rb
+++ b/modules/misc/local_file_theft/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/nosleep/command.js b/modules/misc/nosleep/command.js
index 5a9a556bb..fd82273d7 100644
--- a/modules/misc/nosleep/command.js
+++ b/modules/misc/nosleep/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/nosleep/config.yaml b/modules/misc/nosleep/config.yaml
index 459346da9..74fb47c4e 100644
--- a/modules/misc/nosleep/config.yaml
+++ b/modules/misc/nosleep/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/nosleep/module.rb b/modules/misc/nosleep/module.rb
index 0a83a2125..2f3289e07 100644
--- a/modules/misc/nosleep/module.rb
+++ b/modules/misc/nosleep/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/raw_javascript/command.js b/modules/misc/raw_javascript/command.js
index cdff49ae8..6ce9be721 100644
--- a/modules/misc/raw_javascript/command.js
+++ b/modules/misc/raw_javascript/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/raw_javascript/config.yaml b/modules/misc/raw_javascript/config.yaml
index 1077fa855..a8575ab08 100644
--- a/modules/misc/raw_javascript/config.yaml
+++ b/modules/misc/raw_javascript/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/raw_javascript/module.rb b/modules/misc/raw_javascript/module.rb
index 1e3cd1220..b800b7086 100644
--- a/modules/misc/raw_javascript/module.rb
+++ b/modules/misc/raw_javascript/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/read_gmail/command.js b/modules/misc/read_gmail/command.js
index 1d2fb1ba1..472380773 100644
--- a/modules/misc/read_gmail/command.js
+++ b/modules/misc/read_gmail/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
diff --git a/modules/misc/read_gmail/config.yaml b/modules/misc/read_gmail/config.yaml
index eef698b8b..75ac9657b 100644
--- a/modules/misc/read_gmail/config.yaml
+++ b/modules/misc/read_gmail/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/read_gmail/module.rb b/modules/misc/read_gmail/module.rb
index 0c822af70..fb05287d0 100644
--- a/modules/misc/read_gmail/module.rb
+++ b/modules/misc/read_gmail/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2026Wade Alcorn wade@bindshell.net
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/modules/misc/track_physical_movement/command.js b/modules/misc/track_physical_movement/command.js
index 194c1c39f..d11be50fb 100644
--- a/modules/misc/track_physical_movement/command.js
+++ b/modules/misc/track_physical_movement/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/track_physical_movement/config.yaml b/modules/misc/track_physical_movement/config.yaml
index 8b1073074..5004fbc16 100644
--- a/modules/misc/track_physical_movement/config.yaml
+++ b/modules/misc/track_physical_movement/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/track_physical_movement/module.rb b/modules/misc/track_physical_movement/module.rb
index 78adec5b1..143890734 100644
--- a/modules/misc/track_physical_movement/module.rb
+++ b/modules/misc/track_physical_movement/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/unblockui/command.js b/modules/misc/unblockui/command.js
index 18fd3ac82..04f500700 100644
--- a/modules/misc/unblockui/command.js
+++ b/modules/misc/unblockui/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/unblockui/config.yaml b/modules/misc/unblockui/config.yaml
index dd9174244..938c6fa69 100644
--- a/modules/misc/unblockui/config.yaml
+++ b/modules/misc/unblockui/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/unblockui/module.rb b/modules/misc/unblockui/module.rb
index d1f2bed8e..4aa9b3cbb 100644
--- a/modules/misc/unblockui/module.rb
+++ b/modules/misc/unblockui/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/wordpress/upload_rce_plugin/beefbind.php b/modules/misc/wordpress/upload_rce_plugin/beefbind.php
index fdbd9c6d6..acd537c6d 100644
--- a/modules/misc/wordpress/upload_rce_plugin/beefbind.php
+++ b/modules/misc/wordpress/upload_rce_plugin/beefbind.php
@@ -6,7 +6,7 @@
  * Version: 1.1
  * Authors: Bart Leppens, Erwan LR (@erwan_lr | WPScanTeam)
  * Author URI: https://twitter.com/bmantra
- * License: Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net - Browser Exploitation Framework (BeEF) - https://beefproject.com - See the file 'doc/COPYING' for copying permission
+ * License: Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net - Browser Exploitation Framework (BeEF) - https://beefproject.com - See the file 'doc/COPYING' for copying permission
 **/
 
 header("Access-Control-Allow-Origin: *");
diff --git a/modules/misc/wordpress/upload_rce_plugin/config.yaml b/modules/misc/wordpress/upload_rce_plugin/config.yaml
index 28e2dfa91..77932dcd7 100644
--- a/modules/misc/wordpress/upload_rce_plugin/config.yaml
+++ b/modules/misc/wordpress/upload_rce_plugin/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/wordpress_post_auth_rce/command.js b/modules/misc/wordpress_post_auth_rce/command.js
index 802a8070d..b9281216e 100644
--- a/modules/misc/wordpress_post_auth_rce/command.js
+++ b/modules/misc/wordpress_post_auth_rce/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/misc/wordpress_post_auth_rce/config.yaml b/modules/misc/wordpress_post_auth_rce/config.yaml
index de16e3c22..8d81ec6c0 100644
--- a/modules/misc/wordpress_post_auth_rce/config.yaml
+++ b/modules/misc/wordpress_post_auth_rce/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/misc/wordpress_post_auth_rce/module.rb b/modules/misc/wordpress_post_auth_rce/module.rb
index 2549e2fb9..5b1914fc3 100644
--- a/modules/misc/wordpress_post_auth_rce/module.rb
+++ b/modules/misc/wordpress_post_auth_rce/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ADC/f5_bigip_cookie_disclosure/command.js b/modules/network/ADC/f5_bigip_cookie_disclosure/command.js
index 261f175ec..9c0c43b9c 100644
--- a/modules/network/ADC/f5_bigip_cookie_disclosure/command.js
+++ b/modules/network/ADC/f5_bigip_cookie_disclosure/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/ADC/f5_bigip_cookie_disclosure/config.yaml b/modules/network/ADC/f5_bigip_cookie_disclosure/config.yaml
index f18b8902f..5eed82313 100644
--- a/modules/network/ADC/f5_bigip_cookie_disclosure/config.yaml
+++ b/modules/network/ADC/f5_bigip_cookie_disclosure/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb b/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb
index db1121ce5..2e26d6680 100644
--- a/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb
+++ b/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ADC/f5_bigip_cookie_stealing/command.js b/modules/network/ADC/f5_bigip_cookie_stealing/command.js
index b65e7a6cf..cd16d483b 100644
--- a/modules/network/ADC/f5_bigip_cookie_stealing/command.js
+++ b/modules/network/ADC/f5_bigip_cookie_stealing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/ADC/f5_bigip_cookie_stealing/config.yaml b/modules/network/ADC/f5_bigip_cookie_stealing/config.yaml
index 30700186b..ec304f8c0 100644
--- a/modules/network/ADC/f5_bigip_cookie_stealing/config.yaml
+++ b/modules/network/ADC/f5_bigip_cookie_stealing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ADC/f5_bigip_cookie_stealing/module.rb b/modules/network/ADC/f5_bigip_cookie_stealing/module.rb
index 916b1e525..275264e3d 100644
--- a/modules/network/ADC/f5_bigip_cookie_stealing/module.rb
+++ b/modules/network/ADC/f5_bigip_cookie_stealing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/DOSer/command.js b/modules/network/DOSer/command.js
index f8432a206..e542c2222 100644
--- a/modules/network/DOSer/command.js
+++ b/modules/network/DOSer/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/DOSer/config.yaml b/modules/network/DOSer/config.yaml
index 7c0b1f722..d3b89d86a 100644
--- a/modules/network/DOSer/config.yaml
+++ b/modules/network/DOSer/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/DOSer/module.rb b/modules/network/DOSer/module.rb
index 4c02214b5..4c6e138fc 100644
--- a/modules/network/DOSer/module.rb
+++ b/modules/network/DOSer/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/cross_origin_scanner_cors/command.js b/modules/network/cross_origin_scanner_cors/command.js
index 6bf67fd4f..bb4049f0c 100644
--- a/modules/network/cross_origin_scanner_cors/command.js
+++ b/modules/network/cross_origin_scanner_cors/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/cross_origin_scanner_cors/config.yaml b/modules/network/cross_origin_scanner_cors/config.yaml
index ad697fe45..b15b4f388 100644
--- a/modules/network/cross_origin_scanner_cors/config.yaml
+++ b/modules/network/cross_origin_scanner_cors/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/cross_origin_scanner_cors/module.rb b/modules/network/cross_origin_scanner_cors/module.rb
index c4996b187..9e514303e 100644
--- a/modules/network/cross_origin_scanner_cors/module.rb
+++ b/modules/network/cross_origin_scanner_cors/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/cross_origin_scanner_flash/command.js b/modules/network/cross_origin_scanner_flash/command.js
index 5d55bfd63..a075f6920 100644
--- a/modules/network/cross_origin_scanner_flash/command.js
+++ b/modules/network/cross_origin_scanner_flash/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/cross_origin_scanner_flash/config.yaml b/modules/network/cross_origin_scanner_flash/config.yaml
index 406b86b3f..736fb96cb 100644
--- a/modules/network/cross_origin_scanner_flash/config.yaml
+++ b/modules/network/cross_origin_scanner_flash/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/cross_origin_scanner_flash/module.rb b/modules/network/cross_origin_scanner_flash/module.rb
index 181dfa93b..bb3c8c4cc 100644
--- a/modules/network/cross_origin_scanner_flash/module.rb
+++ b/modules/network/cross_origin_scanner_flash/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_burp/command.js b/modules/network/detect_burp/command.js
index 72c2a0fdf..8f90ab123 100644
--- a/modules/network/detect_burp/command.js
+++ b/modules/network/detect_burp/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/detect_burp/config.yaml b/modules/network/detect_burp/config.yaml
index 23910cea4..a1bfa0271 100644
--- a/modules/network/detect_burp/config.yaml
+++ b/modules/network/detect_burp/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_burp/module.rb b/modules/network/detect_burp/module.rb
index e3090c533..28a6e9b5b 100644
--- a/modules/network/detect_burp/module.rb
+++ b/modules/network/detect_burp/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_ethereum_ens/command.js b/modules/network/detect_ethereum_ens/command.js
index 3c16d9fb0..a989d4be0 100644
--- a/modules/network/detect_ethereum_ens/command.js
+++ b/modules/network/detect_ethereum_ens/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/detect_ethereum_ens/config.yaml b/modules/network/detect_ethereum_ens/config.yaml
index 275390484..a2dcccbcf 100644
--- a/modules/network/detect_ethereum_ens/config.yaml
+++ b/modules/network/detect_ethereum_ens/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_ethereum_ens/module.rb b/modules/network/detect_ethereum_ens/module.rb
index 6246056f7..c3b05fb67 100644
--- a/modules/network/detect_ethereum_ens/module.rb
+++ b/modules/network/detect_ethereum_ens/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_opennic/command.js b/modules/network/detect_opennic/command.js
index fefa3ba3f..0e9771dc9 100644
--- a/modules/network/detect_opennic/command.js
+++ b/modules/network/detect_opennic/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/detect_opennic/config.yaml b/modules/network/detect_opennic/config.yaml
index 53e3cbe6f..04a56b0c4 100644
--- a/modules/network/detect_opennic/config.yaml
+++ b/modules/network/detect_opennic/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_opennic/module.rb b/modules/network/detect_opennic/module.rb
index dfc916de3..92efa9fdf 100644
--- a/modules/network/detect_opennic/module.rb
+++ b/modules/network/detect_opennic/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_soc_nets/command.js b/modules/network/detect_soc_nets/command.js
index 004bf8057..8922ba01a 100644
--- a/modules/network/detect_soc_nets/command.js
+++ b/modules/network/detect_soc_nets/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/detect_soc_nets/config.yaml b/modules/network/detect_soc_nets/config.yaml
index b8f5218bc..6e42d63bb 100644
--- a/modules/network/detect_soc_nets/config.yaml
+++ b/modules/network/detect_soc_nets/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_soc_nets/module.rb b/modules/network/detect_soc_nets/module.rb
index c767526bf..54b399b76 100644
--- a/modules/network/detect_soc_nets/module.rb
+++ b/modules/network/detect_soc_nets/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_tor/command.js b/modules/network/detect_tor/command.js
index 727c51c4a..1fecff7d1 100644
--- a/modules/network/detect_tor/command.js
+++ b/modules/network/detect_tor/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/detect_tor/config.yaml b/modules/network/detect_tor/config.yaml
index fb8489ffa..e7eef8021 100644
--- a/modules/network/detect_tor/config.yaml
+++ b/modules/network/detect_tor/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/detect_tor/module.rb b/modules/network/detect_tor/module.rb
index 92aad0903..27db5f135 100644
--- a/modules/network/detect_tor/module.rb
+++ b/modules/network/detect_tor/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/dns_enumeration/command.js b/modules/network/dns_enumeration/command.js
index 64df30dff..26196469d 100644
--- a/modules/network/dns_enumeration/command.js
+++ b/modules/network/dns_enumeration/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/dns_enumeration/config.yaml b/modules/network/dns_enumeration/config.yaml
index a3993d6a3..18fbb971f 100644
--- a/modules/network/dns_enumeration/config.yaml
+++ b/modules/network/dns_enumeration/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/dns_enumeration/module.rb b/modules/network/dns_enumeration/module.rb
index 1f784eeec..6b9027dba 100644
--- a/modules/network/dns_enumeration/module.rb
+++ b/modules/network/dns_enumeration/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/dns_rebinding/command.js b/modules/network/dns_rebinding/command.js
index 0ff037f52..c993652db 100644
--- a/modules/network/dns_rebinding/command.js
+++ b/modules/network/dns_rebinding/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/dns_rebinding/config.yaml b/modules/network/dns_rebinding/config.yaml
index 658653986..5ae3db3e6 100644
--- a/modules/network/dns_rebinding/config.yaml
+++ b/modules/network/dns_rebinding/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/dns_rebinding/module.rb b/modules/network/dns_rebinding/module.rb
index 3feea2a20..1da64d1c4 100644
--- a/modules/network/dns_rebinding/module.rb
+++ b/modules/network/dns_rebinding/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/fetch_port_scanner/command.js b/modules/network/fetch_port_scanner/command.js
index 5e0642c80..ba4c9f521 100644
--- a/modules/network/fetch_port_scanner/command.js
+++ b/modules/network/fetch_port_scanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/fetch_port_scanner/config.yaml b/modules/network/fetch_port_scanner/config.yaml
index 4ee71a708..234fd1fbc 100644
--- a/modules/network/fetch_port_scanner/config.yaml
+++ b/modules/network/fetch_port_scanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/fetch_port_scanner/module.rb b/modules/network/fetch_port_scanner/module.rb
index 9eeac586d..67fc990e2 100644
--- a/modules/network/fetch_port_scanner/module.rb
+++ b/modules/network/fetch_port_scanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/get_http_servers/command.js b/modules/network/get_http_servers/command.js
index 3d23bea03..19bf9aa1d 100644
--- a/modules/network/get_http_servers/command.js
+++ b/modules/network/get_http_servers/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/get_http_servers/config.yaml b/modules/network/get_http_servers/config.yaml
index f5c2adefc..b595357a7 100644
--- a/modules/network/get_http_servers/config.yaml
+++ b/modules/network/get_http_servers/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/get_http_servers/module.rb b/modules/network/get_http_servers/module.rb
index ce5eb9e99..de4fbbfdd 100644
--- a/modules/network/get_http_servers/module.rb
+++ b/modules/network/get_http_servers/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/get_ntop_network_hosts/command.js b/modules/network/get_ntop_network_hosts/command.js
index 093dd16c1..38104bc63 100644
--- a/modules/network/get_ntop_network_hosts/command.js
+++ b/modules/network/get_ntop_network_hosts/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/get_ntop_network_hosts/config.yaml b/modules/network/get_ntop_network_hosts/config.yaml
index 4852e4b7b..130c833c3 100644
--- a/modules/network/get_ntop_network_hosts/config.yaml
+++ b/modules/network/get_ntop_network_hosts/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/get_ntop_network_hosts/module.rb b/modules/network/get_ntop_network_hosts/module.rb
index d1a92fa9a..8376e8f9f 100644
--- a/modules/network/get_ntop_network_hosts/module.rb
+++ b/modules/network/get_ntop_network_hosts/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/get_proxy_servers_wpad/command.js b/modules/network/get_proxy_servers_wpad/command.js
index a130d592f..b06631533 100644
--- a/modules/network/get_proxy_servers_wpad/command.js
+++ b/modules/network/get_proxy_servers_wpad/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/get_proxy_servers_wpad/config.yaml b/modules/network/get_proxy_servers_wpad/config.yaml
index 8e3f60602..7f1f85786 100644
--- a/modules/network/get_proxy_servers_wpad/config.yaml
+++ b/modules/network/get_proxy_servers_wpad/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/get_proxy_servers_wpad/module.rb b/modules/network/get_proxy_servers_wpad/module.rb
index de084ccc0..458440d6b 100644
--- a/modules/network/get_proxy_servers_wpad/module.rb
+++ b/modules/network/get_proxy_servers_wpad/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/identify_lan_subnets/command.js b/modules/network/identify_lan_subnets/command.js
index 350afd271..ad0cb8b39 100644
--- a/modules/network/identify_lan_subnets/command.js
+++ b/modules/network/identify_lan_subnets/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/identify_lan_subnets/config.yaml b/modules/network/identify_lan_subnets/config.yaml
index e4c36daa1..ea70493f1 100644
--- a/modules/network/identify_lan_subnets/config.yaml
+++ b/modules/network/identify_lan_subnets/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/identify_lan_subnets/module.rb b/modules/network/identify_lan_subnets/module.rb
index 6f0a37b17..c4f255636 100644
--- a/modules/network/identify_lan_subnets/module.rb
+++ b/modules/network/identify_lan_subnets/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/internal_network_fingerprinting/command.js b/modules/network/internal_network_fingerprinting/command.js
index 9e95be406..089f8b134 100644
--- a/modules/network/internal_network_fingerprinting/command.js
+++ b/modules/network/internal_network_fingerprinting/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/internal_network_fingerprinting/config.yaml b/modules/network/internal_network_fingerprinting/config.yaml
index 865deed36..d12f2c749 100644
--- a/modules/network/internal_network_fingerprinting/config.yaml
+++ b/modules/network/internal_network_fingerprinting/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/internal_network_fingerprinting/module.rb b/modules/network/internal_network_fingerprinting/module.rb
index b63e9070a..6f7b2eb1e 100644
--- a/modules/network/internal_network_fingerprinting/module.rb
+++ b/modules/network/internal_network_fingerprinting/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/jslanscanner/command.js b/modules/network/jslanscanner/command.js
index 4104cd84a..a5353e8a7 100644
--- a/modules/network/jslanscanner/command.js
+++ b/modules/network/jslanscanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/jslanscanner/config.yaml b/modules/network/jslanscanner/config.yaml
index 7f087d34a..e91a9b2d3 100644
--- a/modules/network/jslanscanner/config.yaml
+++ b/modules/network/jslanscanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/jslanscanner/module.rb b/modules/network/jslanscanner/module.rb
index e9ea354de..6e0403223 100644
--- a/modules/network/jslanscanner/module.rb
+++ b/modules/network/jslanscanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/nat_pinning_irc/command.js b/modules/network/nat_pinning_irc/command.js
index 2adefd616..806a4f4ac 100644
--- a/modules/network/nat_pinning_irc/command.js
+++ b/modules/network/nat_pinning_irc/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/nat_pinning_irc/config.yaml b/modules/network/nat_pinning_irc/config.yaml
index 8c21165dd..273cf790f 100644
--- a/modules/network/nat_pinning_irc/config.yaml
+++ b/modules/network/nat_pinning_irc/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/nat_pinning_irc/module.rb b/modules/network/nat_pinning_irc/module.rb
index 62966a8ba..bf55fff38 100644
--- a/modules/network/nat_pinning_irc/module.rb
+++ b/modules/network/nat_pinning_irc/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ping_sweep/command.js b/modules/network/ping_sweep/command.js
index 04b27232c..b18c1b27a 100644
--- a/modules/network/ping_sweep/command.js
+++ b/modules/network/ping_sweep/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/ping_sweep/config.yaml b/modules/network/ping_sweep/config.yaml
index 9620d54cf..d7d636f67 100644
--- a/modules/network/ping_sweep/config.yaml
+++ b/modules/network/ping_sweep/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ping_sweep/module.rb b/modules/network/ping_sweep/module.rb
index 0e52bbb9b..0562c96b4 100644
--- a/modules/network/ping_sweep/module.rb
+++ b/modules/network/ping_sweep/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ping_sweep_ff/command.js b/modules/network/ping_sweep_ff/command.js
index dcd27fa34..34a27db37 100644
--- a/modules/network/ping_sweep_ff/command.js
+++ b/modules/network/ping_sweep_ff/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/ping_sweep_ff/config.yaml b/modules/network/ping_sweep_ff/config.yaml
index c387b11ec..94374b20c 100644
--- a/modules/network/ping_sweep_ff/config.yaml
+++ b/modules/network/ping_sweep_ff/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ping_sweep_ff/module.rb b/modules/network/ping_sweep_ff/module.rb
index 691fc1805..15261f28a 100644
--- a/modules/network/ping_sweep_ff/module.rb
+++ b/modules/network/ping_sweep_ff/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ping_sweep_java/command.js b/modules/network/ping_sweep_java/command.js
index d5b11021c..c0199c028 100644
--- a/modules/network/ping_sweep_java/command.js
+++ b/modules/network/ping_sweep_java/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/ping_sweep_java/config.yaml b/modules/network/ping_sweep_java/config.yaml
index 4c2357553..e87adc770 100644
--- a/modules/network/ping_sweep_java/config.yaml
+++ b/modules/network/ping_sweep_java/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ping_sweep_java/module.rb b/modules/network/ping_sweep_java/module.rb
index cd8d0f158..63a3e5c5a 100644
--- a/modules/network/ping_sweep_java/module.rb
+++ b/modules/network/ping_sweep_java/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/ping_sweep_java/pingSweep.java b/modules/network/ping_sweep_java/pingSweep.java
index 885a2e18e..501ed732d 100644
--- a/modules/network/ping_sweep_java/pingSweep.java
+++ b/modules/network/ping_sweep_java/pingSweep.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/network/port_scanner/command.js b/modules/network/port_scanner/command.js
index e19b67b6a..9a6f7ad2a 100644
--- a/modules/network/port_scanner/command.js
+++ b/modules/network/port_scanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/network/port_scanner/config.yaml b/modules/network/port_scanner/config.yaml
index 4c3bf91e7..fbf4429d5 100644
--- a/modules/network/port_scanner/config.yaml
+++ b/modules/network/port_scanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/network/port_scanner/module.rb b/modules/network/port_scanner/module.rb
index dca4ae339..4e1bc6b26 100644
--- a/modules/network/port_scanner/module.rb
+++ b/modules/network/port_scanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/confirm_close_tab/command.js b/modules/persistence/confirm_close_tab/command.js
index ef9b43f27..3fcbfbf6c 100644
--- a/modules/persistence/confirm_close_tab/command.js
+++ b/modules/persistence/confirm_close_tab/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/persistence/confirm_close_tab/config.yaml b/modules/persistence/confirm_close_tab/config.yaml
index 4b0c2f2cf..7e59cccc9 100644
--- a/modules/persistence/confirm_close_tab/config.yaml
+++ b/modules/persistence/confirm_close_tab/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/confirm_close_tab/module.rb b/modules/persistence/confirm_close_tab/module.rb
index e578f1083..30a7304f3 100644
--- a/modules/persistence/confirm_close_tab/module.rb
+++ b/modules/persistence/confirm_close_tab/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/hijack_opener/command.js b/modules/persistence/hijack_opener/command.js
index eb0efd52a..4477a8679 100644
--- a/modules/persistence/hijack_opener/command.js
+++ b/modules/persistence/hijack_opener/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/persistence/hijack_opener/config.yaml b/modules/persistence/hijack_opener/config.yaml
index a88bb93b1..db22c147a 100644
--- a/modules/persistence/hijack_opener/config.yaml
+++ b/modules/persistence/hijack_opener/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/hijack_opener/module.rb b/modules/persistence/hijack_opener/module.rb
index 597ab0e48..086b9c0fa 100644
--- a/modules/persistence/hijack_opener/module.rb
+++ b/modules/persistence/hijack_opener/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/iframe_above/command.js b/modules/persistence/iframe_above/command.js
index fc0944e2d..eb4cffa05 100644
--- a/modules/persistence/iframe_above/command.js
+++ b/modules/persistence/iframe_above/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/persistence/iframe_above/config.yaml b/modules/persistence/iframe_above/config.yaml
index 8f6163d01..430cd6e38 100644
--- a/modules/persistence/iframe_above/config.yaml
+++ b/modules/persistence/iframe_above/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/iframe_above/module.rb b/modules/persistence/iframe_above/module.rb
index 4bdca449d..003aa255d 100644
--- a/modules/persistence/iframe_above/module.rb
+++ b/modules/persistence/iframe_above/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/invisible_htmlfile_activex/command.js b/modules/persistence/invisible_htmlfile_activex/command.js
index ee4242b69..82cd70ace 100644
--- a/modules/persistence/invisible_htmlfile_activex/command.js
+++ b/modules/persistence/invisible_htmlfile_activex/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/persistence/invisible_htmlfile_activex/config.yaml b/modules/persistence/invisible_htmlfile_activex/config.yaml
index ce5fd2823..33c6da851 100644
--- a/modules/persistence/invisible_htmlfile_activex/config.yaml
+++ b/modules/persistence/invisible_htmlfile_activex/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/invisible_htmlfile_activex/module.rb b/modules/persistence/invisible_htmlfile_activex/module.rb
index 4ba1cff9c..b67d27486 100644
--- a/modules/persistence/invisible_htmlfile_activex/module.rb
+++ b/modules/persistence/invisible_htmlfile_activex/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/jsonp_service_worker/command.js b/modules/persistence/jsonp_service_worker/command.js
index 9707dfa57..54b2dd5f3 100644
--- a/modules/persistence/jsonp_service_worker/command.js
+++ b/modules/persistence/jsonp_service_worker/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/persistence/jsonp_service_worker/config.yaml b/modules/persistence/jsonp_service_worker/config.yaml
index 6d1ab2298..e4f59d701 100644
--- a/modules/persistence/jsonp_service_worker/config.yaml
+++ b/modules/persistence/jsonp_service_worker/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/man_in_the_browser/command.js b/modules/persistence/man_in_the_browser/command.js
index 3df3e585a..f6604bcb5 100644
--- a/modules/persistence/man_in_the_browser/command.js
+++ b/modules/persistence/man_in_the_browser/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/persistence/man_in_the_browser/config.yaml b/modules/persistence/man_in_the_browser/config.yaml
index 496383ea7..02e7d07c0 100644
--- a/modules/persistence/man_in_the_browser/config.yaml
+++ b/modules/persistence/man_in_the_browser/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/man_in_the_browser/module.rb b/modules/persistence/man_in_the_browser/module.rb
index bbc9066b6..b971eef44 100644
--- a/modules/persistence/man_in_the_browser/module.rb
+++ b/modules/persistence/man_in_the_browser/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/popunder_window/command.js b/modules/persistence/popunder_window/command.js
index 1e5add3b9..a17a3939b 100644
--- a/modules/persistence/popunder_window/command.js
+++ b/modules/persistence/popunder_window/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/persistence/popunder_window/config.yaml b/modules/persistence/popunder_window/config.yaml
index 5d9f65f39..36d21a29f 100644
--- a/modules/persistence/popunder_window/config.yaml
+++ b/modules/persistence/popunder_window/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/popunder_window/module.rb b/modules/persistence/popunder_window/module.rb
index f2abe86ce..180ea1db1 100644
--- a/modules/persistence/popunder_window/module.rb
+++ b/modules/persistence/popunder_window/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/popunder_window_ie/command.js b/modules/persistence/popunder_window_ie/command.js
index 7028b3c6e..e9d7057d0 100644
--- a/modules/persistence/popunder_window_ie/command.js
+++ b/modules/persistence/popunder_window_ie/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/persistence/popunder_window_ie/config.yaml b/modules/persistence/popunder_window_ie/config.yaml
index 7fc816f09..30b92a7cf 100644
--- a/modules/persistence/popunder_window_ie/config.yaml
+++ b/modules/persistence/popunder_window_ie/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/persistence/popunder_window_ie/module.rb b/modules/persistence/popunder_window_ie/module.rb
index e7e5451d8..e817acbc1 100644
--- a/modules/persistence/popunder_window_ie/module.rb
+++ b/modules/persistence/popunder_window_ie/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_alert_user/command.js b/modules/phonegap/phonegap_alert_user/command.js
index b190ffb0c..0db5eccba 100644
--- a/modules/phonegap/phonegap_alert_user/command.js
+++ b/modules/phonegap/phonegap_alert_user/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_alert_user/config.yaml b/modules/phonegap/phonegap_alert_user/config.yaml
index 54a101c12..2c61578a8 100644
--- a/modules/phonegap/phonegap_alert_user/config.yaml
+++ b/modules/phonegap/phonegap_alert_user/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_alert_user/module.rb b/modules/phonegap/phonegap_alert_user/module.rb
index a0e59aecf..a366f580a 100644
--- a/modules/phonegap/phonegap_alert_user/module.rb
+++ b/modules/phonegap/phonegap_alert_user/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_beep/command.js b/modules/phonegap/phonegap_beep/command.js
index 745030317..b55a99733 100644
--- a/modules/phonegap/phonegap_beep/command.js
+++ b/modules/phonegap/phonegap_beep/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_beep/config.yaml b/modules/phonegap/phonegap_beep/config.yaml
index 8d2b81a01..58d3fe285 100644
--- a/modules/phonegap/phonegap_beep/config.yaml
+++ b/modules/phonegap/phonegap_beep/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_beep/module.rb b/modules/phonegap/phonegap_beep/module.rb
index 56254ac43..1603663bb 100644
--- a/modules/phonegap/phonegap_beep/module.rb
+++ b/modules/phonegap/phonegap_beep/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_check_connection/command.js b/modules/phonegap/phonegap_check_connection/command.js
index 6d6c4f2ff..d0d14942e 100644
--- a/modules/phonegap/phonegap_check_connection/command.js
+++ b/modules/phonegap/phonegap_check_connection/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/phonegap/phonegap_check_connection/config.yaml b/modules/phonegap/phonegap_check_connection/config.yaml
index deecb8f13..2e1572921 100644
--- a/modules/phonegap/phonegap_check_connection/config.yaml
+++ b/modules/phonegap/phonegap_check_connection/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_check_connection/module.rb b/modules/phonegap/phonegap_check_connection/module.rb
index 95559431c..9c0693537 100644
--- a/modules/phonegap/phonegap_check_connection/module.rb
+++ b/modules/phonegap/phonegap_check_connection/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_detect/command.js b/modules/phonegap/phonegap_detect/command.js
index 793fc5f0a..bbd2b48f1 100644
--- a/modules/phonegap/phonegap_detect/command.js
+++ b/modules/phonegap/phonegap_detect/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_detect/config.yaml b/modules/phonegap/phonegap_detect/config.yaml
index c4416ccaa..280c9c2c4 100644
--- a/modules/phonegap/phonegap_detect/config.yaml
+++ b/modules/phonegap/phonegap_detect/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_detect/module.rb b/modules/phonegap/phonegap_detect/module.rb
index 86744fcc3..73594ae42 100644
--- a/modules/phonegap/phonegap_detect/module.rb
+++ b/modules/phonegap/phonegap_detect/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_file_upload/command.js b/modules/phonegap/phonegap_file_upload/command.js
index 60d612150..e1e3de044 100644
--- a/modules/phonegap/phonegap_file_upload/command.js
+++ b/modules/phonegap/phonegap_file_upload/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_file_upload/config.yaml b/modules/phonegap/phonegap_file_upload/config.yaml
index f0c8e7cab..aedd7afc1 100644
--- a/modules/phonegap/phonegap_file_upload/config.yaml
+++ b/modules/phonegap/phonegap_file_upload/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_file_upload/module.rb b/modules/phonegap/phonegap_file_upload/module.rb
index 5e6fd44e8..82acabc68 100644
--- a/modules/phonegap/phonegap_file_upload/module.rb
+++ b/modules/phonegap/phonegap_file_upload/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_geo_locate/command.js b/modules/phonegap/phonegap_geo_locate/command.js
index 4aec7a96f..dfeaef694 100644
--- a/modules/phonegap/phonegap_geo_locate/command.js
+++ b/modules/phonegap/phonegap_geo_locate/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_geo_locate/config.yaml b/modules/phonegap/phonegap_geo_locate/config.yaml
index 06a8894cc..6abe9c730 100644
--- a/modules/phonegap/phonegap_geo_locate/config.yaml
+++ b/modules/phonegap/phonegap_geo_locate/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_geo_locate/module.rb b/modules/phonegap/phonegap_geo_locate/module.rb
index 594713cd2..4db3e328c 100644
--- a/modules/phonegap/phonegap_geo_locate/module.rb
+++ b/modules/phonegap/phonegap_geo_locate/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_globalization_status/command.js b/modules/phonegap/phonegap_globalization_status/command.js
index b2c5604b8..5b228c353 100644
--- a/modules/phonegap/phonegap_globalization_status/command.js
+++ b/modules/phonegap/phonegap_globalization_status/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_globalization_status/config.yaml b/modules/phonegap/phonegap_globalization_status/config.yaml
index 2aabe337a..34fb28c17 100644
--- a/modules/phonegap/phonegap_globalization_status/config.yaml
+++ b/modules/phonegap/phonegap_globalization_status/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_globalization_status/module.rb b/modules/phonegap/phonegap_globalization_status/module.rb
index 7cf512e80..e193c6026 100644
--- a/modules/phonegap/phonegap_globalization_status/module.rb
+++ b/modules/phonegap/phonegap_globalization_status/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_keychain/command.js b/modules/phonegap/phonegap_keychain/command.js
index 7520c031d..5ae76fd64 100644
--- a/modules/phonegap/phonegap_keychain/command.js
+++ b/modules/phonegap/phonegap_keychain/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_keychain/config.yaml b/modules/phonegap/phonegap_keychain/config.yaml
index 3b0b64653..1162baf4e 100644
--- a/modules/phonegap/phonegap_keychain/config.yaml
+++ b/modules/phonegap/phonegap_keychain/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_keychain/module.rb b/modules/phonegap/phonegap_keychain/module.rb
index 01e8edae5..ef0e55dd9 100644
--- a/modules/phonegap/phonegap_keychain/module.rb
+++ b/modules/phonegap/phonegap_keychain/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_list_contacts/command.js b/modules/phonegap/phonegap_list_contacts/command.js
index a52dfa8d3..e6b0e299d 100644
--- a/modules/phonegap/phonegap_list_contacts/command.js
+++ b/modules/phonegap/phonegap_list_contacts/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_list_contacts/config.yaml b/modules/phonegap/phonegap_list_contacts/config.yaml
index a6f6c5e63..cff83e402 100644
--- a/modules/phonegap/phonegap_list_contacts/config.yaml
+++ b/modules/phonegap/phonegap_list_contacts/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_list_contacts/module.rb b/modules/phonegap/phonegap_list_contacts/module.rb
index 81adc9a2c..99a80eb80 100644
--- a/modules/phonegap/phonegap_list_contacts/module.rb
+++ b/modules/phonegap/phonegap_list_contacts/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_list_files/command.js b/modules/phonegap/phonegap_list_files/command.js
index a1efcabd1..aa693e3ab 100644
--- a/modules/phonegap/phonegap_list_files/command.js
+++ b/modules/phonegap/phonegap_list_files/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_list_files/config.yaml b/modules/phonegap/phonegap_list_files/config.yaml
index 9f409e7dd..127e362e5 100644
--- a/modules/phonegap/phonegap_list_files/config.yaml
+++ b/modules/phonegap/phonegap_list_files/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_list_files/module.rb b/modules/phonegap/phonegap_list_files/module.rb
index d7d5324bb..afa8ddb27 100644
--- a/modules/phonegap/phonegap_list_files/module.rb
+++ b/modules/phonegap/phonegap_list_files/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_persist_resume/command.js b/modules/phonegap/phonegap_persist_resume/command.js
index c76f82ef9..090a783fd 100644
--- a/modules/phonegap/phonegap_persist_resume/command.js
+++ b/modules/phonegap/phonegap_persist_resume/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/phonegap/phonegap_persist_resume/config.yaml b/modules/phonegap/phonegap_persist_resume/config.yaml
index 211dc30d2..be2ed9a93 100644
--- a/modules/phonegap/phonegap_persist_resume/config.yaml
+++ b/modules/phonegap/phonegap_persist_resume/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_persist_resume/module.rb b/modules/phonegap/phonegap_persist_resume/module.rb
index 7f052c8e3..f84491223 100644
--- a/modules/phonegap/phonegap_persist_resume/module.rb
+++ b/modules/phonegap/phonegap_persist_resume/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_persistence/command.js b/modules/phonegap/phonegap_persistence/command.js
index 8bef63e7b..6d37795e5 100644
--- a/modules/phonegap/phonegap_persistence/command.js
+++ b/modules/phonegap/phonegap_persistence/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_persistence/config.yaml b/modules/phonegap/phonegap_persistence/config.yaml
index 9faa7fbca..2967d1606 100644
--- a/modules/phonegap/phonegap_persistence/config.yaml
+++ b/modules/phonegap/phonegap_persistence/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_persistence/module.rb b/modules/phonegap/phonegap_persistence/module.rb
index 6fe087df9..a5245d328 100644
--- a/modules/phonegap/phonegap_persistence/module.rb
+++ b/modules/phonegap/phonegap_persistence/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_plugin_detection/command.js b/modules/phonegap/phonegap_plugin_detection/command.js
index 62f766fe5..8d7117793 100644
--- a/modules/phonegap/phonegap_plugin_detection/command.js
+++ b/modules/phonegap/phonegap_plugin_detection/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_plugin_detection/config.yaml b/modules/phonegap/phonegap_plugin_detection/config.yaml
index bbcba78bf..5066c90f4 100644
--- a/modules/phonegap/phonegap_plugin_detection/config.yaml
+++ b/modules/phonegap/phonegap_plugin_detection/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_plugin_detection/module.rb b/modules/phonegap/phonegap_plugin_detection/module.rb
index dfbf049bf..08fc4964f 100644
--- a/modules/phonegap/phonegap_plugin_detection/module.rb
+++ b/modules/phonegap/phonegap_plugin_detection/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_prompt_user/command.js b/modules/phonegap/phonegap_prompt_user/command.js
index e4f8c405c..8292f5b4c 100644
--- a/modules/phonegap/phonegap_prompt_user/command.js
+++ b/modules/phonegap/phonegap_prompt_user/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_prompt_user/config.yaml b/modules/phonegap/phonegap_prompt_user/config.yaml
index 1391f002f..293a275e5 100644
--- a/modules/phonegap/phonegap_prompt_user/config.yaml
+++ b/modules/phonegap/phonegap_prompt_user/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_prompt_user/module.rb b/modules/phonegap/phonegap_prompt_user/module.rb
index 90c57f581..0eec75ce9 100644
--- a/modules/phonegap/phonegap_prompt_user/module.rb
+++ b/modules/phonegap/phonegap_prompt_user/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_start_record_audio/command.js b/modules/phonegap/phonegap_start_record_audio/command.js
index 8336bf24c..8789dc9f2 100644
--- a/modules/phonegap/phonegap_start_record_audio/command.js
+++ b/modules/phonegap/phonegap_start_record_audio/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_start_record_audio/config.yaml b/modules/phonegap/phonegap_start_record_audio/config.yaml
index 57bd5da41..a2c88a316 100644
--- a/modules/phonegap/phonegap_start_record_audio/config.yaml
+++ b/modules/phonegap/phonegap_start_record_audio/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_start_record_audio/module.rb b/modules/phonegap/phonegap_start_record_audio/module.rb
index 8832cf344..3a436925d 100644
--- a/modules/phonegap/phonegap_start_record_audio/module.rb
+++ b/modules/phonegap/phonegap_start_record_audio/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_stop_record_audio/command.js b/modules/phonegap/phonegap_stop_record_audio/command.js
index 5341c1c0a..0eea224b6 100644
--- a/modules/phonegap/phonegap_stop_record_audio/command.js
+++ b/modules/phonegap/phonegap_stop_record_audio/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/phonegap/phonegap_stop_record_audio/config.yaml b/modules/phonegap/phonegap_stop_record_audio/config.yaml
index 8d5d73e3a..14650e15d 100644
--- a/modules/phonegap/phonegap_stop_record_audio/config.yaml
+++ b/modules/phonegap/phonegap_stop_record_audio/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/phonegap/phonegap_stop_record_audio/module.rb b/modules/phonegap/phonegap_stop_record_audio/module.rb
index f565144b2..d71f71335 100644
--- a/modules/phonegap/phonegap_stop_record_audio/module.rb
+++ b/modules/phonegap/phonegap_stop_record_audio/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/clickjacking/command.js b/modules/social_engineering/clickjacking/command.js
index a78bdaff2..8aa11801f 100644
--- a/modules/social_engineering/clickjacking/command.js
+++ b/modules/social_engineering/clickjacking/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/social_engineering/clickjacking/config.yaml b/modules/social_engineering/clickjacking/config.yaml
index 631e56965..6dc9de672 100644
--- a/modules/social_engineering/clickjacking/config.yaml
+++ b/modules/social_engineering/clickjacking/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/clickjacking/module.rb b/modules/social_engineering/clickjacking/module.rb
index 3dbd70410..15623fa58 100644
--- a/modules/social_engineering/clickjacking/module.rb
+++ b/modules/social_engineering/clickjacking/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/clippy/command.js b/modules/social_engineering/clippy/command.js
index f6deec270..601894529 100755
--- a/modules/social_engineering/clippy/command.js
+++ b/modules/social_engineering/clippy/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/clippy/config.yaml b/modules/social_engineering/clippy/config.yaml
index bdec9cfe3..3f7831acd 100755
--- a/modules/social_engineering/clippy/config.yaml
+++ b/modules/social_engineering/clippy/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/clippy/module.rb b/modules/social_engineering/clippy/module.rb
index 343157ea1..eb46692df 100755
--- a/modules/social_engineering/clippy/module.rb
+++ b/modules/social_engineering/clippy/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/edge_wscript_wsh_injection/command.js b/modules/social_engineering/edge_wscript_wsh_injection/command.js
index 432d8c8b0..1fbd28f66 100755
--- a/modules/social_engineering/edge_wscript_wsh_injection/command.js
+++ b/modules/social_engineering/edge_wscript_wsh_injection/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/edge_wscript_wsh_injection/config.yaml b/modules/social_engineering/edge_wscript_wsh_injection/config.yaml
index 106cbe398..5962a085b 100755
--- a/modules/social_engineering/edge_wscript_wsh_injection/config.yaml
+++ b/modules/social_engineering/edge_wscript_wsh_injection/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/edge_wscript_wsh_injection/module.rb b/modules/social_engineering/edge_wscript_wsh_injection/module.rb
index 6a17d32d5..8094094f1 100755
--- a/modules/social_engineering/edge_wscript_wsh_injection/module.rb
+++ b/modules/social_engineering/edge_wscript_wsh_injection/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_evernote_clipper/command.js b/modules/social_engineering/fake_evernote_clipper/command.js
index d399305b8..7b195a881 100755
--- a/modules/social_engineering/fake_evernote_clipper/command.js
+++ b/modules/social_engineering/fake_evernote_clipper/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/fake_evernote_clipper/config.yaml b/modules/social_engineering/fake_evernote_clipper/config.yaml
index 12146ff94..91d84d3c8 100755
--- a/modules/social_engineering/fake_evernote_clipper/config.yaml
+++ b/modules/social_engineering/fake_evernote_clipper/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_evernote_clipper/module.rb b/modules/social_engineering/fake_evernote_clipper/module.rb
index c5e5c9a27..e2674ee1c 100755
--- a/modules/social_engineering/fake_evernote_clipper/module.rb
+++ b/modules/social_engineering/fake_evernote_clipper/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_flash_update/command.js b/modules/social_engineering/fake_flash_update/command.js
index f95834aef..f82475b08 100755
--- a/modules/social_engineering/fake_flash_update/command.js
+++ b/modules/social_engineering/fake_flash_update/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/fake_flash_update/config.yaml b/modules/social_engineering/fake_flash_update/config.yaml
index 97af37697..742169a79 100755
--- a/modules/social_engineering/fake_flash_update/config.yaml
+++ b/modules/social_engineering/fake_flash_update/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_flash_update/module.rb b/modules/social_engineering/fake_flash_update/module.rb
index b6c0b3bef..a3ebe37bb 100755
--- a/modules/social_engineering/fake_flash_update/module.rb
+++ b/modules/social_engineering/fake_flash_update/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_lastpass/command.js b/modules/social_engineering/fake_lastpass/command.js
index ce86e05c8..9978e53ae 100755
--- a/modules/social_engineering/fake_lastpass/command.js
+++ b/modules/social_engineering/fake_lastpass/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/fake_lastpass/config.yaml b/modules/social_engineering/fake_lastpass/config.yaml
index e7665c7a2..1841a6104 100755
--- a/modules/social_engineering/fake_lastpass/config.yaml
+++ b/modules/social_engineering/fake_lastpass/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_lastpass/module.rb b/modules/social_engineering/fake_lastpass/module.rb
index 5b890117c..e04f94605 100755
--- a/modules/social_engineering/fake_lastpass/module.rb
+++ b/modules/social_engineering/fake_lastpass/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_notification/command.js b/modules/social_engineering/fake_notification/command.js
index 005cd3033..1452efb0b 100644
--- a/modules/social_engineering/fake_notification/command.js
+++ b/modules/social_engineering/fake_notification/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/fake_notification/config.yaml b/modules/social_engineering/fake_notification/config.yaml
index 80b715863..889031c45 100644
--- a/modules/social_engineering/fake_notification/config.yaml
+++ b/modules/social_engineering/fake_notification/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_notification/module.rb b/modules/social_engineering/fake_notification/module.rb
index ad835f085..69c1366d3 100644
--- a/modules/social_engineering/fake_notification/module.rb
+++ b/modules/social_engineering/fake_notification/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_notification_c/command.js b/modules/social_engineering/fake_notification_c/command.js
index 274ea6004..2425d7479 100644
--- a/modules/social_engineering/fake_notification_c/command.js
+++ b/modules/social_engineering/fake_notification_c/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/fake_notification_c/config.yaml b/modules/social_engineering/fake_notification_c/config.yaml
index 9db3841a2..5df4f4034 100644
--- a/modules/social_engineering/fake_notification_c/config.yaml
+++ b/modules/social_engineering/fake_notification_c/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_notification_c/module.rb b/modules/social_engineering/fake_notification_c/module.rb
index 747c8fb3a..1a8395bc2 100644
--- a/modules/social_engineering/fake_notification_c/module.rb
+++ b/modules/social_engineering/fake_notification_c/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_notification_ff/command.js b/modules/social_engineering/fake_notification_ff/command.js
index 8b102fb4c..6ea6a5611 100644
--- a/modules/social_engineering/fake_notification_ff/command.js
+++ b/modules/social_engineering/fake_notification_ff/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/fake_notification_ff/config.yaml b/modules/social_engineering/fake_notification_ff/config.yaml
index d7284098b..7ebe70b12 100644
--- a/modules/social_engineering/fake_notification_ff/config.yaml
+++ b/modules/social_engineering/fake_notification_ff/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_notification_ff/module.rb b/modules/social_engineering/fake_notification_ff/module.rb
index 3b456c9c9..19678d0ed 100644
--- a/modules/social_engineering/fake_notification_ff/module.rb
+++ b/modules/social_engineering/fake_notification_ff/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_notification_ie/command.js b/modules/social_engineering/fake_notification_ie/command.js
index 56a73b0d3..94f66a41d 100644
--- a/modules/social_engineering/fake_notification_ie/command.js
+++ b/modules/social_engineering/fake_notification_ie/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/fake_notification_ie/config.yaml b/modules/social_engineering/fake_notification_ie/config.yaml
index 1c90b6636..0abf4165e 100644
--- a/modules/social_engineering/fake_notification_ie/config.yaml
+++ b/modules/social_engineering/fake_notification_ie/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/fake_notification_ie/module.rb b/modules/social_engineering/fake_notification_ie/module.rb
index 5cb9a5068..6277e0481 100644
--- a/modules/social_engineering/fake_notification_ie/module.rb
+++ b/modules/social_engineering/fake_notification_ie/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/firefox_extension_bindshell/command.js b/modules/social_engineering/firefox_extension_bindshell/command.js
index eb6b9d1e2..d150ba5ff 100644
--- a/modules/social_engineering/firefox_extension_bindshell/command.js
+++ b/modules/social_engineering/firefox_extension_bindshell/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/firefox_extension_bindshell/config.yaml b/modules/social_engineering/firefox_extension_bindshell/config.yaml
index 88bf26cd2..0f71ff508 100644
--- a/modules/social_engineering/firefox_extension_bindshell/config.yaml
+++ b/modules/social_engineering/firefox_extension_bindshell/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/firefox_extension_bindshell/module.rb b/modules/social_engineering/firefox_extension_bindshell/module.rb
index ccc515d1e..01a8d11f6 100644
--- a/modules/social_engineering/firefox_extension_bindshell/module.rb
+++ b/modules/social_engineering/firefox_extension_bindshell/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/firefox_extension_dropper/command.js b/modules/social_engineering/firefox_extension_dropper/command.js
index 009cc5cde..6fcc692f1 100644
--- a/modules/social_engineering/firefox_extension_dropper/command.js
+++ b/modules/social_engineering/firefox_extension_dropper/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/firefox_extension_dropper/config.yaml b/modules/social_engineering/firefox_extension_dropper/config.yaml
index 0c27ba817..26edf968e 100644
--- a/modules/social_engineering/firefox_extension_dropper/config.yaml
+++ b/modules/social_engineering/firefox_extension_dropper/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/firefox_extension_dropper/module.rb b/modules/social_engineering/firefox_extension_dropper/module.rb
index 812826a93..da9b7cb0c 100644
--- a/modules/social_engineering/firefox_extension_dropper/module.rb
+++ b/modules/social_engineering/firefox_extension_dropper/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/firefox_extension_reverse_shell/command.js b/modules/social_engineering/firefox_extension_reverse_shell/command.js
index eb6b9d1e2..d150ba5ff 100644
--- a/modules/social_engineering/firefox_extension_reverse_shell/command.js
+++ b/modules/social_engineering/firefox_extension_reverse_shell/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/firefox_extension_reverse_shell/config.yaml b/modules/social_engineering/firefox_extension_reverse_shell/config.yaml
index 1f3982216..eb94ac639 100644
--- a/modules/social_engineering/firefox_extension_reverse_shell/config.yaml
+++ b/modules/social_engineering/firefox_extension_reverse_shell/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/firefox_extension_reverse_shell/module.rb b/modules/social_engineering/firefox_extension_reverse_shell/module.rb
index e656b89e5..169258849 100644
--- a/modules/social_engineering/firefox_extension_reverse_shell/module.rb
+++ b/modules/social_engineering/firefox_extension_reverse_shell/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/gmail_phishing/command.js b/modules/social_engineering/gmail_phishing/command.js
index 81747d293..7c2038c2a 100644
--- a/modules/social_engineering/gmail_phishing/command.js
+++ b/modules/social_engineering/gmail_phishing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/gmail_phishing/config.yaml b/modules/social_engineering/gmail_phishing/config.yaml
index c1cad9612..f73410cdd 100644
--- a/modules/social_engineering/gmail_phishing/config.yaml
+++ b/modules/social_engineering/gmail_phishing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/gmail_phishing/module.rb b/modules/social_engineering/gmail_phishing/module.rb
index e0c603d52..94041792d 100644
--- a/modules/social_engineering/gmail_phishing/module.rb
+++ b/modules/social_engineering/gmail_phishing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/hta_powershell/command.js b/modules/social_engineering/hta_powershell/command.js
index faa0ac576..c3ce1193d 100755
--- a/modules/social_engineering/hta_powershell/command.js
+++ b/modules/social_engineering/hta_powershell/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/hta_powershell/config.yaml b/modules/social_engineering/hta_powershell/config.yaml
index acd2b282f..b46664274 100755
--- a/modules/social_engineering/hta_powershell/config.yaml
+++ b/modules/social_engineering/hta_powershell/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/hta_powershell/module.rb b/modules/social_engineering/hta_powershell/module.rb
index d6bbea4f0..88b126502 100755
--- a/modules/social_engineering/hta_powershell/module.rb
+++ b/modules/social_engineering/hta_powershell/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/lcamtuf_download/command.js b/modules/social_engineering/lcamtuf_download/command.js
index 4f35530b0..bc5545df4 100644
--- a/modules/social_engineering/lcamtuf_download/command.js
+++ b/modules/social_engineering/lcamtuf_download/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/lcamtuf_download/config.yaml b/modules/social_engineering/lcamtuf_download/config.yaml
index 9bfeeb991..7804dfdde 100644
--- a/modules/social_engineering/lcamtuf_download/config.yaml
+++ b/modules/social_engineering/lcamtuf_download/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/lcamtuf_download/module.rb b/modules/social_engineering/lcamtuf_download/module.rb
index c6d560ab1..7a6a038be 100755
--- a/modules/social_engineering/lcamtuf_download/module.rb
+++ b/modules/social_engineering/lcamtuf_download/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/pretty_theft/command.js b/modules/social_engineering/pretty_theft/command.js
index a2f1de50b..7cc849da6 100644
--- a/modules/social_engineering/pretty_theft/command.js
+++ b/modules/social_engineering/pretty_theft/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/pretty_theft/config.yaml b/modules/social_engineering/pretty_theft/config.yaml
index 198a29320..0655ab29f 100644
--- a/modules/social_engineering/pretty_theft/config.yaml
+++ b/modules/social_engineering/pretty_theft/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/pretty_theft/module.rb b/modules/social_engineering/pretty_theft/module.rb
index e89d52752..e6ac8259b 100644
--- a/modules/social_engineering/pretty_theft/module.rb
+++ b/modules/social_engineering/pretty_theft/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/replace_video_fake_plugin/command.js b/modules/social_engineering/replace_video_fake_plugin/command.js
index b6b3f63c9..ed9e76af8 100644
--- a/modules/social_engineering/replace_video_fake_plugin/command.js
+++ b/modules/social_engineering/replace_video_fake_plugin/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/replace_video_fake_plugin/config.yaml b/modules/social_engineering/replace_video_fake_plugin/config.yaml
index 0781348f8..fb62a6af1 100644
--- a/modules/social_engineering/replace_video_fake_plugin/config.yaml
+++ b/modules/social_engineering/replace_video_fake_plugin/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/replace_video_fake_plugin/module.rb b/modules/social_engineering/replace_video_fake_plugin/module.rb
index 5915cbb1d..142d73646 100644
--- a/modules/social_engineering/replace_video_fake_plugin/module.rb
+++ b/modules/social_engineering/replace_video_fake_plugin/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/simple_hijacker/command.js b/modules/social_engineering/simple_hijacker/command.js
index 6ed83afcd..766a869e8 100644
--- a/modules/social_engineering/simple_hijacker/command.js
+++ b/modules/social_engineering/simple_hijacker/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/simple_hijacker/config.yaml b/modules/social_engineering/simple_hijacker/config.yaml
index a6aef32f1..8a4460e98 100644
--- a/modules/social_engineering/simple_hijacker/config.yaml
+++ b/modules/social_engineering/simple_hijacker/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/simple_hijacker/module.rb b/modules/social_engineering/simple_hijacker/module.rb
index ed7aa405f..d18a5f821 100644
--- a/modules/social_engineering/simple_hijacker/module.rb
+++ b/modules/social_engineering/simple_hijacker/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/simple_hijacker/templates/amazon.js b/modules/social_engineering/simple_hijacker/templates/amazon.js
index 6c1ca7ae7..68eb8ccfd 100644
--- a/modules/social_engineering/simple_hijacker/templates/amazon.js
+++ b/modules/social_engineering/simple_hijacker/templates/amazon.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js b/modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js
index 86e60ecfc..7f31cd93e 100644
--- a/modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js
+++ b/modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js b/modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js
index f2670b894..fb056566f 100644
--- a/modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js
+++ b/modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/social_engineering/simple_hijacker/templates/confirmbox.js b/modules/social_engineering/simple_hijacker/templates/confirmbox.js
index d0345cde8..55f3152f8 100644
--- a/modules/social_engineering/simple_hijacker/templates/confirmbox.js
+++ b/modules/social_engineering/simple_hijacker/templates/confirmbox.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/social_engineering/simple_hijacker/templates/credential.js b/modules/social_engineering/simple_hijacker/templates/credential.js
index eb94843ff..7197e5b68 100644
--- a/modules/social_engineering/simple_hijacker/templates/credential.js
+++ b/modules/social_engineering/simple_hijacker/templates/credential.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - https://beefproject.com
  * See the file 'doc/COPYING' for copying permission
  */
diff --git a/modules/social_engineering/sitekiosk_breakout/command.js b/modules/social_engineering/sitekiosk_breakout/command.js
index 945504929..e5129baac 100644
--- a/modules/social_engineering/sitekiosk_breakout/command.js
+++ b/modules/social_engineering/sitekiosk_breakout/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/sitekiosk_breakout/config.yaml b/modules/social_engineering/sitekiosk_breakout/config.yaml
index c55172075..de9825422 100644
--- a/modules/social_engineering/sitekiosk_breakout/config.yaml
+++ b/modules/social_engineering/sitekiosk_breakout/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/sitekiosk_breakout/module.rb b/modules/social_engineering/sitekiosk_breakout/module.rb
index 9c96b7ce9..eee3cd3d4 100644
--- a/modules/social_engineering/sitekiosk_breakout/module.rb
+++ b/modules/social_engineering/sitekiosk_breakout/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/spoof_addressbar_data/command.js b/modules/social_engineering/spoof_addressbar_data/command.js
index f059975f2..db9338acd 100644
--- a/modules/social_engineering/spoof_addressbar_data/command.js
+++ b/modules/social_engineering/spoof_addressbar_data/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/spoof_addressbar_data/config.yaml b/modules/social_engineering/spoof_addressbar_data/config.yaml
index bc243591c..bf2bb0dc9 100644
--- a/modules/social_engineering/spoof_addressbar_data/config.yaml
+++ b/modules/social_engineering/spoof_addressbar_data/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/spoof_addressbar_data/module.rb b/modules/social_engineering/spoof_addressbar_data/module.rb
index 2194d2827..59011726c 100644
--- a/modules/social_engineering/spoof_addressbar_data/module.rb
+++ b/modules/social_engineering/spoof_addressbar_data/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/tabnabbing/command.js b/modules/social_engineering/tabnabbing/command.js
index af5fcfb6e..84d635b6a 100644
--- a/modules/social_engineering/tabnabbing/command.js
+++ b/modules/social_engineering/tabnabbing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/tabnabbing/config.yaml b/modules/social_engineering/tabnabbing/config.yaml
index b6af5192c..197175542 100644
--- a/modules/social_engineering/tabnabbing/config.yaml
+++ b/modules/social_engineering/tabnabbing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/tabnabbing/module.rb b/modules/social_engineering/tabnabbing/module.rb
index c0366010e..0a03163c0 100644
--- a/modules/social_engineering/tabnabbing/module.rb
+++ b/modules/social_engineering/tabnabbing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/text_to_voice/command.js b/modules/social_engineering/text_to_voice/command.js
index bd853ea97..1f10887c0 100644
--- a/modules/social_engineering/text_to_voice/command.js
+++ b/modules/social_engineering/text_to_voice/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/text_to_voice/config.yaml b/modules/social_engineering/text_to_voice/config.yaml
index 976e0147f..4863cdcac 100644
--- a/modules/social_engineering/text_to_voice/config.yaml
+++ b/modules/social_engineering/text_to_voice/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/text_to_voice/module.rb b/modules/social_engineering/text_to_voice/module.rb
index 01f2248c4..4c897c7c4 100644
--- a/modules/social_engineering/text_to_voice/module.rb
+++ b/modules/social_engineering/text_to_voice/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/ui_abuse_ie/command.js b/modules/social_engineering/ui_abuse_ie/command.js
index e9a63db1e..9cf944672 100644
--- a/modules/social_engineering/ui_abuse_ie/command.js
+++ b/modules/social_engineering/ui_abuse_ie/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/modules/social_engineering/ui_abuse_ie/config.yaml b/modules/social_engineering/ui_abuse_ie/config.yaml
index 4e4f886a0..da14ff0a4 100644
--- a/modules/social_engineering/ui_abuse_ie/config.yaml
+++ b/modules/social_engineering/ui_abuse_ie/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/modules/social_engineering/ui_abuse_ie/module.rb b/modules/social_engineering/ui_abuse_ie/module.rb
index 0bc894b90..be5a5cc20 100644
--- a/modules/social_engineering/ui_abuse_ie/module.rb
+++ b/modules/social_engineering/ui_abuse_ie/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/package-lock.json b/package-lock.json
index ae60cf0e7..69f3aa8db 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
     "name": "BeEF",
-    "version": "0.5.4.0",
+    "version": "0.6.0.0",
     "lockfileVersion": 3,
     "requires": true,
     "packages": {
         "": {
             "name": "BeEF",
-            "version": "0.5.4.0",
+            "version": "0.6.0.0",
             "license": "GNU General Public License v2.0",
             "devDependencies": {
                 "jsdoc": "^4.0.5",
diff --git a/package.json b/package.json
index 3c0037a6b..b6edfce2b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
     "name": "BeEF",
-    "version": "0.5.4.0",
+    "version": "0.6.0.0",
     "description": "The Browser Exploitation Framework Project",
     "scripts": {
         "docs": "./node_modules/.bin/jsdoc -c conf.json"
@@ -12,4 +12,4 @@
         "jsdoc-to-markdown": "^9.1.3"
     },
     "dependencies": {}
-}
+}
\ No newline at end of file
diff --git a/spec/beef/api/auth_rate_spec.rb b/spec/beef/api/auth_rate_spec.rb
index 77ff65a60..360ac11ed 100644
--- a/spec/beef/api/auth_rate_spec.rb
+++ b/spec/beef/api/auth_rate_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/core/main/autorun_engine/autorun_engine_spec.rb b/spec/beef/core/main/autorun_engine/autorun_engine_spec.rb
index e8bf3e7e3..dfe287d0b 100644
--- a/spec/beef/core/main/autorun_engine/autorun_engine_spec.rb
+++ b/spec/beef/core/main/autorun_engine/autorun_engine_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/core/main/handlers/browser_details_handler_spec.rb b/spec/beef/core/main/handlers/browser_details_handler_spec.rb
index bf6f761ee..610f4bc83 100644
--- a/spec/beef/core/main/handlers/browser_details_handler_spec.rb
+++ b/spec/beef/core/main/handlers/browser_details_handler_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/adminui_spec.rb b/spec/beef/extensions/adminui_spec.rb
index 64891c0a8..c34a8e9a5 100644
--- a/spec/beef/extensions/adminui_spec.rb
+++ b/spec/beef/extensions/adminui_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/dns_spec.rb b/spec/beef/extensions/dns_spec.rb
index a1aed66e1..1607aa504 100644
--- a/spec/beef/extensions/dns_spec.rb
+++ b/spec/beef/extensions/dns_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/network_spec.rb b/spec/beef/extensions/network_spec.rb
index be759ab9d..4317516fb 100644
--- a/spec/beef/extensions/network_spec.rb
+++ b/spec/beef/extensions/network_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/proxy_spec.rb b/spec/beef/extensions/proxy_spec.rb
index ff25ac141..a5984021a 100644
--- a/spec/beef/extensions/proxy_spec.rb
+++ b/spec/beef/extensions/proxy_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/qrcode_spec.rb b/spec/beef/extensions/qrcode_spec.rb
index 43e990dea..e1f70bfd9 100644
--- a/spec/beef/extensions/qrcode_spec.rb
+++ b/spec/beef/extensions/qrcode_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/requester_spec.rb b/spec/beef/extensions/requester_spec.rb
index cbe5a88d6..0850924f5 100644
--- a/spec/beef/extensions/requester_spec.rb
+++ b/spec/beef/extensions/requester_spec.rb
@@ -1,7 +1,7 @@
 require 'extensions/requester/extension'
 
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/social_engineering_spec.rb b/spec/beef/extensions/social_engineering_spec.rb
index 7543b2f26..93c63a58c 100644
--- a/spec/beef/extensions/social_engineering_spec.rb
+++ b/spec/beef/extensions/social_engineering_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/webrtc_spec.rb b/spec/beef/extensions/webrtc_spec.rb
index 24f2509d3..ccf8c8d01 100644
--- a/spec/beef/extensions/webrtc_spec.rb
+++ b/spec/beef/extensions/webrtc_spec.rb
@@ -1,7 +1,7 @@
 require 'rest-client'
 
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/websocket_hooked_browser_spec.rb b/spec/beef/extensions/websocket_hooked_browser_spec.rb
index 5d4978e05..4f064f929 100644
--- a/spec/beef/extensions/websocket_hooked_browser_spec.rb
+++ b/spec/beef/extensions/websocket_hooked_browser_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/websocket_spec.rb b/spec/beef/extensions/websocket_spec.rb
index 8f3d71b1e..a6c44e3a5 100644
--- a/spec/beef/extensions/websocket_spec.rb
+++ b/spec/beef/extensions/websocket_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/extensions/xssrays_spec.rb b/spec/beef/extensions/xssrays_spec.rb
index e0ae9eaf4..bef92fe15 100644
--- a/spec/beef/extensions/xssrays_spec.rb
+++ b/spec/beef/extensions/xssrays_spec.rb
@@ -1,6 +1,6 @@
 
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb
index 6a178078f..c283bd2ab 100644
--- a/spec/beef/modules/debug/test_beef_debugs_spec.rb
+++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/features/all_modules_spec.rb b/spec/features/all_modules_spec.rb
index 8112d46c9..888b52b41 100644
--- a/spec/features/all_modules_spec.rb
+++ b/spec/features/all_modules_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/features/debug_modules_spec.rb b/spec/features/debug_modules_spec.rb
index e3eae3e0e..221cdc01e 100644
--- a/spec/features/debug_modules_spec.rb
+++ b/spec/features/debug_modules_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/requests/beef_test_spec.rb b/spec/requests/beef_test_spec.rb
index 9ab0bdaf3..de85e25a7 100644
--- a/spec/requests/beef_test_spec.rb
+++ b/spec/requests/beef_test_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/requests/login_spec.rb b/spec/requests/login_spec.rb
index 22be46cd4..432dbc9df 100644
--- a/spec/requests/login_spec.rb
+++ b/spec/requests/login_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index b9a260367..8bdc9b7d7 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/support/assets/config_new.yaml b/spec/support/assets/config_new.yaml
index e8739112a..8b80cf82f 100644
--- a/spec/support/assets/config_new.yaml
+++ b/spec/support/assets/config_new.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/support/assets/config_old.yaml b/spec/support/assets/config_old.yaml
index 0e2b78f66..3ac3a8225 100644
--- a/spec/support/assets/config_old.yaml
+++ b/spec/support/assets/config_old.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/support/beef_test.rb b/spec/support/beef_test.rb
index f54033704..17b45c8f6 100644
--- a/spec/support/beef_test.rb
+++ b/spec/support/beef_test.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/support/constants.rb b/spec/support/constants.rb
index d4bfa5464..ae1732f03 100644
--- a/spec/support/constants.rb
+++ b/spec/support/constants.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/support/simple_rest_client.rb b/spec/support/simple_rest_client.rb
index 0abdb41dc..337545afe 100644
--- a/spec/support/simple_rest_client.rb
+++ b/spec/support/simple_rest_client.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/support/ui_support.rb b/spec/support/ui_support.rb
index e350d9bfa..dc0c7fe7e 100644
--- a/spec/support/ui_support.rb
+++ b/spec/support/ui_support.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/integration/tc_debug_modules.rb b/test/integration/tc_debug_modules.rb
index eda7f642e..632a3c0c6 100644
--- a/test/integration/tc_debug_modules.rb
+++ b/test/integration/tc_debug_modules.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/integration/tc_dns_rest.rb b/test/integration/tc_dns_rest.rb
index 6ce656ca9..53e0ccbfd 100644
--- a/test/integration/tc_dns_rest.rb
+++ b/test/integration/tc_dns_rest.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/integration/tc_network_rest.rb b/test/integration/tc_network_rest.rb
index 799b2b157..e6da3c2ca 100644
--- a/test/integration/tc_network_rest.rb
+++ b/test/integration/tc_network_rest.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/integration/tc_proxy.rb b/test/integration/tc_proxy.rb
index bbeaabb2e..59e36a199 100644
--- a/test/integration/tc_proxy.rb
+++ b/test/integration/tc_proxy.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/integration/tc_social_engineering_rest.rb b/test/integration/tc_social_engineering_rest.rb
index 9bf75ea93..19f0dae2f 100644
--- a/test/integration/tc_social_engineering_rest.rb
+++ b/test/integration/tc_social_engineering_rest.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/integration/tc_webrtc_rest.rb b/test/integration/tc_webrtc_rest.rb
index 1c5f9bac0..0af6c0c96 100644
--- a/test/integration/tc_webrtc_rest.rb
+++ b/test/integration/tc_webrtc_rest.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/integration/ts_integration.rb b/test/integration/ts_integration.rb
index bc415b46b..2b037b217 100644
--- a/test/integration/ts_integration.rb
+++ b/test/integration/ts_integration.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/thirdparty/msf/unit/tc_metasploit.rb b/test/thirdparty/msf/unit/tc_metasploit.rb
index 0bd2bd029..7a7ed43ad 100644
--- a/test/thirdparty/msf/unit/tc_metasploit.rb
+++ b/test/thirdparty/msf/unit/tc_metasploit.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/thirdparty/msf/unit/ts_metasploit.rb b/test/thirdparty/msf/unit/ts_metasploit.rb
index 52f4d2db8..191b7bb72 100644
--- a/test/thirdparty/msf/unit/ts_metasploit.rb
+++ b/test/thirdparty/msf/unit/ts_metasploit.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/tools/csrf_to_beef/lib/module.rb b/tools/csrf_to_beef/lib/module.rb
index 9481226ac..97b97f847 100644
--- a/tools/csrf_to_beef/lib/module.rb
+++ b/tools/csrf_to_beef/lib/module.rb
@@ -5,7 +5,7 @@ class ConfigFile
   def generate(class_name)
     return <<-EOF
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
@@ -34,7 +34,7 @@ class ModuleFile
     end
     return <<-EOF
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
@@ -67,7 +67,7 @@ class CommandFile
     end
     return <<-EOF
 //
-// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/tools/maintenance/copyright_update.rb b/tools/maintenance/copyright_update.rb
index 95cb45016..53746cebf 100644
--- a/tools/maintenance/copyright_update.rb
+++ b/tools/maintenance/copyright_update.rb
@@ -8,44 +8,46 @@ log_file = File.open('copyright_update.log', 'w')
 @log_file_logger = Logger.new(log_file)
 @log_file_logger.level = Logger::INFO
 
-def update_copyright(file_path, old_copyright, new_copyright)
+def update_copyright(file_path, copyright_pattern, new_copyright)
   @log.info("Processing file: #{file_path}")
   @log_file_logger.info("Processing file: #{file_path}")
 
-  # Treat all files the same way for copyright update, including YAML and CSS
   content = File.read(file_path)
   if content.empty?
     @log.info("File is empty, no copyright update needed: #{file_path}")
     @log_file_logger.info("File is empty, no copyright update needed: #{file_path}")
-  else
-    if content.include?(old_copyright)
-      updated_content = content.gsub(old_copyright, new_copyright)
+  elsif content.match?(copyright_pattern)
+    updated_content = content.gsub(copyright_pattern, "\\1#{new_copyright}")
+    if updated_content != content
       File.write(file_path, updated_content)
       @log.info("Updated copyright in #{file_path}")
       @log_file_logger.info("Updated copyright in #{file_path}")
-    else
-      @log.warn("Copyright string not found in #{file_path}")
-      @log_file_logger.warn("Copyright string not found in #{file_path}")
     end
+  else
+    @log.warn("Copyright pattern not found in #{file_path}")
+    @log_file_logger.warn("Copyright pattern not found in #{file_path}")
   end
 rescue => e
   @log.error("Error processing file #{file_path}: #{e.message}")
   @log_file_logger.error("Error processing file #{file_path}: #{e.message}")
 end
 
-old_copyright = 'Copyright (c) 2006-2024'
-new_copyright = 'Copyright (c) 2006-2025'
+# Regex to match "Copyright (c) 2006-YYYY" or "(C) 2006-YYYY"
+# Captures the prefix so we can replace only the year part if needed, 
+# or better yet, replace the whole match but preserve the "Copyright (c)" part.
+copyright_pattern = /((?:Copyright \(c\) |\(C\) )2006-)20\d{2}/
+new_year = '2026'
 
 Dir.glob("../../**/*.{rb,js,yaml,html,md,txt,css,c,nasm,java,php,as}").each do |file|
-  next if File.basename(file) == 'copyright_update.rb'  # Skip this file
-  update_copyright(file, old_copyright, new_copyright)
+  next if File.basename(file) == 'copyright_update.rb'
+  update_copyright(file, copyright_pattern, new_year)
 end
 
 # Handle files without extensions, excluding copyright_update.rb
 Dir.glob("../../**/*").reject { |f| 
   File.directory?(f) || File.extname(f) != '' || File.basename(f) == 'copyright_update.rb'
 }.each do |file|
-  update_copyright(file, old_copyright, new_copyright)
+  update_copyright(file, copyright_pattern, new_year)
 end
 
 @log.info("Copyright update process completed.")
diff --git a/update-beef b/update-beef
index 751417380..a812f1996 100755
--- a/update-beef
+++ b/update-beef
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #