From a7862fa524959efe97c3cfdaf0e5c68238c6e900 Mon Sep 17 00:00:00 2001 From: Federico Videla Date: Fri, 22 Sep 2023 10:40:14 -0300 Subject: [PATCH 01/64] Add ntfy extension --- extensions/notifications/channels/ntfy.rb | 44 +++++++++++++++++++++++ extensions/notifications/config.yaml | 6 ++++ extensions/notifications/notifications.rb | 5 +++ 3 files changed, 55 insertions(+) create mode 100644 extensions/notifications/channels/ntfy.rb diff --git a/extensions/notifications/channels/ntfy.rb b/extensions/notifications/channels/ntfy.rb new file mode 100644 index 000000000..343d503cd --- /dev/null +++ b/extensions/notifications/channels/ntfy.rb @@ -0,0 +1,44 @@ +require 'net/http' +require 'uri' + +module BeEF + module Extension + module Notifications + module Channels + class Ntfy + + # Constructor + def initialize(message) + @config = BeEF::Core::Configuration.instance + + # Endpoint URL + uri = URI.parse(@config.get('beef.extension.notifications.ntfy.endpoint_url')) + + # Create client + http = Net::HTTP.new(uri.host, uri.port) + + # Create Request + req = Net::HTTP::Post.new(uri.path) + + # Add authentication if configured + if @config.get('beef.extension.notifications.ntfy.username') || @config.get('beef.extension.notifications.ntfy.password') + req.basic_auth @config.get('beef.extension.notifications.ntfy.username'), @config.get('beef.extension.notifications.ntfy.password') + end + + # Set headers and body + req.content_type = 'text/plain' + req['Title'] = 'BeEF Notification' + req.body = message + + # Use SSL if the URI scheme is 'https' + http.use_ssl = (uri.scheme == 'https') + + # Send request + http.request(req) + end + + end + end + end + end +end diff --git a/extensions/notifications/config.yaml b/extensions/notifications/config.yaml index 5473eb7ed..f7c9b84c9 100644 --- a/extensions/notifications/config.yaml +++ b/extensions/notifications/config.yaml @@ -26,3 +26,9 @@ beef: webhook_url: "your_webhook_url" channel: "#beef" # Slack channel username: "notifier" # Username can be anything + ntfy: + enable: false + endpoint_url: "https://ntfy.sh/beef" + username: "" # Leave blank if not needed + password: "" # Leave blank if not needed + diff --git a/extensions/notifications/notifications.rb b/extensions/notifications/notifications.rb index 7d8732ac9..b7bbb5945 100644 --- a/extensions/notifications/notifications.rb +++ b/extensions/notifications/notifications.rb @@ -7,6 +7,8 @@ require 'extensions/notifications/channels/email' require 'extensions/notifications/channels/pushover' require 'extensions/notifications/channels/slack_workspace' +require 'extensions/notifications/channels/ntfy' + module BeEF module Extension @@ -34,6 +36,9 @@ module BeEF BeEF::Extension::Notifications::Channels::Pushover.new(message) if @config.get('beef.extension.notifications.pushover.enable') == true BeEF::Extension::Notifications::Channels::SlackWorkspace.new(message) if @config.get('beef.extension.notifications.slack.enable') == true + + BeEF::Extension::Notifications::Channels::Ntfy.new(message) if @config.get('beef.extension.notifications.ntfy.enable') == true + end end end From e4d9896c4c374004aa7ed5099940eafb133e26c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 14:08:19 +0000 Subject: [PATCH 02/64] Bump otr-activerecord from 2.1.2 to 2.2.0 Bumps [otr-activerecord](https://github.com/jhollinger/otr-activerecord) from 2.1.2 to 2.2.0. - [Changelog](https://github.com/jhollinger/otr-activerecord/blob/main/CHANGELOG.md) - [Commits](https://github.com/jhollinger/otr-activerecord/compare/v2.1.2...v2.2.0) --- updated-dependencies: - dependency-name: otr-activerecord dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 33 ++++++++++++++++++++++----------- 2 files changed, 23 insertions(+), 12 deletions(-) diff --git a/Gemfile b/Gemfile index 1b52cb076..5d74c5859 100644 --- a/Gemfile +++ b/Gemfile @@ -22,7 +22,7 @@ gem 'term-ansicolor', :require => 'term/ansicolor' gem 'rubyzip', '~> 2.3' gem 'espeak-ruby', '~> 1.1.0' # Text-to-Voice gem 'rake', '~> 13.0' -gem 'otr-activerecord', '~> 2.1', '>= 2.1.2' +gem 'otr-activerecord', '~> 2.2' gem 'sqlite3', '~> 1.6' gem 'rubocop', '~> 1.57.0', require: false diff --git a/Gemfile.lock b/Gemfile.lock index 3c616aa00..b6824dd18 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,15 +1,21 @@ GEM remote: https://rubygems.org/ specs: - activemodel (7.0.4.3) - activesupport (= 7.0.4.3) - activerecord (7.0.4.3) - activemodel (= 7.0.4.3) - activesupport (= 7.0.4.3) - activesupport (7.0.4.3) + activemodel (7.1.1) + activesupport (= 7.1.1) + activerecord (7.1.1) + activemodel (= 7.1.1) + activesupport (= 7.1.1) + timeout (>= 0.4.0) + activesupport (7.1.1) + base64 + bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb i18n (>= 1.6, < 2) minitest (>= 5.1) + mutex_m tzinfo (~> 2.0) addressable (2.8.4) public_suffix (>= 2.0.2, < 6.0) @@ -26,6 +32,7 @@ GEM async-io (1.34.3) async base64 (0.1.1) + bigdecimal (3.1.4) browserstack-local (1.4.3) byebug (11.1.3) capybara (3.39.2) @@ -39,6 +46,7 @@ GEM xpath (~> 3.2) coderay (1.1.3) concurrent-ruby (1.2.2) + connection_pool (2.4.1) console (1.16.2) fiber-local curb (1.0.5) @@ -46,6 +54,8 @@ GEM diff-lcs (1.5.0) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) + drb (2.1.1) + ruby2_keywords em-websocket (0.5.3) eventmachine (>= 0.12.9) http_parser.rb (~> 0) @@ -64,7 +74,7 @@ GEM http-cookie (1.0.5) domain_name (~> 0.5) http_parser.rb (0.8.0) - i18n (1.12.0) + i18n (1.14.1) concurrent-ruby (~> 1.0) io-console (0.6.0) io-like (0.3.1) @@ -80,13 +90,14 @@ GEM mime-types-data (~> 3.2015) mime-types-data (3.2023.0218.1) mini_mime (1.1.2) - minitest (5.18.0) + minitest (5.20.0) mojo_magick (0.6.7) msfrpc-client (1.1.2) msgpack (~> 1) msgpack (1.6.1) mustermann (3.0.0) ruby2_keywords (~> 0.0.1) + mutex_m (0.1.2) net-protocol (0.2.1) timeout net-smtp (0.4.0) @@ -97,8 +108,8 @@ GEM racc (~> 1.4) nokogiri (1.15.2-x86_64-linux) racc (~> 1.4) - otr-activerecord (2.1.2) - activerecord (>= 4.0, < 7.1) + otr-activerecord (2.2.0) + activerecord (>= 4.0, < 7.2) hashie-forbidden_attributes (~> 0.1) parallel (1.23.0) parseconfig (1.1.2) @@ -255,7 +266,7 @@ DEPENDENCIES mime-types (~> 3.4, >= 3.4.1) msfrpc-client (~> 1.1, >= 1.1.2) net-smtp - otr-activerecord (~> 2.1, >= 2.1.2) + otr-activerecord (~> 2.2) parseconfig (~> 1.1, >= 1.1.2) pry-byebug (~> 3.10, >= 3.10.1) qr4r (~> 0.6.1) From 4f7c0db2746e81dc7ba9c16bcadf7148b53b842c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 08:30:59 +0000 Subject: [PATCH 03/64] Bump otr-activerecord from 2.1.2 to 2.2.0 Bumps [otr-activerecord](https://github.com/jhollinger/otr-activerecord) from 2.1.2 to 2.2.0. - [Changelog](https://github.com/jhollinger/otr-activerecord/blob/main/CHANGELOG.md) - [Commits](https://github.com/jhollinger/otr-activerecord/compare/v2.1.2...v2.2.0) --- updated-dependencies: - dependency-name: otr-activerecord dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 33 ++++++++++++++++++++++----------- 2 files changed, 23 insertions(+), 12 deletions(-) diff --git a/Gemfile b/Gemfile index 977162774..60252d02c 100644 --- a/Gemfile +++ b/Gemfile @@ -23,7 +23,7 @@ gem 'rubyzip', '~> 2.3' gem 'espeak-ruby', '~> 1.1.0' # Text-to-Voice gem 'rake', '~> 13.0' # gem 'otr-activerecord', '~> 2.1', '>= 2.1.2' -gem 'otr-activerecord', '= 2.1.2' +gem 'otr-activerecord', '2.2.0' gem 'sqlite3', '~> 1.6' gem 'rubocop', '~> 1.57.0', require: false diff --git a/Gemfile.lock b/Gemfile.lock index 3c616aa00..50324f6e0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,15 +1,21 @@ GEM remote: https://rubygems.org/ specs: - activemodel (7.0.4.3) - activesupport (= 7.0.4.3) - activerecord (7.0.4.3) - activemodel (= 7.0.4.3) - activesupport (= 7.0.4.3) - activesupport (7.0.4.3) + activemodel (7.1.1) + activesupport (= 7.1.1) + activerecord (7.1.1) + activemodel (= 7.1.1) + activesupport (= 7.1.1) + timeout (>= 0.4.0) + activesupport (7.1.1) + base64 + bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb i18n (>= 1.6, < 2) minitest (>= 5.1) + mutex_m tzinfo (~> 2.0) addressable (2.8.4) public_suffix (>= 2.0.2, < 6.0) @@ -26,6 +32,7 @@ GEM async-io (1.34.3) async base64 (0.1.1) + bigdecimal (3.1.4) browserstack-local (1.4.3) byebug (11.1.3) capybara (3.39.2) @@ -39,6 +46,7 @@ GEM xpath (~> 3.2) coderay (1.1.3) concurrent-ruby (1.2.2) + connection_pool (2.4.1) console (1.16.2) fiber-local curb (1.0.5) @@ -46,6 +54,8 @@ GEM diff-lcs (1.5.0) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) + drb (2.1.1) + ruby2_keywords em-websocket (0.5.3) eventmachine (>= 0.12.9) http_parser.rb (~> 0) @@ -64,7 +74,7 @@ GEM http-cookie (1.0.5) domain_name (~> 0.5) http_parser.rb (0.8.0) - i18n (1.12.0) + i18n (1.14.1) concurrent-ruby (~> 1.0) io-console (0.6.0) io-like (0.3.1) @@ -80,13 +90,14 @@ GEM mime-types-data (~> 3.2015) mime-types-data (3.2023.0218.1) mini_mime (1.1.2) - minitest (5.18.0) + minitest (5.20.0) mojo_magick (0.6.7) msfrpc-client (1.1.2) msgpack (~> 1) msgpack (1.6.1) mustermann (3.0.0) ruby2_keywords (~> 0.0.1) + mutex_m (0.1.2) net-protocol (0.2.1) timeout net-smtp (0.4.0) @@ -97,8 +108,8 @@ GEM racc (~> 1.4) nokogiri (1.15.2-x86_64-linux) racc (~> 1.4) - otr-activerecord (2.1.2) - activerecord (>= 4.0, < 7.1) + otr-activerecord (2.2.0) + activerecord (>= 4.0, < 7.2) hashie-forbidden_attributes (~> 0.1) parallel (1.23.0) parseconfig (1.1.2) @@ -255,7 +266,7 @@ DEPENDENCIES mime-types (~> 3.4, >= 3.4.1) msfrpc-client (~> 1.1, >= 1.1.2) net-smtp - otr-activerecord (~> 2.1, >= 2.1.2) + otr-activerecord (= 2.2.0) parseconfig (~> 1.1, >= 1.1.2) pry-byebug (~> 3.10, >= 3.10.1) qr4r (~> 0.6.1) From 57482fbb6f4cdb691284bd10503283647aaea8b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 13:33:20 +0000 Subject: [PATCH 04/64] Bump rake from 13.0.6 to 13.1.0 Bumps [rake](https://github.com/ruby/rake) from 13.0.6 to 13.1.0. - [Release notes](https://github.com/ruby/rake/releases) - [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc) - [Commits](https://github.com/ruby/rake/compare/v13.0.6...v13.1.0) --- updated-dependencies: - dependency-name: rake dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 977162774..34eb2453b 100644 --- a/Gemfile +++ b/Gemfile @@ -21,7 +21,7 @@ gem 'ansi', '~> 1.5' gem 'term-ansicolor', :require => 'term/ansicolor' gem 'rubyzip', '~> 2.3' gem 'espeak-ruby', '~> 1.1.0' # Text-to-Voice -gem 'rake', '~> 13.0' +gem 'rake', '~> 13.1' # gem 'otr-activerecord', '~> 2.1', '>= 2.1.2' gem 'otr-activerecord', '= 2.1.2' gem 'sqlite3', '~> 1.6' diff --git a/Gemfile.lock b/Gemfile.lock index 3c616aa00..51ad0b2ac 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -125,7 +125,7 @@ GEM rack-test (2.1.0) rack (>= 1.3) rainbow (3.1.1) - rake (13.0.6) + rake (13.1.0) rdoc (6.5.0) psych (>= 4.0.0) regexp_parser (2.8.2) @@ -255,13 +255,13 @@ DEPENDENCIES mime-types (~> 3.4, >= 3.4.1) msfrpc-client (~> 1.1, >= 1.1.2) net-smtp - otr-activerecord (~> 2.1, >= 2.1.2) + otr-activerecord (= 2.1.2) parseconfig (~> 1.1, >= 1.1.2) pry-byebug (~> 3.10, >= 3.10.1) qr4r (~> 0.6.1) rack (~> 2.2) rack-protection (~> 3.0.5) - rake (~> 13.0) + rake (~> 13.1) rdoc (~> 6.5) rest-client (~> 2.1.0) rspec (~> 3.12) From ae25108c931dcc00bc98ef296e0b840bd69d78b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 13:58:02 +0000 Subject: [PATCH 05/64] Bump sqlite3 from 1.6.7 to 1.6.9 Bumps [sqlite3](https://github.com/sparklemotion/sqlite3-ruby) from 1.6.7 to 1.6.9. - [Release notes](https://github.com/sparklemotion/sqlite3-ruby/releases) - [Changelog](https://github.com/sparklemotion/sqlite3-ruby/blob/master/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/sqlite3-ruby/compare/v1.6.7...v1.6.9) --- updated-dependencies: - dependency-name: sqlite3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 3c616aa00..ce37221a7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -182,8 +182,8 @@ GEM rack-protection (= 3.0.6) tilt (~> 2.0) slack-notifier (2.4.0) - sqlite3 (1.6.7-arm64-darwin) - sqlite3 (1.6.7-x86_64-linux) + sqlite3 (1.6.9-arm64-darwin) + sqlite3 (1.6.9-x86_64-linux) stringio (3.0.5) sync (0.5.0) term-ansicolor (1.7.1) @@ -255,7 +255,7 @@ DEPENDENCIES mime-types (~> 3.4, >= 3.4.1) msfrpc-client (~> 1.1, >= 1.1.2) net-smtp - otr-activerecord (~> 2.1, >= 2.1.2) + otr-activerecord (= 2.1.2) parseconfig (~> 1.1, >= 1.1.2) pry-byebug (~> 3.10, >= 3.10.1) qr4r (~> 0.6.1) From f5fae026ce1792d2d02d4b833b44ffb6229c8af6 Mon Sep 17 00:00:00 2001 From: TheGuy920 <53882381+TheGuy920@users.noreply.github.com> Date: Tue, 5 Dec 2023 17:05:52 -0500 Subject: [PATCH 06/64] Update INSTALL.txt --- INSTALL.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.txt b/INSTALL.txt index 152273267..9069b221b 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -21,7 +21,7 @@ Or cloning the Git repository from Github: Prerequisites -------------- -BeEF requires Ruby 2.7+. +BeEF requires Ruby 3.0+. If your operating system package manager does not support Ruby version 2.7, you can add the brightbox ppa repository for the latest version of Ruby: From 629db4fe20fbf8a62d5262c81cebd05096aea6d2 Mon Sep 17 00:00:00 2001 From: TheGuy920 <53882381+TheGuy920@users.noreply.github.com> Date: Tue, 5 Dec 2023 17:21:22 -0500 Subject: [PATCH 07/64] Update beef --- beef | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beef b/beef index 8fe6052da..4d9bd2dc4 100755 --- a/beef +++ b/beef @@ -14,7 +14,7 @@ $VERBOSE = nil # # @note Version check to ensure BeEF is running Ruby 2.7+ # -min_ruby_version = '2.7' +min_ruby_version = '3.0' if RUBY_VERSION < min_ruby_version puts puts "Ruby version #{RUBY_VERSION} is no longer supported. Please upgrade to Ruby version #{min_ruby_version} or later." From bea58a8cdb8cf17d3a96db0a72b7f0b61aed169d Mon Sep 17 00:00:00 2001 From: TheGuy920 <53882381+TheGuy920@users.noreply.github.com> Date: Tue, 5 Dec 2023 17:36:17 -0500 Subject: [PATCH 08/64] Update beef --- beef | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beef b/beef index 4d9bd2dc4..cf6bd7216 100755 --- a/beef +++ b/beef @@ -12,7 +12,7 @@ $VERBOSE = nil # -# @note Version check to ensure BeEF is running Ruby 2.7+ +# @note Version check to ensure BeEF is running Ruby 3.0+ # min_ruby_version = '3.0' if RUBY_VERSION < min_ruby_version From acf5bd60bb265ace71e3eab886b78bd65b5f145e Mon Sep 17 00:00:00 2001 From: TheGuy920 <53882381+TheGuy920@users.noreply.github.com> Date: Tue, 5 Dec 2023 17:36:46 -0500 Subject: [PATCH 09/64] Update INSTALL.txt --- INSTALL.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.txt b/INSTALL.txt index 9069b221b..8aad8a26e 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -23,7 +23,7 @@ Prerequisites BeEF requires Ruby 3.0+. -If your operating system package manager does not support Ruby version 2.7, +If your operating system package manager does not support Ruby version 3.0, you can add the brightbox ppa repository for the latest version of Ruby: $ sudo apt-add-repository -y ppa:brightbox/ruby-ng From 03da278bc1bf763a3eaf95330f2bd89493b43bc7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 13:25:20 +0000 Subject: [PATCH 10/64] Bump irb from 1.8.1 to 1.11.0 Bumps [irb](https://github.com/ruby/irb) from 1.8.1 to 1.11.0. - [Release notes](https://github.com/ruby/irb/releases) - [Commits](https://github.com/ruby/irb/compare/v1.8.1...v1.11.0) --- updated-dependencies: - dependency-name: irb dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Gemfile b/Gemfile index d7f223c3c..e225f5206 100644 --- a/Gemfile +++ b/Gemfile @@ -67,7 +67,7 @@ group :test do gem 'rdoc', '~> 6.6' gem 'browserstack-local', '~> 1.4' - gem 'irb', '~> 1.8' + gem 'irb', '~> 1.11' gem 'pry-byebug', '~> 3.10', '>= 3.10.1' gem 'rest-client', '~> 2.1.0' diff --git a/Gemfile.lock b/Gemfile.lock index 5e290480f..7f6ac1319 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -66,9 +66,9 @@ GEM http_parser.rb (0.8.0) i18n (1.12.0) concurrent-ruby (~> 1.0) - io-console (0.6.0) + io-console (0.7.1) io-like (0.3.1) - irb (1.8.1) + irb (1.11.0) rdoc reline (>= 0.3.8) json (2.6.3) @@ -112,7 +112,7 @@ GEM pry-byebug (3.10.1) byebug (~> 11.0) pry (>= 0.13, < 0.15) - psych (5.1.1.1) + psych (5.1.2) stringio public_suffix (5.0.1) qr4r (0.6.1) @@ -129,7 +129,7 @@ GEM rdoc (6.6.1) psych (>= 4.0.0) regexp_parser (2.8.2) - reline (0.3.8) + reline (0.4.1) io-console (~> 0.5) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) @@ -249,7 +249,7 @@ DEPENDENCIES eventmachine (~> 1.2, >= 1.2.7) execjs (~> 2.9) geckodriver-helper (~> 0.24.0) - irb (~> 1.8) + irb (~> 1.11) json maxmind-db (~> 1.1, >= 1.1.1) mime-types (~> 3.4, >= 3.4.1) From 4b72bce53aea71aaf736f8b639205e1ce0f299c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 21:39:49 +0000 Subject: [PATCH 11/64] Bump maxmind-db from 1.1.1 to 1.2.0 Bumps [maxmind-db](https://github.com/maxmind/MaxMind-DB-Reader-ruby) from 1.1.1 to 1.2.0. - [Changelog](https://github.com/maxmind/MaxMind-DB-Reader-ruby/blob/main/CHANGELOG.md) - [Commits](https://github.com/maxmind/MaxMind-DB-Reader-ruby/compare/v1.1.1...v1.2.0) --- updated-dependencies: - dependency-name: maxmind-db dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index e225f5206..d65d8f293 100644 --- a/Gemfile +++ b/Gemfile @@ -29,7 +29,7 @@ gem 'rubocop', '~> 1.57.0', require: false # Geolocation support group :geoip do - gem 'maxmind-db', '~> 1.1', '>= 1.1.1' + gem 'maxmind-db', '~> 1.2' end gem 'parseconfig', '~> 1.1', '>= 1.1.2' diff --git a/Gemfile.lock b/Gemfile.lock index bcac7cbd2..97a7062f8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -74,7 +74,7 @@ GEM json (2.6.3) language_server-protocol (3.17.0.3) matrix (0.4.2) - maxmind-db (1.1.1) + maxmind-db (1.2.0) method_source (1.0.0) mime-types (3.4.1) mime-types-data (~> 3.2015) @@ -251,7 +251,7 @@ DEPENDENCIES geckodriver-helper (~> 0.24.0) irb (~> 1.11) json - maxmind-db (~> 1.1, >= 1.1.1) + maxmind-db (~> 1.2) mime-types (~> 3.4, >= 3.4.1) msfrpc-client (~> 1.1, >= 1.1.2) net-smtp From 92b29541125011cc38620e0fb008808eed94ff5a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 21:39:54 +0000 Subject: [PATCH 12/64] Bump rubocop from 1.57.0 to 1.59.0 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.57.0 to 1.59.0. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.57.0...v1.59.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 16 +++++++--------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/Gemfile b/Gemfile index e225f5206..56818d253 100644 --- a/Gemfile +++ b/Gemfile @@ -25,7 +25,7 @@ gem 'rake', '~> 13.0' # gem 'otr-activerecord', '~> 2.1', '>= 2.1.2' gem 'otr-activerecord', '= 2.1.2' gem 'sqlite3', '~> 1.6' -gem 'rubocop', '~> 1.57.0', require: false +gem 'rubocop', '~> 1.59.0', require: false # Geolocation support group :geoip do diff --git a/Gemfile.lock b/Gemfile.lock index bcac7cbd2..5b9fac403 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -25,7 +25,6 @@ GEM async-io (~> 1.15) async-io (1.34.3) async - base64 (0.1.1) browserstack-local (1.4.3) byebug (11.1.3) capybara (3.39.2) @@ -100,7 +99,7 @@ GEM otr-activerecord (2.1.2) activerecord (>= 4.0, < 7.1) hashie-forbidden_attributes (~> 0.1) - parallel (1.23.0) + parallel (1.24.0) parseconfig (1.1.2) parser (3.2.2.4) ast (~> 2.4.1) @@ -118,7 +117,7 @@ GEM qr4r (0.6.1) mojo_magick (~> 0.6.5) rqrcode_core (~> 0.1) - racc (1.7.1) + racc (1.7.3) rack (2.2.7) rack-protection (3.0.6) rack @@ -128,7 +127,7 @@ GEM rake (13.0.6) rdoc (6.6.1) psych (>= 4.0.0) - regexp_parser (2.8.2) + regexp_parser (2.8.3) reline (0.4.1) io-console (~> 0.5) rest-client (2.1.0) @@ -152,8 +151,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-support (3.12.0) - rubocop (1.57.0) - base64 (~> 0.1.1) + rubocop (1.59.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -161,10 +159,10 @@ GEM rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) + rubocop-ast (1.30.0) parser (>= 3.2.1.0) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) @@ -265,7 +263,7 @@ DEPENDENCIES rdoc (~> 6.6) rest-client (~> 2.1.0) rspec (~> 3.12) - rubocop (~> 1.57.0) + rubocop (~> 1.59.0) rubyzip (~> 2.3) rushover (~> 0.3.0) selenium-webdriver (~> 4.14) From e62573fbf26f36fa08f04d5e435164ae35f2fe9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 21:44:54 +0000 Subject: [PATCH 13/64] Bump rdoc from 6.6.1 to 6.6.2 Bumps [rdoc](https://github.com/ruby/rdoc) from 6.6.1 to 6.6.2. - [Release notes](https://github.com/ruby/rdoc/releases) - [Changelog](https://github.com/ruby/rdoc/blob/master/History.rdoc) - [Commits](https://github.com/ruby/rdoc/compare/v6.6.1...v6.6.2) --- updated-dependencies: - dependency-name: rdoc dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index bcac7cbd2..204c7e5f4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -126,7 +126,7 @@ GEM rack (>= 1.3) rainbow (3.1.1) rake (13.0.6) - rdoc (6.6.1) + rdoc (6.6.2) psych (>= 4.0.0) regexp_parser (2.8.2) reline (0.4.1) From 5dd8715f56ddb546619b489cbbf38af1edecb3c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 21:51:11 +0000 Subject: [PATCH 14/64] Bump selenium-webdriver from 4.14.0 to 4.16.0 Bumps [selenium-webdriver](https://github.com/SeleniumHQ/selenium) from 4.14.0 to 4.16.0. - [Release notes](https://github.com/SeleniumHQ/selenium/releases) - [Changelog](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES) - [Commits](https://github.com/SeleniumHQ/selenium/compare/selenium-4.14.0...selenium-4.16.0) --- updated-dependencies: - dependency-name: selenium-webdriver dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 56818d253..5929bf230 100644 --- a/Gemfile +++ b/Gemfile @@ -80,7 +80,7 @@ group :test do # selenium-webdriver 3.x is incompatible with Firefox version 48 and prior # gem 'selenium' # Requires old version of selenium which is no longer available gem 'geckodriver-helper', '~> 0.24.0' - gem 'selenium-webdriver', '~> 4.14' + gem 'selenium-webdriver', '~> 4.16' # nokogiri is needed by capybara which may require one of the below commands # sudo apt-get install libxslt-dev libxml2-dev diff --git a/Gemfile.lock b/Gemfile.lock index 6be76c1f0..baeb7ae37 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -170,7 +170,7 @@ GEM rushover (0.3.0) json rest-client - selenium-webdriver (4.14.0) + selenium-webdriver (4.16.0) rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) @@ -266,7 +266,7 @@ DEPENDENCIES rubocop (~> 1.59.0) rubyzip (~> 2.3) rushover (~> 0.3.0) - selenium-webdriver (~> 4.14) + selenium-webdriver (~> 4.16) sinatra (~> 3.0) slack-notifier (~> 2.4) sqlite3 (~> 1.6) From 3a486c7626ce9ffc0ec829015664458ce21d0d50 Mon Sep 17 00:00:00 2001 From: jcrew99 Date: Tue, 26 Dec 2023 22:32:31 -0500 Subject: [PATCH 15/64] Updated Copyright --- Gemfile | 2 +- INSTALL.txt | 2 +- README.md | 2 +- Rakefile | 2 +- VERSION | 2 +- beef | 2 +- config.yaml | 2 +- core/api.rb | 2 +- core/api/extension.rb | 2 +- core/api/extensions.rb | 2 +- core/api/main/configuration.rb | 2 +- core/api/main/migration.rb | 2 +- core/api/main/network_stack/assethandler.rb | 2 +- core/api/main/server.rb | 2 +- core/api/main/server/hook.rb | 2 +- core/api/module.rb | 2 +- core/api/modules.rb | 2 +- core/bootstrap.rb | 2 +- core/core.rb | 2 +- core/extension.rb | 2 +- core/extensions.rb | 2 +- core/filters.rb | 2 +- core/filters/base.rb | 2 +- core/filters/browser.rb | 2 +- core/filters/command.rb | 2 +- core/filters/http.rb | 2 +- core/filters/page.rb | 2 +- core/hbmanager.rb | 2 +- core/loader.rb | 2 +- core/logger.rb | 2 +- core/main/autorun_engine/engine.rb | 2 +- core/main/autorun_engine/parser.rb | 2 +- core/main/autorun_engine/rule_loader.rb | 2 +- core/main/client/are.js | 2 +- core/main/client/beef.js | 2 +- core/main/client/browser.js | 2 +- core/main/client/browser/cookie.js | 2 +- core/main/client/browser/popup.js | 2 +- core/main/client/dom.js | 2 +- core/main/client/encode/base64.js | 2 +- core/main/client/encode/json.js | 2 +- core/main/client/geolocation.js | 2 +- core/main/client/hardware.js | 2 +- core/main/client/init.js | 2 +- core/main/client/lib/evercookie.js | 2 +- core/main/client/logger.js | 2 +- core/main/client/mitb.js | 2 +- core/main/client/net.js | 2 +- core/main/client/net/connection.js | 2 +- core/main/client/net/dns.js | 2 +- core/main/client/net/local.js | 2 +- core/main/client/net/portscanner.js | 2 +- core/main/client/net/requester.js | 2 +- core/main/client/os.js | 2 +- core/main/client/session.js | 2 +- core/main/client/timeout.js | 2 +- core/main/client/updater.js | 2 +- core/main/client/webrtc.js | 2 +- core/main/client/websocket.js | 2 +- core/main/command.rb | 2 +- core/main/configuration.rb | 2 +- core/main/console/banners.rb | 2 +- core/main/console/commandline.rb | 2 +- core/main/constants/browsers.rb | 2 +- core/main/constants/commandmodule.rb | 2 +- core/main/constants/hardware.rb | 2 +- core/main/constants/os.rb | 2 +- core/main/crypto.rb | 2 +- core/main/geoip.rb | 2 +- core/main/handlers/browserdetails.rb | 2 +- core/main/handlers/commands.rb | 2 +- core/main/handlers/hookedbrowsers.rb | 2 +- core/main/handlers/modules/beefjs.rb | 2 +- core/main/handlers/modules/command.rb | 4 ++-- core/main/handlers/modules/legacybeefjs.rb | 2 +- core/main/handlers/modules/multistagebeefjs.rb | 2 +- core/main/logger.rb | 2 +- core/main/migration.rb | 2 +- core/main/model.rb | 2 +- core/main/models/browserdetails.rb | 2 +- core/main/models/command.rb | 2 +- core/main/models/commandmodule.rb | 2 +- core/main/models/execution.rb | 2 +- core/main/models/hookedbrowser.rb | 2 +- core/main/models/legacybrowseruseragents.rb | 2 +- core/main/models/log.rb | 2 +- core/main/models/optioncache.rb | 2 +- core/main/models/result.rb | 2 +- core/main/models/rule.rb | 2 +- core/main/network_stack/api.rb | 2 +- core/main/network_stack/assethandler.rb | 2 +- core/main/network_stack/handlers/dynamicreconstruction.rb | 2 +- core/main/network_stack/handlers/raw.rb | 2 +- core/main/network_stack/handlers/redirector.rb | 2 +- core/main/network_stack/websocket/websocket.rb | 2 +- core/main/rest/api.rb | 2 +- core/main/rest/handlers/admin.rb | 2 +- core/main/rest/handlers/autorun_engine.rb | 2 +- core/main/rest/handlers/browserdetails.rb | 2 +- core/main/rest/handlers/categories.rb | 2 +- core/main/rest/handlers/hookedbrowsers.rb | 2 +- core/main/rest/handlers/logs.rb | 2 +- core/main/rest/handlers/modules.rb | 2 +- core/main/rest/handlers/server.rb | 2 +- core/main/router/api.rb | 2 +- core/main/router/router.rb | 2 +- core/main/server.rb | 2 +- core/module.rb | 2 +- core/modules.rb | 2 +- core/ruby.rb | 2 +- core/ruby/hash.rb | 2 +- core/ruby/module.rb | 2 +- core/ruby/print.rb | 2 +- core/ruby/security.rb | 2 +- core/ruby/string.rb | 2 +- core/settings.rb | 2 +- doc/boilerplate | 2 +- docs/are.js.html | 2 +- docs/beef.js.html | 2 +- docs/browser.js.html | 2 +- docs/browser_cookie.js.html | 2 +- docs/browser_popup.js.html | 2 +- docs/dom.js.html | 2 +- docs/encode_base64.js.html | 2 +- docs/encode_json.js.html | 2 +- docs/geolocation.js.html | 2 +- docs/hardware.js.html | 2 +- docs/index.html | 2 +- docs/init.js.html | 2 +- docs/logger.js.html | 2 +- docs/mitb.js.html | 2 +- docs/net.js.html | 2 +- docs/net_connection.js.html | 2 +- docs/net_dns.js.html | 2 +- docs/net_local.js.html | 2 +- docs/net_portscanner.js.html | 2 +- docs/net_requester.js.html | 2 +- docs/os.js.html | 2 +- docs/session.js.html | 2 +- docs/timeout.js.html | 2 +- docs/updater.js.html | 2 +- docs/webrtc.js.html | 2 +- docs/websocket.js.html | 2 +- extensions/admin_ui/api/handler.rb | 2 +- extensions/admin_ui/classes/httpcontroller.rb | 2 +- extensions/admin_ui/classes/session.rb | 2 +- extensions/admin_ui/config.yaml | 2 +- extensions/admin_ui/constants/icons.rb | 2 +- .../admin_ui/controllers/authentication/authentication.rb | 2 +- extensions/admin_ui/controllers/authentication/index.html | 2 +- extensions/admin_ui/controllers/modules/modules.rb | 2 +- extensions/admin_ui/controllers/panel/index.html | 2 +- extensions/admin_ui/controllers/panel/panel.rb | 2 +- extensions/admin_ui/extension.rb | 2 +- extensions/admin_ui/handlers/ui.rb | 2 +- extensions/admin_ui/media/css/base.css | 2 +- extensions/admin_ui/media/css/ext-all.css | 2 +- extensions/admin_ui/media/javascript/esapi/Class.create.js | 2 +- extensions/admin_ui/media/javascript/ui/authentication.js | 2 +- .../admin_ui/media/javascript/ui/common/beef_common.js | 2 +- .../media/javascript/ui/panel/BrowserDetailsDataGrid.js | 2 +- extensions/admin_ui/media/javascript/ui/panel/HooksTab.js | 2 +- extensions/admin_ui/media/javascript/ui/panel/Logout.js | 2 +- .../admin_ui/media/javascript/ui/panel/LogsDataGrid.js | 2 +- extensions/admin_ui/media/javascript/ui/panel/MainPanel.js | 2 +- .../admin_ui/media/javascript/ui/panel/PanelStatusBar.js | 2 +- .../admin_ui/media/javascript/ui/panel/PanelViewer.js | 2 +- extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js | 2 +- .../admin_ui/media/javascript/ui/panel/ZombieDataGrid.js | 2 +- extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js | 2 +- extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js | 2 +- extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js | 2 +- extensions/admin_ui/media/javascript/ui/panel/common.js | 2 +- .../media/javascript/ui/panel/tabs/ZombieTabCommands.js | 2 +- .../media/javascript/ui/panel/tabs/ZombieTabDetails.js | 2 +- .../media/javascript/ui/panel/tabs/ZombieTabLogs.js | 2 +- .../media/javascript/ui/panel/tabs/ZombieTabNetwork.js | 2 +- .../admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js | 2 +- .../media/javascript/ui/panel/tabs/ZombieTabRider.js | 2 +- .../media/javascript/ui/panel/tabs/ZombieTabXssRays.js | 2 +- .../admin_ui/media/javascript/ui/panel/zombiesTreeList.js | 2 +- extensions/admin_ui/media/javascript/ux/PagingStore.js | 2 +- extensions/admin_ui/media/javascript/ux/StatusBar.js | 2 +- extensions/admin_ui/media/javascript/ux/TabCloseMenu.js | 2 +- extensions/autoloader/config.yaml | 2 +- extensions/autoloader/extension.rb | 2 +- extensions/autoloader/model.rb | 2 +- extensions/customhook/api.rb | 2 +- extensions/customhook/config.yaml | 2 +- extensions/customhook/extension.rb | 2 +- extensions/customhook/handler.rb | 2 +- extensions/customhook/html/index.html | 2 +- extensions/demos/api.rb | 2 +- extensions/demos/config.yaml | 2 +- extensions/demos/extension.rb | 2 +- extensions/demos/handler.rb | 2 +- extensions/demos/html/basic.html | 2 +- extensions/demos/html/butcher/butch.css | 2 +- extensions/demos/html/butcher/index.html | 2 +- extensions/demos/html/clickjacking/clickjack_attack.html | 2 +- extensions/demos/html/clickjacking/clickjack_victim.html | 2 +- extensions/demos/html/plain.html | 2 +- extensions/demos/html/report.html | 2 +- extensions/demos/html/secret_page.html | 2 +- extensions/dns/api.rb | 2 +- extensions/dns/config.yaml | 2 +- extensions/dns/dns.rb | 2 +- extensions/dns/extension.rb | 2 +- extensions/dns/logger.rb | 2 +- extensions/dns/model.rb | 2 +- extensions/dns/rest/dns.rb | 2 +- extensions/dns_rebinding/api.rb | 2 +- extensions/dns_rebinding/config.yaml | 2 +- extensions/dns_rebinding/extension.rb | 2 +- extensions/etag/api.rb | 2 +- extensions/etag/config.yaml | 2 +- extensions/etag/etag.rb | 2 +- extensions/etag/extension.rb | 2 +- extensions/evasion/config.yaml | 2 +- extensions/evasion/evasion.rb | 2 +- extensions/evasion/extension.rb | 2 +- extensions/evasion/obfuscation/base_64.rb | 2 +- extensions/evasion/obfuscation/minify.rb | 2 +- extensions/evasion/obfuscation/scramble.rb | 2 +- extensions/evasion/obfuscation/whitespace.rb | 2 +- extensions/events/api.rb | 2 +- extensions/events/config.yaml | 2 +- extensions/events/extension.rb | 2 +- extensions/events/handler.rb | 2 +- extensions/metasploit/api.rb | 2 +- extensions/metasploit/config.yaml | 2 +- extensions/metasploit/extension.rb | 2 +- extensions/metasploit/module.rb | 2 +- extensions/metasploit/rest/msf.rb | 2 +- extensions/metasploit/rpcclient.rb | 2 +- extensions/network/api.rb | 2 +- extensions/network/config.yaml | 2 +- extensions/network/extension.rb | 2 +- extensions/network/models/network_host.rb | 2 +- extensions/network/models/network_service.rb | 2 +- extensions/network/rest/network.rb | 2 +- extensions/notifications/channels/email.rb | 2 +- extensions/notifications/channels/slack_workspace.rb | 2 +- extensions/notifications/config.yaml | 2 +- extensions/notifications/extension.rb | 2 +- extensions/notifications/notifications.rb | 2 +- extensions/proxy/api.rb | 2 +- extensions/proxy/config.yaml | 2 +- extensions/proxy/extension.rb | 2 +- extensions/proxy/proxy.rb | 2 +- extensions/proxy/rest/proxy.rb | 2 +- extensions/qrcode/config.yaml | 2 +- extensions/qrcode/extension.rb | 2 +- extensions/qrcode/qrcode.rb | 2 +- extensions/requester/api.rb | 2 +- extensions/requester/api/hook.rb | 4 ++-- extensions/requester/config.yaml | 2 +- extensions/requester/extension.rb | 2 +- extensions/requester/handler.rb | 2 +- extensions/requester/models/http.rb | 2 +- extensions/requester/rest/requester.rb | 2 +- extensions/s2c_dns_tunnel/api.rb | 2 +- extensions/s2c_dns_tunnel/config.yaml | 2 +- extensions/s2c_dns_tunnel/dnsd.rb | 2 +- extensions/s2c_dns_tunnel/extension.rb | 2 +- extensions/social_engineering/config.yaml | 2 +- extensions/social_engineering/extension.rb | 2 +- extensions/social_engineering/models/interceptor.rb | 2 +- extensions/social_engineering/models/web_cloner.rb | 2 +- extensions/social_engineering/powershell/bind_powershell.rb | 2 +- extensions/social_engineering/rest/socialengineering.rb | 2 +- extensions/social_engineering/web_cloner/interceptor.rb | 2 +- extensions/social_engineering/web_cloner/web_cloner.rb | 2 +- extensions/webrtc/api.rb | 2 +- extensions/webrtc/api/hook.rb | 2 +- extensions/webrtc/config.yaml | 2 +- extensions/webrtc/extension.rb | 2 +- extensions/webrtc/handlers.rb | 2 +- extensions/webrtc/models/rtcmanage.rb | 2 +- extensions/webrtc/models/rtcmodulestatus.rb | 2 +- extensions/webrtc/models/rtcsignal.rb | 2 +- extensions/webrtc/models/rtcstatus.rb | 2 +- extensions/webrtc/rest/webrtc.rb | 2 +- extensions/xssrays/api.rb | 2 +- extensions/xssrays/api/scan.rb | 4 ++-- extensions/xssrays/config.yaml | 2 +- extensions/xssrays/extension.rb | 2 +- extensions/xssrays/handler.rb | 2 +- extensions/xssrays/models/xssraysdetail.rb | 2 +- extensions/xssrays/models/xssraysscan.rb | 2 +- extensions/xssrays/rest/xssrays.rb | 2 +- install | 2 +- modules/browser/avant_steal_history/command.js | 2 +- modules/browser/avant_steal_history/config.yaml | 2 +- modules/browser/avant_steal_history/module.rb | 2 +- modules/browser/browser_fingerprinting/command.js | 2 +- modules/browser/browser_fingerprinting/config.yaml | 2 +- modules/browser/browser_fingerprinting/module.rb | 2 +- modules/browser/detect_activex/command.js | 2 +- modules/browser/detect_activex/config.yaml | 2 +- modules/browser/detect_activex/module.rb | 2 +- modules/browser/detect_evernote_clipper/command.js | 2 +- modules/browser/detect_evernote_clipper/config.yaml | 2 +- modules/browser/detect_evernote_clipper/module.rb | 2 +- modules/browser/detect_extensions/command.js | 2 +- modules/browser/detect_extensions/config.yaml | 2 +- modules/browser/detect_extensions/module.rb | 2 +- modules/browser/detect_firebug/command.js | 2 +- modules/browser/detect_firebug/config.yaml | 2 +- modules/browser/detect_firebug/module.rb | 2 +- modules/browser/detect_foxit/command.js | 2 +- modules/browser/detect_foxit/config.yaml | 2 +- modules/browser/detect_foxit/module.rb | 2 +- modules/browser/detect_lastpass/command.js | 2 +- modules/browser/detect_lastpass/config.yaml | 2 +- modules/browser/detect_lastpass/module.rb | 2 +- modules/browser/detect_mime_types/command.js | 2 +- modules/browser/detect_mime_types/config.yaml | 2 +- modules/browser/detect_mime_types/module.rb | 2 +- modules/browser/detect_office/command.js | 2 +- modules/browser/detect_office/config.yaml | 2 +- modules/browser/detect_office/module.rb | 2 +- modules/browser/detect_popup_blocker/command.js | 2 +- modules/browser/detect_popup_blocker/config.yaml | 2 +- modules/browser/detect_popup_blocker/module.rb | 2 +- modules/browser/detect_quicktime/command.js | 2 +- modules/browser/detect_quicktime/config.yaml | 2 +- modules/browser/detect_quicktime/module.rb | 2 +- modules/browser/detect_realplayer/command.js | 2 +- modules/browser/detect_realplayer/config.yaml | 2 +- modules/browser/detect_realplayer/module.rb | 2 +- modules/browser/detect_silverlight/command.js | 2 +- modules/browser/detect_silverlight/config.yaml | 2 +- modules/browser/detect_silverlight/module.rb | 2 +- modules/browser/detect_simple_adblock/command.js | 2 +- modules/browser/detect_simple_adblock/config.yaml | 2 +- modules/browser/detect_simple_adblock/module.rb | 2 +- modules/browser/detect_toolbars/command.js | 2 +- modules/browser/detect_toolbars/config.yaml | 2 +- modules/browser/detect_toolbars/module.rb | 2 +- modules/browser/detect_unity/command.js | 2 +- modules/browser/detect_unity/config.yaml | 2 +- modules/browser/detect_unity/module.rb | 2 +- modules/browser/detect_unsafe_activex/command.js | 2 +- modules/browser/detect_unsafe_activex/config.yaml | 2 +- modules/browser/detect_unsafe_activex/module.rb | 2 +- modules/browser/detect_vlc/command.js | 2 +- modules/browser/detect_vlc/config.yaml | 2 +- modules/browser/detect_vlc/module.rb | 2 +- modules/browser/detect_wmp/command.js | 2 +- modules/browser/detect_wmp/config.yaml | 2 +- modules/browser/detect_wmp/module.rb | 2 +- modules/browser/fingerprint_browser/command.js | 2 +- modules/browser/fingerprint_browser/config.yaml | 2 +- modules/browser/fingerprint_browser/module.rb | 2 +- modules/browser/get_visited_domains/command.js | 2 +- modules/browser/get_visited_domains/config.yaml | 2 +- modules/browser/get_visited_domains/module.rb | 2 +- modules/browser/get_visited_urls/command.js | 2 +- modules/browser/get_visited_urls/config.yaml | 2 +- modules/browser/get_visited_urls/module.rb | 2 +- modules/browser/hooked_domain/ajax_fingerprint/command.js | 2 +- modules/browser/hooked_domain/ajax_fingerprint/config.yaml | 2 +- modules/browser/hooked_domain/ajax_fingerprint/module.rb | 2 +- modules/browser/hooked_domain/alert_dialog/command.js | 2 +- modules/browser/hooked_domain/alert_dialog/config.yaml | 2 +- modules/browser/hooked_domain/alert_dialog/module.rb | 2 +- .../apache_tomcat_examples_cookie_disclosure/command.js | 2 +- .../apache_tomcat_examples_cookie_disclosure/config.yaml | 2 +- .../apache_tomcat_examples_cookie_disclosure/module.rb | 2 +- modules/browser/hooked_domain/clear_console/command.js | 2 +- modules/browser/hooked_domain/clear_console/config.yaml | 2 +- modules/browser/hooked_domain/clear_console/module.rb | 2 +- modules/browser/hooked_domain/deface_web_page/command.js | 2 +- modules/browser/hooked_domain/deface_web_page/config.yaml | 2 +- modules/browser/hooked_domain/deface_web_page/module.rb | 2 +- .../hooked_domain/deface_web_page_component/command.js | 2 +- .../hooked_domain/deface_web_page_component/config.yaml | 2 +- .../hooked_domain/deface_web_page_component/module.rb | 2 +- .../hooked_domain/disable_developer_tools/command.js | 2 +- .../hooked_domain/disable_developer_tools/config.yaml | 2 +- .../browser/hooked_domain/disable_developer_tools/module.rb | 2 +- .../browser/hooked_domain/get_autocomplete_creds/command.js | 2 +- .../hooked_domain/get_autocomplete_creds/config.yaml | 2 +- .../browser/hooked_domain/get_autocomplete_creds/module.rb | 2 +- modules/browser/hooked_domain/get_cookie/command.js | 2 +- modules/browser/hooked_domain/get_cookie/config.yaml | 2 +- modules/browser/hooked_domain/get_cookie/module.rb | 2 +- modules/browser/hooked_domain/get_form_values/command.js | 2 +- modules/browser/hooked_domain/get_form_values/config.yaml | 2 +- modules/browser/hooked_domain/get_form_values/module.rb | 2 +- modules/browser/hooked_domain/get_local_storage/command.js | 2 +- modules/browser/hooked_domain/get_local_storage/config.yaml | 2 +- modules/browser/hooked_domain/get_local_storage/module.rb | 2 +- modules/browser/hooked_domain/get_page_html/command.js | 2 +- modules/browser/hooked_domain/get_page_html/config.yaml | 2 +- modules/browser/hooked_domain/get_page_html/module.rb | 2 +- .../browser/hooked_domain/get_page_html_iframe/command.js | 2 +- .../browser/hooked_domain/get_page_html_iframe/config.yaml | 2 +- .../browser/hooked_domain/get_page_html_iframe/module.rb | 2 +- modules/browser/hooked_domain/get_page_links/command.js | 2 +- modules/browser/hooked_domain/get_page_links/config.yaml | 2 +- modules/browser/hooked_domain/get_page_links/module.rb | 2 +- .../browser/hooked_domain/get_session_storage/command.js | 2 +- .../browser/hooked_domain/get_session_storage/config.yaml | 2 +- modules/browser/hooked_domain/get_session_storage/module.rb | 2 +- .../browser/hooked_domain/get_stored_credentials/command.js | 2 +- .../hooked_domain/get_stored_credentials/config.yaml | 2 +- .../browser/hooked_domain/get_stored_credentials/module.rb | 2 +- modules/browser/hooked_domain/link_rewrite/command.js | 2 +- modules/browser/hooked_domain/link_rewrite/config.yaml | 2 +- modules/browser/hooked_domain/link_rewrite/module.rb | 2 +- .../hooked_domain/link_rewrite_click_events/command.js | 2 +- .../hooked_domain/link_rewrite_click_events/config.yaml | 2 +- .../hooked_domain/link_rewrite_click_events/module.rb | 2 +- .../browser/hooked_domain/link_rewrite_sslstrip/command.js | 2 +- .../browser/hooked_domain/link_rewrite_sslstrip/config.yaml | 2 +- .../browser/hooked_domain/link_rewrite_sslstrip/module.rb | 2 +- modules/browser/hooked_domain/link_rewrite_tel/command.js | 2 +- modules/browser/hooked_domain/link_rewrite_tel/config.yaml | 2 +- modules/browser/hooked_domain/link_rewrite_tel/module.rb | 2 +- .../hooked_domain/mobilesafari_address_spoofing/command.js | 2 +- .../hooked_domain/mobilesafari_address_spoofing/config.yaml | 2 +- .../hooked_domain/mobilesafari_address_spoofing/module.rb | 2 +- modules/browser/hooked_domain/overflow_cookiejar/command.js | 2 +- .../browser/hooked_domain/overflow_cookiejar/config.yaml | 2 +- modules/browser/hooked_domain/overflow_cookiejar/module.rb | 2 +- modules/browser/hooked_domain/prompt_dialog/command.js | 2 +- modules/browser/hooked_domain/prompt_dialog/config.yaml | 2 +- modules/browser/hooked_domain/prompt_dialog/module.rb | 2 +- .../browser/hooked_domain/remove_stuck_iframes/command.js | 2 +- .../browser/hooked_domain/remove_stuck_iframes/config.yaml | 2 +- .../browser/hooked_domain/remove_stuck_iframes/module.rb | 2 +- modules/browser/hooked_domain/replace_video/command.js | 2 +- modules/browser/hooked_domain/replace_video/config.yaml | 2 +- modules/browser/hooked_domain/replace_video/module.rb | 2 +- modules/browser/hooked_domain/rickroll/command.js | 2 +- modules/browser/hooked_domain/rickroll/config.yaml | 2 +- modules/browser/hooked_domain/rickroll/module.rb | 2 +- modules/browser/hooked_domain/site_redirect/command.js | 2 +- modules/browser/hooked_domain/site_redirect/config.yaml | 2 +- modules/browser/hooked_domain/site_redirect/module.rb | 2 +- .../browser/hooked_domain/site_redirect_iframe/command.js | 2 +- .../browser/hooked_domain/site_redirect_iframe/config.yaml | 2 +- .../browser/hooked_domain/site_redirect_iframe/module.rb | 2 +- modules/browser/play_sound/command.js | 2 +- modules/browser/play_sound/config.yaml | 2 +- modules/browser/play_sound/module.rb | 2 +- modules/browser/remove_hook_element/command.js | 2 +- modules/browser/remove_hook_element/config.yaml | 2 +- modules/browser/remove_hook_element/module.rb | 2 +- modules/browser/spyder_eye/command.js | 2 +- modules/browser/spyder_eye/config.yaml | 2 +- modules/browser/spyder_eye/module.rb | 2 +- modules/browser/unhook/command.js | 2 +- modules/browser/unhook/config.yaml | 2 +- modules/browser/unhook/module.rb | 2 +- modules/browser/webcam_flash/command.js | 2 +- modules/browser/webcam_flash/config.yaml | 2 +- modules/browser/webcam_flash/module.rb | 2 +- modules/browser/webcam_html5/command.js | 2 +- modules/browser/webcam_html5/config.yaml | 2 +- modules/browser/webcam_html5/module.rb | 2 +- modules/browser/webcam_permission_check/cameraCheck.as | 2 +- modules/browser/webcam_permission_check/command.js | 2 +- modules/browser/webcam_permission_check/config.yaml | 2 +- modules/browser/webcam_permission_check/module.rb | 2 +- modules/chrome_extensions/execute_tabs/command.js | 2 +- modules/chrome_extensions/execute_tabs/config.yaml | 2 +- modules/chrome_extensions/execute_tabs/module.rb | 2 +- modules/chrome_extensions/get_all_cookies/command.js | 2 +- modules/chrome_extensions/get_all_cookies/config.yaml | 2 +- modules/chrome_extensions/get_all_cookies/module.rb | 2 +- modules/chrome_extensions/grab_google_contacts/command.js | 2 +- modules/chrome_extensions/grab_google_contacts/config.yaml | 2 +- modules/chrome_extensions/grab_google_contacts/module.rb | 2 +- modules/chrome_extensions/inject_beef/command.js | 2 +- modules/chrome_extensions/inject_beef/config.yaml | 2 +- modules/chrome_extensions/inject_beef/module.rb | 2 +- modules/chrome_extensions/screenshot/command.js | 2 +- modules/chrome_extensions/screenshot/config.yaml | 2 +- modules/chrome_extensions/screenshot/module.rb | 2 +- modules/chrome_extensions/send_gvoice_sms/command.js | 2 +- modules/chrome_extensions/send_gvoice_sms/config.yaml | 2 +- modules/chrome_extensions/send_gvoice_sms/module.rb | 2 +- modules/debug/test_beef_debug/command.js | 2 +- modules/debug/test_beef_debug/config.yaml | 2 +- modules/debug/test_beef_debug/module.rb | 2 +- modules/debug/test_cors_request/command.js | 2 +- modules/debug/test_cors_request/config.yaml | 2 +- modules/debug/test_cors_request/module.rb | 2 +- modules/debug/test_dns_tunnel_client/command.js | 2 +- modules/debug/test_dns_tunnel_client/config.yaml | 2 +- modules/debug/test_dns_tunnel_client/module.rb | 2 +- modules/debug/test_get_variable/command.js | 2 +- modules/debug/test_get_variable/config.yaml | 2 +- modules/debug/test_get_variable/module.rb | 2 +- modules/debug/test_http_redirect/command.js | 2 +- modules/debug/test_http_redirect/config.yaml | 2 +- modules/debug/test_http_redirect/module.rb | 2 +- modules/debug/test_network_request/command.js | 2 +- modules/debug/test_network_request/config.yaml | 2 +- modules/debug/test_network_request/module.rb | 2 +- modules/debug/test_return_ascii_chars/command.js | 2 +- modules/debug/test_return_ascii_chars/config.yaml | 2 +- modules/debug/test_return_ascii_chars/module.rb | 2 +- modules/debug/test_return_image/command.js | 2 +- modules/debug/test_return_image/config.yaml | 2 +- modules/debug/test_return_image/module.rb | 2 +- modules/debug/test_return_long_string/command.js | 2 +- modules/debug/test_return_long_string/config.yaml | 2 +- modules/debug/test_return_long_string/module.rb | 2 +- modules/exploits/apache_cookie_disclosure/command.js | 2 +- modules/exploits/apache_cookie_disclosure/config.yaml | 2 +- modules/exploits/apache_cookie_disclosure/module.rb | 2 +- modules/exploits/apache_felix_remote_shell/command.js | 2 +- modules/exploits/apache_felix_remote_shell/config.yaml | 2 +- modules/exploits/apache_felix_remote_shell/module.rb | 2 +- modules/exploits/beefbind/beef_bind_shell/command.js | 2 +- modules/exploits/beefbind/beef_bind_shell/config.yaml | 2 +- modules/exploits/beefbind/beef_bind_shell/module.rb | 2 +- .../beefbind/shellcode_sources/linux/x64/socket64.c | 2 +- .../exploits/beefbind/shellcode_sources/linux/x86/socket.c | 2 +- .../beefbind/shellcode_sources/linux/x86/stage.nasm | 2 +- .../beefbind/shellcode_sources/linux/x86/stager.nasm | 2 +- .../exploits/beefbind/shellcode_sources/windows/socket.c | 2 +- modules/exploits/boastmachine_3_1_add_user_csrf/command.js | 2 +- modules/exploits/boastmachine_3_1_add_user_csrf/config.yaml | 2 +- modules/exploits/boastmachine_3_1_add_user_csrf/module.rb | 2 +- modules/exploits/camera/airlive_ip_camera_csrf/command.js | 2 +- modules/exploits/camera/airlive_ip_camera_csrf/config.yaml | 2 +- modules/exploits/camera/airlive_ip_camera_csrf/module.rb | 2 +- modules/exploits/camera/dlink_dcs_series_csrf/command.js | 2 +- modules/exploits/camera/dlink_dcs_series_csrf/config.yaml | 2 +- modules/exploits/camera/dlink_dcs_series_csrf/module.rb | 2 +- .../camera/linksys_wvc_wireless_camera_csrf/command.js | 2 +- .../camera/linksys_wvc_wireless_camera_csrf/config.yaml | 2 +- .../camera/linksys_wvc_wireless_camera_csrf/module.rb | 2 +- .../exploits/coldfusion_dir_traversal_exploit/command.js | 2 +- .../exploits/coldfusion_dir_traversal_exploit/config.yaml | 2 +- modules/exploits/coldfusion_dir_traversal_exploit/module.rb | 2 +- modules/exploits/extract_cmd_exec/command.js | 2 +- modules/exploits/extract_cmd_exec/config.yaml | 2 +- modules/exploits/extract_cmd_exec/module.rb | 2 +- modules/exploits/firephp/command.js | 2 +- modules/exploits/firephp/config.yaml | 2 +- modules/exploits/firephp/module.rb | 2 +- modules/exploits/glassfish_war_upload_xsrf/command.js | 2 +- modules/exploits/glassfish_war_upload_xsrf/config.yaml | 2 +- modules/exploits/glassfish_war_upload_xsrf/module.rb | 2 +- modules/exploits/groovyshell_server_cmd_exec/command.js | 2 +- modules/exploits/groovyshell_server_cmd_exec/config.yaml | 2 +- modules/exploits/groovyshell_server_cmd_exec/module.rb | 2 +- modules/exploits/hp_ucmdb_add_user_csrf/command.js | 2 +- modules/exploits/hp_ucmdb_add_user_csrf/config.yaml | 2 +- modules/exploits/hp_ucmdb_add_user_csrf/module.rb | 2 +- modules/exploits/jboss_jmx_upload_exploit/command.js | 2 +- modules/exploits/jboss_jmx_upload_exploit/config.yaml | 2 +- modules/exploits/jboss_jmx_upload_exploit/module.rb | 2 +- modules/exploits/jenkins_groovy_code_exec/command.js | 2 +- modules/exploits/jenkins_groovy_code_exec/config.yaml | 2 +- modules/exploits/jenkins_groovy_code_exec/module.rb | 2 +- modules/exploits/kemp_command_execution/command.js | 2 +- modules/exploits/kemp_command_execution/config.yaml | 2 +- modules/exploits/kemp_command_execution/module.rb | 2 +- .../local_host/activex_command_execution/command.js | 2 +- .../local_host/activex_command_execution/config.yaml | 2 +- .../exploits/local_host/activex_command_execution/module.rb | 2 +- modules/exploits/local_host/java_payload/command.js | 2 +- modules/exploits/local_host/java_payload/config.yaml | 2 +- modules/exploits/local_host/java_payload/module.rb | 2 +- .../local_host/mozilla_nsiprocess_interface/command.js | 2 +- .../local_host/mozilla_nsiprocess_interface/config.yaml | 2 +- .../local_host/mozilla_nsiprocess_interface/module.rb | 2 +- modules/exploits/local_host/safari_launch_app/command.js | 2 +- modules/exploits/local_host/safari_launch_app/config.yaml | 2 +- modules/exploits/local_host/safari_launch_app/module.rb | 2 +- .../local_host/signed_applet_dropper/applet/SM.java | 2 +- .../signed_applet_dropper/applet/SignedApplet.java | 2 +- .../exploits/local_host/signed_applet_dropper/command.js | 2 +- .../exploits/local_host/signed_applet_dropper/config.yaml | 2 +- modules/exploits/local_host/signed_applet_dropper/module.rb | 2 +- .../exploits/local_host/window_mail_client_dos/command.js | 2 +- .../exploits/local_host/window_mail_client_dos/config.yaml | 2 +- .../exploits/local_host/window_mail_client_dos/module.rb | 2 +- modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js | 2 +- modules/exploits/nas/dlink_sharecenter_cmd_exec/config.yaml | 2 +- modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb | 2 +- .../exploits/nas/freenas_reverse_root_shell_csrf/command.js | 2 +- .../nas/freenas_reverse_root_shell_csrf/config.yaml | 2 +- .../exploits/nas/freenas_reverse_root_shell_csrf/module.rb | 2 +- modules/exploits/ntfscommoncreate_dos/command.js | 2 +- modules/exploits/ntfscommoncreate_dos/config.yaml | 2 +- modules/exploits/ntfscommoncreate_dos/module.rb | 2 +- modules/exploits/opencart_reset_password/command.js | 2 +- modules/exploits/opencart_reset_password/config.yaml | 2 +- modules/exploits/opencart_reset_password/module.rb | 2 +- .../pfsense_2.3.2_reverse_root_shell_csrf/command.js | 2 +- .../pfsense_2.3.2_reverse_root_shell_csrf/config.yaml | 2 +- .../pfsense/pfsense_2.3.2_reverse_root_shell_csrf/module.rb | 2 +- .../pfsense/pfsense_reverse_root_shell_csrf/command.js | 2 +- .../pfsense/pfsense_reverse_root_shell_csrf/config.yaml | 2 +- .../pfsense/pfsense_reverse_root_shell_csrf/module.rb | 2 +- modules/exploits/php-5.3.9-dos/command.js | 2 +- modules/exploits/php-5.3.9-dos/config.yaml | 2 +- modules/exploits/php-5.3.9-dos/module.rb | 2 +- modules/exploits/qemu_monitor_migrate_cmd_exec/command.js | 2 +- modules/exploits/qemu_monitor_migrate_cmd_exec/config.yaml | 2 +- modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb | 2 +- modules/exploits/qnx_qconn_command_execution/command.js | 2 +- modules/exploits/qnx_qconn_command_execution/config.yaml | 2 +- modules/exploits/qnx_qconn_command_execution/module.rb | 2 +- modules/exploits/resource_exhaustion_dos/command.js | 2 +- modules/exploits/resource_exhaustion_dos/config.yaml | 2 +- modules/exploits/resource_exhaustion_dos/module.rb | 2 +- modules/exploits/rfi_scanner/command.js | 2 +- modules/exploits/rfi_scanner/config.yaml | 2 +- modules/exploits/rfi_scanner/module.rb | 2 +- .../exploits/router/3com_officeconnect_cmd_exec/command.js | 2 +- .../exploits/router/3com_officeconnect_cmd_exec/config.yaml | 2 +- .../exploits/router/3com_officeconnect_cmd_exec/module.rb | 2 +- modules/exploits/router/actiontec_q1000_csrf/command.js | 2 +- modules/exploits/router/actiontec_q1000_csrf/config.yaml | 2 +- modules/exploits/router/actiontec_q1000_csrf/module.rb | 2 +- modules/exploits/router/argw4_adsl_dns_hijack/command.js | 2 +- modules/exploits/router/argw4_adsl_dns_hijack/config.yaml | 2 +- modules/exploits/router/argw4_adsl_dns_hijack/module.rb | 2 +- modules/exploits/router/asmax_ar804gu_cmd_exec/command.js | 2 +- modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml | 2 +- modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb | 2 +- modules/exploits/router/asus_dslx11_dns_hijack/command.js | 2 +- modules/exploits/router/asus_dslx11_dns_hijack/config.yaml | 2 +- modules/exploits/router/asus_dslx11_dns_hijack/module.rb | 2 +- modules/exploits/router/asus_rt_n12e_get_info/command.js | 2 +- modules/exploits/router/asus_rt_n12e_get_info/config.yaml | 2 +- modules/exploits/router/asus_rt_n12e_get_info/module.rb | 2 +- modules/exploits/router/asus_rt_n66u_cmd_exec/command.js | 2 +- modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml | 2 +- modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb | 2 +- .../router/beetel_bcm96338_router_dns_hijack/command.js | 2 +- .../router/beetel_bcm96338_router_dns_hijack/config.yaml | 2 +- .../router/beetel_bcm96338_router_dns_hijack/module.rb | 2 +- modules/exploits/router/belkin_dns_csrf/command.js | 2 +- modules/exploits/router/belkin_dns_csrf/config.yaml | 2 +- modules/exploits/router/belkin_dns_csrf/module.rb | 2 +- modules/exploits/router/bt_home_hub_csrf/command.js | 2 +- modules/exploits/router/bt_home_hub_csrf/config.yaml | 2 +- modules/exploits/router/bt_home_hub_csrf/module.rb | 2 +- modules/exploits/router/cisco_e2400_csrf/command.js | 2 +- modules/exploits/router/cisco_e2400_csrf/config.yaml | 2 +- modules/exploits/router/cisco_e2400_csrf/module.rb | 2 +- modules/exploits/router/comtrend_ct5367_csrf/command.js | 2 +- modules/exploits/router/comtrend_ct5367_csrf/config.yaml | 2 +- modules/exploits/router/comtrend_ct5367_csrf/module.rb | 2 +- modules/exploits/router/comtrend_ct5624_csrf/command.js | 2 +- modules/exploits/router/comtrend_ct5624_csrf/config.yaml | 2 +- modules/exploits/router/comtrend_ct5624_csrf/module.rb | 2 +- .../router/comtrend_ct_series_dns_hijack/command.js | 2 +- .../router/comtrend_ct_series_dns_hijack/config.yaml | 2 +- .../exploits/router/comtrend_ct_series_dns_hijack/module.rb | 2 +- modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js | 2 +- modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml | 2 +- modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb | 2 +- modules/exploits/router/ddwrt_v24_sp1_csrf/command.js | 2 +- modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml | 2 +- modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb | 2 +- modules/exploits/router/dlink_dir_615_csrf/command.js | 2 +- modules/exploits/router/dlink_dir_615_csrf/config.yaml | 2 +- modules/exploits/router/dlink_dir_615_csrf/module.rb | 2 +- .../exploits/router/dlink_dsl2640b_dns_hijack/command.js | 2 +- .../exploits/router/dlink_dsl2640b_dns_hijack/config.yaml | 2 +- modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb | 2 +- .../exploits/router/dlink_dsl2640u_dns_hijack/command.js | 2 +- .../exploits/router/dlink_dsl2640u_dns_hijack/config.yaml | 2 +- modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb | 2 +- .../exploits/router/dlink_dsl2740r_dns_hijack/command.js | 2 +- .../exploits/router/dlink_dsl2740r_dns_hijack/config.yaml | 2 +- modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb | 2 +- .../exploits/router/dlink_dsl2780b_dns_hijack/command.js | 2 +- .../exploits/router/dlink_dsl2780b_dns_hijack/config.yaml | 2 +- modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb | 2 +- modules/exploits/router/dlink_dsl500t_csrf/command.js | 2 +- modules/exploits/router/dlink_dsl500t_csrf/config.yaml | 2 +- modules/exploits/router/dlink_dsl500t_csrf/module.rb | 2 +- modules/exploits/router/dlink_dsl526b_dns_hijack/command.js | 2 +- .../exploits/router/dlink_dsl526b_dns_hijack/config.yaml | 2 +- modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb | 2 +- .../exploits/router/exper_ewm01_adsl_dns_hijack/command.js | 2 +- .../exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml | 2 +- .../exploits/router/exper_ewm01_adsl_dns_hijack/module.rb | 2 +- modules/exploits/router/huawei_smartax_mt880/command.js | 2 +- modules/exploits/router/huawei_smartax_mt880/config.yaml | 2 +- modules/exploits/router/huawei_smartax_mt880/module.rb | 2 +- .../router/iball_baton_ib_wra150n_dns_hijack/command.js | 2 +- .../router/iball_baton_ib_wra150n_dns_hijack/config.yaml | 2 +- .../router/iball_baton_ib_wra150n_dns_hijack/module.rb | 2 +- .../router/inteno_eg101r1_voip_dns_hijack/command.js | 2 +- .../router/inteno_eg101r1_voip_dns_hijack/config.yaml | 2 +- .../router/inteno_eg101r1_voip_dns_hijack/module.rb | 2 +- modules/exploits/router/linksys_befsr41_csrf/command.js | 2 +- modules/exploits/router/linksys_befsr41_csrf/config.yaml | 2 +- modules/exploits/router/linksys_befsr41_csrf/module.rb | 2 +- modules/exploits/router/linksys_e2500_csrf/command.js | 2 +- modules/exploits/router/linksys_e2500_csrf/config.yaml | 2 +- modules/exploits/router/linksys_e2500_csrf/module.rb | 2 +- modules/exploits/router/linksys_e2500_dns_hijack/command.js | 2 +- .../exploits/router/linksys_e2500_dns_hijack/config.yaml | 2 +- modules/exploits/router/linksys_e2500_dns_hijack/module.rb | 2 +- modules/exploits/router/linksys_e2500_shell/command.js | 2 +- modules/exploits/router/linksys_e2500_shell/config.yaml | 2 +- modules/exploits/router/linksys_e2500_shell/module.rb | 2 +- modules/exploits/router/linksys_wrt54g2_csrf/command.js | 2 +- modules/exploits/router/linksys_wrt54g2_csrf/config.yaml | 2 +- modules/exploits/router/linksys_wrt54g2_csrf/module.rb | 2 +- modules/exploits/router/linksys_wrt54g_csrf/command.js | 2 +- modules/exploits/router/linksys_wrt54g_csrf/config.yaml | 2 +- modules/exploits/router/linksys_wrt54g_csrf/module.rb | 2 +- .../router/netgear_dgn2000_wan_remote_mgmt/command.js | 2 +- .../router/netgear_dgn2000_wan_remote_mgmt/config.yaml | 2 +- .../router/netgear_dgn2000_wan_remote_mgmt/module.rb | 2 +- modules/exploits/router/netgear_dgn2200_cmd_exec/command.js | 2 +- .../exploits/router/netgear_dgn2200_cmd_exec/config.yaml | 2 +- modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb | 2 +- modules/exploits/router/phillips_dns_hijack/command.js | 2 +- modules/exploits/router/phillips_dns_hijack/config.yaml | 2 +- modules/exploits/router/phillips_dns_hijack/module.rb | 2 +- modules/exploits/router/pikatel_96338_dns_hijack/command.js | 2 +- .../exploits/router/pikatel_96338_dns_hijack/config.yaml | 2 +- modules/exploits/router/pikatel_96338_dns_hijack/module.rb | 2 +- .../router/planet_vdr300nu_adsl_dns_hijack/command.js | 2 +- .../router/planet_vdr300nu_adsl_dns_hijack/config.yaml | 2 +- .../router/planet_vdr300nu_adsl_dns_hijack/module.rb | 2 +- .../router/shuttle_tech_915wm_dns_hijack/command.js | 2 +- .../router/shuttle_tech_915wm_dns_hijack/config.yaml | 2 +- .../exploits/router/shuttle_tech_915wm_dns_hijack/module.rb | 2 +- .../exploits/router/telstra_zte_mf91_change_pw/command.js | 2 +- .../exploits/router/telstra_zte_mf91_change_pw/config.yaml | 2 +- .../exploits/router/telstra_zte_mf91_change_pw/module.rb | 2 +- .../exploits/router/telstra_zte_mf91_change_ssid/command.js | 2 +- .../router/telstra_zte_mf91_change_ssid/config.yaml | 2 +- .../exploits/router/telstra_zte_mf91_change_ssid/module.rb | 2 +- .../router/telstra_zte_mf91_disable_ap_isolation/command.js | 2 +- .../telstra_zte_mf91_disable_ap_isolation/config.yaml | 2 +- .../router/telstra_zte_mf91_disable_ap_isolation/module.rb | 2 +- modules/exploits/router/tenda_adsl_dns_hijack/command.js | 2 +- modules/exploits/router/tenda_adsl_dns_hijack/config.yaml | 2 +- modules/exploits/router/tenda_adsl_dns_hijack/module.rb | 2 +- modules/exploits/router/tplink_dns_csrf/command.js | 2 +- modules/exploits/router/tplink_dns_csrf/config.yaml | 2 +- modules/exploits/router/tplink_dns_csrf/module.rb | 2 +- .../router/utstarcom_wa3002g4_dns_hijack/command.js | 2 +- .../router/utstarcom_wa3002g4_dns_hijack/config.yaml | 2 +- .../exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb | 2 +- modules/exploits/router/virgin_superhub_csrf/command.js | 2 +- modules/exploits/router/virgin_superhub_csrf/config.yaml | 2 +- modules/exploits/router/virgin_superhub_csrf/module.rb | 2 +- modules/exploits/router/wipg1000_cmd_injection/command.js | 2 +- modules/exploits/router/wipg1000_cmd_injection/config.yaml | 2 +- modules/exploits/router/wipg1000_cmd_injection/module.rb | 2 +- modules/exploits/ruby_nntpd_cmd_exec/command.js | 2 +- modules/exploits/ruby_nntpd_cmd_exec/config.yaml | 2 +- modules/exploits/ruby_nntpd_cmd_exec/module.rb | 2 +- modules/exploits/shell_shock_scanner/command.js | 2 +- modules/exploits/shell_shock_scanner/config.yaml | 2 +- modules/exploits/shell_shock_scanner/module.rb | 2 +- modules/exploits/shell_shocked/command.js | 2 +- modules/exploits/shell_shocked/config.yaml | 2 +- modules/exploits/shell_shocked/module.rb | 2 +- modules/exploits/skype_xss/command.js | 2 +- modules/exploits/skype_xss/config.yaml | 2 +- modules/exploits/skype_xss/module.rb | 2 +- modules/exploits/spring_framework_malicious_jar/command.js | 2 +- modules/exploits/spring_framework_malicious_jar/config.yaml | 2 +- modules/exploits/spring_framework_malicious_jar/module.rb | 2 +- .../exploits/switch/dlink_dgs_1100_device_reset/command.js | 2 +- .../exploits/switch/dlink_dgs_1100_device_reset/config.yaml | 2 +- .../exploits/switch/dlink_dgs_1100_device_reset/module.rb | 2 +- .../exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js | 2 +- .../switch/dlink_dgs_1100_fdb_whitelist/config.yaml | 2 +- .../exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb | 2 +- .../switch/dlink_dgs_1100_port_mirroring/command.js | 2 +- .../switch/dlink_dgs_1100_port_mirroring/config.yaml | 2 +- .../exploits/switch/dlink_dgs_1100_port_mirroring/module.rb | 2 +- modules/exploits/switch/netgear_gs108t_csrf/command.js | 2 +- modules/exploits/switch/netgear_gs108t_csrf/config.yaml | 2 +- modules/exploits/switch/netgear_gs108t_csrf/module.rb | 2 +- modules/exploits/vtiger_crm_upload_exploit/command.js | 2 +- modules/exploits/vtiger_crm_upload_exploit/config.yaml | 2 +- modules/exploits/vtiger_crm_upload_exploit/module.rb | 2 +- modules/exploits/wanem_command_execution/command.js | 2 +- modules/exploits/wanem_command_execution/config.yaml | 2 +- modules/exploits/wanem_command_execution/module.rb | 2 +- modules/exploits/wifi_pineapple_csrf/command.js | 2 +- modules/exploits/wifi_pineapple_csrf/config.yaml | 2 +- modules/exploits/wifi_pineapple_csrf/module.rb | 2 +- modules/exploits/xss/alienvault_ossim_3.1_xss/command.js | 2 +- modules/exploits/xss/alienvault_ossim_3.1_xss/config.yaml | 2 +- modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb | 2 +- .../xss/cisco_collaboration_server_5_xss/command.js | 2 +- .../xss/cisco_collaboration_server_5_xss/config.yaml | 2 +- .../exploits/xss/cisco_collaboration_server_5_xss/module.rb | 2 +- modules/exploits/xss/serendipity_1.6_xss/command.js | 2 +- modules/exploits/xss/serendipity_1.6_xss/config.yaml | 2 +- modules/exploits/xss/serendipity_1.6_xss/module.rb | 2 +- modules/exploits/xss/sqlitemanager_xss/command.js | 2 +- modules/exploits/xss/sqlitemanager_xss/config.yaml | 2 +- modules/exploits/xss/sqlitemanager_xss/module.rb | 2 +- modules/exploits/zenoss_3x_command_execution/command.js | 2 +- modules/exploits/zenoss_3x_command_execution/config.yaml | 2 +- modules/exploits/zenoss_3x_command_execution/module.rb | 2 +- modules/exploits/zenoss_add_user_csrf/command.js | 2 +- modules/exploits/zenoss_add_user_csrf/config.yaml | 2 +- modules/exploits/zenoss_add_user_csrf/module.rb | 2 +- .../zeroshell_2_0rc2_admin_dynamic_token/command.js | 2 +- .../zeroshell_2_0rc2_admin_dynamic_token/config.yaml | 2 +- .../zeroshell_2_0rc2_admin_dynamic_token/module.rb | 2 +- .../zeroshell/zeroshell_2_0rc2_admin_password/command.js | 2 +- .../zeroshell/zeroshell_2_0rc2_admin_password/config.yaml | 2 +- .../zeroshell/zeroshell_2_0rc2_admin_password/module.rb | 2 +- .../zeroshell_2_0rc2_admin_static_token/command.js | 2 +- .../zeroshell_2_0rc2_admin_static_token/config.yaml | 2 +- .../zeroshell/zeroshell_2_0rc2_admin_static_token/module.rb | 2 +- .../zeroshell/zeroshell_2_0rc2_file_disclosure/command.js | 2 +- .../zeroshell/zeroshell_2_0rc2_file_disclosure/config.yaml | 2 +- .../zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb | 2 +- .../zeroshell/zeroshell_2_0rc2_migrate_hook/command.js | 2 +- .../zeroshell/zeroshell_2_0rc2_migrate_hook/config.yaml | 2 +- .../zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb | 2 +- .../zeroshell_2_0rc2_reverse_shell_csrf_sop/command.js | 2 +- .../zeroshell_2_0rc2_reverse_shell_csrf_sop/config.yaml | 2 +- .../zeroshell_2_0rc2_reverse_shell_csrf_sop/module.rb | 2 +- .../command.js | 2 +- .../config.yaml | 2 +- .../module.rb | 2 +- .../exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js | 2 +- .../exploits/zeroshell/zeroshell_2_0rc2_scanner/config.yaml | 2 +- .../exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb | 2 +- modules/host/clipboard_theft/command.js | 2 +- modules/host/clipboard_theft/config.yaml | 2 +- modules/host/clipboard_theft/module.rb | 2 +- modules/host/detect_airdroid/command.js | 2 +- modules/host/detect_airdroid/config.yaml | 2 +- modules/host/detect_airdroid/module.rb | 2 +- modules/host/detect_antivirus/command.js | 2 +- modules/host/detect_antivirus/config.yaml | 2 +- modules/host/detect_antivirus/module.rb | 2 +- modules/host/detect_coupon_printer/command.js | 2 +- modules/host/detect_coupon_printer/config.yaml | 2 +- modules/host/detect_coupon_printer/module.rb | 2 +- modules/host/detect_cups/command.js | 2 +- modules/host/detect_cups/config.yaml | 2 +- modules/host/detect_cups/module.rb | 2 +- modules/host/detect_default_browser/command.js | 2 +- modules/host/detect_default_browser/config.yaml | 2 +- modules/host/detect_default_browser/module.rb | 2 +- modules/host/detect_google_desktop/command.js | 2 +- modules/host/detect_google_desktop/config.yaml | 2 +- modules/host/detect_google_desktop/module.rb | 2 +- modules/host/detect_hp/command.js | 2 +- modules/host/detect_hp/config.yaml | 2 +- modules/host/detect_hp/module.rb | 2 +- modules/host/detect_local_drives/command.js | 2 +- modules/host/detect_local_drives/config.yaml | 2 +- modules/host/detect_local_drives/module.rb | 2 +- modules/host/detect_protocol_handlers/command.js | 2 +- modules/host/detect_protocol_handlers/config.yaml | 2 +- modules/host/detect_protocol_handlers/module.rb | 2 +- modules/host/detect_software/command.js | 2 +- modules/host/detect_software/config.yaml | 2 +- modules/host/detect_software/module.rb | 2 +- modules/host/detect_users/command.js | 2 +- modules/host/detect_users/config.yaml | 2 +- modules/host/detect_users/module.rb | 2 +- modules/host/get_battery_status/command.js | 2 +- modules/host/get_battery_status/config.yaml | 2 +- modules/host/get_battery_status/module.rb | 2 +- modules/host/get_connection_type/command.js | 2 +- modules/host/get_connection_type/config.yaml | 2 +- modules/host/get_connection_type/module.rb | 2 +- modules/host/get_internal_ip_java/command.js | 2 +- modules/host/get_internal_ip_java/config.yaml | 2 +- modules/host/get_internal_ip_java/get_internal_ip.java | 2 +- modules/host/get_internal_ip_java/module.rb | 2 +- modules/host/get_internal_ip_webrtc/command.js | 2 +- modules/host/get_internal_ip_webrtc/config.yaml | 2 +- modules/host/get_internal_ip_webrtc/module.rb | 2 +- modules/host/get_registry_keys/command.js | 2 +- modules/host/get_registry_keys/config.yaml | 2 +- modules/host/get_registry_keys/module.rb | 2 +- modules/host/get_system_info_java/command.js | 2 +- modules/host/get_system_info_java/config.yaml | 2 +- modules/host/get_system_info_java/getSystemInfo.java | 2 +- modules/host/get_system_info_java/module.rb | 2 +- modules/host/get_wireless_keys/command.js | 2 +- modules/host/get_wireless_keys/config.yaml | 2 +- modules/host/get_wireless_keys/module.rb | 2 +- modules/host/get_wireless_keys/wirelessZeroConfig.java | 2 +- modules/host/hook_default_browser/command.js | 2 +- modules/host/hook_default_browser/config.yaml | 2 +- modules/host/hook_default_browser/module.rb | 2 +- modules/host/hook_microsoft_edge/command.js | 2 +- modules/host/hook_microsoft_edge/config.yaml | 2 +- modules/host/hook_microsoft_edge/module.rb | 2 +- modules/host/insecure_url_skype/command.js | 2 +- modules/host/insecure_url_skype/config.yaml | 2 +- modules/host/insecure_url_skype/module.rb | 2 +- modules/host/iphone_tel/command.js | 2 +- modules/host/iphone_tel/config.yaml | 2 +- modules/host/iphone_tel/module.rb | 2 +- modules/host/physical_location/command.js | 2 +- modules/host/physical_location/config.yaml | 2 +- modules/host/physical_location/module.rb | 2 +- modules/host/physical_location_thirdparty/command.js | 2 +- modules/host/physical_location_thirdparty/config.yaml | 2 +- modules/host/physical_location_thirdparty/module.rb | 2 +- modules/ipec/cross_site_faxing/command.js | 2 +- modules/ipec/cross_site_faxing/config.yaml | 2 +- modules/ipec/cross_site_faxing/module.rb | 2 +- modules/ipec/cross_site_printing/command.js | 2 +- modules/ipec/cross_site_printing/config.yaml | 2 +- modules/ipec/cross_site_printing/module.rb | 2 +- modules/ipec/dns_tunnel/command.js | 2 +- modules/ipec/dns_tunnel/config.yaml | 2 +- modules/ipec/dns_tunnel/module.rb | 2 +- modules/ipec/etag_client/command.js | 2 +- modules/ipec/etag_client/config.yaml | 2 +- modules/ipec/etag_client/module.rb | 2 +- modules/ipec/inter_protocol_imap/command.js | 2 +- modules/ipec/inter_protocol_imap/config.yaml | 2 +- modules/ipec/inter_protocol_imap/module.rb | 2 +- modules/ipec/inter_protocol_irc/command.js | 2 +- modules/ipec/inter_protocol_irc/config.yaml | 2 +- modules/ipec/inter_protocol_irc/module.rb | 2 +- modules/ipec/inter_protocol_posix_bindshell/command.js | 2 +- modules/ipec/inter_protocol_posix_bindshell/config.yaml | 2 +- modules/ipec/inter_protocol_posix_bindshell/module.rb | 2 +- modules/ipec/inter_protocol_redis/command.js | 2 +- modules/ipec/inter_protocol_redis/config.yaml | 2 +- modules/ipec/inter_protocol_redis/module.rb | 2 +- modules/ipec/inter_protocol_win_bindshell/command.js | 2 +- modules/ipec/inter_protocol_win_bindshell/command.old.js | 2 +- modules/ipec/inter_protocol_win_bindshell/config.yaml | 2 +- modules/ipec/inter_protocol_win_bindshell/module.rb | 2 +- modules/ipec/s2c_dns_tunnel/command.js | 2 +- modules/ipec/s2c_dns_tunnel/config.yaml | 2 +- modules/ipec/s2c_dns_tunnel/module.rb | 2 +- modules/metasploit/browser_autopwn/command.js | 2 +- modules/metasploit/browser_autopwn/config.yaml | 2 +- modules/metasploit/browser_autopwn/module.rb | 2 +- modules/misc/blockui/command.js | 2 +- modules/misc/blockui/config.yaml | 2 +- modules/misc/blockui/module.rb | 2 +- modules/misc/ibm_inotes/extract_inotes_list/command.js | 2 +- modules/misc/ibm_inotes/extract_inotes_list/config.yaml | 2 +- modules/misc/ibm_inotes/extract_inotes_list/module.rb | 2 +- modules/misc/ibm_inotes/inotes_flooder/command.js | 2 +- modules/misc/ibm_inotes/inotes_flooder/config.yaml | 2 +- modules/misc/ibm_inotes/inotes_flooder/module.rb | 2 +- modules/misc/ibm_inotes/read_inotes/command.js | 2 +- modules/misc/ibm_inotes/read_inotes/config.yaml | 2 +- modules/misc/ibm_inotes/read_inotes/module.rb | 2 +- modules/misc/ibm_inotes/send_inotes/command.js | 2 +- modules/misc/ibm_inotes/send_inotes/config.yaml | 2 +- modules/misc/ibm_inotes/send_inotes/module.rb | 2 +- .../misc/ibm_inotes/send_inotes_with_attachment/command.js | 2 +- .../misc/ibm_inotes/send_inotes_with_attachment/config.yaml | 2 +- .../misc/ibm_inotes/send_inotes_with_attachment/module.rb | 2 +- modules/misc/iframe_keylogger/command.js | 2 +- modules/misc/iframe_keylogger/config.yaml | 2 +- modules/misc/iframe_keylogger/module.rb | 2 +- modules/misc/iframe_sniffer/command.js | 2 +- modules/misc/iframe_sniffer/config.yaml | 2 +- modules/misc/iframe_sniffer/module.rb | 2 +- modules/misc/invisible_iframe/command.js | 2 +- modules/misc/invisible_iframe/config.yaml | 2 +- modules/misc/invisible_iframe/module.rb | 2 +- modules/misc/local_file_theft/command.js | 2 +- modules/misc/local_file_theft/config.yaml | 2 +- modules/misc/local_file_theft/module.rb | 2 +- modules/misc/nosleep/command.js | 2 +- modules/misc/nosleep/config.yaml | 2 +- modules/misc/nosleep/module.rb | 2 +- modules/misc/raw_javascript/command.js | 2 +- modules/misc/raw_javascript/config.yaml | 2 +- modules/misc/raw_javascript/module.rb | 2 +- modules/misc/read_gmail/command.js | 2 +- modules/misc/read_gmail/config.yaml | 2 +- modules/misc/read_gmail/module.rb | 2 +- modules/misc/track_physical_movement/command.js | 2 +- modules/misc/track_physical_movement/config.yaml | 2 +- modules/misc/track_physical_movement/module.rb | 2 +- modules/misc/unblockui/command.js | 2 +- modules/misc/unblockui/config.yaml | 2 +- modules/misc/unblockui/module.rb | 2 +- modules/misc/wordpress/upload_rce_plugin/beefbind.php | 2 +- modules/misc/wordpress/upload_rce_plugin/config.yaml | 2 +- modules/misc/wordpress_post_auth_rce/command.js | 2 +- modules/misc/wordpress_post_auth_rce/config.yaml | 2 +- modules/misc/wordpress_post_auth_rce/module.rb | 2 +- modules/network/ADC/f5_bigip_cookie_disclosure/command.js | 2 +- modules/network/ADC/f5_bigip_cookie_disclosure/config.yaml | 2 +- modules/network/ADC/f5_bigip_cookie_disclosure/module.rb | 2 +- modules/network/ADC/f5_bigip_cookie_stealing/command.js | 2 +- modules/network/ADC/f5_bigip_cookie_stealing/config.yaml | 2 +- modules/network/ADC/f5_bigip_cookie_stealing/module.rb | 2 +- modules/network/DOSer/command.js | 2 +- modules/network/DOSer/config.yaml | 2 +- modules/network/DOSer/module.rb | 2 +- modules/network/cross_origin_scanner_cors/command.js | 2 +- modules/network/cross_origin_scanner_cors/config.yaml | 2 +- modules/network/cross_origin_scanner_cors/module.rb | 2 +- modules/network/cross_origin_scanner_flash/command.js | 2 +- modules/network/cross_origin_scanner_flash/config.yaml | 2 +- modules/network/cross_origin_scanner_flash/module.rb | 2 +- modules/network/detect_burp/command.js | 2 +- modules/network/detect_burp/config.yaml | 2 +- modules/network/detect_burp/module.rb | 2 +- modules/network/detect_ethereum_ens/command.js | 2 +- modules/network/detect_ethereum_ens/config.yaml | 2 +- modules/network/detect_ethereum_ens/module.rb | 2 +- modules/network/detect_opennic/command.js | 2 +- modules/network/detect_opennic/config.yaml | 2 +- modules/network/detect_opennic/module.rb | 2 +- modules/network/detect_soc_nets/command.js | 2 +- modules/network/detect_soc_nets/config.yaml | 2 +- modules/network/detect_soc_nets/module.rb | 2 +- modules/network/detect_tor/command.js | 2 +- modules/network/detect_tor/config.yaml | 2 +- modules/network/detect_tor/module.rb | 2 +- modules/network/dns_enumeration/command.js | 2 +- modules/network/dns_enumeration/config.yaml | 2 +- modules/network/dns_enumeration/module.rb | 2 +- modules/network/dns_rebinding/command.js | 2 +- modules/network/dns_rebinding/config.yaml | 2 +- modules/network/dns_rebinding/module.rb | 2 +- modules/network/fetch_port_scanner/command.js | 2 +- modules/network/fetch_port_scanner/config.yaml | 2 +- modules/network/fetch_port_scanner/module.rb | 2 +- modules/network/get_http_servers/command.js | 2 +- modules/network/get_http_servers/config.yaml | 2 +- modules/network/get_http_servers/module.rb | 2 +- modules/network/get_ntop_network_hosts/command.js | 2 +- modules/network/get_ntop_network_hosts/config.yaml | 2 +- modules/network/get_ntop_network_hosts/module.rb | 2 +- modules/network/get_proxy_servers_wpad/command.js | 2 +- modules/network/get_proxy_servers_wpad/config.yaml | 2 +- modules/network/get_proxy_servers_wpad/module.rb | 2 +- modules/network/identify_lan_subnets/command.js | 2 +- modules/network/identify_lan_subnets/config.yaml | 2 +- modules/network/identify_lan_subnets/module.rb | 2 +- modules/network/internal_network_fingerprinting/command.js | 2 +- modules/network/internal_network_fingerprinting/config.yaml | 2 +- modules/network/internal_network_fingerprinting/module.rb | 2 +- modules/network/jslanscanner/command.js | 2 +- modules/network/jslanscanner/config.yaml | 2 +- modules/network/jslanscanner/module.rb | 2 +- modules/network/nat_pinning_irc/command.js | 2 +- modules/network/nat_pinning_irc/config.yaml | 2 +- modules/network/nat_pinning_irc/module.rb | 2 +- modules/network/ping_sweep/command.js | 2 +- modules/network/ping_sweep/config.yaml | 2 +- modules/network/ping_sweep/module.rb | 2 +- modules/network/ping_sweep_ff/command.js | 2 +- modules/network/ping_sweep_ff/config.yaml | 2 +- modules/network/ping_sweep_ff/module.rb | 2 +- modules/network/ping_sweep_java/command.js | 2 +- modules/network/ping_sweep_java/config.yaml | 2 +- modules/network/ping_sweep_java/module.rb | 2 +- modules/network/ping_sweep_java/pingSweep.java | 2 +- modules/network/port_scanner/command.js | 2 +- modules/network/port_scanner/config.yaml | 2 +- modules/network/port_scanner/module.rb | 2 +- modules/persistence/confirm_close_tab/command.js | 2 +- modules/persistence/confirm_close_tab/config.yaml | 2 +- modules/persistence/confirm_close_tab/module.rb | 2 +- modules/persistence/hijack_opener/command.js | 2 +- modules/persistence/hijack_opener/config.yaml | 2 +- modules/persistence/hijack_opener/module.rb | 2 +- modules/persistence/iframe_above/command.js | 2 +- modules/persistence/iframe_above/config.yaml | 2 +- modules/persistence/iframe_above/module.rb | 2 +- modules/persistence/invisible_htmlfile_activex/command.js | 2 +- modules/persistence/invisible_htmlfile_activex/config.yaml | 2 +- modules/persistence/invisible_htmlfile_activex/module.rb | 2 +- modules/persistence/jsonp_service_worker/command.js | 2 +- modules/persistence/jsonp_service_worker/config.yaml | 2 +- modules/persistence/man_in_the_browser/command.js | 2 +- modules/persistence/man_in_the_browser/config.yaml | 2 +- modules/persistence/man_in_the_browser/module.rb | 2 +- modules/persistence/popunder_window/command.js | 2 +- modules/persistence/popunder_window/config.yaml | 2 +- modules/persistence/popunder_window/module.rb | 2 +- modules/persistence/popunder_window_ie/command.js | 2 +- modules/persistence/popunder_window_ie/config.yaml | 2 +- modules/persistence/popunder_window_ie/module.rb | 2 +- modules/phonegap/phonegap_alert_user/command.js | 2 +- modules/phonegap/phonegap_alert_user/config.yaml | 2 +- modules/phonegap/phonegap_alert_user/module.rb | 2 +- modules/phonegap/phonegap_beep/command.js | 2 +- modules/phonegap/phonegap_beep/config.yaml | 2 +- modules/phonegap/phonegap_beep/module.rb | 2 +- modules/phonegap/phonegap_check_connection/command.js | 2 +- modules/phonegap/phonegap_check_connection/config.yaml | 2 +- modules/phonegap/phonegap_check_connection/module.rb | 2 +- modules/phonegap/phonegap_detect/command.js | 2 +- modules/phonegap/phonegap_detect/config.yaml | 2 +- modules/phonegap/phonegap_detect/module.rb | 2 +- modules/phonegap/phonegap_file_upload/command.js | 2 +- modules/phonegap/phonegap_file_upload/config.yaml | 2 +- modules/phonegap/phonegap_file_upload/module.rb | 2 +- modules/phonegap/phonegap_geo_locate/command.js | 2 +- modules/phonegap/phonegap_geo_locate/config.yaml | 2 +- modules/phonegap/phonegap_geo_locate/module.rb | 2 +- modules/phonegap/phonegap_globalization_status/command.js | 2 +- modules/phonegap/phonegap_globalization_status/config.yaml | 2 +- modules/phonegap/phonegap_globalization_status/module.rb | 2 +- modules/phonegap/phonegap_keychain/command.js | 2 +- modules/phonegap/phonegap_keychain/config.yaml | 2 +- modules/phonegap/phonegap_keychain/module.rb | 2 +- modules/phonegap/phonegap_list_contacts/command.js | 2 +- modules/phonegap/phonegap_list_contacts/config.yaml | 2 +- modules/phonegap/phonegap_list_contacts/module.rb | 2 +- modules/phonegap/phonegap_list_files/command.js | 2 +- modules/phonegap/phonegap_list_files/config.yaml | 2 +- modules/phonegap/phonegap_list_files/module.rb | 2 +- modules/phonegap/phonegap_persist_resume/command.js | 2 +- modules/phonegap/phonegap_persist_resume/config.yaml | 2 +- modules/phonegap/phonegap_persist_resume/module.rb | 2 +- modules/phonegap/phonegap_persistence/command.js | 2 +- modules/phonegap/phonegap_persistence/config.yaml | 2 +- modules/phonegap/phonegap_persistence/module.rb | 2 +- modules/phonegap/phonegap_plugin_detection/command.js | 2 +- modules/phonegap/phonegap_plugin_detection/config.yaml | 2 +- modules/phonegap/phonegap_plugin_detection/module.rb | 2 +- modules/phonegap/phonegap_prompt_user/command.js | 2 +- modules/phonegap/phonegap_prompt_user/config.yaml | 2 +- modules/phonegap/phonegap_prompt_user/module.rb | 2 +- modules/phonegap/phonegap_start_record_audio/command.js | 2 +- modules/phonegap/phonegap_start_record_audio/config.yaml | 2 +- modules/phonegap/phonegap_start_record_audio/module.rb | 2 +- modules/phonegap/phonegap_stop_record_audio/command.js | 2 +- modules/phonegap/phonegap_stop_record_audio/config.yaml | 2 +- modules/phonegap/phonegap_stop_record_audio/module.rb | 2 +- modules/social_engineering/clickjacking/command.js | 2 +- modules/social_engineering/clickjacking/config.yaml | 2 +- modules/social_engineering/clickjacking/module.rb | 2 +- modules/social_engineering/clippy/command.js | 2 +- modules/social_engineering/clippy/config.yaml | 2 +- modules/social_engineering/clippy/module.rb | 2 +- .../edge_wscript_wsh_injection/command.js | 2 +- .../edge_wscript_wsh_injection/config.yaml | 2 +- .../social_engineering/edge_wscript_wsh_injection/module.rb | 2 +- modules/social_engineering/fake_evernote_clipper/command.js | 2 +- .../social_engineering/fake_evernote_clipper/config.yaml | 2 +- modules/social_engineering/fake_evernote_clipper/module.rb | 2 +- modules/social_engineering/fake_flash_update/command.js | 2 +- modules/social_engineering/fake_flash_update/config.yaml | 2 +- modules/social_engineering/fake_flash_update/module.rb | 2 +- modules/social_engineering/fake_lastpass/command.js | 2 +- modules/social_engineering/fake_lastpass/config.yaml | 2 +- modules/social_engineering/fake_lastpass/module.rb | 2 +- modules/social_engineering/fake_notification/command.js | 2 +- modules/social_engineering/fake_notification/config.yaml | 2 +- modules/social_engineering/fake_notification/module.rb | 2 +- modules/social_engineering/fake_notification_c/command.js | 2 +- modules/social_engineering/fake_notification_c/config.yaml | 2 +- modules/social_engineering/fake_notification_c/module.rb | 2 +- modules/social_engineering/fake_notification_ff/command.js | 2 +- modules/social_engineering/fake_notification_ff/config.yaml | 2 +- modules/social_engineering/fake_notification_ff/module.rb | 2 +- modules/social_engineering/fake_notification_ie/command.js | 2 +- modules/social_engineering/fake_notification_ie/config.yaml | 2 +- modules/social_engineering/fake_notification_ie/module.rb | 2 +- .../firefox_extension_bindshell/command.js | 2 +- .../firefox_extension_bindshell/config.yaml | 2 +- .../firefox_extension_bindshell/module.rb | 2 +- .../social_engineering/firefox_extension_dropper/command.js | 2 +- .../firefox_extension_dropper/config.yaml | 2 +- .../social_engineering/firefox_extension_dropper/module.rb | 2 +- .../firefox_extension_reverse_shell/command.js | 2 +- .../firefox_extension_reverse_shell/config.yaml | 2 +- .../firefox_extension_reverse_shell/module.rb | 2 +- modules/social_engineering/gmail_phishing/command.js | 2 +- modules/social_engineering/gmail_phishing/config.yaml | 2 +- modules/social_engineering/gmail_phishing/module.rb | 2 +- modules/social_engineering/hta_powershell/command.js | 2 +- modules/social_engineering/hta_powershell/config.yaml | 2 +- modules/social_engineering/hta_powershell/module.rb | 2 +- modules/social_engineering/lcamtuf_download/command.js | 2 +- modules/social_engineering/lcamtuf_download/config.yaml | 2 +- modules/social_engineering/lcamtuf_download/module.rb | 2 +- modules/social_engineering/pretty_theft/command.js | 2 +- modules/social_engineering/pretty_theft/config.yaml | 2 +- modules/social_engineering/pretty_theft/module.rb | 2 +- .../social_engineering/replace_video_fake_plugin/command.js | 2 +- .../replace_video_fake_plugin/config.yaml | 2 +- .../social_engineering/replace_video_fake_plugin/module.rb | 2 +- modules/social_engineering/simple_hijacker/command.js | 2 +- modules/social_engineering/simple_hijacker/config.yaml | 2 +- modules/social_engineering/simple_hijacker/module.rb | 2 +- .../social_engineering/simple_hijacker/templates/amazon.js | 2 +- .../simple_hijacker/templates/chromecertbeggar.js | 2 +- .../simple_hijacker/templates/chromecertbeggar2.js | 2 +- .../simple_hijacker/templates/confirmbox.js | 2 +- .../simple_hijacker/templates/credential.js | 2 +- modules/social_engineering/sitekiosk_breakout/command.js | 2 +- modules/social_engineering/sitekiosk_breakout/config.yaml | 2 +- modules/social_engineering/sitekiosk_breakout/module.rb | 2 +- modules/social_engineering/spoof_addressbar_data/command.js | 2 +- .../social_engineering/spoof_addressbar_data/config.yaml | 2 +- modules/social_engineering/spoof_addressbar_data/module.rb | 2 +- modules/social_engineering/tabnabbing/command.js | 2 +- modules/social_engineering/tabnabbing/config.yaml | 2 +- modules/social_engineering/tabnabbing/module.rb | 2 +- modules/social_engineering/text_to_voice/command.js | 2 +- modules/social_engineering/text_to_voice/config.yaml | 2 +- modules/social_engineering/text_to_voice/module.rb | 2 +- modules/social_engineering/ui_abuse_ie/command.js | 2 +- modules/social_engineering/ui_abuse_ie/config.yaml | 2 +- modules/social_engineering/ui_abuse_ie/module.rb | 2 +- spec/beef/api/auth_rate_spec.rb | 2 +- spec/beef/core/main/autorun_engine/autorun_engine_spec.rb | 2 +- .../beef/core/main/handlers/browser_details_handler_spec.rb | 2 +- spec/beef/extensions/websocket_hooked_browser_spec.rb | 2 +- spec/beef/modules/debug/test_beef_debugs_spec.rb | 2 +- spec/support/assets/config_new.yaml | 2 +- spec/support/assets/config_old.yaml | 2 +- spec/support/beef_test.rb | 2 +- spec/support/constants.rb | 2 +- spec/support/simple_rest_client.rb | 2 +- test/integration/check_environment.rb | 2 +- test/integration/tc_debug_modules.rb | 2 +- test/integration/tc_dns_rest.rb | 2 +- test/integration/tc_login.rb | 2 +- test/integration/tc_network_rest.rb | 2 +- test/integration/tc_proxy.rb | 2 +- test/integration/tc_social_engineering_rest.rb | 2 +- test/integration/tc_webrtc_rest.rb | 2 +- test/integration/ts_integration.rb | 2 +- test/thirdparty/msf/unit/check_environment.rb | 2 +- test/thirdparty/msf/unit/tc_metasploit.rb | 2 +- test/thirdparty/msf/unit/ts_metasploit.rb | 2 +- tools/csrf_to_beef/lib/module.rb | 6 +++--- update-beef | 2 +- 1244 files changed, 1249 insertions(+), 1249 deletions(-) diff --git a/Gemfile b/Gemfile index 7cc5b67f4..d02bb2e08 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/INSTALL.txt b/INSTALL.txt index 8aad8a26e..335d1183d 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -1,6 +1,6 @@ =============================================================================== - Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net + Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission diff --git a/README.md b/README.md index db287868f..58094d799 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ =============================================================================== - Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net + Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission diff --git a/Rakefile b/Rakefile index 6e4212467..f7101cb34 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/VERSION b/VERSION index 575e53901..4db506f88 100644 --- a/VERSION +++ b/VERSION @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/beef b/beef index cf6bd7216..890a67c13 100755 --- a/beef +++ b/beef @@ -1,7 +1,7 @@ #!/usr/bin/env ruby # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/config.yaml b/config.yaml index f10dcaaa6..b19a1b0a3 100644 --- a/config.yaml +++ b/config.yaml @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api.rb b/core/api.rb index cb6e5bf8f..bc8fdced5 100644 --- a/core/api.rb +++ b/core/api.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/extension.rb b/core/api/extension.rb index 859136f12..daf3cbb79 100644 --- a/core/api/extension.rb +++ b/core/api/extension.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/extensions.rb b/core/api/extensions.rb index 333d07071..f3ca53a52 100644 --- a/core/api/extensions.rb +++ b/core/api/extensions.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 d6fe944fb..5ec25b243 100644 --- a/core/api/main/configuration.rb +++ b/core/api/main/configuration.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 4fa97afd1..9b841ada4 100644 --- a/core/api/main/migration.rb +++ b/core/api/main/migration.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 dd24b36cf..08f817e47 100644 --- a/core/api/main/network_stack/assethandler.rb +++ b/core/api/main/network_stack/assethandler.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 765c01093..787c39ea0 100644 --- a/core/api/main/server.rb +++ b/core/api/main/server.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 95e2181b3..ad4c8c12b 100644 --- a/core/api/main/server/hook.rb +++ b/core/api/main/server/hook.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/module.rb b/core/api/module.rb index c5954cc27..a0de3429e 100644 --- a/core/api/module.rb +++ b/core/api/module.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/api/modules.rb b/core/api/modules.rb index 425239fea..6c3537ad3 100644 --- a/core/api/modules.rb +++ b/core/api/modules.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/bootstrap.rb b/core/bootstrap.rb index 43ccd929d..604bedea5 100644 --- a/core/bootstrap.rb +++ b/core/bootstrap.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/core.rb b/core/core.rb index 4e44afeca..f20d4c1f0 100644 --- a/core/core.rb +++ b/core/core.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/extension.rb b/core/extension.rb index 26e103e7b..268a5c6d7 100644 --- a/core/extension.rb +++ b/core/extension.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/extensions.rb b/core/extensions.rb index 6979e67ba..f52e3affe 100644 --- a/core/extensions.rb +++ b/core/extensions.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters.rb b/core/filters.rb index ea57bdf3c..7b3431bc7 100644 --- a/core/filters.rb +++ b/core/filters.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/base.rb b/core/filters/base.rb index acfa968a2..4d136c67b 100644 --- a/core/filters/base.rb +++ b/core/filters/base.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/browser.rb b/core/filters/browser.rb index 1045509a0..fb5255ee3 100644 --- a/core/filters/browser.rb +++ b/core/filters/browser.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/command.rb b/core/filters/command.rb index cf45d90ee..fe400cca2 100644 --- a/core/filters/command.rb +++ b/core/filters/command.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/http.rb b/core/filters/http.rb index e6aa0eabc..adc8180f9 100644 --- a/core/filters/http.rb +++ b/core/filters/http.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/filters/page.rb b/core/filters/page.rb index eb58a2420..bab74ebd3 100644 --- a/core/filters/page.rb +++ b/core/filters/page.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/hbmanager.rb b/core/hbmanager.rb index b82c252a1..69d806665 100644 --- a/core/hbmanager.rb +++ b/core/hbmanager.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/loader.rb b/core/loader.rb index bcf07ff24..a5535c689 100644 --- a/core/loader.rb +++ b/core/loader.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/logger.rb b/core/logger.rb index 39f1cb149..54198e777 100644 --- a/core/logger.rb +++ b/core/logger.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 903536597..767a359ef 100644 --- a/core/main/autorun_engine/engine.rb +++ b/core/main/autorun_engine/engine.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 50867a400..f78f47fb2 100644 --- a/core/main/autorun_engine/parser.rb +++ b/core/main/autorun_engine/parser.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 d47dbd6b9..b41773b05 100644 --- a/core/main/autorun_engine/rule_loader.rb +++ b/core/main/autorun_engine/rule_loader.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 a2d8f06f5..d7e2c07a0 100644 --- a/core/main/client/are.js +++ b/core/main/client/are.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 160194018..eb1338547 100644 --- a/core/main/client/beef.js +++ b/core/main/client/beef.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 0b06a71f0..7695b2a60 100644 --- a/core/main/client/browser.js +++ b/core/main/client/browser.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 3df810c19..5815ca742 100644 --- a/core/main/client/browser/cookie.js +++ b/core/main/client/browser/cookie.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 1d0b88af9..468dcc8b1 100644 --- a/core/main/client/browser/popup.js +++ b/core/main/client/browser/popup.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 3ebb7bd69..4fb1ad068 100644 --- a/core/main/client/dom.js +++ b/core/main/client/dom.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 7dbdcc35c..05d3831b4 100644 --- a/core/main/client/encode/base64.js +++ b/core/main/client/encode/base64.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 2d9975f4f..940bd646b 100644 --- a/core/main/client/encode/json.js +++ b/core/main/client/encode/json.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 8d635b31c..b07a1a2e3 100644 --- a/core/main/client/geolocation.js +++ b/core/main/client/geolocation.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 f51259718..cd03a7e88 100644 --- a/core/main/client/hardware.js +++ b/core/main/client/hardware.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 31d4687bc..175cbbfbd 100644 --- a/core/main/client/init.js +++ b/core/main/client/init.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 c07b13493..9de1b1478 100644 --- a/core/main/client/lib/evercookie.js +++ b/core/main/client/lib/evercookie.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 81439fbb3..ae1bca065 100644 --- a/core/main/client/logger.js +++ b/core/main/client/logger.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 fa31a9afa..6c8d61f03 100644 --- a/core/main/client/mitb.js +++ b/core/main/client/mitb.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 b23f4f1ed..eb09a950a 100644 --- a/core/main/client/net.js +++ b/core/main/client/net.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 58f7e455a..327cdff97 100644 --- a/core/main/client/net/connection.js +++ b/core/main/client/net/connection.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 565ce6a6d..fde1bd536 100644 --- a/core/main/client/net/dns.js +++ b/core/main/client/net/dns.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 a34404146..bb43d361c 100644 --- a/core/main/client/net/local.js +++ b/core/main/client/net/local.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 119a8db52..620ef943c 100644 --- a/core/main/client/net/portscanner.js +++ b/core/main/client/net/portscanner.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 552e3011f..511796d60 100644 --- a/core/main/client/net/requester.js +++ b/core/main/client/net/requester.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 b42d5744c..fb7747523 100644 --- a/core/main/client/os.js +++ b/core/main/client/os.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 fe928d222..dc9dc9c22 100644 --- a/core/main/client/session.js +++ b/core/main/client/session.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 2e541764d..ced1d2f44 100644 --- a/core/main/client/timeout.js +++ b/core/main/client/timeout.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 9dbedd83a..d0a6cde37 100644 --- a/core/main/client/updater.js +++ b/core/main/client/updater.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 1bf83cf98..08bbcc0b6 100644 --- a/core/main/client/webrtc.js +++ b/core/main/client/webrtc.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://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 bc8ac9f7d..eeb45c07b 100644 --- a/core/main/client/websocket.js +++ b/core/main/client/websocket.js @@ -1,5 +1,5 @@ // -// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - http://beefproject.com // See the file 'doc/COPYING' for copying permission // diff --git a/core/main/command.rb b/core/main/command.rb index 5e45c6d96..9e734445e 100644 --- a/core/main/command.rb +++ b/core/main/command.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/configuration.rb b/core/main/configuration.rb index 7b20d5a10..f2dcf8f8f 100644 --- a/core/main/configuration.rb +++ b/core/main/configuration.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 4c8633088..854daecbf 100644 --- a/core/main/console/banners.rb +++ b/core/main/console/banners.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 75a33977b..0d4ba1c79 100644 --- a/core/main/console/commandline.rb +++ b/core/main/console/commandline.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/constants/browsers.rb b/core/main/constants/browsers.rb index 9df2a66ec..a10ec3dbc 100644 --- a/core/main/constants/browsers.rb +++ b/core/main/constants/browsers.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 4714b4ca9..55c7efe3a 100644 --- a/core/main/constants/commandmodule.rb +++ b/core/main/constants/commandmodule.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 d5cb6e8de..c8e17cae9 100644 --- a/core/main/constants/hardware.rb +++ b/core/main/constants/hardware.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 8c1fac2a3..597266614 100644 --- a/core/main/constants/os.rb +++ b/core/main/constants/os.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/crypto.rb b/core/main/crypto.rb index 9c82960a7..cee30c848 100644 --- a/core/main/crypto.rb +++ b/core/main/crypto.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/geoip.rb b/core/main/geoip.rb index bb7d0fc2b..b3e57935c 100644 --- a/core/main/geoip.rb +++ b/core/main/geoip.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 4358bb355..f87d2e368 100644 --- a/core/main/handlers/browserdetails.rb +++ b/core/main/handlers/browserdetails.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 b700f51f1..3c488010e 100644 --- a/core/main/handlers/commands.rb +++ b/core/main/handlers/commands.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 6bc27706d..d27ce84e7 100644 --- a/core/main/handlers/hookedbrowsers.rb +++ b/core/main/handlers/hookedbrowsers.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 6c23bf2bf..5be646cfc 100644 --- a/core/main/handlers/modules/beefjs.rb +++ b/core/main/handlers/modules/beefjs.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 cf7a872f5..4a7acfc39 100644 --- a/core/main/handlers/modules/command.rb +++ b/core/main/handlers/modules/command.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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-2023 Wade Alcorn - wade@bindshell.net + # // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # // Browser Exploitation Framework (BeEF) - http://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 4a7491c16..dc27ae7c3 100644 --- a/core/main/handlers/modules/legacybeefjs.rb +++ b/core/main/handlers/modules/legacybeefjs.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 fca9b2bac..c98331f9e 100644 --- a/core/main/handlers/modules/multistagebeefjs.rb +++ b/core/main/handlers/modules/multistagebeefjs.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/logger.rb b/core/main/logger.rb index b20b030bc..c4b42e795 100644 --- a/core/main/logger.rb +++ b/core/main/logger.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/migration.rb b/core/main/migration.rb index 8258da4a1..b6914852d 100644 --- a/core/main/migration.rb +++ b/core/main/migration.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/model.rb b/core/main/model.rb index caabe773c..7c1e83c4a 100644 --- a/core/main/model.rb +++ b/core/main/model.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 b755383aa..66e7434cc 100644 --- a/core/main/models/browserdetails.rb +++ b/core/main/models/browserdetails.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 1ecfdcb63..47daa15f9 100644 --- a/core/main/models/command.rb +++ b/core/main/models/command.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 3bb0d5267..4751324ba 100644 --- a/core/main/models/commandmodule.rb +++ b/core/main/models/commandmodule.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 047ae4bde..8a6f239c9 100644 --- a/core/main/models/execution.rb +++ b/core/main/models/execution.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 240a208f6..665bba7b1 100644 --- a/core/main/models/hookedbrowser.rb +++ b/core/main/models/hookedbrowser.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 7a28a3b05..3385b9220 100644 --- a/core/main/models/legacybrowseruseragents.rb +++ b/core/main/models/legacybrowseruseragents.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 7347243e0..8a6e45ad3 100644 --- a/core/main/models/log.rb +++ b/core/main/models/log.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 615dc5108..a7ee006c2 100644 --- a/core/main/models/optioncache.rb +++ b/core/main/models/optioncache.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 8b419bb47..54f7b103d 100644 --- a/core/main/models/result.rb +++ b/core/main/models/result.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 4969972b5..6cf3fe202 100644 --- a/core/main/models/rule.rb +++ b/core/main/models/rule.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 d3a45110f..7b761d1ec 100644 --- a/core/main/network_stack/api.rb +++ b/core/main/network_stack/api.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 97ebd4588..888ea41c4 100644 --- a/core/main/network_stack/assethandler.rb +++ b/core/main/network_stack/assethandler.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 4762db3c6..c94c14b2b 100644 --- a/core/main/network_stack/handlers/dynamicreconstruction.rb +++ b/core/main/network_stack/handlers/dynamicreconstruction.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 03a3aa179..be81b837d 100644 --- a/core/main/network_stack/handlers/raw.rb +++ b/core/main/network_stack/handlers/raw.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 e481b6a84..d1ea8cb54 100644 --- a/core/main/network_stack/handlers/redirector.rb +++ b/core/main/network_stack/handlers/redirector.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 e5c97ab6e..5b7ff2221 100644 --- a/core/main/network_stack/websocket/websocket.rb +++ b/core/main/network_stack/websocket/websocket.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 13bf07349..74fdffca9 100644 --- a/core/main/rest/api.rb +++ b/core/main/rest/api.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 2a691abc0..33ef4e946 100644 --- a/core/main/rest/handlers/admin.rb +++ b/core/main/rest/handlers/admin.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 af9e00628..88061940d 100644 --- a/core/main/rest/handlers/autorun_engine.rb +++ b/core/main/rest/handlers/autorun_engine.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 ef966ac4f..1eb7906c2 100644 --- a/core/main/rest/handlers/browserdetails.rb +++ b/core/main/rest/handlers/browserdetails.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 bdfba7960..249bdee16 100644 --- a/core/main/rest/handlers/categories.rb +++ b/core/main/rest/handlers/categories.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 b42b0a483..c76336b12 100644 --- a/core/main/rest/handlers/hookedbrowsers.rb +++ b/core/main/rest/handlers/hookedbrowsers.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 cde506ada..de478a0a2 100644 --- a/core/main/rest/handlers/logs.rb +++ b/core/main/rest/handlers/logs.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 bec2b26bc..24a61a5b0 100644 --- a/core/main/rest/handlers/modules.rb +++ b/core/main/rest/handlers/modules.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 d0490ef2f..f3c6884d6 100644 --- a/core/main/rest/handlers/server.rb +++ b/core/main/rest/handlers/server.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 66a4c3277..c32424dfd 100644 --- a/core/main/router/api.rb +++ b/core/main/router/api.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://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 b354bc861..dc6880844 100644 --- a/core/main/router/router.rb +++ b/core/main/router/router.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/main/server.rb b/core/main/server.rb index b9581d45c..bba8a5c6a 100644 --- a/core/main/server.rb +++ b/core/main/server.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/module.rb b/core/module.rb index 686772596..4a9bc013e 100644 --- a/core/module.rb +++ b/core/module.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/modules.rb b/core/modules.rb index 587ff7622..f6d212140 100644 --- a/core/modules.rb +++ b/core/modules.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby.rb b/core/ruby.rb index 7e8d3fff5..2827a8160 100644 --- a/core/ruby.rb +++ b/core/ruby.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/hash.rb b/core/ruby/hash.rb index a2a06ed2d..50a17ccb6 100644 --- a/core/ruby/hash.rb +++ b/core/ruby/hash.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/module.rb b/core/ruby/module.rb index cab73598c..2de1593a9 100644 --- a/core/ruby/module.rb +++ b/core/ruby/module.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/print.rb b/core/ruby/print.rb index d53d42bc6..4d32d49bb 100644 --- a/core/ruby/print.rb +++ b/core/ruby/print.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/security.rb b/core/ruby/security.rb index 8744b720d..29356c055 100644 --- a/core/ruby/security.rb +++ b/core/ruby/security.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/ruby/string.rb b/core/ruby/string.rb index f3dd4e0a1..c36f66c06 100644 --- a/core/ruby/string.rb +++ b/core/ruby/string.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/core/settings.rb b/core/settings.rb index 5d0dbaca5..ecce4b273 100644 --- a/core/settings.rb +++ b/core/settings.rb @@ -1,5 +1,5 @@ # -# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # diff --git a/doc/boilerplate b/doc/boilerplate index 7bbc80e9a..018e75861 100644 --- a/doc/boilerplate +++ b/doc/boilerplate @@ -1,3 +1,3 @@ -Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net +Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://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 5147780e6..b20a9d859 100644 --- a/docs/are.js.html +++ b/docs/are.js.html @@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/beef.js.html b/docs/beef.js.html
index 58a487f3b..bd6ce8f84 100644
--- a/docs/beef.js.html
+++ b/docs/beef.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/browser.js.html b/docs/browser.js.html
index 7913c6963..465c4e4ef 100644
--- a/docs/browser.js.html
+++ b/docs/browser.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 c4b738f9c..36560f8ec 100644
--- a/docs/browser_cookie.js.html
+++ b/docs/browser_cookie.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 7d2e3c678..3caf3871d 100644
--- a/docs/browser_popup.js.html
+++ b/docs/browser_popup.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/dom.js.html b/docs/dom.js.html
index 4863addf8..63b2858af 100644
--- a/docs/dom.js.html
+++ b/docs/dom.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 608a18d53..d2b2f2a8c 100644
--- a/docs/encode_base64.js.html
+++ b/docs/encode_base64.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 13919e013..f68fd67ed 100644
--- a/docs/encode_json.js.html
+++ b/docs/encode_json.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/geolocation.js.html b/docs/geolocation.js.html
index 6ff3c94e0..8d42f10f4 100644
--- a/docs/geolocation.js.html
+++ b/docs/geolocation.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/hardware.js.html b/docs/hardware.js.html
index 3005e1c38..69d2df1da 100644
--- a/docs/hardware.js.html
+++ b/docs/hardware.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/index.html b/docs/index.html
index 66711b56e..17a9263df 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -44,7 +44,7 @@
 
     

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

-
Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+
Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 Browser Exploitation Framework (BeEF) - http://beefproject.com
 See the file 'doc/COPYING' for copying permission
 
diff --git a/docs/init.js.html b/docs/init.js.html index 40e2bc07f..0c0c71a0a 100644 --- a/docs/init.js.html +++ b/docs/init.js.html @@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/logger.js.html b/docs/logger.js.html
index 230eccb49..466216a01 100644
--- a/docs/logger.js.html
+++ b/docs/logger.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/mitb.js.html b/docs/mitb.js.html
index d9d72a843..d89bd819b 100644
--- a/docs/mitb.js.html
+++ b/docs/mitb.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/net.js.html b/docs/net.js.html
index 234d64ed0..a9e8c5224 100644
--- a/docs/net.js.html
+++ b/docs/net.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 2c33ff8d1..54f4a0403 100644
--- a/docs/net_connection.js.html
+++ b/docs/net_connection.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 11dc58ac9..aebcdc8a3 100644
--- a/docs/net_dns.js.html
+++ b/docs/net_dns.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ca220546f..762680087 100644
--- a/docs/net_local.js.html
+++ b/docs/net_local.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ef819addb..d9a3e732a 100644
--- a/docs/net_portscanner.js.html
+++ b/docs/net_portscanner.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 cae27c3cc..893a2412f 100644
--- a/docs/net_requester.js.html
+++ b/docs/net_requester.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/os.js.html b/docs/os.js.html
index a6d1e740b..0d92c22b4 100644
--- a/docs/os.js.html
+++ b/docs/os.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/session.js.html b/docs/session.js.html
index 1eb31b301..52730d303 100644
--- a/docs/session.js.html
+++ b/docs/session.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/timeout.js.html b/docs/timeout.js.html
index 6a1518d95..787ea857d 100644
--- a/docs/timeout.js.html
+++ b/docs/timeout.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/updater.js.html b/docs/updater.js.html
index 70452ddee..59e4e5aa7 100644
--- a/docs/updater.js.html
+++ b/docs/updater.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/webrtc.js.html b/docs/webrtc.js.html
index 24fec5388..43e435ff3 100644
--- a/docs/webrtc.js.html
+++ b/docs/webrtc.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/docs/websocket.js.html b/docs/websocket.js.html
index cf8fd98fb..955223595 100644
--- a/docs/websocket.js.html
+++ b/docs/websocket.js.html
@@ -27,7 +27,7 @@
     
//
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 60f5fcee8..26f503d25 100644
--- a/extensions/admin_ui/api/handler.rb
+++ b/extensions/admin_ui/api/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 93eede86d..7e2938f7d 100644
--- a/extensions/admin_ui/classes/httpcontroller.rb
+++ b/extensions/admin_ui/classes/httpcontroller.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 59dee517e..5c62be3d2 100644
--- a/extensions/admin_ui/classes/session.rb
+++ b/extensions/admin_ui/classes/session.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0bfe9c9c6..4e0ea5e1f 100644
--- a/extensions/admin_ui/config.yaml
+++ b/extensions/admin_ui/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6ab8fed5a..9a5fffbbe 100644
--- a/extensions/admin_ui/constants/icons.rb
+++ b/extensions/admin_ui/constants/icons.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 31c51717b..347b0c7aa 100644
--- a/extensions/admin_ui/controllers/authentication/authentication.rb
+++ b/extensions/admin_ui/controllers/authentication/authentication.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 28b367023..dd4a96c82 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 48dca4e12..cab8fb6eb 100644
--- a/extensions/admin_ui/controllers/modules/modules.rb
+++ b/extensions/admin_ui/controllers/modules/modules.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 741ddcb4c..edd1f37e2 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 dacb949a8..89d2ba2ea 100644
--- a/extensions/admin_ui/controllers/panel/panel.rb
+++ b/extensions/admin_ui/controllers/panel/panel.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b8aa017e9..7a5baeebe 100644
--- a/extensions/admin_ui/extension.rb
+++ b/extensions/admin_ui/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b6029a603..dbacd8862 100644
--- a/extensions/admin_ui/handlers/ui.rb
+++ b/extensions/admin_ui/handlers/ui.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b0a64daf9..6876bc5b1 100644
--- a/extensions/admin_ui/media/css/base.css
+++ b/extensions/admin_ui/media/css/base.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 7d9ee9408..8affbda70 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-2023 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 b78641b6d..37b564554 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-2023 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 caf03b4fe..1af4a7860 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3032204e4..4dffd02b7 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 9092f0181..a52935193 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 be07c603a..c87afb554 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 bcae6f069..331f7386d 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3e6d9898a..68d90080e 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 eae7be15a..74a0e4e54 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 616e2df44..dff3eee21 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8ef3b69fa..f8f687189 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 56e867641..3669c536e 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 34be9dee1..a1b927281 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 727c9e670..e2ec174fb 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 03db5d2ab..1735828dc 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 d7dbc4705..2d316f9f0 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b4b9a9f45..fc6ea9ca8 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3056b44d9..2865b1e39 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 20a6b774d..ab1ad786a 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a49253cf2..1a5380658 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 aaa97df48..0764dbf41 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 dc8c813f6..f57742dd5 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 5f354c03a..5144b902c 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 34ed92401..5a6137e26 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 20aa8a737..2b8154204 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f9b1421ea..21527fbd3 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 21c337b78..9bb2231ae 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 0a16d08e8..c31e4728e 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/extensions/autoloader/config.yaml b/extensions/autoloader/config.yaml
index 4e26ede8f..e717227d5 100644
--- a/extensions/autoloader/config.yaml
+++ b/extensions/autoloader/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/autoloader/extension.rb b/extensions/autoloader/extension.rb
index c0440bb9b..84909266b 100644
--- a/extensions/autoloader/extension.rb
+++ b/extensions/autoloader/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/autoloader/model.rb b/extensions/autoloader/model.rb
index 5ca8f4aff..98629d3a2 100644
--- a/extensions/autoloader/model.rb
+++ b/extensions/autoloader/model.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/customhook/api.rb b/extensions/customhook/api.rb
index 596cea8db..0a2506fc9 100644
--- a/extensions/customhook/api.rb
+++ b/extensions/customhook/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/customhook/config.yaml b/extensions/customhook/config.yaml
index acb67ec59..9412f714e 100644
--- a/extensions/customhook/config.yaml
+++ b/extensions/customhook/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/customhook/extension.rb b/extensions/customhook/extension.rb
index c53020b25..1285d80a0 100644
--- a/extensions/customhook/extension.rb
+++ b/extensions/customhook/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/customhook/handler.rb b/extensions/customhook/handler.rb
index daacb99ff..8cec3a219 100644
--- a/extensions/customhook/handler.rb
+++ b/extensions/customhook/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 111bb4059..53f0c4f8e 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 13ccf2a5a..9ea9bc46e 100644
--- a/extensions/demos/api.rb
+++ b/extensions/demos/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/demos/config.yaml b/extensions/demos/config.yaml
index 9e2fe5220..14fbab818 100644
--- a/extensions/demos/config.yaml
+++ b/extensions/demos/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/demos/extension.rb b/extensions/demos/extension.rb
index 8c4f9c182..749334d49 100644
--- a/extensions/demos/extension.rb
+++ b/extensions/demos/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/demos/handler.rb b/extensions/demos/handler.rb
index 7f5582c3a..3a709ba68 100644
--- a/extensions/demos/handler.rb
+++ b/extensions/demos/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 10c4f45c0..ff2e07e6e 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 de65325d8..61b1fc894 100644
--- a/extensions/demos/html/butcher/butch.css
+++ b/extensions/demos/html/butcher/butch.css
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 2bd709d7c..8138b4c47 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 ff4b8180c..79c25116c 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 c4b5ecdbb..89204db6f 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 a85196f09..d58b644c8 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 b6e843e51..c052994cb 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 6b571ab5d..32ea5dd9a 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 b4d160e19..2092a3a94 100644
--- a/extensions/dns/api.rb
+++ b/extensions/dns/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/config.yaml b/extensions/dns/config.yaml
index cc1c1ba1c..eca4b7332 100644
--- a/extensions/dns/config.yaml
+++ b/extensions/dns/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/dns.rb b/extensions/dns/dns.rb
index 07792288d..1a5742e6b 100644
--- a/extensions/dns/dns.rb
+++ b/extensions/dns/dns.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/extension.rb b/extensions/dns/extension.rb
index 0522e7022..0a8ea915c 100644
--- a/extensions/dns/extension.rb
+++ b/extensions/dns/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/logger.rb b/extensions/dns/logger.rb
index 680dbe447..c6c203365 100644
--- a/extensions/dns/logger.rb
+++ b/extensions/dns/logger.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/dns/model.rb b/extensions/dns/model.rb
index 2be76af66..9bf1383be 100644
--- a/extensions/dns/model.rb
+++ b/extensions/dns/model.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 883b82dd4..b44991565 100644
--- a/extensions/dns/rest/dns.rb
+++ b/extensions/dns/rest/dns.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6c3653281..f1841a0cd 100644
--- a/extensions/dns_rebinding/api.rb
+++ b/extensions/dns_rebinding/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 532a3dd74..ed8050724 100644
--- a/extensions/dns_rebinding/config.yaml
+++ b/extensions/dns_rebinding/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9a0a8c336..482fd5195 100644
--- a/extensions/dns_rebinding/extension.rb
+++ b/extensions/dns_rebinding/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/etag/api.rb b/extensions/etag/api.rb
index 53f07f8d5..cbd5dc96f 100644
--- a/extensions/etag/api.rb
+++ b/extensions/etag/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/etag/config.yaml b/extensions/etag/config.yaml
index e5f6e8a49..669ec8c9f 100644
--- a/extensions/etag/config.yaml
+++ b/extensions/etag/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/etag/etag.rb b/extensions/etag/etag.rb
index fa2f5779c..86db163c5 100644
--- a/extensions/etag/etag.rb
+++ b/extensions/etag/etag.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/etag/extension.rb b/extensions/etag/extension.rb
index cbe43a13a..9ccab03ed 100644
--- a/extensions/etag/extension.rb
+++ b/extensions/etag/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/config.yaml b/extensions/evasion/config.yaml
index f5814af1d..d86946944 100644
--- a/extensions/evasion/config.yaml
+++ b/extensions/evasion/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/evasion.rb b/extensions/evasion/evasion.rb
index dc1e6e3ed..5f9e0d1d1 100644
--- a/extensions/evasion/evasion.rb
+++ b/extensions/evasion/evasion.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/evasion/extension.rb b/extensions/evasion/extension.rb
index 5eb336d24..a41ccdc6e 100644
--- a/extensions/evasion/extension.rb
+++ b/extensions/evasion/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e40364bb7..104c504fa 100644
--- a/extensions/evasion/obfuscation/base_64.rb
+++ b/extensions/evasion/obfuscation/base_64.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7ca713c0a..933032538 100644
--- a/extensions/evasion/obfuscation/minify.rb
+++ b/extensions/evasion/obfuscation/minify.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d0d17ff20..a348240d9 100644
--- a/extensions/evasion/obfuscation/scramble.rb
+++ b/extensions/evasion/obfuscation/scramble.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 dc99c8e43..f02240c4d 100644
--- a/extensions/evasion/obfuscation/whitespace.rb
+++ b/extensions/evasion/obfuscation/whitespace.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/events/api.rb b/extensions/events/api.rb
index d3fa29d15..6241121d0 100644
--- a/extensions/events/api.rb
+++ b/extensions/events/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/events/config.yaml b/extensions/events/config.yaml
index 107bc3624..49e849549 100644
--- a/extensions/events/config.yaml
+++ b/extensions/events/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/events/extension.rb b/extensions/events/extension.rb
index 9688e471e..9e15603cb 100644
--- a/extensions/events/extension.rb
+++ b/extensions/events/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/events/handler.rb b/extensions/events/handler.rb
index 5e2afcd5c..a9882e908 100644
--- a/extensions/events/handler.rb
+++ b/extensions/events/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/api.rb b/extensions/metasploit/api.rb
index da9810bf1..d3a00e217 100644
--- a/extensions/metasploit/api.rb
+++ b/extensions/metasploit/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/config.yaml b/extensions/metasploit/config.yaml
index 9b63d4222..484697e67 100644
--- a/extensions/metasploit/config.yaml
+++ b/extensions/metasploit/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/extension.rb b/extensions/metasploit/extension.rb
index 58c26e9ce..3e0dfa36f 100644
--- a/extensions/metasploit/extension.rb
+++ b/extensions/metasploit/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/module.rb b/extensions/metasploit/module.rb
index e19b1fd6f..dd40afe88 100644
--- a/extensions/metasploit/module.rb
+++ b/extensions/metasploit/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0b3049a7b..9dc01df8f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/metasploit/rpcclient.rb b/extensions/metasploit/rpcclient.rb
index 42c6b3b4c..49737f5f2 100644
--- a/extensions/metasploit/rpcclient.rb
+++ b/extensions/metasploit/rpcclient.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/network/api.rb b/extensions/network/api.rb
index 7941ecc5f..4b2a03dad 100644
--- a/extensions/network/api.rb
+++ b/extensions/network/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/network/config.yaml b/extensions/network/config.yaml
index f5ac40c4b..50338554b 100644
--- a/extensions/network/config.yaml
+++ b/extensions/network/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/network/extension.rb b/extensions/network/extension.rb
index cdf5842f9..329f38438 100644
--- a/extensions/network/extension.rb
+++ b/extensions/network/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 cfd4b2ad1..afa8207fb 100644
--- a/extensions/network/models/network_host.rb
+++ b/extensions/network/models/network_host.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3efc7971e..8cd44272f 100644
--- a/extensions/network/models/network_service.rb
+++ b/extensions/network/models/network_service.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 23860a990..af4b8df59 100644
--- a/extensions/network/rest/network.rb
+++ b/extensions/network/rest/network.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 61343f4a9..cc95c6c67 100644
--- a/extensions/notifications/channels/email.rb
+++ b/extensions/notifications/channels/email.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8c0d2d4e0..1bb2d152e 100644
--- a/extensions/notifications/channels/slack_workspace.rb
+++ b/extensions/notifications/channels/slack_workspace.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/notifications/config.yaml b/extensions/notifications/config.yaml
index 5473eb7ed..b0244508f 100644
--- a/extensions/notifications/config.yaml
+++ b/extensions/notifications/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/notifications/extension.rb b/extensions/notifications/extension.rb
index e200e58cb..7436b2af2 100644
--- a/extensions/notifications/extension.rb
+++ b/extensions/notifications/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/notifications/notifications.rb b/extensions/notifications/notifications.rb
index 7d8732ac9..e057b19ab 100644
--- a/extensions/notifications/notifications.rb
+++ b/extensions/notifications/notifications.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/proxy/api.rb b/extensions/proxy/api.rb
index e28c1174d..8e3d857a3 100644
--- a/extensions/proxy/api.rb
+++ b/extensions/proxy/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/proxy/config.yaml b/extensions/proxy/config.yaml
index cd41a2518..91d223c7b 100644
--- a/extensions/proxy/config.yaml
+++ b/extensions/proxy/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/proxy/extension.rb b/extensions/proxy/extension.rb
index 10517406f..e9903b2b7 100644
--- a/extensions/proxy/extension.rb
+++ b/extensions/proxy/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/proxy/proxy.rb b/extensions/proxy/proxy.rb
index 234bb7e71..d9fd1e1be 100644
--- a/extensions/proxy/proxy.rb
+++ b/extensions/proxy/proxy.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 79d2666fe..97f60311f 100644
--- a/extensions/proxy/rest/proxy.rb
+++ b/extensions/proxy/rest/proxy.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/qrcode/config.yaml b/extensions/qrcode/config.yaml
index 734606ac5..5d943946f 100644
--- a/extensions/qrcode/config.yaml
+++ b/extensions/qrcode/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/qrcode/extension.rb b/extensions/qrcode/extension.rb
index b3aceefd6..acda415f0 100644
--- a/extensions/qrcode/extension.rb
+++ b/extensions/qrcode/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/qrcode/qrcode.rb b/extensions/qrcode/qrcode.rb
index eb63b4c5c..c4066d2c2 100644
--- a/extensions/qrcode/qrcode.rb
+++ b/extensions/qrcode/qrcode.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/requester/api.rb b/extensions/requester/api.rb
index 05b42c0eb..91c649782 100644
--- a/extensions/requester/api.rb
+++ b/extensions/requester/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e86ee9fd7..db859d72f 100644
--- a/extensions/requester/api/hook.rb
+++ b/extensions/requester/api/hook.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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-2023Wade Alcorn - wade@bindshell.net
+              //   Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
               //   Browser Exploitation Framework (BeEF) - http://beefproject.com
               //   See the file \'doc/COPYING\' for copying permission
               //', '')
diff --git a/extensions/requester/config.yaml b/extensions/requester/config.yaml
index 3f49fb61a..5ddb51d44 100644
--- a/extensions/requester/config.yaml
+++ b/extensions/requester/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/requester/extension.rb b/extensions/requester/extension.rb
index 7cce611f0..86f0340be 100644
--- a/extensions/requester/extension.rb
+++ b/extensions/requester/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/requester/handler.rb b/extensions/requester/handler.rb
index ba6b8682b..3a918da67 100644
--- a/extensions/requester/handler.rb
+++ b/extensions/requester/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 74839ddbf..c7e0a5c5a 100644
--- a/extensions/requester/models/http.rb
+++ b/extensions/requester/models/http.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 85df01184..91c67b5e9 100644
--- a/extensions/requester/rest/requester.rb
+++ b/extensions/requester/rest/requester.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 dd34089bf..38e990057 100644
--- a/extensions/s2c_dns_tunnel/api.rb
+++ b/extensions/s2c_dns_tunnel/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 67b3be5b5..6a81f87a1 100644
--- a/extensions/s2c_dns_tunnel/config.yaml
+++ b/extensions/s2c_dns_tunnel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 64e5d10a3..81f27f537 100644
--- a/extensions/s2c_dns_tunnel/dnsd.rb
+++ b/extensions/s2c_dns_tunnel/dnsd.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 043f91bbc..c1aaa67ac 100644
--- a/extensions/s2c_dns_tunnel/extension.rb
+++ b/extensions/s2c_dns_tunnel/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a113a9c10..1e57ce595 100644
--- a/extensions/social_engineering/config.yaml
+++ b/extensions/social_engineering/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3dd398390..b32f141b7 100644
--- a/extensions/social_engineering/extension.rb
+++ b/extensions/social_engineering/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 78be8370c..2ea8faade 100644
--- a/extensions/social_engineering/models/interceptor.rb
+++ b/extensions/social_engineering/models/interceptor.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4c933ccc9..782d6058e 100644
--- a/extensions/social_engineering/models/web_cloner.rb
+++ b/extensions/social_engineering/models/web_cloner.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 70e3e675b..bf7caef47 100644
--- a/extensions/social_engineering/powershell/bind_powershell.rb
+++ b/extensions/social_engineering/powershell/bind_powershell.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b37d9f51e..642def372 100644
--- a/extensions/social_engineering/rest/socialengineering.rb
+++ b/extensions/social_engineering/rest/socialengineering.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 849568fb8..797f33fbb 100644
--- a/extensions/social_engineering/web_cloner/interceptor.rb
+++ b/extensions/social_engineering/web_cloner/interceptor.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ea701bbf6..024cdecfc 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/api.rb b/extensions/webrtc/api.rb
index 787ec1ae3..df163c988 100644
--- a/extensions/webrtc/api.rb
+++ b/extensions/webrtc/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 dc2a17b6b..269b57c21 100644
--- a/extensions/webrtc/api/hook.rb
+++ b/extensions/webrtc/api/hook.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/config.yaml b/extensions/webrtc/config.yaml
index 55e4ccb43..b69e7e200 100644
--- a/extensions/webrtc/config.yaml
+++ b/extensions/webrtc/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/extension.rb b/extensions/webrtc/extension.rb
index 197bed503..1c413bc88 100644
--- a/extensions/webrtc/extension.rb
+++ b/extensions/webrtc/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/webrtc/handlers.rb b/extensions/webrtc/handlers.rb
index 1267c4790..d0d924386 100644
--- a/extensions/webrtc/handlers.rb
+++ b/extensions/webrtc/handlers.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1c977c619..ea683838f 100644
--- a/extensions/webrtc/models/rtcmanage.rb
+++ b/extensions/webrtc/models/rtcmanage.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5a0b2ea60..75bd9d2b5 100644
--- a/extensions/webrtc/models/rtcmodulestatus.rb
+++ b/extensions/webrtc/models/rtcmodulestatus.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 03a1d21d8..19266413e 100644
--- a/extensions/webrtc/models/rtcsignal.rb
+++ b/extensions/webrtc/models/rtcsignal.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f034b3df6..0d6e4c8bb 100644
--- a/extensions/webrtc/models/rtcstatus.rb
+++ b/extensions/webrtc/models/rtcstatus.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 037b0cf40..ca14fedf7 100644
--- a/extensions/webrtc/rest/webrtc.rb
+++ b/extensions/webrtc/rest/webrtc.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/api.rb b/extensions/xssrays/api.rb
index e05982a87..343f3ba9e 100644
--- a/extensions/xssrays/api.rb
+++ b/extensions/xssrays/api.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bb3d0b5a3..cdd986b9a 100644
--- a/extensions/xssrays/api/scan.rb
+++ b/extensions/xssrays/api/scan.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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-2023Wade Alcorn - wade@bindshell.net
+              //   Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
               //   Browser Exploitation Framework (BeEF) - http://beefproject.com
               //   See the file \'doc/COPYING\' for copying permission
               //', '')
diff --git a/extensions/xssrays/config.yaml b/extensions/xssrays/config.yaml
index 25a49aca0..1371c6138 100644
--- a/extensions/xssrays/config.yaml
+++ b/extensions/xssrays/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/extension.rb b/extensions/xssrays/extension.rb
index 22c754d7a..9a7a38133 100644
--- a/extensions/xssrays/extension.rb
+++ b/extensions/xssrays/extension.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/extensions/xssrays/handler.rb b/extensions/xssrays/handler.rb
index 3512b9b74..0a8e24580 100644
--- a/extensions/xssrays/handler.rb
+++ b/extensions/xssrays/handler.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3ed21dc6c..fa8fd2ee8 100644
--- a/extensions/xssrays/models/xssraysdetail.rb
+++ b/extensions/xssrays/models/xssraysdetail.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 eb9fd5f3d..af4670589 100644
--- a/extensions/xssrays/models/xssraysscan.rb
+++ b/extensions/xssrays/models/xssraysscan.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 aa6535638..d035f9a05 100644
--- a/extensions/xssrays/rest/xssrays.rb
+++ b/extensions/xssrays/rest/xssrays.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/install b/install
index 1431149bd..d806d902c 100755
--- a/install
+++ b/install
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/avant_steal_history/command.js b/modules/browser/avant_steal_history/command.js
index 63d9effa9..686371a7b 100644
--- a/modules/browser/avant_steal_history/command.js
+++ b/modules/browser/avant_steal_history/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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 b54ba4d95..977cc69e4 100644
--- a/modules/browser/avant_steal_history/config.yaml
+++ b/modules/browser/avant_steal_history/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 3f4b52a83..bf2eae44b 100644
--- a/modules/browser/avant_steal_history/module.rb
+++ b/modules/browser/avant_steal_history/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 70a802c5a..6a18eb2f3 100644
--- a/modules/browser/browser_fingerprinting/command.js
+++ b/modules/browser/browser_fingerprinting/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 cb3087726..91cf8fb87 100644
--- a/modules/browser/browser_fingerprinting/config.yaml
+++ b/modules/browser/browser_fingerprinting/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/browser_fingerprinting/module.rb b/modules/browser/browser_fingerprinting/module.rb
index 7bece3504..89cf51559 100644
--- a/modules/browser/browser_fingerprinting/module.rb
+++ b/modules/browser/browser_fingerprinting/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_activex/command.js b/modules/browser/detect_activex/command.js
index 10163fb4f..3ee11ca94 100644
--- a/modules/browser/detect_activex/command.js
+++ b/modules/browser/detect_activex/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/detect_activex/config.yaml b/modules/browser/detect_activex/config.yaml
index 8fd4cd3f3..99d56d11c 100644
--- a/modules/browser/detect_activex/config.yaml
+++ b/modules/browser/detect_activex/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_activex/module.rb b/modules/browser/detect_activex/module.rb
index d8efbede9..5742e21f8 100644
--- a/modules/browser/detect_activex/module.rb
+++ b/modules/browser/detect_activex/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_evernote_clipper/command.js b/modules/browser/detect_evernote_clipper/command.js
index e7ba42ba1..1dc57e5ff 100644
--- a/modules/browser/detect_evernote_clipper/command.js
+++ b/modules/browser/detect_evernote_clipper/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 419632430..5f35c6921 100644
--- a/modules/browser/detect_evernote_clipper/config.yaml
+++ b/modules/browser/detect_evernote_clipper/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_evernote_clipper/module.rb b/modules/browser/detect_evernote_clipper/module.rb
index 9e83dba8d..dc7160fad 100644
--- a/modules/browser/detect_evernote_clipper/module.rb
+++ b/modules/browser/detect_evernote_clipper/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_extensions/command.js b/modules/browser/detect_extensions/command.js
index 8f01be8a9..68264c01b 100644
--- a/modules/browser/detect_extensions/command.js
+++ b/modules/browser/detect_extensions/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 77e8db4ce..4e3b7da9b 100644
--- a/modules/browser/detect_extensions/config.yaml
+++ b/modules/browser/detect_extensions/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_extensions/module.rb b/modules/browser/detect_extensions/module.rb
index 1917db765..0cd5c03e6 100644
--- a/modules/browser/detect_extensions/module.rb
+++ b/modules/browser/detect_extensions/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_firebug/command.js b/modules/browser/detect_firebug/command.js
index a74496968..d4c16537e 100644
--- a/modules/browser/detect_firebug/command.js
+++ b/modules/browser/detect_firebug/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/detect_firebug/config.yaml b/modules/browser/detect_firebug/config.yaml
index c43a171ac..1cf2173ba 100644
--- a/modules/browser/detect_firebug/config.yaml
+++ b/modules/browser/detect_firebug/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_firebug/module.rb b/modules/browser/detect_firebug/module.rb
index e864a6b79..eb376df3c 100644
--- a/modules/browser/detect_firebug/module.rb
+++ b/modules/browser/detect_firebug/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_foxit/command.js b/modules/browser/detect_foxit/command.js
index 3a845ab00..9bf3a25cb 100644
--- a/modules/browser/detect_foxit/command.js
+++ b/modules/browser/detect_foxit/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/detect_foxit/config.yaml b/modules/browser/detect_foxit/config.yaml
index 3e80393ae..939daaddd 100644
--- a/modules/browser/detect_foxit/config.yaml
+++ b/modules/browser/detect_foxit/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_foxit/module.rb b/modules/browser/detect_foxit/module.rb
index 6fa273818..87c74c9d9 100644
--- a/modules/browser/detect_foxit/module.rb
+++ b/modules/browser/detect_foxit/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_lastpass/command.js b/modules/browser/detect_lastpass/command.js
index 0481d3911..528ea6baf 100644
--- a/modules/browser/detect_lastpass/command.js
+++ b/modules/browser/detect_lastpass/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 273681833..0083ebc08 100644
--- a/modules/browser/detect_lastpass/config.yaml
+++ b/modules/browser/detect_lastpass/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_lastpass/module.rb b/modules/browser/detect_lastpass/module.rb
index 74f70c10a..bad2c8290 100644
--- a/modules/browser/detect_lastpass/module.rb
+++ b/modules/browser/detect_lastpass/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_mime_types/command.js b/modules/browser/detect_mime_types/command.js
index 84f5912e7..a6eaa1551 100644
--- a/modules/browser/detect_mime_types/command.js
+++ b/modules/browser/detect_mime_types/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ff0fa3e04..35cfc88d7 100644
--- a/modules/browser/detect_mime_types/config.yaml
+++ b/modules/browser/detect_mime_types/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_mime_types/module.rb b/modules/browser/detect_mime_types/module.rb
index 29262e9cb..0e8d214cf 100644
--- a/modules/browser/detect_mime_types/module.rb
+++ b/modules/browser/detect_mime_types/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_office/command.js b/modules/browser/detect_office/command.js
index 88970f0b5..13d2d5ebc 100644
--- a/modules/browser/detect_office/command.js
+++ b/modules/browser/detect_office/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 cebafd979..94b914b5f 100644
--- a/modules/browser/detect_office/config.yaml
+++ b/modules/browser/detect_office/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_office/module.rb b/modules/browser/detect_office/module.rb
index 96e517953..cb09517b5 100644
--- a/modules/browser/detect_office/module.rb
+++ b/modules/browser/detect_office/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_popup_blocker/command.js b/modules/browser/detect_popup_blocker/command.js
index 1e135b847..91a99c302 100644
--- a/modules/browser/detect_popup_blocker/command.js
+++ b/modules/browser/detect_popup_blocker/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/detect_popup_blocker/config.yaml b/modules/browser/detect_popup_blocker/config.yaml
index 4560508ef..fd046533b 100644
--- a/modules/browser/detect_popup_blocker/config.yaml
+++ b/modules/browser/detect_popup_blocker/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_popup_blocker/module.rb b/modules/browser/detect_popup_blocker/module.rb
index 6aa246598..ed615e055 100644
--- a/modules/browser/detect_popup_blocker/module.rb
+++ b/modules/browser/detect_popup_blocker/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_quicktime/command.js b/modules/browser/detect_quicktime/command.js
index 73102dc90..e39b8024f 100644
--- a/modules/browser/detect_quicktime/command.js
+++ b/modules/browser/detect_quicktime/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/detect_quicktime/config.yaml b/modules/browser/detect_quicktime/config.yaml
index 64a6555e7..9f9e2eee6 100644
--- a/modules/browser/detect_quicktime/config.yaml
+++ b/modules/browser/detect_quicktime/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_quicktime/module.rb b/modules/browser/detect_quicktime/module.rb
index 8da449f64..6095a9fd9 100644
--- a/modules/browser/detect_quicktime/module.rb
+++ b/modules/browser/detect_quicktime/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_realplayer/command.js b/modules/browser/detect_realplayer/command.js
index 8734db8d2..e2f37a295 100644
--- a/modules/browser/detect_realplayer/command.js
+++ b/modules/browser/detect_realplayer/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/detect_realplayer/config.yaml b/modules/browser/detect_realplayer/config.yaml
index 35899f1ca..b31ae3ca7 100644
--- a/modules/browser/detect_realplayer/config.yaml
+++ b/modules/browser/detect_realplayer/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_realplayer/module.rb b/modules/browser/detect_realplayer/module.rb
index 59e043aae..1945ea21d 100644
--- a/modules/browser/detect_realplayer/module.rb
+++ b/modules/browser/detect_realplayer/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_silverlight/command.js b/modules/browser/detect_silverlight/command.js
index 24115f2bc..a119ed735 100644
--- a/modules/browser/detect_silverlight/command.js
+++ b/modules/browser/detect_silverlight/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/detect_silverlight/config.yaml b/modules/browser/detect_silverlight/config.yaml
index 7b7ffd8ef..8670b081e 100644
--- a/modules/browser/detect_silverlight/config.yaml
+++ b/modules/browser/detect_silverlight/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_silverlight/module.rb b/modules/browser/detect_silverlight/module.rb
index a7fbbe96f..ea9d0644a 100644
--- a/modules/browser/detect_silverlight/module.rb
+++ b/modules/browser/detect_silverlight/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_simple_adblock/command.js b/modules/browser/detect_simple_adblock/command.js
index 8ffc65dc5..cb42af278 100644
--- a/modules/browser/detect_simple_adblock/command.js
+++ b/modules/browser/detect_simple_adblock/command.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 11768a56f..3fafec457 100644
--- a/modules/browser/detect_simple_adblock/config.yaml
+++ b/modules/browser/detect_simple_adblock/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_simple_adblock/module.rb b/modules/browser/detect_simple_adblock/module.rb
index c7eb33c34..94e8647b6 100644
--- a/modules/browser/detect_simple_adblock/module.rb
+++ b/modules/browser/detect_simple_adblock/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_toolbars/command.js b/modules/browser/detect_toolbars/command.js
index f2652e28c..5d4ff951b 100644
--- a/modules/browser/detect_toolbars/command.js
+++ b/modules/browser/detect_toolbars/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 94d188314..89476367d 100644
--- a/modules/browser/detect_toolbars/config.yaml
+++ b/modules/browser/detect_toolbars/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_toolbars/module.rb b/modules/browser/detect_toolbars/module.rb
index 952644790..41a1b4b42 100644
--- a/modules/browser/detect_toolbars/module.rb
+++ b/modules/browser/detect_toolbars/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_unity/command.js b/modules/browser/detect_unity/command.js
index b60a3025d..2efe4dda1 100644
--- a/modules/browser/detect_unity/command.js
+++ b/modules/browser/detect_unity/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 29d1f7450..9e59aac9c 100644
--- a/modules/browser/detect_unity/config.yaml
+++ b/modules/browser/detect_unity/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_unity/module.rb b/modules/browser/detect_unity/module.rb
index 00dea6f23..dc0fd28c7 100644
--- a/modules/browser/detect_unity/module.rb
+++ b/modules/browser/detect_unity/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_unsafe_activex/command.js b/modules/browser/detect_unsafe_activex/command.js
index bbf1accfb..a5d1dfde4 100644
--- a/modules/browser/detect_unsafe_activex/command.js
+++ b/modules/browser/detect_unsafe_activex/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 0958e2770..1f76d9caf 100644
--- a/modules/browser/detect_unsafe_activex/config.yaml
+++ b/modules/browser/detect_unsafe_activex/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_unsafe_activex/module.rb b/modules/browser/detect_unsafe_activex/module.rb
index 1fc9a4a2a..1667d04e1 100644
--- a/modules/browser/detect_unsafe_activex/module.rb
+++ b/modules/browser/detect_unsafe_activex/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_vlc/command.js b/modules/browser/detect_vlc/command.js
index c528c16c6..8a2856f11 100644
--- a/modules/browser/detect_vlc/command.js
+++ b/modules/browser/detect_vlc/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/detect_vlc/config.yaml b/modules/browser/detect_vlc/config.yaml
index 03eda0b4c..bdecbec8b 100644
--- a/modules/browser/detect_vlc/config.yaml
+++ b/modules/browser/detect_vlc/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_vlc/module.rb b/modules/browser/detect_vlc/module.rb
index f7f52d2d9..09aecf157 100644
--- a/modules/browser/detect_vlc/module.rb
+++ b/modules/browser/detect_vlc/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_wmp/command.js b/modules/browser/detect_wmp/command.js
index 6c9609bcf..c23c641e0 100644
--- a/modules/browser/detect_wmp/command.js
+++ b/modules/browser/detect_wmp/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/detect_wmp/config.yaml b/modules/browser/detect_wmp/config.yaml
index ba5bda31f..37f3d4ca9 100644
--- a/modules/browser/detect_wmp/config.yaml
+++ b/modules/browser/detect_wmp/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/detect_wmp/module.rb b/modules/browser/detect_wmp/module.rb
index 5f5002b7b..11a12768c 100644
--- a/modules/browser/detect_wmp/module.rb
+++ b/modules/browser/detect_wmp/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/fingerprint_browser/command.js b/modules/browser/fingerprint_browser/command.js
index dd7489717..96307f6a3 100644
--- a/modules/browser/fingerprint_browser/command.js
+++ b/modules/browser/fingerprint_browser/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 d4208d7b4..e17820cc9 100644
--- a/modules/browser/fingerprint_browser/config.yaml
+++ b/modules/browser/fingerprint_browser/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/fingerprint_browser/module.rb b/modules/browser/fingerprint_browser/module.rb
index ecd2c57da..b27140664 100644
--- a/modules/browser/fingerprint_browser/module.rb
+++ b/modules/browser/fingerprint_browser/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/get_visited_domains/command.js b/modules/browser/get_visited_domains/command.js
index dc0cffcee..8e4fe4e8a 100644
--- a/modules/browser/get_visited_domains/command.js
+++ b/modules/browser/get_visited_domains/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 37353b4e3..7f66f627c 100644
--- a/modules/browser/get_visited_domains/config.yaml
+++ b/modules/browser/get_visited_domains/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/get_visited_domains/module.rb b/modules/browser/get_visited_domains/module.rb
index 940eec7cc..670496e1d 100644
--- a/modules/browser/get_visited_domains/module.rb
+++ b/modules/browser/get_visited_domains/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/get_visited_urls/command.js b/modules/browser/get_visited_urls/command.js
index 161fb9633..0b8483daa 100644
--- a/modules/browser/get_visited_urls/command.js
+++ b/modules/browser/get_visited_urls/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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/get_visited_urls/config.yaml b/modules/browser/get_visited_urls/config.yaml
index 140ed6f1b..b3e62b4c2 100644
--- a/modules/browser/get_visited_urls/config.yaml
+++ b/modules/browser/get_visited_urls/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/get_visited_urls/module.rb b/modules/browser/get_visited_urls/module.rb
index ec98d062d..ca23aa884 100644
--- a/modules/browser/get_visited_urls/module.rb
+++ b/modules/browser/get_visited_urls/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/ajax_fingerprint/command.js b/modules/browser/hooked_domain/ajax_fingerprint/command.js
index 582fcd18e..78afa5af7 100644
--- a/modules/browser/hooked_domain/ajax_fingerprint/command.js
+++ b/modules/browser/hooked_domain/ajax_fingerprint/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/ajax_fingerprint/config.yaml b/modules/browser/hooked_domain/ajax_fingerprint/config.yaml
index d01e6da9d..b3ad70138 100644
--- a/modules/browser/hooked_domain/ajax_fingerprint/config.yaml
+++ b/modules/browser/hooked_domain/ajax_fingerprint/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/ajax_fingerprint/module.rb b/modules/browser/hooked_domain/ajax_fingerprint/module.rb
index e31ab2681..3542b3f0b 100644
--- a/modules/browser/hooked_domain/ajax_fingerprint/module.rb
+++ b/modules/browser/hooked_domain/ajax_fingerprint/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/alert_dialog/command.js b/modules/browser/hooked_domain/alert_dialog/command.js
index af9ca65fe..cd4eea313 100644
--- a/modules/browser/hooked_domain/alert_dialog/command.js
+++ b/modules/browser/hooked_domain/alert_dialog/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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_domain/alert_dialog/config.yaml b/modules/browser/hooked_domain/alert_dialog/config.yaml
index 80b59bd40..c7b8d3870 100644
--- a/modules/browser/hooked_domain/alert_dialog/config.yaml
+++ b/modules/browser/hooked_domain/alert_dialog/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/alert_dialog/module.rb b/modules/browser/hooked_domain/alert_dialog/module.rb
index 9b96c22c1..47ba7a122 100644
--- a/modules/browser/hooked_domain/alert_dialog/module.rb
+++ b/modules/browser/hooked_domain/alert_dialog/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/apache_tomcat_examples_cookie_disclosure/command.js b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/command.js
index 78a61bc70..bf31afbda 100644
--- a/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/command.js
+++ b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/apache_tomcat_examples_cookie_disclosure/config.yaml b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/config.yaml
index 67901e53a..2b85a7597 100644
--- a/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/config.yaml
+++ b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/apache_tomcat_examples_cookie_disclosure/module.rb b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/module.rb
index a1552934e..9b23629ed 100644
--- a/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/module.rb
+++ b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/clear_console/command.js b/modules/browser/hooked_domain/clear_console/command.js
index d7f6151de..6b5ccbb22 100644
--- a/modules/browser/hooked_domain/clear_console/command.js
+++ b/modules/browser/hooked_domain/clear_console/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/clear_console/config.yaml b/modules/browser/hooked_domain/clear_console/config.yaml
index 721fea815..255a4652f 100644
--- a/modules/browser/hooked_domain/clear_console/config.yaml
+++ b/modules/browser/hooked_domain/clear_console/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/clear_console/module.rb b/modules/browser/hooked_domain/clear_console/module.rb
index a8c8dae4a..3d71dd760 100644
--- a/modules/browser/hooked_domain/clear_console/module.rb
+++ b/modules/browser/hooked_domain/clear_console/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/deface_web_page/command.js b/modules/browser/hooked_domain/deface_web_page/command.js
index d622a3208..63581b880 100644
--- a/modules/browser/hooked_domain/deface_web_page/command.js
+++ b/modules/browser/hooked_domain/deface_web_page/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/deface_web_page/config.yaml b/modules/browser/hooked_domain/deface_web_page/config.yaml
index eb4f62754..96505c81a 100644
--- a/modules/browser/hooked_domain/deface_web_page/config.yaml
+++ b/modules/browser/hooked_domain/deface_web_page/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/deface_web_page/module.rb b/modules/browser/hooked_domain/deface_web_page/module.rb
index a6a333a0e..a32298b13 100644
--- a/modules/browser/hooked_domain/deface_web_page/module.rb
+++ b/modules/browser/hooked_domain/deface_web_page/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/deface_web_page_component/command.js b/modules/browser/hooked_domain/deface_web_page_component/command.js
index f388a51ec..d8132858e 100644
--- a/modules/browser/hooked_domain/deface_web_page_component/command.js
+++ b/modules/browser/hooked_domain/deface_web_page_component/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/deface_web_page_component/config.yaml b/modules/browser/hooked_domain/deface_web_page_component/config.yaml
index d75e5978a..845b29290 100644
--- a/modules/browser/hooked_domain/deface_web_page_component/config.yaml
+++ b/modules/browser/hooked_domain/deface_web_page_component/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/deface_web_page_component/module.rb b/modules/browser/hooked_domain/deface_web_page_component/module.rb
index 5b1b0c85c..9d5eb9ebe 100644
--- a/modules/browser/hooked_domain/deface_web_page_component/module.rb
+++ b/modules/browser/hooked_domain/deface_web_page_component/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/disable_developer_tools/command.js b/modules/browser/hooked_domain/disable_developer_tools/command.js
index 209e89797..6742f25fd 100644
--- a/modules/browser/hooked_domain/disable_developer_tools/command.js
+++ b/modules/browser/hooked_domain/disable_developer_tools/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/disable_developer_tools/config.yaml b/modules/browser/hooked_domain/disable_developer_tools/config.yaml
index 0842da2f2..deb952433 100644
--- a/modules/browser/hooked_domain/disable_developer_tools/config.yaml
+++ b/modules/browser/hooked_domain/disable_developer_tools/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/disable_developer_tools/module.rb b/modules/browser/hooked_domain/disable_developer_tools/module.rb
index 4ee8a1136..4e54533d0 100644
--- a/modules/browser/hooked_domain/disable_developer_tools/module.rb
+++ b/modules/browser/hooked_domain/disable_developer_tools/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_autocomplete_creds/command.js b/modules/browser/hooked_domain/get_autocomplete_creds/command.js
index dda0e493d..343f23ffd 100644
--- a/modules/browser/hooked_domain/get_autocomplete_creds/command.js
+++ b/modules/browser/hooked_domain/get_autocomplete_creds/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/get_autocomplete_creds/config.yaml b/modules/browser/hooked_domain/get_autocomplete_creds/config.yaml
index a69ecb0ac..11f781d35 100644
--- a/modules/browser/hooked_domain/get_autocomplete_creds/config.yaml
+++ b/modules/browser/hooked_domain/get_autocomplete_creds/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_autocomplete_creds/module.rb b/modules/browser/hooked_domain/get_autocomplete_creds/module.rb
index d485d77ca..e29bd1744 100644
--- a/modules/browser/hooked_domain/get_autocomplete_creds/module.rb
+++ b/modules/browser/hooked_domain/get_autocomplete_creds/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_cookie/command.js b/modules/browser/hooked_domain/get_cookie/command.js
index 6c8af7bf5..c90008ed8 100644
--- a/modules/browser/hooked_domain/get_cookie/command.js
+++ b/modules/browser/hooked_domain/get_cookie/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/get_cookie/config.yaml b/modules/browser/hooked_domain/get_cookie/config.yaml
index bb215a139..e898ab4eb 100644
--- a/modules/browser/hooked_domain/get_cookie/config.yaml
+++ b/modules/browser/hooked_domain/get_cookie/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_cookie/module.rb b/modules/browser/hooked_domain/get_cookie/module.rb
index a9a33f59c..1e7d67427 100644
--- a/modules/browser/hooked_domain/get_cookie/module.rb
+++ b/modules/browser/hooked_domain/get_cookie/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_form_values/command.js b/modules/browser/hooked_domain/get_form_values/command.js
index 2c00cf5f0..37be479e6 100644
--- a/modules/browser/hooked_domain/get_form_values/command.js
+++ b/modules/browser/hooked_domain/get_form_values/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/get_form_values/config.yaml b/modules/browser/hooked_domain/get_form_values/config.yaml
index 8b13141ea..b64ace981 100644
--- a/modules/browser/hooked_domain/get_form_values/config.yaml
+++ b/modules/browser/hooked_domain/get_form_values/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_form_values/module.rb b/modules/browser/hooked_domain/get_form_values/module.rb
index 5c8468bf0..961f507ec 100644
--- a/modules/browser/hooked_domain/get_form_values/module.rb
+++ b/modules/browser/hooked_domain/get_form_values/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_local_storage/command.js b/modules/browser/hooked_domain/get_local_storage/command.js
index 31248e476..2664cafbc 100644
--- a/modules/browser/hooked_domain/get_local_storage/command.js
+++ b/modules/browser/hooked_domain/get_local_storage/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/get_local_storage/config.yaml b/modules/browser/hooked_domain/get_local_storage/config.yaml
index 05330f0cb..f999a1996 100644
--- a/modules/browser/hooked_domain/get_local_storage/config.yaml
+++ b/modules/browser/hooked_domain/get_local_storage/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_local_storage/module.rb b/modules/browser/hooked_domain/get_local_storage/module.rb
index 2ac1773ad..aa0828d09 100644
--- a/modules/browser/hooked_domain/get_local_storage/module.rb
+++ b/modules/browser/hooked_domain/get_local_storage/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_page_html/command.js b/modules/browser/hooked_domain/get_page_html/command.js
index 2068bc992..5593f8363 100644
--- a/modules/browser/hooked_domain/get_page_html/command.js
+++ b/modules/browser/hooked_domain/get_page_html/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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_domain/get_page_html/config.yaml b/modules/browser/hooked_domain/get_page_html/config.yaml
index c34ab41de..a049b72c8 100644
--- a/modules/browser/hooked_domain/get_page_html/config.yaml
+++ b/modules/browser/hooked_domain/get_page_html/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_page_html/module.rb b/modules/browser/hooked_domain/get_page_html/module.rb
index ef23596a7..04ba13ec1 100644
--- a/modules/browser/hooked_domain/get_page_html/module.rb
+++ b/modules/browser/hooked_domain/get_page_html/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_page_html_iframe/command.js b/modules/browser/hooked_domain/get_page_html_iframe/command.js
index 08e283d05..b2c4b051b 100644
--- a/modules/browser/hooked_domain/get_page_html_iframe/command.js
+++ b/modules/browser/hooked_domain/get_page_html_iframe/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/get_page_html_iframe/config.yaml b/modules/browser/hooked_domain/get_page_html_iframe/config.yaml
index 357e43862..0174f1877 100644
--- a/modules/browser/hooked_domain/get_page_html_iframe/config.yaml
+++ b/modules/browser/hooked_domain/get_page_html_iframe/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_page_html_iframe/module.rb b/modules/browser/hooked_domain/get_page_html_iframe/module.rb
index 79b444252..9565df52d 100644
--- a/modules/browser/hooked_domain/get_page_html_iframe/module.rb
+++ b/modules/browser/hooked_domain/get_page_html_iframe/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_page_links/command.js b/modules/browser/hooked_domain/get_page_links/command.js
index a054fb56b..e56e05e49 100644
--- a/modules/browser/hooked_domain/get_page_links/command.js
+++ b/modules/browser/hooked_domain/get_page_links/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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_domain/get_page_links/config.yaml b/modules/browser/hooked_domain/get_page_links/config.yaml
index 7d7a656a2..a9f714182 100644
--- a/modules/browser/hooked_domain/get_page_links/config.yaml
+++ b/modules/browser/hooked_domain/get_page_links/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_page_links/module.rb b/modules/browser/hooked_domain/get_page_links/module.rb
index a4852b1cb..b9e06c2a1 100644
--- a/modules/browser/hooked_domain/get_page_links/module.rb
+++ b/modules/browser/hooked_domain/get_page_links/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_session_storage/command.js b/modules/browser/hooked_domain/get_session_storage/command.js
index 0d17fea07..7a3159208 100644
--- a/modules/browser/hooked_domain/get_session_storage/command.js
+++ b/modules/browser/hooked_domain/get_session_storage/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/get_session_storage/config.yaml b/modules/browser/hooked_domain/get_session_storage/config.yaml
index da4ab4d03..1fd522fcb 100644
--- a/modules/browser/hooked_domain/get_session_storage/config.yaml
+++ b/modules/browser/hooked_domain/get_session_storage/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_session_storage/module.rb b/modules/browser/hooked_domain/get_session_storage/module.rb
index 424249b2c..8161acfff 100644
--- a/modules/browser/hooked_domain/get_session_storage/module.rb
+++ b/modules/browser/hooked_domain/get_session_storage/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_stored_credentials/command.js b/modules/browser/hooked_domain/get_stored_credentials/command.js
index b6f2a8417..bf285b030 100644
--- a/modules/browser/hooked_domain/get_stored_credentials/command.js
+++ b/modules/browser/hooked_domain/get_stored_credentials/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/get_stored_credentials/config.yaml b/modules/browser/hooked_domain/get_stored_credentials/config.yaml
index fd2d2fe59..76c9d47c0 100644
--- a/modules/browser/hooked_domain/get_stored_credentials/config.yaml
+++ b/modules/browser/hooked_domain/get_stored_credentials/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/get_stored_credentials/module.rb b/modules/browser/hooked_domain/get_stored_credentials/module.rb
index 7479d4091..dc7f4d4db 100644
--- a/modules/browser/hooked_domain/get_stored_credentials/module.rb
+++ b/modules/browser/hooked_domain/get_stored_credentials/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/link_rewrite/command.js b/modules/browser/hooked_domain/link_rewrite/command.js
index fb37c0789..78c034685 100644
--- a/modules/browser/hooked_domain/link_rewrite/command.js
+++ b/modules/browser/hooked_domain/link_rewrite/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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_domain/link_rewrite/config.yaml b/modules/browser/hooked_domain/link_rewrite/config.yaml
index 78bbccd59..7ae4ac92f 100644
--- a/modules/browser/hooked_domain/link_rewrite/config.yaml
+++ b/modules/browser/hooked_domain/link_rewrite/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/link_rewrite/module.rb b/modules/browser/hooked_domain/link_rewrite/module.rb
index b16fc221d..bf3c2a4b5 100644
--- a/modules/browser/hooked_domain/link_rewrite/module.rb
+++ b/modules/browser/hooked_domain/link_rewrite/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/link_rewrite_click_events/command.js b/modules/browser/hooked_domain/link_rewrite_click_events/command.js
index 2b99ecda0..ed8148f56 100644
--- a/modules/browser/hooked_domain/link_rewrite_click_events/command.js
+++ b/modules/browser/hooked_domain/link_rewrite_click_events/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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_domain/link_rewrite_click_events/config.yaml b/modules/browser/hooked_domain/link_rewrite_click_events/config.yaml
index b6bb86bc4..33957ef03 100644
--- a/modules/browser/hooked_domain/link_rewrite_click_events/config.yaml
+++ b/modules/browser/hooked_domain/link_rewrite_click_events/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/link_rewrite_click_events/module.rb b/modules/browser/hooked_domain/link_rewrite_click_events/module.rb
index 1a1872870..3e5d5de73 100644
--- a/modules/browser/hooked_domain/link_rewrite_click_events/module.rb
+++ b/modules/browser/hooked_domain/link_rewrite_click_events/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/link_rewrite_sslstrip/command.js b/modules/browser/hooked_domain/link_rewrite_sslstrip/command.js
index aedaef4c1..793f9ef2f 100644
--- a/modules/browser/hooked_domain/link_rewrite_sslstrip/command.js
+++ b/modules/browser/hooked_domain/link_rewrite_sslstrip/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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_domain/link_rewrite_sslstrip/config.yaml b/modules/browser/hooked_domain/link_rewrite_sslstrip/config.yaml
index 76f62f5f1..c96bcdfbd 100644
--- a/modules/browser/hooked_domain/link_rewrite_sslstrip/config.yaml
+++ b/modules/browser/hooked_domain/link_rewrite_sslstrip/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/link_rewrite_sslstrip/module.rb b/modules/browser/hooked_domain/link_rewrite_sslstrip/module.rb
index 5ae966565..be0768774 100644
--- a/modules/browser/hooked_domain/link_rewrite_sslstrip/module.rb
+++ b/modules/browser/hooked_domain/link_rewrite_sslstrip/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/link_rewrite_tel/command.js b/modules/browser/hooked_domain/link_rewrite_tel/command.js
index d9905e036..470cf3589 100644
--- a/modules/browser/hooked_domain/link_rewrite_tel/command.js
+++ b/modules/browser/hooked_domain/link_rewrite_tel/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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_domain/link_rewrite_tel/config.yaml b/modules/browser/hooked_domain/link_rewrite_tel/config.yaml
index a6e9c835f..bfa837be3 100644
--- a/modules/browser/hooked_domain/link_rewrite_tel/config.yaml
+++ b/modules/browser/hooked_domain/link_rewrite_tel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/link_rewrite_tel/module.rb b/modules/browser/hooked_domain/link_rewrite_tel/module.rb
index 5716f5200..1e663e9f9 100644
--- a/modules/browser/hooked_domain/link_rewrite_tel/module.rb
+++ b/modules/browser/hooked_domain/link_rewrite_tel/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/mobilesafari_address_spoofing/command.js b/modules/browser/hooked_domain/mobilesafari_address_spoofing/command.js
index 5b1731c57..da7b8f40f 100644
--- a/modules/browser/hooked_domain/mobilesafari_address_spoofing/command.js
+++ b/modules/browser/hooked_domain/mobilesafari_address_spoofing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/mobilesafari_address_spoofing/config.yaml b/modules/browser/hooked_domain/mobilesafari_address_spoofing/config.yaml
index 1ad3213a8..b7058e1e2 100644
--- a/modules/browser/hooked_domain/mobilesafari_address_spoofing/config.yaml
+++ b/modules/browser/hooked_domain/mobilesafari_address_spoofing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/mobilesafari_address_spoofing/module.rb b/modules/browser/hooked_domain/mobilesafari_address_spoofing/module.rb
index b0921f992..687cbf1b6 100644
--- a/modules/browser/hooked_domain/mobilesafari_address_spoofing/module.rb
+++ b/modules/browser/hooked_domain/mobilesafari_address_spoofing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/overflow_cookiejar/command.js b/modules/browser/hooked_domain/overflow_cookiejar/command.js
index abca0cb44..e166e08b5 100644
--- a/modules/browser/hooked_domain/overflow_cookiejar/command.js
+++ b/modules/browser/hooked_domain/overflow_cookiejar/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/overflow_cookiejar/config.yaml b/modules/browser/hooked_domain/overflow_cookiejar/config.yaml
index eeabfbcb9..c33528e5d 100644
--- a/modules/browser/hooked_domain/overflow_cookiejar/config.yaml
+++ b/modules/browser/hooked_domain/overflow_cookiejar/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/overflow_cookiejar/module.rb b/modules/browser/hooked_domain/overflow_cookiejar/module.rb
index 0786aff94..948aa252a 100644
--- a/modules/browser/hooked_domain/overflow_cookiejar/module.rb
+++ b/modules/browser/hooked_domain/overflow_cookiejar/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/prompt_dialog/command.js b/modules/browser/hooked_domain/prompt_dialog/command.js
index 04a24537e..3e0c4a0f4 100644
--- a/modules/browser/hooked_domain/prompt_dialog/command.js
+++ b/modules/browser/hooked_domain/prompt_dialog/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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_domain/prompt_dialog/config.yaml b/modules/browser/hooked_domain/prompt_dialog/config.yaml
index 380041208..30aa44771 100644
--- a/modules/browser/hooked_domain/prompt_dialog/config.yaml
+++ b/modules/browser/hooked_domain/prompt_dialog/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/prompt_dialog/module.rb b/modules/browser/hooked_domain/prompt_dialog/module.rb
index 1cf37c075..d54783a25 100644
--- a/modules/browser/hooked_domain/prompt_dialog/module.rb
+++ b/modules/browser/hooked_domain/prompt_dialog/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/remove_stuck_iframes/command.js b/modules/browser/hooked_domain/remove_stuck_iframes/command.js
index 2e6980e07..343643c82 100644
--- a/modules/browser/hooked_domain/remove_stuck_iframes/command.js
+++ b/modules/browser/hooked_domain/remove_stuck_iframes/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/remove_stuck_iframes/config.yaml b/modules/browser/hooked_domain/remove_stuck_iframes/config.yaml
index 711ab3e7d..44a7a42e8 100644
--- a/modules/browser/hooked_domain/remove_stuck_iframes/config.yaml
+++ b/modules/browser/hooked_domain/remove_stuck_iframes/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/remove_stuck_iframes/module.rb b/modules/browser/hooked_domain/remove_stuck_iframes/module.rb
index f1c628c24..6c313a503 100644
--- a/modules/browser/hooked_domain/remove_stuck_iframes/module.rb
+++ b/modules/browser/hooked_domain/remove_stuck_iframes/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/replace_video/command.js b/modules/browser/hooked_domain/replace_video/command.js
index f686c0a70..fb6c2bc99 100644
--- a/modules/browser/hooked_domain/replace_video/command.js
+++ b/modules/browser/hooked_domain/replace_video/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/replace_video/config.yaml b/modules/browser/hooked_domain/replace_video/config.yaml
index a1abd2561..f7f160793 100644
--- a/modules/browser/hooked_domain/replace_video/config.yaml
+++ b/modules/browser/hooked_domain/replace_video/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/replace_video/module.rb b/modules/browser/hooked_domain/replace_video/module.rb
index 7a3b4fffe..f9428071d 100644
--- a/modules/browser/hooked_domain/replace_video/module.rb
+++ b/modules/browser/hooked_domain/replace_video/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/rickroll/command.js b/modules/browser/hooked_domain/rickroll/command.js
index 190182ed9..618047ef4 100644
--- a/modules/browser/hooked_domain/rickroll/command.js
+++ b/modules/browser/hooked_domain/rickroll/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/rickroll/config.yaml b/modules/browser/hooked_domain/rickroll/config.yaml
index 5b5ed43ef..023fea117 100644
--- a/modules/browser/hooked_domain/rickroll/config.yaml
+++ b/modules/browser/hooked_domain/rickroll/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/rickroll/module.rb b/modules/browser/hooked_domain/rickroll/module.rb
index b52981a56..faac9f239 100644
--- a/modules/browser/hooked_domain/rickroll/module.rb
+++ b/modules/browser/hooked_domain/rickroll/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/site_redirect/command.js b/modules/browser/hooked_domain/site_redirect/command.js
index 1826002c4..97ce7e2ed 100644
--- a/modules/browser/hooked_domain/site_redirect/command.js
+++ b/modules/browser/hooked_domain/site_redirect/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 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_domain/site_redirect/config.yaml b/modules/browser/hooked_domain/site_redirect/config.yaml
index 79ba3b531..fb0c98a8a 100644
--- a/modules/browser/hooked_domain/site_redirect/config.yaml
+++ b/modules/browser/hooked_domain/site_redirect/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/site_redirect/module.rb b/modules/browser/hooked_domain/site_redirect/module.rb
index ca86c1f6c..d1681eef9 100644
--- a/modules/browser/hooked_domain/site_redirect/module.rb
+++ b/modules/browser/hooked_domain/site_redirect/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/site_redirect_iframe/command.js b/modules/browser/hooked_domain/site_redirect_iframe/command.js
index f39f48b83..bf63c2c05 100644
--- a/modules/browser/hooked_domain/site_redirect_iframe/command.js
+++ b/modules/browser/hooked_domain/site_redirect_iframe/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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_domain/site_redirect_iframe/config.yaml b/modules/browser/hooked_domain/site_redirect_iframe/config.yaml
index 94f65be8c..15e763034 100644
--- a/modules/browser/hooked_domain/site_redirect_iframe/config.yaml
+++ b/modules/browser/hooked_domain/site_redirect_iframe/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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_domain/site_redirect_iframe/module.rb b/modules/browser/hooked_domain/site_redirect_iframe/module.rb
index 7327e6f69..d5887e9fd 100644
--- a/modules/browser/hooked_domain/site_redirect_iframe/module.rb
+++ b/modules/browser/hooked_domain/site_redirect_iframe/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/play_sound/command.js b/modules/browser/play_sound/command.js
index e6fa6926f..e6ff7de19 100644
--- a/modules/browser/play_sound/command.js
+++ b/modules/browser/play_sound/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 9f8f6439d..5a20171f4 100644
--- a/modules/browser/play_sound/config.yaml
+++ b/modules/browser/play_sound/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/play_sound/module.rb b/modules/browser/play_sound/module.rb
index 9a5c1df47..de9860eb5 100644
--- a/modules/browser/play_sound/module.rb
+++ b/modules/browser/play_sound/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/remove_hook_element/command.js b/modules/browser/remove_hook_element/command.js
index b92811003..38d698435 100644
--- a/modules/browser/remove_hook_element/command.js
+++ b/modules/browser/remove_hook_element/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f4e4d7466..97073df8b 100644
--- a/modules/browser/remove_hook_element/config.yaml
+++ b/modules/browser/remove_hook_element/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/remove_hook_element/module.rb b/modules/browser/remove_hook_element/module.rb
index 7cce48768..b0fbb3d09 100644
--- a/modules/browser/remove_hook_element/module.rb
+++ b/modules/browser/remove_hook_element/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/spyder_eye/command.js b/modules/browser/spyder_eye/command.js
index d282a969c..585d8d022 100644
--- a/modules/browser/spyder_eye/command.js
+++ b/modules/browser/spyder_eye/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 dbb1bf431..521c77651 100644
--- a/modules/browser/spyder_eye/config.yaml
+++ b/modules/browser/spyder_eye/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/spyder_eye/module.rb b/modules/browser/spyder_eye/module.rb
index 02ced659f..41ee1b86d 100644
--- a/modules/browser/spyder_eye/module.rb
+++ b/modules/browser/spyder_eye/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/unhook/command.js b/modules/browser/unhook/command.js
index ace5078b7..b5fc1d236 100644
--- a/modules/browser/unhook/command.js
+++ b/modules/browser/unhook/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 54da045a4..4e3cb53da 100644
--- a/modules/browser/unhook/config.yaml
+++ b/modules/browser/unhook/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/unhook/module.rb b/modules/browser/unhook/module.rb
index d96241f35..ca18a1f32 100644
--- a/modules/browser/unhook/module.rb
+++ b/modules/browser/unhook/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/webcam_flash/command.js b/modules/browser/webcam_flash/command.js
index f5d6fd600..d9d73e267 100644
--- a/modules/browser/webcam_flash/command.js
+++ b/modules/browser/webcam_flash/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 0719ff517..e4d9df2c2 100644
--- a/modules/browser/webcam_flash/config.yaml
+++ b/modules/browser/webcam_flash/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/webcam_flash/module.rb b/modules/browser/webcam_flash/module.rb
index 4e8a05703..b891bc590 100644
--- a/modules/browser/webcam_flash/module.rb
+++ b/modules/browser/webcam_flash/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/webcam_html5/command.js b/modules/browser/webcam_html5/command.js
index ab26fa402..bab98aacf 100644
--- a/modules/browser/webcam_html5/command.js
+++ b/modules/browser/webcam_html5/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e4d67b472..bae5ab1cb 100644
--- a/modules/browser/webcam_html5/config.yaml
+++ b/modules/browser/webcam_html5/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/webcam_html5/module.rb b/modules/browser/webcam_html5/module.rb
index 1688b36a7..4d5849bec 100644
--- a/modules/browser/webcam_html5/module.rb
+++ b/modules/browser/webcam_html5/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/webcam_permission_check/cameraCheck.as b/modules/browser/webcam_permission_check/cameraCheck.as
index 967eb6918..aa090e6ca 100644
--- a/modules/browser/webcam_permission_check/cameraCheck.as
+++ b/modules/browser/webcam_permission_check/cameraCheck.as
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8e0eec72f..b53d80048 100644
--- a/modules/browser/webcam_permission_check/command.js
+++ b/modules/browser/webcam_permission_check/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 d08f56bf3..9f084b088 100644
--- a/modules/browser/webcam_permission_check/config.yaml
+++ b/modules/browser/webcam_permission_check/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 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/webcam_permission_check/module.rb b/modules/browser/webcam_permission_check/module.rb
index 7c950322d..db7c512b2 100644
--- a/modules/browser/webcam_permission_check/module.rb
+++ b/modules/browser/webcam_permission_check/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 25cd22685..054d65324 100644
--- a/modules/chrome_extensions/execute_tabs/command.js
+++ b/modules/chrome_extensions/execute_tabs/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 75aa33927..1b3cd0598 100644
--- a/modules/chrome_extensions/execute_tabs/config.yaml
+++ b/modules/chrome_extensions/execute_tabs/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 82fa6e35c..1247866d3 100644
--- a/modules/chrome_extensions/execute_tabs/module.rb
+++ b/modules/chrome_extensions/execute_tabs/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bbe410d85..dd70b756f 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 0421d4835..363d93b43 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ea1618dee..ecc30228e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2f112ee2c..c7bf5e2e0 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8e73f1708..a1f101f6f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b0ea35a20..604939282 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f2ea805c5..519610a07 100755
--- a/modules/chrome_extensions/inject_beef/command.js
+++ b/modules/chrome_extensions/inject_beef/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 61d318256..a4972daba 100755
--- a/modules/chrome_extensions/inject_beef/config.yaml
+++ b/modules/chrome_extensions/inject_beef/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 da711f507..9434db303 100755
--- a/modules/chrome_extensions/inject_beef/module.rb
+++ b/modules/chrome_extensions/inject_beef/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3cb6aae7d..75a9d53d1 100755
--- a/modules/chrome_extensions/screenshot/command.js
+++ b/modules/chrome_extensions/screenshot/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 02d5a0031..3daf09ecf 100755
--- a/modules/chrome_extensions/screenshot/config.yaml
+++ b/modules/chrome_extensions/screenshot/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 530057dd6..2d0a2d076 100755
--- a/modules/chrome_extensions/screenshot/module.rb
+++ b/modules/chrome_extensions/screenshot/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 da9b8887d..4d729a341 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 c24b3a158..835a57f4a 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 842e3c1f2..e1099c44b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c36e7a831..61e478784 100644
--- a/modules/debug/test_beef_debug/command.js
+++ b/modules/debug/test_beef_debug/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 fcfe121ec..7f2615441 100644
--- a/modules/debug/test_beef_debug/config.yaml
+++ b/modules/debug/test_beef_debug/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 32c55ab8c..e76a07ab5 100644
--- a/modules/debug/test_beef_debug/module.rb
+++ b/modules/debug/test_beef_debug/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9119bf40a..643529774 100644
--- a/modules/debug/test_cors_request/command.js
+++ b/modules/debug/test_cors_request/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 7f258132f..5e1b9fabc 100644
--- a/modules/debug/test_cors_request/config.yaml
+++ b/modules/debug/test_cors_request/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 19bc5b8cc..af2712eb1 100644
--- a/modules/debug/test_cors_request/module.rb
+++ b/modules/debug/test_cors_request/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 07282e917..c7ee88095 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 77b40fb8f..16fa434a4 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 41e7d6596..dfbcb90bd 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 31a8d7f10..de2a62289 100644
--- a/modules/debug/test_get_variable/command.js
+++ b/modules/debug/test_get_variable/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 d05f5c436..6af79e1f9 100644
--- a/modules/debug/test_get_variable/config.yaml
+++ b/modules/debug/test_get_variable/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 967217b4f..356f693a5 100644
--- a/modules/debug/test_get_variable/module.rb
+++ b/modules/debug/test_get_variable/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 180aa0ce1..004f0dd6a 100644
--- a/modules/debug/test_http_redirect/command.js
+++ b/modules/debug/test_http_redirect/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 102b2bf28..6880cde7d 100644
--- a/modules/debug/test_http_redirect/config.yaml
+++ b/modules/debug/test_http_redirect/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1bd16b39d..c9bf5661a 100644
--- a/modules/debug/test_http_redirect/module.rb
+++ b/modules/debug/test_http_redirect/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 cfbab663f..6f3a76fe2 100644
--- a/modules/debug/test_network_request/command.js
+++ b/modules/debug/test_network_request/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 0b4755ec8..465522064 100644
--- a/modules/debug/test_network_request/config.yaml
+++ b/modules/debug/test_network_request/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 59daf6a7c..2b5c7b834 100644
--- a/modules/debug/test_network_request/module.rb
+++ b/modules/debug/test_network_request/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 55fa4f9e0..d7fc393d8 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 183c36d12..0717a438b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 eb5d3529f..465829623 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 599395ac5..27b32352c 100644
--- a/modules/debug/test_return_image/command.js
+++ b/modules/debug/test_return_image/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 2750772e8..95243d902 100644
--- a/modules/debug/test_return_image/config.yaml
+++ b/modules/debug/test_return_image/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ec73ff62f..a070be559 100644
--- a/modules/debug/test_return_image/module.rb
+++ b/modules/debug/test_return_image/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c742e0ff8..d8a8bab9b 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 547874ee4..e9659cfb9 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1386986d1..24b913319 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ace4fc107..e40b780f8 100644
--- a/modules/exploits/apache_cookie_disclosure/command.js
+++ b/modules/exploits/apache_cookie_disclosure/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ab20ecc6f..184cdc006 100644
--- a/modules/exploits/apache_cookie_disclosure/config.yaml
+++ b/modules/exploits/apache_cookie_disclosure/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3fe385cd8..42d5fbed8 100644
--- a/modules/exploits/apache_cookie_disclosure/module.rb
+++ b/modules/exploits/apache_cookie_disclosure/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 fc4ab2732..6e724282e 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 0e95e8dec..46d923170 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 31b0997bc..3ee701ee6 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1441b80d9..7c98ba7f0 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 da3702f40..51507a5dc 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3cbc67e60..35a312095 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 89b7f2e59..f9e63233f 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-2023Wade Alcorn - wade@bindshell.net
+ Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  Browser Exploitation Framework (BeEF) - http://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 1696265fd..e3d82495e 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-2023Wade Alcorn - wade@bindshell.net
+ Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  Browser Exploitation Framework (BeEF) - http://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 7edca9681..7ab504af1 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-2023Wade Alcorn - wade@bindshell.net
+; Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 ; Browser Exploitation Framework (BeEF) - http://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 a58caf132..d4bbf2abc 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-2023Wade Alcorn - wade@bindshell.net
+; Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 ; Browser Exploitation Framework (BeEF) - http://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 4122d5f33..d0cf7ec1a 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-2023Wade Alcorn - wade@bindshell.net
+ Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  Browser Exploitation Framework (BeEF) - http://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 5b9fd5a58..0578a71d7 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8cfbbfb7a..98188512b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 709a8ebb8..f408975c9 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 63e68a9cf..b00264536 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 203ea4ce1..30943d5d8 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c7c850b63..2218b79b6 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 35bbd9b35..a2bbd34ad 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 187a1696b..d4ec48f92 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b5078ce4d..0123e410f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 14dcb3c6a..082044e52 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a15ab6c7c..7b1721da9 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c30b077a6..65762acf3 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c001803f2..2199fd42f 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 fb6a89e80..200a327b1 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 223b5c2eb..31317df60 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e0a918e80..81c1ead39 100644
--- a/modules/exploits/extract_cmd_exec/command.js
+++ b/modules/exploits/extract_cmd_exec/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 7d6d2bb66..d720167cd 100644
--- a/modules/exploits/extract_cmd_exec/config.yaml
+++ b/modules/exploits/extract_cmd_exec/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a3a35edc2..91fa53b2b 100644
--- a/modules/exploits/extract_cmd_exec/module.rb
+++ b/modules/exploits/extract_cmd_exec/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6f4a17f1b..44c34ff6e 100644
--- a/modules/exploits/firephp/command.js
+++ b/modules/exploits/firephp/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 02830ab63..578b75bad 100644
--- a/modules/exploits/firephp/config.yaml
+++ b/modules/exploits/firephp/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f07814b68..b2ce1587b 100644
--- a/modules/exploits/firephp/module.rb
+++ b/modules/exploits/firephp/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c778c5c67..b0b143cca 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b5082ce84..2104e3358 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a4d83dbbb..deb3b3331 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7e7d93ddf..5abf4786d 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 d83e15112..d824b3708 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2f29f3fb2..89a301d6a 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6a7de2299..59e93e742 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-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 010ca689b..6460e5b51 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2cef007a3..ee2527701 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b1940b0ef..f9465f43d 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 801fce97a..3849c3293 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 38a22777e..6040f1c4b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2660c0581..0e482aa59 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 c4213bf35..637e911e7 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 fe64862ea..768af687c 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 cca235425..c676fda4a 100644
--- a/modules/exploits/kemp_command_execution/command.js
+++ b/modules/exploits/kemp_command_execution/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8ab7391c9..74761a36a 100644
--- a/modules/exploits/kemp_command_execution/config.yaml
+++ b/modules/exploits/kemp_command_execution/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7253f64ee..e0381b0c5 100644
--- a/modules/exploits/kemp_command_execution/module.rb
+++ b/modules/exploits/kemp_command_execution/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 74f8b76d9..1517bcab4 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ee76a0886..21b55f8d5 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7dd940174..1939c4bcf 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6fb4cd50c..c73c25a00 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 38bb55894..2d3400111 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 89b2bb3e8..0ce5deded 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c4880c36b..149a35185 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 23fe37caf..90300cca3 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0514ac3bd..12b88a89e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 381c86201..7d17da305 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a950c0641..61983c29c 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 20829a57e..9e98368b7 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 183e796a7..72e0a1032 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-2023 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 03e6bc200..7c6c35aa2 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-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 ca0016824..1a751de27 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f61f9fdcc..a44642655 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 54dece81d..7c02aa61a 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9ecc663ba..0394261d4 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 50dfbd873..b8634bbbb 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8bf59f771..afdd6992e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4afa806c1..b0de705ee 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 089a013c1..462d91511 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e1f21a038..85f531854 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d9c0e0b4f..82ffdd809 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 d4ce94772..708ae5e95 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5a34e60a0..0279b5200 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e9e8ebc92..0a528f390 100644
--- a/modules/exploits/ntfscommoncreate_dos/command.js
+++ b/modules/exploits/ntfscommoncreate_dos/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 822dcaf05..4fc7b5f2a 100644
--- a/modules/exploits/ntfscommoncreate_dos/config.yaml
+++ b/modules/exploits/ntfscommoncreate_dos/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0d65933ef..89aafd541 100644
--- a/modules/exploits/ntfscommoncreate_dos/module.rb
+++ b/modules/exploits/ntfscommoncreate_dos/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4eab24653..16954e2c7 100644
--- a/modules/exploits/opencart_reset_password/command.js
+++ b/modules/exploits/opencart_reset_password/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 1d7f0e2a7..a69041563 100644
--- a/modules/exploits/opencart_reset_password/config.yaml
+++ b/modules/exploits/opencart_reset_password/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8a0a6863f..b616dabd5 100644
--- a/modules/exploits/opencart_reset_password/module.rb
+++ b/modules/exploits/opencart_reset_password/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4443ebf64..22df2f127 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 17382d7f1..bfda7142b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 688eed995..a4a048202 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 34a153859..e06cf1e67 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 70bfa37e7..367997fd2 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 745b6df8c..609061472 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 18c6260b9..6b4b1bc4f 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 9a16ea22d..a6b2a6c3b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a95469f01..af6d8cdff 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e280eeec7..63edccd7d 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b696bb48d..5e9a6edc2 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 fb8ef8a01..fd1242dae 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5eba04713..51390fe4b 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 5a984655d..de9c92bfc 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 682eda3e3..207ed71ed 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b90691109..cced907f7 100644
--- a/modules/exploits/resource_exhaustion_dos/command.js
+++ b/modules/exploits/resource_exhaustion_dos/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 30ee01dc9..91f383f6b 100644
--- a/modules/exploits/resource_exhaustion_dos/config.yaml
+++ b/modules/exploits/resource_exhaustion_dos/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7230f9315..f78c8bf42 100644
--- a/modules/exploits/resource_exhaustion_dos/module.rb
+++ b/modules/exploits/resource_exhaustion_dos/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b84cde9de..4bd0c610c 100644
--- a/modules/exploits/rfi_scanner/command.js
+++ b/modules/exploits/rfi_scanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 075fb0017..08f6e0dcf 100644
--- a/modules/exploits/rfi_scanner/config.yaml
+++ b/modules/exploits/rfi_scanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 33f64a861..2359b4920 100644
--- a/modules/exploits/rfi_scanner/module.rb
+++ b/modules/exploits/rfi_scanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 13243d4d2..8db084e2a 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 9063748a9..bbde702a6 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f2e9e8890..790ad180f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9cb7aebb7..1276cc9df 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 5d737ea57..ed6367a93 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a27a989ef..5b5033532 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 32fd0af5a..0b42d9d64 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 c94d4c037..1fe09a071 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0a6be4236..d8df739e6 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6617a0de7..ddd2bba86 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 97d977b0f..895f04fe0 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 85210a5da..67500bec2 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3d84c1e3e..d3f1f5404 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a8af30e30..1a3deb5c3 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e7c429433..550ae5902 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 46f66be33..a9db4719c 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 740371cc6..34f3ebd9a 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 22299434f..156ae4af5 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 16b431eea..5a6752069 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 c1c5d510f..fffc088a1 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7f0a0e843..31edd7b64 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b0c0ec257..667653e0e 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 50ca90572..e4503a218 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4bcbc7b43..b9400cfba 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 09f8f8a61..0ea855f59 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 460172840..0047399b1 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b42a47e75..f6020ee95 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2138bcbea..dac351d3d 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8a115a774..ffe93b1bc 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 33a56d43a..2266fa4fb 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e0cff4558..9c2ae3fcf 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 174e74f48..93cdbfbcd 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 59d453938..0474c0027 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 acfa13585..855fb1924 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 90554f575..f6ef90ec6 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0b4fe1967..66b514569 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2cc645d06..76ec4a7bc 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 91dbcd187..ede088b86 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2187c8959..9a7b57f5a 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e4773dd51..6a0b39d40 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 134774e5a..18b61dd71 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 78c9d9e5e..7fbcb0243 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4e991cfc2..872c57beb 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 d664149a9..cc58ce7bb 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 09b8e80f0..ad717f2d4 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2187ff4b9..74542ee91 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 eb70bb32e..d65677187 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4849467b4..5bee10661 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 039d693e8..d24c0f7cb 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 66adefc8d..8c359be53 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 17a0f8f7f..7e12186b1 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5356a58b9..a30e30ec8 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 0d30afa3c..6de58042f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4409a227c..07f96b00d 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 47d292ea9..efa3fc28d 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 39cb212a1..9904142e6 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6b568a5a8..144a861a7 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 21bc7a96c..43a755d6f 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f89412617..7b2616d29 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a034ec20b..63ff1c538 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ec0d68ecf..f825848be 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 01c236a94..e4ee02851 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f61aab52a..686c6d902 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2c8148036..a3d865127 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b3babfbd3..b516f70b3 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3ad88a337..c95f4e885 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 efe0a1f92..57fa5ec6e 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a6c424a4e..9a33b5052 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 164e6384d..d3e3d7b79 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9280530e5..5c08ef075 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 2df31247c..32ee7e023 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0e6c25edd..70930347c 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 53728bd72..1bb495528 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 9d475e364..ed874d136 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 638edc294..ad0b06108 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e53d83415..e90f2fb10 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f7dfe7d0b..0def11446 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d91d056c4..10967d406 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2fa0c7d5b..d716a09b5 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b210eb384..5f710275f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2c7a60cf5..8e1304bb9 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4f6fc320b..fac2f789b 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 112d69ed7..2d722b8e9 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e5187d846..79ed19962 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3709f5d01..b02b83a1e 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 eabb78a0c..ec2003b6e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0dba9fb12..356eff540 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 23b90aa8d..4bab318f4 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 6747e94f0..5eac4a0f8 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 79c1e74e0..0a8bf9ece 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8863e51db..adab5a856 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 205e40b35..dda936955 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3ff4e4c50..4bcc45239 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 83bf831c1..29c2d5b9a 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 17861222f..6a8d69167 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 845bed667..134db6bde 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 74db04ff6..9722a77e9 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 21a80d2c2..bc0a63519 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0e3b4bb43..1da52a639 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3c0f925c8..55532841b 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 180769e8d..4ac929387 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 45475ba84..27c4a4cee 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1ab0a6d97..bb07499b2 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 d0f450b32..63cc74d6b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 77b97f6ef..92690938b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9b879ba42..aab7188af 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 5a231a67d..99a6be056 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1987357ce..7ebc2ab03 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4beedf5b5..2ebefe717 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3a080b6d9..7ec4fd73d 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c4aff1441..e71a7bfbe 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1fd881870..46546e048 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 9ac8d3cb6..8a9c0b163 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ce5f93380..73eb13061 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 858c8a17f..ff16def25 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 6de320e2a..ee6ab87de 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 de7ade402..52abb3756 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 02de64af8..0e3697429 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8deada980..9d16ecde7 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ef22e30b3..b7e16d876 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c4e7ba7c0..4c42c25d7 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8c9c73659..eb8597fbc 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 59afe0e01..c553ce1c7 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1e117e3dd..6e5d00073 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 1db840946..12316d176 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e25636d40..41ba68c15 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ec6316e77..6a85a9c73 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 27989e9ff..a3d080b6d 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ebd3680e2..e57ab4f65 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 cd408d7ea..df7864e17 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 36dc5a0a5..2b60c3458 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 06b58f028..3812c0080 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6a5424328..a2b8057a4 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b7268afb4..bf603a84b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ff37eebc0..2a0b02ec6 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1df0e3aea..7ad446f66 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 47378cc9a..204bcb866 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 31d601596..e963679f2 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8ca3d775a..dc51efc87 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 d40a2d6be..29d65beb7 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 29dddcfe0..1a6382439 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8b0148096..53c6c7804 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a6f2cf931..cbb57a48e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 40f62357b..217e69678 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bf7be0f80..9aecc815b 100644
--- a/modules/exploits/shell_shock_scanner/command.js
+++ b/modules/exploits/shell_shock_scanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e9e440878..3a8262f4f 100644
--- a/modules/exploits/shell_shock_scanner/config.yaml
+++ b/modules/exploits/shell_shock_scanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3aacfbd6f..e06ecfb1c 100644
--- a/modules/exploits/shell_shock_scanner/module.rb
+++ b/modules/exploits/shell_shock_scanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1bfc21ccc..c3dabd9db 100644
--- a/modules/exploits/shell_shocked/command.js
+++ b/modules/exploits/shell_shocked/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 4208073f2..f189a9034 100644
--- a/modules/exploits/shell_shocked/config.yaml
+++ b/modules/exploits/shell_shocked/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e67b96fbb..93581cc0b 100644
--- a/modules/exploits/shell_shocked/module.rb
+++ b/modules/exploits/shell_shocked/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e380a7b5a..4bdb36b99 100644
--- a/modules/exploits/skype_xss/command.js
+++ b/modules/exploits/skype_xss/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 956bac600..95c9ca418 100644
--- a/modules/exploits/skype_xss/config.yaml
+++ b/modules/exploits/skype_xss/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2579606da..fcf6536e2 100644
--- a/modules/exploits/skype_xss/module.rb
+++ b/modules/exploits/skype_xss/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 be24ed6de..e4c338e78 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 7cb44ab8f..279def102 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 aac7fdc98..05b1af2b7 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c84482b76..f87e5fbd1 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 5574128f9..7fd3ef572 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f678023ac..1ffbfccd2 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 17c2e555e..4efa2958f 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 28be5bcc6..84a02e33e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e1f4b84bc..323cb9e20 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 29421c7b4..9ffb614b7 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 41d0024a3..f548d5ae4 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3b918efc9..afdc6a5d0 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 37bf2709c..8564d19de 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ad9e2976c..cd1c75013 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 59aa6d7fe..768786d6a 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5b71693aa..a7548cf05 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 38d2f2fff..c367fc763 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 468433f9d..47f785226 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 76737e64c..17854d5d4 100644
--- a/modules/exploits/wanem_command_execution/command.js
+++ b/modules/exploits/wanem_command_execution/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 65b90834b..51028effc 100644
--- a/modules/exploits/wanem_command_execution/config.yaml
+++ b/modules/exploits/wanem_command_execution/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1e891ee6f..9d3c4394e 100644
--- a/modules/exploits/wanem_command_execution/module.rb
+++ b/modules/exploits/wanem_command_execution/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 19f5ed71b..977d4cd72 100644
--- a/modules/exploits/wifi_pineapple_csrf/command.js
+++ b/modules/exploits/wifi_pineapple_csrf/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e81333546..8e279d45a 100644
--- a/modules/exploits/wifi_pineapple_csrf/config.yaml
+++ b/modules/exploits/wifi_pineapple_csrf/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f7b350690..56cf04614 100644
--- a/modules/exploits/wifi_pineapple_csrf/module.rb
+++ b/modules/exploits/wifi_pineapple_csrf/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 033aa4b7e..ca7231d14 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 60110eff4..3c6765d37 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 94388b8ff..388192e65 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7604f7851..de2b025d8 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 c02185c8d..b1409ebb2 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 01ef15af1..a111a34dd 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0b89b82e1..04880a8e5 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ec979a5f0..203444fe8 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b092e84b4..984a290a3 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0b89b82e1..04880a8e5 100644
--- a/modules/exploits/xss/sqlitemanager_xss/command.js
+++ b/modules/exploits/xss/sqlitemanager_xss/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3bf263704..2260249ac 100644
--- a/modules/exploits/xss/sqlitemanager_xss/config.yaml
+++ b/modules/exploits/xss/sqlitemanager_xss/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a65dcfd64..51257b1e8 100644
--- a/modules/exploits/xss/sqlitemanager_xss/module.rb
+++ b/modules/exploits/xss/sqlitemanager_xss/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 271456934..d16240e52 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 5aaa2a860..419bca897 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 20199862d..1a1ffcbd3 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bbfef42b3..cb13b9ec6 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 717d5437c..7a3afa322 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 88e5db289..ba8bb6fc0 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 db4026024..2b9cddb74 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 84f57057d..f87bd332a 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 86b52c4a0..4aa681f62 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 430c17eb1..b2dff3e2d 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 85e80c4fe..1ddc923e6 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d1205184c..9ca8e1794 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1040a64c5..f28dd9d54 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 bae592a83..124c8cb88 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9293e936f..496e74314 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ce1d17be2..5fa6b612d 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e22b6cadc..773a0e8d3 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 df4417776..9d24d730c 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6dd609d72..fa19a67c4 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a7d81ff1f..123fc474d 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6141592c1..395de70be 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d7c0a537b..d67fee1cd 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 edfd7729f..9c5b34dbc 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2012b322e..439dfa03e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7aea18520..042e0c865 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 2b38706e9..5dbe64ba0 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c88241996..2e02e14e8 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 dfd8ab411..bc95f889e 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 00dcdf0a5..3517c6e7e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6bae6a20b..1e0cf4cf4 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3af70d073..21168bf17 100644
--- a/modules/host/clipboard_theft/command.js
+++ b/modules/host/clipboard_theft/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 67beacf92..08f5aad8a 100644
--- a/modules/host/clipboard_theft/config.yaml
+++ b/modules/host/clipboard_theft/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a104f1948..428739691 100644
--- a/modules/host/clipboard_theft/module.rb
+++ b/modules/host/clipboard_theft/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2c920832b..229f17b83 100644
--- a/modules/host/detect_airdroid/command.js
+++ b/modules/host/detect_airdroid/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 7196bfd47..eaaca5fb6 100644
--- a/modules/host/detect_airdroid/config.yaml
+++ b/modules/host/detect_airdroid/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e68cfb929..38b7d216b 100644
--- a/modules/host/detect_airdroid/module.rb
+++ b/modules/host/detect_airdroid/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 84e90f590..afd623df7 100644
--- a/modules/host/detect_antivirus/command.js
+++ b/modules/host/detect_antivirus/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 0978cc898..addb59190 100644
--- a/modules/host/detect_antivirus/config.yaml
+++ b/modules/host/detect_antivirus/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b6e5f2e35..3528eadeb 100644
--- a/modules/host/detect_antivirus/module.rb
+++ b/modules/host/detect_antivirus/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9b05ac2db..08300ffa7 100644
--- a/modules/host/detect_coupon_printer/command.js
+++ b/modules/host/detect_coupon_printer/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 bd4196cd8..5f9d051ff 100644
--- a/modules/host/detect_coupon_printer/config.yaml
+++ b/modules/host/detect_coupon_printer/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f146b80a5..b2cb947e3 100644
--- a/modules/host/detect_coupon_printer/module.rb
+++ b/modules/host/detect_coupon_printer/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 320b0a696..7e96fecf1 100644
--- a/modules/host/detect_cups/command.js
+++ b/modules/host/detect_cups/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 128399856..5b06d4721 100644
--- a/modules/host/detect_cups/config.yaml
+++ b/modules/host/detect_cups/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2604ce79c..e6443fb55 100644
--- a/modules/host/detect_cups/module.rb
+++ b/modules/host/detect_cups/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4344377c5..1699e83d6 100644
--- a/modules/host/detect_default_browser/command.js
+++ b/modules/host/detect_default_browser/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 36fb6e0ba..fd32bcc47 100644
--- a/modules/host/detect_default_browser/config.yaml
+++ b/modules/host/detect_default_browser/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e70b4574a..435b46c88 100644
--- a/modules/host/detect_default_browser/module.rb
+++ b/modules/host/detect_default_browser/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 306592f22..ee21b0d5d 100644
--- a/modules/host/detect_google_desktop/command.js
+++ b/modules/host/detect_google_desktop/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 590fb1c22..0b556e724 100644
--- a/modules/host/detect_google_desktop/config.yaml
+++ b/modules/host/detect_google_desktop/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 656e41000..237913137 100644
--- a/modules/host/detect_google_desktop/module.rb
+++ b/modules/host/detect_google_desktop/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0208c7820..6c8114c92 100644
--- a/modules/host/detect_hp/command.js
+++ b/modules/host/detect_hp/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 5cc99613c..6767af01a 100644
--- a/modules/host/detect_hp/config.yaml
+++ b/modules/host/detect_hp/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 653d9f163..6eeef28aa 100644
--- a/modules/host/detect_hp/module.rb
+++ b/modules/host/detect_hp/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 738268eb7..7f28e55a4 100644
--- a/modules/host/detect_local_drives/command.js
+++ b/modules/host/detect_local_drives/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3f48f5d72..fae652d0a 100644
--- a/modules/host/detect_local_drives/config.yaml
+++ b/modules/host/detect_local_drives/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7800ae9ed..072e54399 100644
--- a/modules/host/detect_local_drives/module.rb
+++ b/modules/host/detect_local_drives/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1a9997126..dccf7c2b2 100644
--- a/modules/host/detect_protocol_handlers/command.js
+++ b/modules/host/detect_protocol_handlers/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a2d930ab7..881ef0c67 100644
--- a/modules/host/detect_protocol_handlers/config.yaml
+++ b/modules/host/detect_protocol_handlers/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 327b9dc82..8f74fdee1 100644
--- a/modules/host/detect_protocol_handlers/module.rb
+++ b/modules/host/detect_protocol_handlers/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 fc05fc45c..502604d53 100644
--- a/modules/host/detect_software/command.js
+++ b/modules/host/detect_software/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 080978429..aafe40701 100644
--- a/modules/host/detect_software/config.yaml
+++ b/modules/host/detect_software/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ea7d709ae..d61e65cf5 100644
--- a/modules/host/detect_software/module.rb
+++ b/modules/host/detect_software/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ac498f897..fc25d8674 100644
--- a/modules/host/detect_users/command.js
+++ b/modules/host/detect_users/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ca2d32334..64192404d 100644
--- a/modules/host/detect_users/config.yaml
+++ b/modules/host/detect_users/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 50b569269..a16ae6ff8 100644
--- a/modules/host/detect_users/module.rb
+++ b/modules/host/detect_users/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5dc14f64f..58b9a73f7 100644
--- a/modules/host/get_battery_status/command.js
+++ b/modules/host/get_battery_status/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e3039c0d2..480be4630 100644
--- a/modules/host/get_battery_status/config.yaml
+++ b/modules/host/get_battery_status/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8376e9296..fe812f89a 100644
--- a/modules/host/get_battery_status/module.rb
+++ b/modules/host/get_battery_status/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 882ca2af5..dc1ae6c1a 100755
--- a/modules/host/get_connection_type/command.js
+++ b/modules/host/get_connection_type/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 1c4d6adea..b21a00eb2 100755
--- a/modules/host/get_connection_type/config.yaml
+++ b/modules/host/get_connection_type/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bc945248d..0ec836102 100755
--- a/modules/host/get_connection_type/module.rb
+++ b/modules/host/get_connection_type/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ea93643e0..9586f641d 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 800a0b69a..3b34c30a0 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2c6425ef0..9571b41f6 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-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 5d7eead36..286f38652 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0e1a295a4..26da11178 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 fbf13f00d..3bc7c99c6 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 40a7b19f7..489ed6c51 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 dc8e7fadc..386e591ff 100644
--- a/modules/host/get_registry_keys/command.js
+++ b/modules/host/get_registry_keys/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8f81b7652..6a06caf8e 100644
--- a/modules/host/get_registry_keys/config.yaml
+++ b/modules/host/get_registry_keys/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1c9349089..fbfe968d3 100644
--- a/modules/host/get_registry_keys/module.rb
+++ b/modules/host/get_registry_keys/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 66ecd1438..e2038e27f 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e850c5819..5e549ac5c 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ca07a3ac6..025cd152e 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-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 f9d7acc26..8512fc1b7 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5ac008f03..a954a0155 100644
--- a/modules/host/get_wireless_keys/command.js
+++ b/modules/host/get_wireless_keys/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 39e1737ed..3f9fab6a8 100644
--- a/modules/host/get_wireless_keys/config.yaml
+++ b/modules/host/get_wireless_keys/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7d6ac11ce..cd8c77652 100644
--- a/modules/host/get_wireless_keys/module.rb
+++ b/modules/host/get_wireless_keys/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 27ef20524..caf0e00ed 100644
--- a/modules/host/get_wireless_keys/wirelessZeroConfig.java
+++ b/modules/host/get_wireless_keys/wirelessZeroConfig.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 a98bf404b..4686252e0 100644
--- a/modules/host/hook_default_browser/command.js
+++ b/modules/host/hook_default_browser/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 11c463c4c..3522dc521 100644
--- a/modules/host/hook_default_browser/config.yaml
+++ b/modules/host/hook_default_browser/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0ad5ddb6a..ffa684d9b 100644
--- a/modules/host/hook_default_browser/module.rb
+++ b/modules/host/hook_default_browser/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c8141000e..f23f70a2e 100644
--- a/modules/host/hook_microsoft_edge/command.js
+++ b/modules/host/hook_microsoft_edge/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 021d8e116..75ea504d5 100644
--- a/modules/host/hook_microsoft_edge/config.yaml
+++ b/modules/host/hook_microsoft_edge/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b08bea3d5..f0ac97f9d 100644
--- a/modules/host/hook_microsoft_edge/module.rb
+++ b/modules/host/hook_microsoft_edge/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5c709b6fe..aa0924ea3 100644
--- a/modules/host/insecure_url_skype/command.js
+++ b/modules/host/insecure_url_skype/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8907371ce..aebaa8c5f 100644
--- a/modules/host/insecure_url_skype/config.yaml
+++ b/modules/host/insecure_url_skype/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 96115b580..af12e1f8c 100644
--- a/modules/host/insecure_url_skype/module.rb
+++ b/modules/host/insecure_url_skype/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 beb7c78e3..f33921118 100644
--- a/modules/host/iphone_tel/command.js
+++ b/modules/host/iphone_tel/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8105fb5af..c4d24fa79 100644
--- a/modules/host/iphone_tel/config.yaml
+++ b/modules/host/iphone_tel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 93b7b327b..365bc7812 100644
--- a/modules/host/iphone_tel/module.rb
+++ b/modules/host/iphone_tel/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 10975022c..0a3da6d3a 100644
--- a/modules/host/physical_location/command.js
+++ b/modules/host/physical_location/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 cdf262484..491127bc4 100644
--- a/modules/host/physical_location/config.yaml
+++ b/modules/host/physical_location/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 347f9d075..d1e68334a 100644
--- a/modules/host/physical_location/module.rb
+++ b/modules/host/physical_location/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e8eefb0f6..e45d944e2 100644
--- a/modules/host/physical_location_thirdparty/command.js
+++ b/modules/host/physical_location_thirdparty/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f2cff7b5f..4c3dae464 100644
--- a/modules/host/physical_location_thirdparty/config.yaml
+++ b/modules/host/physical_location_thirdparty/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1eb7e185f..c1500aa56 100644
--- a/modules/host/physical_location_thirdparty/module.rb
+++ b/modules/host/physical_location_thirdparty/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d3c38bfb0..ac5d6ee7a 100644
--- a/modules/ipec/cross_site_faxing/command.js
+++ b/modules/ipec/cross_site_faxing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 178ab795e..3b5441b82 100644
--- a/modules/ipec/cross_site_faxing/config.yaml
+++ b/modules/ipec/cross_site_faxing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8eb80da25..5bf1ac65a 100644
--- a/modules/ipec/cross_site_faxing/module.rb
+++ b/modules/ipec/cross_site_faxing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ca720c5f2..3832d3e20 100644
--- a/modules/ipec/cross_site_printing/command.js
+++ b/modules/ipec/cross_site_printing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 58f48f9f8..3afe1d67c 100644
--- a/modules/ipec/cross_site_printing/config.yaml
+++ b/modules/ipec/cross_site_printing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ef32ea343..1d6bed768 100644
--- a/modules/ipec/cross_site_printing/module.rb
+++ b/modules/ipec/cross_site_printing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 695747e3e..4e82f7378 100644
--- a/modules/ipec/dns_tunnel/command.js
+++ b/modules/ipec/dns_tunnel/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e8e88e491..bfdd74019 100644
--- a/modules/ipec/dns_tunnel/config.yaml
+++ b/modules/ipec/dns_tunnel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f0ab5b3d3..04b701221 100644
--- a/modules/ipec/dns_tunnel/module.rb
+++ b/modules/ipec/dns_tunnel/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 746509f69..bd348a313 100644
--- a/modules/ipec/etag_client/command.js
+++ b/modules/ipec/etag_client/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 2a06c8a19..5e78dd6e1 100644
--- a/modules/ipec/etag_client/config.yaml
+++ b/modules/ipec/etag_client/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6843b9c8d..980503359 100644
--- a/modules/ipec/etag_client/module.rb
+++ b/modules/ipec/etag_client/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 64c70e32a..f0cb41a43 100644
--- a/modules/ipec/inter_protocol_imap/command.js
+++ b/modules/ipec/inter_protocol_imap/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ffbf21890..cc96ffa85 100644
--- a/modules/ipec/inter_protocol_imap/config.yaml
+++ b/modules/ipec/inter_protocol_imap/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6651d4f5b..7dc668ed8 100644
--- a/modules/ipec/inter_protocol_imap/module.rb
+++ b/modules/ipec/inter_protocol_imap/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 64268abae..84f0efa5c 100644
--- a/modules/ipec/inter_protocol_irc/command.js
+++ b/modules/ipec/inter_protocol_irc/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ce8e41ae3..f23e14d03 100644
--- a/modules/ipec/inter_protocol_irc/config.yaml
+++ b/modules/ipec/inter_protocol_irc/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 09370868a..d71891f43 100644
--- a/modules/ipec/inter_protocol_irc/module.rb
+++ b/modules/ipec/inter_protocol_irc/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 711acc96f..1211fc0a8 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 dd2bb3bcd..f8d6e9987 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 94f85a402..ee6330188 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 daf7bfb32..85cbf080a 100644
--- a/modules/ipec/inter_protocol_redis/command.js
+++ b/modules/ipec/inter_protocol_redis/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 dcc7dc2aa..31f0b3c50 100644
--- a/modules/ipec/inter_protocol_redis/config.yaml
+++ b/modules/ipec/inter_protocol_redis/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4b6a36ee3..8da487ccf 100644
--- a/modules/ipec/inter_protocol_redis/module.rb
+++ b/modules/ipec/inter_protocol_redis/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ce92884e6..1f9c8312d 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 9ccbe7c1c..7a656f0ea 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3582f352a..44d1d0be4 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 deda19b6f..47df4a4c9 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bcfafbd43..cbaf54b4b 100644
--- a/modules/ipec/s2c_dns_tunnel/command.js
+++ b/modules/ipec/s2c_dns_tunnel/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 81fd0292e..0b754a5ef 100644
--- a/modules/ipec/s2c_dns_tunnel/config.yaml
+++ b/modules/ipec/s2c_dns_tunnel/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 432ca2009..691aa6c92 100644
--- a/modules/ipec/s2c_dns_tunnel/module.rb
+++ b/modules/ipec/s2c_dns_tunnel/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6a366cf5d..e96dff787 100644
--- a/modules/metasploit/browser_autopwn/command.js
+++ b/modules/metasploit/browser_autopwn/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 2f27162e2..3c0c7246f 100644
--- a/modules/metasploit/browser_autopwn/config.yaml
+++ b/modules/metasploit/browser_autopwn/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2c982dc46..595cd615a 100644
--- a/modules/metasploit/browser_autopwn/module.rb
+++ b/modules/metasploit/browser_autopwn/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f56d8d511..e76b40583 100644
--- a/modules/misc/blockui/command.js
+++ b/modules/misc/blockui/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f8c1aa147..9b1e4e84f 100644
--- a/modules/misc/blockui/config.yaml
+++ b/modules/misc/blockui/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b525eea90..d362e62a4 100644
--- a/modules/misc/blockui/module.rb
+++ b/modules/misc/blockui/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 78e42682e..eea99205f 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-2023Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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 205aca340..30eb3d607 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 b7ebc0eac..bcbd11e49 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 3912393e9..5bcfb9dcd 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-2023Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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 2c11f2c43..a74e54623 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 d619a747c..b8eaf7753 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 d51dbf0f0..61bb563c9 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-2023Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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 cfda95244..75bad922d 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 5e3a73ff6..9cae0090b 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 495a2d3d2..1a3cd4637 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-2023Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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 42a96ed32..b8061cd28 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 de61b821b..7a3edaaea 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 9b0ec3cba..f03448e1b 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-2023Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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 60b4171e0..9218cb616 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 53035c760..9697934ba 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-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 c99ee55c0..1c8ad0e22 100644
--- a/modules/misc/iframe_keylogger/command.js
+++ b/modules/misc/iframe_keylogger/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 1c4972078..a2c4a72e6 100644
--- a/modules/misc/iframe_keylogger/config.yaml
+++ b/modules/misc/iframe_keylogger/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c58948e65..f780bb887 100644
--- a/modules/misc/iframe_keylogger/module.rb
+++ b/modules/misc/iframe_keylogger/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f52e7246a..823a9a2fa 100644
--- a/modules/misc/iframe_sniffer/command.js
+++ b/modules/misc/iframe_sniffer/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 12a808baa..89c0b6421 100644
--- a/modules/misc/iframe_sniffer/config.yaml
+++ b/modules/misc/iframe_sniffer/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ced58def2..4379a0a83 100644
--- a/modules/misc/iframe_sniffer/module.rb
+++ b/modules/misc/iframe_sniffer/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 428aac2d0..0ca646866 100644
--- a/modules/misc/invisible_iframe/command.js
+++ b/modules/misc/invisible_iframe/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ea9c23017..612a601ad 100644
--- a/modules/misc/invisible_iframe/config.yaml
+++ b/modules/misc/invisible_iframe/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 29c7386fd..d52720bae 100644
--- a/modules/misc/invisible_iframe/module.rb
+++ b/modules/misc/invisible_iframe/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7f4222ffc..cc81d4d62 100644
--- a/modules/misc/local_file_theft/command.js
+++ b/modules/misc/local_file_theft/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e7c1a1769..c7943f10c 100644
--- a/modules/misc/local_file_theft/config.yaml
+++ b/modules/misc/local_file_theft/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e0af7b406..745e308b2 100644
--- a/modules/misc/local_file_theft/module.rb
+++ b/modules/misc/local_file_theft/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ddd08ef96..5c13730db 100644
--- a/modules/misc/nosleep/command.js
+++ b/modules/misc/nosleep/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 417796e5d..78e62fb23 100644
--- a/modules/misc/nosleep/config.yaml
+++ b/modules/misc/nosleep/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a793ac309..57873f6b7 100644
--- a/modules/misc/nosleep/module.rb
+++ b/modules/misc/nosleep/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a4b08431c..9d3e93990 100644
--- a/modules/misc/raw_javascript/command.js
+++ b/modules/misc/raw_javascript/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 181eaa22d..ab24209ad 100644
--- a/modules/misc/raw_javascript/config.yaml
+++ b/modules/misc/raw_javascript/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0aab77a6a..e9628231f 100644
--- a/modules/misc/raw_javascript/module.rb
+++ b/modules/misc/raw_javascript/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 117c83646..5a6aad9c7 100644
--- a/modules/misc/read_gmail/command.js
+++ b/modules/misc/read_gmail/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2024Wade 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 9f8a29b86..233d5723e 100644
--- a/modules/misc/read_gmail/config.yaml
+++ b/modules/misc/read_gmail/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 4b67ca24b..2be443c96 100644
--- a/modules/misc/read_gmail/module.rb
+++ b/modules/misc/read_gmail/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2024Wade 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 fe6370b73..c8f5befb0 100644
--- a/modules/misc/track_physical_movement/command.js
+++ b/modules/misc/track_physical_movement/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e97c6ac33..e65376c0b 100644
--- a/modules/misc/track_physical_movement/config.yaml
+++ b/modules/misc/track_physical_movement/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 27ad540ff..abb91c0d9 100644
--- a/modules/misc/track_physical_movement/module.rb
+++ b/modules/misc/track_physical_movement/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 28fb38860..cc0e74f10 100644
--- a/modules/misc/unblockui/command.js
+++ b/modules/misc/unblockui/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 acbb83ded..add2c78f1 100644
--- a/modules/misc/unblockui/config.yaml
+++ b/modules/misc/unblockui/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 51328f219..1fcf66ff0 100644
--- a/modules/misc/unblockui/module.rb
+++ b/modules/misc/unblockui/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7b985e078..0e298fffc 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-2023Wade Alcorn - wade@bindshell.net - Browser Exploitation Framework (BeEF) - http://beefproject.com - See the file 'doc/COPYING' for copying permission
+ * License: Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net - Browser Exploitation Framework (BeEF) - http://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 daf077202..a1c261911 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 eae2ababb..dca3d1ab8 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e2ffdc8d0..3d1300e27 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 564257a8d..fa777b373 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 cc42fef16..3b6294076 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ba0818128..e0ce52bb8 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 58373a484..3c4398a84 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4e8fd5ccb..2021263a4 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e409b005a..3ff645c92 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e8dcd7f1e..6c5b05c5f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f63ec1462..0646fd9d2 100644
--- a/modules/network/DOSer/command.js
+++ b/modules/network/DOSer/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e13a248a2..37ebb22fe 100644
--- a/modules/network/DOSer/config.yaml
+++ b/modules/network/DOSer/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7319bbdb0..fa664c85b 100644
--- a/modules/network/DOSer/module.rb
+++ b/modules/network/DOSer/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f8088c676..859e17628 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b4daf037f..2099344d8 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e9986c282..1367c9be9 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 cd33c2659..40838514a 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 995c811f0..0ea98150f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c1ba9de7f..59be75d9d 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1edd490d9..e8221df9d 100644
--- a/modules/network/detect_burp/command.js
+++ b/modules/network/detect_burp/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 18254e402..4f16555f7 100644
--- a/modules/network/detect_burp/config.yaml
+++ b/modules/network/detect_burp/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 12ec923e9..5ad3c9703 100644
--- a/modules/network/detect_burp/module.rb
+++ b/modules/network/detect_burp/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 890b595e2..b2e161214 100644
--- a/modules/network/detect_ethereum_ens/command.js
+++ b/modules/network/detect_ethereum_ens/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 6a68d000d..f1b411203 100644
--- a/modules/network/detect_ethereum_ens/config.yaml
+++ b/modules/network/detect_ethereum_ens/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 16a3c3e46..621479d93 100644
--- a/modules/network/detect_ethereum_ens/module.rb
+++ b/modules/network/detect_ethereum_ens/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 cf23822c1..3ddaff66f 100644
--- a/modules/network/detect_opennic/command.js
+++ b/modules/network/detect_opennic/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 1ea69819e..e45ac36a5 100644
--- a/modules/network/detect_opennic/config.yaml
+++ b/modules/network/detect_opennic/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3e11b4842..e8f83ec25 100644
--- a/modules/network/detect_opennic/module.rb
+++ b/modules/network/detect_opennic/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 490e3f136..cbcd43429 100644
--- a/modules/network/detect_soc_nets/command.js
+++ b/modules/network/detect_soc_nets/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 41fee8dbe..19f02e04d 100644
--- a/modules/network/detect_soc_nets/config.yaml
+++ b/modules/network/detect_soc_nets/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 67aedbe4f..43b219e89 100644
--- a/modules/network/detect_soc_nets/module.rb
+++ b/modules/network/detect_soc_nets/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5d2edf3fa..e4b6374a3 100644
--- a/modules/network/detect_tor/command.js
+++ b/modules/network/detect_tor/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 33b5e2f10..c9b8eef9e 100644
--- a/modules/network/detect_tor/config.yaml
+++ b/modules/network/detect_tor/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b6b56411b..f28b6aee1 100644
--- a/modules/network/detect_tor/module.rb
+++ b/modules/network/detect_tor/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a80f7989a..a6e5f2381 100644
--- a/modules/network/dns_enumeration/command.js
+++ b/modules/network/dns_enumeration/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 242900b9e..bf6f49fc6 100644
--- a/modules/network/dns_enumeration/config.yaml
+++ b/modules/network/dns_enumeration/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 09a8c0ea8..05f6b44da 100644
--- a/modules/network/dns_enumeration/module.rb
+++ b/modules/network/dns_enumeration/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 cd8e948e0..b58d1d554 100644
--- a/modules/network/dns_rebinding/command.js
+++ b/modules/network/dns_rebinding/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 982bfc527..2042477b0 100644
--- a/modules/network/dns_rebinding/config.yaml
+++ b/modules/network/dns_rebinding/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ccab2b9c5..28c1af2da 100644
--- a/modules/network/dns_rebinding/module.rb
+++ b/modules/network/dns_rebinding/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f3e1a5a9c..71dc0d01f 100644
--- a/modules/network/fetch_port_scanner/command.js
+++ b/modules/network/fetch_port_scanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3d1960110..68d955b32 100644
--- a/modules/network/fetch_port_scanner/config.yaml
+++ b/modules/network/fetch_port_scanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f160d122e..05c9de414 100644
--- a/modules/network/fetch_port_scanner/module.rb
+++ b/modules/network/fetch_port_scanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 34c6f9d3f..cecaa5687 100644
--- a/modules/network/get_http_servers/command.js
+++ b/modules/network/get_http_servers/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8e3042b2a..289d11569 100644
--- a/modules/network/get_http_servers/config.yaml
+++ b/modules/network/get_http_servers/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9b3af1d3f..e25e7c881 100644
--- a/modules/network/get_http_servers/module.rb
+++ b/modules/network/get_http_servers/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 970e43829..4448346b2 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 1e2533377..de6ea7980 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ea9491453..b1c41ac1d 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bb2bac450..52cb90418 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 bc3a4c1c0..3b5b6f381 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4ad05165f..d3deff351 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4612def0d..a5ac1080e 100644
--- a/modules/network/identify_lan_subnets/command.js
+++ b/modules/network/identify_lan_subnets/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 04dd04950..820814998 100644
--- a/modules/network/identify_lan_subnets/config.yaml
+++ b/modules/network/identify_lan_subnets/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a101d97c5..87f94745b 100644
--- a/modules/network/identify_lan_subnets/module.rb
+++ b/modules/network/identify_lan_subnets/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 fb64aa8c9..435c19033 100644
--- a/modules/network/internal_network_fingerprinting/command.js
+++ b/modules/network/internal_network_fingerprinting/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ecc87946e..234189a6a 100644
--- a/modules/network/internal_network_fingerprinting/config.yaml
+++ b/modules/network/internal_network_fingerprinting/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 60e56e6c8..ffceee7ec 100644
--- a/modules/network/internal_network_fingerprinting/module.rb
+++ b/modules/network/internal_network_fingerprinting/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 45bbd013e..521152a71 100644
--- a/modules/network/jslanscanner/command.js
+++ b/modules/network/jslanscanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 eb8e90620..f0d4293b2 100644
--- a/modules/network/jslanscanner/config.yaml
+++ b/modules/network/jslanscanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 084b8b87a..00dc60237 100644
--- a/modules/network/jslanscanner/module.rb
+++ b/modules/network/jslanscanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c8b973ddf..bb0af99ce 100644
--- a/modules/network/nat_pinning_irc/command.js
+++ b/modules/network/nat_pinning_irc/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 68fcb870c..05f2dc5f4 100644
--- a/modules/network/nat_pinning_irc/config.yaml
+++ b/modules/network/nat_pinning_irc/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 90b523095..45eb811cb 100644
--- a/modules/network/nat_pinning_irc/module.rb
+++ b/modules/network/nat_pinning_irc/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 64d1eb271..ff7e7cb05 100644
--- a/modules/network/ping_sweep/command.js
+++ b/modules/network/ping_sweep/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f6b059568..b5fad66a9 100644
--- a/modules/network/ping_sweep/config.yaml
+++ b/modules/network/ping_sweep/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 03c145703..dfe922feb 100644
--- a/modules/network/ping_sweep/module.rb
+++ b/modules/network/ping_sweep/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9a37c81be..a82c23a59 100644
--- a/modules/network/ping_sweep_ff/command.js
+++ b/modules/network/ping_sweep_ff/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 27fb06ea4..1a01e4003 100644
--- a/modules/network/ping_sweep_ff/config.yaml
+++ b/modules/network/ping_sweep_ff/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 321270821..24ad1ce09 100644
--- a/modules/network/ping_sweep_ff/module.rb
+++ b/modules/network/ping_sweep_ff/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0eddcd7a2..2a18cfd9a 100644
--- a/modules/network/ping_sweep_java/command.js
+++ b/modules/network/ping_sweep_java/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 c4a8d5e71..529c0c032 100644
--- a/modules/network/ping_sweep_java/config.yaml
+++ b/modules/network/ping_sweep_java/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9cb57bfd8..a80dff9d8 100644
--- a/modules/network/ping_sweep_java/module.rb
+++ b/modules/network/ping_sweep_java/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 fd9beac86..d6c2a5342 100644
--- a/modules/network/ping_sweep_java/pingSweep.java
+++ b/modules/network/ping_sweep_java/pingSweep.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 2d1aeef23..5ffd5baa2 100644
--- a/modules/network/port_scanner/command.js
+++ b/modules/network/port_scanner/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 2ec0d24c1..5f93c81e3 100644
--- a/modules/network/port_scanner/config.yaml
+++ b/modules/network/port_scanner/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 252ad6674..e9fa7bef2 100644
--- a/modules/network/port_scanner/module.rb
+++ b/modules/network/port_scanner/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 abc753bcb..9e6c9d91e 100644
--- a/modules/persistence/confirm_close_tab/command.js
+++ b/modules/persistence/confirm_close_tab/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 414e01faf..d1bf5fc1d 100644
--- a/modules/persistence/confirm_close_tab/config.yaml
+++ b/modules/persistence/confirm_close_tab/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c676b8f2f..b39d8b932 100644
--- a/modules/persistence/confirm_close_tab/module.rb
+++ b/modules/persistence/confirm_close_tab/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a10b463b1..c7c252f44 100644
--- a/modules/persistence/hijack_opener/command.js
+++ b/modules/persistence/hijack_opener/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3cb4cdfcf..dfc92bf6d 100644
--- a/modules/persistence/hijack_opener/config.yaml
+++ b/modules/persistence/hijack_opener/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c8ec431b1..7d4e123ef 100644
--- a/modules/persistence/hijack_opener/module.rb
+++ b/modules/persistence/hijack_opener/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 30833e3cd..d7883c343 100644
--- a/modules/persistence/iframe_above/command.js
+++ b/modules/persistence/iframe_above/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8691fed94..12fe755f1 100644
--- a/modules/persistence/iframe_above/config.yaml
+++ b/modules/persistence/iframe_above/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bedbeaee0..05c9d1241 100644
--- a/modules/persistence/iframe_above/module.rb
+++ b/modules/persistence/iframe_above/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c8d5493e7..54d8c31ba 100644
--- a/modules/persistence/invisible_htmlfile_activex/command.js
+++ b/modules/persistence/invisible_htmlfile_activex/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 db03f4f52..075d0cc2e 100644
--- a/modules/persistence/invisible_htmlfile_activex/config.yaml
+++ b/modules/persistence/invisible_htmlfile_activex/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ee798ee54..ea2901f36 100644
--- a/modules/persistence/invisible_htmlfile_activex/module.rb
+++ b/modules/persistence/invisible_htmlfile_activex/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 78dc02166..52e22a3d6 100644
--- a/modules/persistence/jsonp_service_worker/command.js
+++ b/modules/persistence/jsonp_service_worker/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 42df7b43c..c469c009d 100644
--- a/modules/persistence/jsonp_service_worker/config.yaml
+++ b/modules/persistence/jsonp_service_worker/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bb291ff1f..4654cb76b 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-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 b8403c6f6..9d2a228a4 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6cef4efba..f7dedd09b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 684527fb7..9454319af 100644
--- a/modules/persistence/popunder_window/command.js
+++ b/modules/persistence/popunder_window/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 2e9d7162e..5cc8c4cd7 100644
--- a/modules/persistence/popunder_window/config.yaml
+++ b/modules/persistence/popunder_window/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4ed4723b1..2b02d22ae 100644
--- a/modules/persistence/popunder_window/module.rb
+++ b/modules/persistence/popunder_window/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8b2bb60ab..536b73ada 100644
--- a/modules/persistence/popunder_window_ie/command.js
+++ b/modules/persistence/popunder_window_ie/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 abe59fac3..3fe09c65a 100644
--- a/modules/persistence/popunder_window_ie/config.yaml
+++ b/modules/persistence/popunder_window_ie/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4b19261ec..7f09df15b 100644
--- a/modules/persistence/popunder_window_ie/module.rb
+++ b/modules/persistence/popunder_window_ie/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 32a291950..e0d64e894 100644
--- a/modules/phonegap/phonegap_alert_user/command.js
+++ b/modules/phonegap/phonegap_alert_user/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8b24940d6..6cac8f81b 100644
--- a/modules/phonegap/phonegap_alert_user/config.yaml
+++ b/modules/phonegap/phonegap_alert_user/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9ccf5d7a5..2570524fc 100644
--- a/modules/phonegap/phonegap_alert_user/module.rb
+++ b/modules/phonegap/phonegap_alert_user/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d3ccfb51f..38287e77b 100644
--- a/modules/phonegap/phonegap_beep/command.js
+++ b/modules/phonegap/phonegap_beep/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f09be4dff..85b926a63 100644
--- a/modules/phonegap/phonegap_beep/config.yaml
+++ b/modules/phonegap/phonegap_beep/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ca6d1e8dc..1ae3410a5 100644
--- a/modules/phonegap/phonegap_beep/module.rb
+++ b/modules/phonegap/phonegap_beep/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c954c1ec7..93c7210de 100644
--- a/modules/phonegap/phonegap_check_connection/command.js
+++ b/modules/phonegap/phonegap_check_connection/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 21c7108b5..579baae6b 100644
--- a/modules/phonegap/phonegap_check_connection/config.yaml
+++ b/modules/phonegap/phonegap_check_connection/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 438c7778f..2bf890ceb 100644
--- a/modules/phonegap/phonegap_check_connection/module.rb
+++ b/modules/phonegap/phonegap_check_connection/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a08b5218c..33a78ea06 100644
--- a/modules/phonegap/phonegap_detect/command.js
+++ b/modules/phonegap/phonegap_detect/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 128a9c336..c97dd8d50 100644
--- a/modules/phonegap/phonegap_detect/config.yaml
+++ b/modules/phonegap/phonegap_detect/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 05b35be14..fb89a2384 100644
--- a/modules/phonegap/phonegap_detect/module.rb
+++ b/modules/phonegap/phonegap_detect/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2bd709187..e0f62cf9f 100644
--- a/modules/phonegap/phonegap_file_upload/command.js
+++ b/modules/phonegap/phonegap_file_upload/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8a33ab370..5b709c913 100644
--- a/modules/phonegap/phonegap_file_upload/config.yaml
+++ b/modules/phonegap/phonegap_file_upload/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 12259db8d..355355d35 100644
--- a/modules/phonegap/phonegap_file_upload/module.rb
+++ b/modules/phonegap/phonegap_file_upload/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e8e5af0d8..a39743c24 100644
--- a/modules/phonegap/phonegap_geo_locate/command.js
+++ b/modules/phonegap/phonegap_geo_locate/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 320e7f2ea..9685a80a2 100644
--- a/modules/phonegap/phonegap_geo_locate/config.yaml
+++ b/modules/phonegap/phonegap_geo_locate/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0bd8af9ad..5d7353b39 100644
--- a/modules/phonegap/phonegap_geo_locate/module.rb
+++ b/modules/phonegap/phonegap_geo_locate/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0c8f1cb23..5d4a8a8f6 100644
--- a/modules/phonegap/phonegap_globalization_status/command.js
+++ b/modules/phonegap/phonegap_globalization_status/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 3d862e1b8..ff73aaa36 100644
--- a/modules/phonegap/phonegap_globalization_status/config.yaml
+++ b/modules/phonegap/phonegap_globalization_status/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b94838a13..ddb737557 100644
--- a/modules/phonegap/phonegap_globalization_status/module.rb
+++ b/modules/phonegap/phonegap_globalization_status/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 39bc13cfe..31f98e80b 100644
--- a/modules/phonegap/phonegap_keychain/command.js
+++ b/modules/phonegap/phonegap_keychain/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b1617f7d5..53bcf2801 100644
--- a/modules/phonegap/phonegap_keychain/config.yaml
+++ b/modules/phonegap/phonegap_keychain/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1c5368ece..62c966c52 100644
--- a/modules/phonegap/phonegap_keychain/module.rb
+++ b/modules/phonegap/phonegap_keychain/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ed61f4ef8..38d547dc5 100644
--- a/modules/phonegap/phonegap_list_contacts/command.js
+++ b/modules/phonegap/phonegap_list_contacts/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 f2f8f70d2..fe9ba63a2 100644
--- a/modules/phonegap/phonegap_list_contacts/config.yaml
+++ b/modules/phonegap/phonegap_list_contacts/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 106e78c4f..3b212e86e 100644
--- a/modules/phonegap/phonegap_list_contacts/module.rb
+++ b/modules/phonegap/phonegap_list_contacts/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f7791812b..5222e92bd 100644
--- a/modules/phonegap/phonegap_list_files/command.js
+++ b/modules/phonegap/phonegap_list_files/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 0e0bf138b..313e87902 100644
--- a/modules/phonegap/phonegap_list_files/config.yaml
+++ b/modules/phonegap/phonegap_list_files/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 46737a18e..d4b84b4d2 100644
--- a/modules/phonegap/phonegap_list_files/module.rb
+++ b/modules/phonegap/phonegap_list_files/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d44e1cd11..bfde5ea14 100644
--- a/modules/phonegap/phonegap_persist_resume/command.js
+++ b/modules/phonegap/phonegap_persist_resume/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 de8d1cb7c..77d148cfc 100644
--- a/modules/phonegap/phonegap_persist_resume/config.yaml
+++ b/modules/phonegap/phonegap_persist_resume/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b4737c6ef..c35f6ccea 100644
--- a/modules/phonegap/phonegap_persist_resume/module.rb
+++ b/modules/phonegap/phonegap_persist_resume/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a39fdee66..d0a7524ce 100644
--- a/modules/phonegap/phonegap_persistence/command.js
+++ b/modules/phonegap/phonegap_persistence/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 569f08a8b..e3120e694 100644
--- a/modules/phonegap/phonegap_persistence/config.yaml
+++ b/modules/phonegap/phonegap_persistence/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c64ae79c2..219b04a25 100644
--- a/modules/phonegap/phonegap_persistence/module.rb
+++ b/modules/phonegap/phonegap_persistence/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7bd3d0892..e619a3684 100644
--- a/modules/phonegap/phonegap_plugin_detection/command.js
+++ b/modules/phonegap/phonegap_plugin_detection/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 dcc2c49a0..911cfcfdb 100644
--- a/modules/phonegap/phonegap_plugin_detection/config.yaml
+++ b/modules/phonegap/phonegap_plugin_detection/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f71f7e870..f9886e29c 100644
--- a/modules/phonegap/phonegap_plugin_detection/module.rb
+++ b/modules/phonegap/phonegap_plugin_detection/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 73d2b11e1..fbb027956 100644
--- a/modules/phonegap/phonegap_prompt_user/command.js
+++ b/modules/phonegap/phonegap_prompt_user/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 c9ac08a53..335aed498 100644
--- a/modules/phonegap/phonegap_prompt_user/config.yaml
+++ b/modules/phonegap/phonegap_prompt_user/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 102f1935d..e5303a1f9 100644
--- a/modules/phonegap/phonegap_prompt_user/module.rb
+++ b/modules/phonegap/phonegap_prompt_user/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3975285fc..7ed0e94ec 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 959b83082..18fdc3e9d 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 827d74793..efcb0a7fa 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 32436ca96..d2302ce91 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-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 aede2ce66..2e88be8ce 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 09d2b5f55..fc1ffd91f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e767ef646..6948f7c1e 100644
--- a/modules/social_engineering/clickjacking/command.js
+++ b/modules/social_engineering/clickjacking/command.js
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 82fec59ff..1d658847b 100644
--- a/modules/social_engineering/clickjacking/config.yaml
+++ b/modules/social_engineering/clickjacking/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 6e3d0b2f1..db95083d8 100644
--- a/modules/social_engineering/clickjacking/module.rb
+++ b/modules/social_engineering/clickjacking/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 b7278969e..5f44e5843 100755
--- a/modules/social_engineering/clippy/command.js
+++ b/modules/social_engineering/clippy/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a2e475309..300fe80ff 100755
--- a/modules/social_engineering/clippy/config.yaml
+++ b/modules/social_engineering/clippy/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 85cab618d..2cb219336 100755
--- a/modules/social_engineering/clippy/module.rb
+++ b/modules/social_engineering/clippy/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 39a7ad37f..79d5b44e9 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 7ca56a580..3c2194d2c 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e9ae2564b..ca2bdcadf 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f4d3e9443..b370e2ab9 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 68d538e48..ad153641e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2673fbed9..4596d60e0 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7f883f3c6..478417346 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 57120c25d..cd13e65fc 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5a57c522c..0fbff56af 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1a7d9de2d..24fd7c756 100755
--- a/modules/social_engineering/fake_lastpass/command.js
+++ b/modules/social_engineering/fake_lastpass/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 48d02b2b6..84b40c3cc 100755
--- a/modules/social_engineering/fake_lastpass/config.yaml
+++ b/modules/social_engineering/fake_lastpass/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 23bde935a..97a1ba318 100755
--- a/modules/social_engineering/fake_lastpass/module.rb
+++ b/modules/social_engineering/fake_lastpass/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ff481396d..107a83f25 100644
--- a/modules/social_engineering/fake_notification/command.js
+++ b/modules/social_engineering/fake_notification/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a20e7290f..93b902df2 100644
--- a/modules/social_engineering/fake_notification/config.yaml
+++ b/modules/social_engineering/fake_notification/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d94f1d1b4..c6a3fcd93 100644
--- a/modules/social_engineering/fake_notification/module.rb
+++ b/modules/social_engineering/fake_notification/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a3c6a2e74..dd6bc597f 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 ef9873df9..1a995a477 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2014c3911..acaa0328f 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 22c9fe3b6..498ce218d 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 e2a94be44..7d4809d40 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 45f8d2bd4..06a71d941 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f2548bea4..959989b09 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 4e7327194..95fa281fe 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 dbec16b1d..b91e76a9b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9e3c680b6..005b579ad 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 2808787e6..e9cd49ebd 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 cc4846e08..921ca9389 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 e874498c7..7825a559d 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 45e7e642f..155ce241e 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 826bb7dda..377e5f5f3 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9e3c680b6..005b579ad 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 577ee34f0..a27b82a93 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 a40a50650..331d66c5c 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5efa43bab..90a640be6 100644
--- a/modules/social_engineering/gmail_phishing/command.js
+++ b/modules/social_engineering/gmail_phishing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 550fceecb..de3294923 100644
--- a/modules/social_engineering/gmail_phishing/config.yaml
+++ b/modules/social_engineering/gmail_phishing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c97e58465..b9f62524d 100644
--- a/modules/social_engineering/gmail_phishing/module.rb
+++ b/modules/social_engineering/gmail_phishing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 4eb5fd2e8..2f330f97c 100755
--- a/modules/social_engineering/hta_powershell/command.js
+++ b/modules/social_engineering/hta_powershell/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 1515132ff..c34683fe3 100755
--- a/modules/social_engineering/hta_powershell/config.yaml
+++ b/modules/social_engineering/hta_powershell/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 fdd8f4770..5f71dc776 100755
--- a/modules/social_engineering/hta_powershell/module.rb
+++ b/modules/social_engineering/hta_powershell/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 140ea870b..f196fbf17 100644
--- a/modules/social_engineering/lcamtuf_download/command.js
+++ b/modules/social_engineering/lcamtuf_download/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 8bc7ffc4c..46e9dc82e 100644
--- a/modules/social_engineering/lcamtuf_download/config.yaml
+++ b/modules/social_engineering/lcamtuf_download/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 92c9c41cf..279897538 100755
--- a/modules/social_engineering/lcamtuf_download/module.rb
+++ b/modules/social_engineering/lcamtuf_download/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 bde3a2daf..6c32d3be3 100644
--- a/modules/social_engineering/pretty_theft/command.js
+++ b/modules/social_engineering/pretty_theft/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 957518a42..fb5b8e63a 100644
--- a/modules/social_engineering/pretty_theft/config.yaml
+++ b/modules/social_engineering/pretty_theft/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7d0925cb2..ecd9a3943 100644
--- a/modules/social_engineering/pretty_theft/module.rb
+++ b/modules/social_engineering/pretty_theft/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 c59866f69..d493103ea 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 a77dd4fc3..0e3d258a8 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9df9a1222..e4edbb423 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 01eb348a7..b2ed7c03a 100644
--- a/modules/social_engineering/simple_hijacker/command.js
+++ b/modules/social_engineering/simple_hijacker/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b37e22ea6..cb1a4cb24 100644
--- a/modules/social_engineering/simple_hijacker/config.yaml
+++ b/modules/social_engineering/simple_hijacker/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1f917f868..0875c247c 100644
--- a/modules/social_engineering/simple_hijacker/module.rb
+++ b/modules/social_engineering/simple_hijacker/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 ce191271d..1f804fafe 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-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 2ea154616..f02ab6c4c 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-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 c5139c561..1d99ca0f9 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-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 1106d3d6d..b1d089a40 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-2023 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 72b848bf9..35e1b4798 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-2023Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
  * Browser Exploitation Framework (BeEF) - http://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 8037230f2..e4a5f11ed 100644
--- a/modules/social_engineering/sitekiosk_breakout/command.js
+++ b/modules/social_engineering/sitekiosk_breakout/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 038e5bd7f..04c8e718e 100644
--- a/modules/social_engineering/sitekiosk_breakout/config.yaml
+++ b/modules/social_engineering/sitekiosk_breakout/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7d45fad3e..fb4a0f15c 100644
--- a/modules/social_engineering/sitekiosk_breakout/module.rb
+++ b/modules/social_engineering/sitekiosk_breakout/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5d8bf5616..09af03106 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 301883d08..89651ea7b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 525397e61..86aaa4096 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 09fbf93c0..03121a2d3 100644
--- a/modules/social_engineering/tabnabbing/command.js
+++ b/modules/social_engineering/tabnabbing/command.js
@@ -1,5 +1,5 @@
 //
-// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 b44bfa398..56c394f1c 100644
--- a/modules/social_engineering/tabnabbing/config.yaml
+++ b/modules/social_engineering/tabnabbing/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 f8a734daa..ba9a5dab3 100644
--- a/modules/social_engineering/tabnabbing/module.rb
+++ b/modules/social_engineering/tabnabbing/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 23cb7396a..e3bc175e5 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 1c3cfbd5d..3e3bda754 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 40c8cf5f4..ae7f1d905 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7da107847..47234643a 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-2023Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://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 9ae2a2f1e..939bd3a23 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 79a8ae3ca..f004d200d 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/beef/api/auth_rate_spec.rb b/spec/beef/api/auth_rate_spec.rb
index 2585ecc3e..fccac9126 100644
--- a/spec/beef/api/auth_rate_spec.rb
+++ b/spec/beef/api/auth_rate_spec.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 425f8e50c..09e239c92 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d516f861a..f73a9518b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 54955f364..89208c612 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7ebf45c89..f1347957d 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 018162d4e..167c14e8a 100644
--- a/spec/support/assets/config_new.yaml
+++ b/spec/support/assets/config_new.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 9e8a900e5..d35455eaa 100644
--- a/spec/support/assets/config_old.yaml
+++ b/spec/support/assets/config_old.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 d491b95db..fce9090e4 100644
--- a/spec/support/beef_test.rb
+++ b/spec/support/beef_test.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/spec/support/constants.rb b/spec/support/constants.rb
index e71d5e5e1..266a28332 100644
--- a/spec/support/constants.rb
+++ b/spec/support/constants.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 1a8a35919..1e6dbcc77 100644
--- a/spec/support/simple_rest_client.rb
+++ b/spec/support/simple_rest_client.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/integration/check_environment.rb b/test/integration/check_environment.rb
index fd4ab8bb3..004a816a4 100644
--- a/test/integration/check_environment.rb
+++ b/test/integration/check_environment.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8c54e21ec..ad8aa77ed 100644
--- a/test/integration/tc_debug_modules.rb
+++ b/test/integration/tc_debug_modules.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 3be35e731..64d9b1206 100644
--- a/test/integration/tc_dns_rest.rb
+++ b/test/integration/tc_dns_rest.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/integration/tc_login.rb b/test/integration/tc_login.rb
index ca92ce292..5217ebfa7 100644
--- a/test/integration/tc_login.rb
+++ b/test/integration/tc_login.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 8f12a8cf0..f4621ea8d 100644
--- a/test/integration/tc_network_rest.rb
+++ b/test/integration/tc_network_rest.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 0c2a35434..6b5c315f0 100644
--- a/test/integration/tc_proxy.rb
+++ b/test/integration/tc_proxy.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 64e5d2edf..2e727a18f 100644
--- a/test/integration/tc_social_engineering_rest.rb
+++ b/test/integration/tc_social_engineering_rest.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 7a81c62f0..878dd11c3 100644
--- a/test/integration/tc_webrtc_rest.rb
+++ b/test/integration/tc_webrtc_rest.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 38d0eaf2e..efa1591c8 100644
--- a/test/integration/ts_integration.rb
+++ b/test/integration/ts_integration.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
diff --git a/test/thirdparty/msf/unit/check_environment.rb b/test/thirdparty/msf/unit/check_environment.rb
index fd4ab8bb3..004a816a4 100644
--- a/test/thirdparty/msf/unit/check_environment.rb
+++ b/test/thirdparty/msf/unit/check_environment.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 2d0a2da58..9dc17b78d 100644
--- a/test/thirdparty/msf/unit/tc_metasploit.rb
+++ b/test/thirdparty/msf/unit/tc_metasploit.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 67f9a8d3b..a4bd1c76a 100644
--- a/test/thirdparty/msf/unit/ts_metasploit.rb
+++ b/test/thirdparty/msf/unit/ts_metasploit.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://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 5e694bd3c..499d66d4b 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-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
@@ -34,7 +34,7 @@ class ModuleFile
     end
     return <<-EOF
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
@@ -67,7 +67,7 @@ class CommandFile
     end
     return <<-EOF
 //
-// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 // Browser Exploitation Framework (BeEF) - http://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
diff --git a/update-beef b/update-beef
index 5fc0b607e..07f8353aa 100755
--- a/update-beef
+++ b/update-beef
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
 # Browser Exploitation Framework (BeEF) - http://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #

From 5eded170abf386bc28614087ddc2085b00d08533 Mon Sep 17 00:00:00 2001
From: Stephen 
Date: Sun, 31 Dec 2023 10:00:13 +1000
Subject: [PATCH 16/64] Upgrade gem 'otr-activerecord', '~> 2.2.0' including
 adding internal_metadata to the ActiveRecord migration

---
 Gemfile             |   2 +-
 Gemfile.lock        | 120 ++++++++++++++++++++++----------------------
 beef                |   2 +-
 spec/spec_helper.rb |   7 ++-
 4 files changed, 69 insertions(+), 62 deletions(-)

diff --git a/Gemfile b/Gemfile
index 60252d02c..42691be5b 100644
--- a/Gemfile
+++ b/Gemfile
@@ -23,7 +23,7 @@ gem 'rubyzip', '~> 2.3'
 gem 'espeak-ruby', '~> 1.1.0' # Text-to-Voice
 gem 'rake', '~> 13.0'
 # gem 'otr-activerecord', '~> 2.1', '>= 2.1.2'
-gem 'otr-activerecord', '2.2.0'
+gem 'otr-activerecord', '~> 2.2.0'
 gem 'sqlite3', '~> 1.6'
 gem 'rubocop', '~> 1.57.0', require: false
 
diff --git a/Gemfile.lock b/Gemfile.lock
index 50324f6e0..284d699e0 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,13 +1,13 @@
 GEM
   remote: https://rubygems.org/
   specs:
-    activemodel (7.1.1)
-      activesupport (= 7.1.1)
-    activerecord (7.1.1)
-      activemodel (= 7.1.1)
-      activesupport (= 7.1.1)
+    activemodel (7.1.2)
+      activesupport (= 7.1.2)
+    activerecord (7.1.2)
+      activemodel (= 7.1.2)
+      activesupport (= 7.1.2)
       timeout (>= 0.4.0)
-    activesupport (7.1.1)
+    activesupport (7.1.2)
       base64
       bigdecimal
       concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -17,7 +17,7 @@ GEM
       minitest (>= 5.1)
       mutex_m
       tzinfo (~> 2.0)
-    addressable (2.8.4)
+    addressable (2.8.6)
       public_suffix (>= 2.0.2, < 6.0)
     ansi (1.5.0)
     archive-zip (0.12.0)
@@ -29,10 +29,10 @@ GEM
       timers (~> 4.1)
     async-dns (1.3.0)
       async-io (~> 1.15)
-    async-io (1.34.3)
+    async-io (1.38.1)
       async
-    base64 (0.1.1)
-    bigdecimal (3.1.4)
+    base64 (0.2.0)
+    bigdecimal (3.1.5)
     browserstack-local (1.4.3)
     byebug (11.1.3)
     capybara (3.39.2)
@@ -47,14 +47,14 @@ GEM
     coderay (1.1.3)
     concurrent-ruby (1.2.2)
     connection_pool (2.4.1)
-    console (1.16.2)
+    console (1.23.3)
+      fiber-annotation
       fiber-local
     curb (1.0.5)
     daemons (1.4.1)
     diff-lcs (1.5.0)
-    domain_name (0.5.20190701)
-      unf (>= 0.0.5, < 1.0.0)
-    drb (2.1.1)
+    domain_name (0.6.20231109)
+    drb (2.2.0)
       ruby2_keywords
     em-websocket (0.5.3)
       eventmachine (>= 0.12.9)
@@ -64,6 +64,7 @@ GEM
     event_emitter (0.2.6)
     eventmachine (1.2.7)
     execjs (2.9.1)
+    fiber-annotation (0.2.0)
     fiber-local (1.0.0)
     geckodriver-helper (0.24.0)
       archive-zip (~> 0.7)
@@ -76,42 +77,44 @@ GEM
     http_parser.rb (0.8.0)
     i18n (1.14.1)
       concurrent-ruby (~> 1.0)
-    io-console (0.6.0)
+    io-console (0.7.1)
     io-like (0.3.1)
-    irb (1.8.1)
+    irb (1.11.0)
       rdoc
       reline (>= 0.3.8)
-    json (2.6.3)
+    json (2.7.1)
     language_server-protocol (3.17.0.3)
     matrix (0.4.2)
-    maxmind-db (1.1.1)
+    maxmind-db (1.2.0)
     method_source (1.0.0)
-    mime-types (3.4.1)
+    mime-types (3.5.1)
       mime-types-data (~> 3.2015)
-    mime-types-data (3.2023.0218.1)
-    mini_mime (1.1.2)
+    mime-types-data (3.2023.1205)
+    mini_mime (1.1.5)
     minitest (5.20.0)
-    mojo_magick (0.6.7)
+    mojo_magick (0.6.8)
     msfrpc-client (1.1.2)
       msgpack (~> 1)
-    msgpack (1.6.1)
+    msgpack (1.7.2)
     mustermann (3.0.0)
       ruby2_keywords (~> 0.0.1)
-    mutex_m (0.1.2)
-    net-protocol (0.2.1)
+    mutex_m (0.2.0)
+    net-protocol (0.2.2)
       timeout
     net-smtp (0.4.0)
       net-protocol
     netrc (0.11.0)
-    nio4r (2.5.8)
-    nokogiri (1.15.2-arm64-darwin)
+    nio4r (2.7.0)
+    nokogiri (1.16.0-aarch64-linux)
       racc (~> 1.4)
-    nokogiri (1.15.2-x86_64-linux)
+    nokogiri (1.16.0-arm64-darwin)
+      racc (~> 1.4)
+    nokogiri (1.16.0-x86_64-linux)
       racc (~> 1.4)
     otr-activerecord (2.2.0)
       activerecord (>= 4.0, < 7.2)
       hashie-forbidden_attributes (~> 0.1)
-    parallel (1.23.0)
+    parallel (1.24.0)
     parseconfig (1.1.2)
     parser (3.2.2.4)
       ast (~> 2.4.1)
@@ -123,24 +126,24 @@ GEM
     pry-byebug (3.10.1)
       byebug (~> 11.0)
       pry (>= 0.13, < 0.15)
-    psych (5.1.0)
+    psych (5.1.2)
       stringio
-    public_suffix (5.0.1)
-    qr4r (0.6.1)
+    public_suffix (5.0.4)
+    qr4r (0.6.2)
       mojo_magick (~> 0.6.5)
-      rqrcode_core (~> 0.1)
-    racc (1.7.1)
-    rack (2.2.7)
+      rqrcode_core (~> 1.0)
+    racc (1.7.3)
+    rack (2.2.8)
     rack-protection (3.0.6)
       rack
     rack-test (2.1.0)
       rack (>= 1.3)
     rainbow (3.1.1)
-    rake (13.0.6)
-    rdoc (6.5.0)
+    rake (13.1.0)
+    rdoc (6.6.2)
       psych (>= 4.0.0)
-    regexp_parser (2.8.2)
-    reline (0.3.8)
+    regexp_parser (2.8.3)
+    reline (0.4.1)
       io-console (~> 0.5)
     rest-client (2.1.0)
       http-accept (>= 1.7.0, < 2.0)
@@ -148,23 +151,22 @@ GEM
       mime-types (>= 1.16, < 4.0)
       netrc (~> 0.8)
     rexml (3.2.6)
-    rqrcode_core (0.2.0)
+    rqrcode_core (1.2.0)
     rr (3.1.0)
     rspec (3.12.0)
       rspec-core (~> 3.12.0)
       rspec-expectations (~> 3.12.0)
       rspec-mocks (~> 3.12.0)
-    rspec-core (3.12.1)
+    rspec-core (3.12.2)
       rspec-support (~> 3.12.0)
-    rspec-expectations (3.12.2)
+    rspec-expectations (3.12.3)
       diff-lcs (>= 1.2.0, < 2.0)
       rspec-support (~> 3.12.0)
-    rspec-mocks (3.12.4)
+    rspec-mocks (3.12.6)
       diff-lcs (>= 1.2.0, < 2.0)
       rspec-support (~> 3.12.0)
-    rspec-support (3.12.0)
-    rubocop (1.57.0)
-      base64 (~> 0.1.1)
+    rspec-support (3.12.1)
+    rubocop (1.57.2)
       json (~> 2.3)
       language_server-protocol (>= 3.17.0)
       parallel (~> 1.10)
@@ -175,7 +177,7 @@ GEM
       rubocop-ast (>= 1.28.1, < 2.0)
       ruby-progressbar (~> 1.7)
       unicode-display_width (>= 2.4.0, < 3.0)
-    rubocop-ast (1.29.0)
+    rubocop-ast (1.30.0)
       parser (>= 3.2.1.0)
     ruby-progressbar (1.13.0)
     ruby2_keywords (0.0.5)
@@ -183,7 +185,7 @@ GEM
     rushover (0.3.0)
       json
       rest-client
-    selenium-webdriver (4.14.0)
+    selenium-webdriver (4.16.0)
       rexml (~> 3.2, >= 3.2.5)
       rubyzip (>= 1.2.2, < 3.0)
       websocket (~> 1.0)
@@ -193,13 +195,14 @@ GEM
       rack-protection (= 3.0.6)
       tilt (~> 2.0)
     slack-notifier (2.4.0)
-    sqlite3 (1.6.7-arm64-darwin)
-    sqlite3 (1.6.7-x86_64-linux)
-    stringio (3.0.5)
+    sqlite3 (1.7.0-aarch64-linux)
+    sqlite3 (1.7.0-arm64-darwin)
+    sqlite3 (1.7.0-x86_64-linux)
+    stringio (3.1.0)
     sync (0.5.0)
     term-ansicolor (1.7.1)
       tins (~> 1.0)
-    test-unit (3.5.7)
+    test-unit (3.6.1)
       power_assert
     test-unit-context (0.5.1)
       test-unit (>= 2.4.0)
@@ -220,8 +223,8 @@ GEM
       daemons (~> 1.0, >= 1.0.9)
       eventmachine (~> 1.0, >= 1.0.4)
       rack (>= 1, < 3)
-    tilt (2.1.0)
-    timeout (0.4.0)
+    tilt (2.3.0)
+    timeout (0.4.1)
     timers (4.3.5)
     tins (1.32.1)
       sync
@@ -229,9 +232,6 @@ GEM
       concurrent-ruby (~> 1.0)
     uglifier (4.2.0)
       execjs (>= 0.3.0, < 3)
-    unf (0.1.4)
-      unf_ext
-    unf_ext (0.0.8.2)
     unicode-display_width (2.5.0)
     webrick (1.8.1)
     websocket (1.2.10)
@@ -244,7 +244,9 @@ GEM
       nokogiri (~> 1.8)
 
 PLATFORMS
+  aarch64-linux
   arm64-darwin-22
+  arm64-darwin-23
   x86_64-linux
 
 DEPENDENCIES
@@ -266,7 +268,7 @@ DEPENDENCIES
   mime-types (~> 3.4, >= 3.4.1)
   msfrpc-client (~> 1.1, >= 1.1.2)
   net-smtp
-  otr-activerecord (= 2.2.0)
+  otr-activerecord (~> 2.2.0)
   parseconfig (~> 1.1, >= 1.1.2)
   pry-byebug (~> 3.10, >= 3.10.1)
   qr4r (~> 0.6.1)
@@ -291,4 +293,4 @@ DEPENDENCIES
   xmlrpc (~> 0.3.3)
 
 BUNDLED WITH
-   2.4.8
+   2.5.3
diff --git a/beef b/beef
index 8fe6052da..ff1074320 100755
--- a/beef
+++ b/beef
@@ -205,7 +205,7 @@ end
 # Migrate (if required)
 context = ActiveRecord::Migration.new.migration_context
 if context.needs_migration?
-  ActiveRecord::Migrator.new(:up, context.migrations, context.schema_migration).migrate
+  ActiveRecord::Migrator.new(:up, context.migrations, context.schema_migration, context.internal_metadata).migrate
 end
 #
 # @note Extensions may take a moment to load, thus we print out a please wait message
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index ac2c2aa4d..62d118ae1 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -51,8 +51,12 @@ if Gem.loaded_specs['otr-activerecord'].version > Gem::Version.create('1.4.2')
   OTR::ActiveRecord.establish_connection!
 end
 ActiveRecord::Schema.verbose = false
+
+# Migrate (if required)
 context = ActiveRecord::Migration.new.migration_context
-ActiveRecord::Migrator.new(:up, context.migrations, context.schema_migration).migrate if context.needs_migration?
+if context.needs_migration?
+  ActiveRecord::Migrator.new(:up, context.migrations, context.schema_migration, context.internal_metadata).migrate
+end
 
 RSpec.configure do |config|
   config.disable_monkey_patching!
@@ -65,6 +69,7 @@ RSpec.configure do |config|
   end
   config.around do |example|
     ActiveRecord::Base.transaction do
+      # byebug
       example.run
       raise ActiveRecord::Rollback
     end

From 7817e98118dbfca9d45930f4cea6f66517f77629 Mon Sep 17 00:00:00 2001
From: Stephen 
Date: Sun, 31 Dec 2023 10:20:35 +1000
Subject: [PATCH 17/64] update rdoc and rake gem in gemfile.lock

---
 Gemfile.lock | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Gemfile.lock b/Gemfile.lock
index 42f1a75a1..b743c5ab8 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -167,7 +167,6 @@ GEM
       rspec-support (~> 3.12.0)
     rspec-support (3.12.1)
     rubocop (1.59.0)
-      base64 (~> 0.1.1)
       json (~> 2.3)
       language_server-protocol (>= 3.17.0)
       parallel (~> 1.10)
@@ -198,6 +197,7 @@ GEM
     slack-notifier (2.4.0)
     sqlite3 (1.7.0-aarch64-linux)
     sqlite3 (1.7.0-arm64-darwin)
+    sqlite3 (1.7.0-x86_64-linux)
     stringio (3.1.0)
     sync (0.5.0)
     term-ansicolor (1.7.1)
@@ -274,8 +274,8 @@ DEPENDENCIES
   qr4r (~> 0.6.1)
   rack (~> 2.2)
   rack-protection (~> 3.0.5)
-  rake (~> 13.0)
-  rdoc (~> 6.5)
+  rake (~> 13.1)
+  rdoc (~> 6.6)
   rest-client (~> 2.1.0)
   rspec (~> 3.12)
   rubocop (~> 1.59.0)

From 38997fa7e304c7bca648802c29c17a946a0d1ae4 Mon Sep 17 00:00:00 2001
From: Stephen 
Date: Sun, 31 Dec 2023 10:23:35 +1000
Subject: [PATCH 18/64] Added .gitignore entry for Visual Studio Code

---
 .gitignore | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitignore b/.gitignore
index d754abdbd..451465820 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,6 +25,9 @@ coverage/
 # BrowserStack
 local.log
 
+# Visual Studio Code
+.vscode/
+
 # The following lines were created by https://www.gitignore.io
 
 ### Linux ###

From 747ddb53878c7b935f0bdbcb6e5a9644957ad4d0 Mon Sep 17 00:00:00 2001
From: Stephen 
Date: Sun, 31 Dec 2023 14:18:50 +1000
Subject: [PATCH 19/64] Updated http://beefproject.com to
 https://beefproject.com

---
 Gemfile                                       |   2 +-
 INSTALL.txt                                   |   2 +-
 README.md                                     |   2 +-
 VERSION                                       |   2 +-
 beef                                          |   2 +-
 beef.db-shm                                   | Bin 0 -> 32768 bytes
 beef.db-wal                                   | Bin 0 -> 4132392 bytes
 config.yaml                                   |   2 +-
 core/api.rb                                   |   2 +-
 core/api/extension.rb                         |   2 +-
 core/api/extensions.rb                        |   2 +-
 core/api/main/configuration.rb                |   2 +-
 core/api/main/migration.rb                    |   2 +-
 core/api/main/network_stack/assethandler.rb   |   2 +-
 core/api/main/server.rb                       |   2 +-
 core/api/main/server/hook.rb                  |   2 +-
 core/api/module.rb                            |   2 +-
 core/api/modules.rb                           |   2 +-
 core/bootstrap.rb                             |   2 +-
 core/core.rb                                  |   2 +-
 core/extension.rb                             |   2 +-
 core/extensions.rb                            |   2 +-
 core/filters.rb                               |   2 +-
 core/filters/base.rb                          |   2 +-
 core/filters/browser.rb                       |   2 +-
 core/filters/command.rb                       |   2 +-
 core/filters/http.rb                          |   2 +-
 core/filters/page.rb                          |   2 +-
 core/hbmanager.rb                             |   2 +-
 core/loader.rb                                |   2 +-
 core/logger.rb                                |   2 +-
 core/main/autorun_engine/engine.rb            |   2 +-
 core/main/autorun_engine/parser.rb            |   2 +-
 core/main/autorun_engine/rule_loader.rb       |   2 +-
 core/main/client/are.js                       |   2 +-
 core/main/client/beef.js                      |   2 +-
 core/main/client/browser.js                   |   2 +-
 core/main/client/browser/cookie.js            |   2 +-
 core/main/client/browser/popup.js             |   2 +-
 core/main/client/dom.js                       |   2 +-
 core/main/client/encode/base64.js             |   2 +-
 core/main/client/encode/json.js               |   2 +-
 core/main/client/geolocation.js               |   2 +-
 core/main/client/hardware.js                  |   2 +-
 core/main/client/init.js                      |   2 +-
 core/main/client/lib/evercookie.js            |   2 +-
 core/main/client/logger.js                    |   2 +-
 core/main/client/mitb.js                      |   2 +-
 core/main/client/net.js                       |   2 +-
 core/main/client/net/connection.js            |   2 +-
 core/main/client/net/dns.js                   |   2 +-
 core/main/client/net/local.js                 |   2 +-
 core/main/client/net/portscanner.js           |   2 +-
 core/main/client/net/requester.js             |   2 +-
 core/main/client/os.js                        |   2 +-
 core/main/client/session.js                   |   2 +-
 core/main/client/timeout.js                   |   2 +-
 core/main/client/updater.js                   |   2 +-
 core/main/client/webrtc.js                    |   2 +-
 core/main/client/websocket.js                 |   2 +-
 core/main/command.rb                          |   2 +-
 core/main/configuration.rb                    |   2 +-
 core/main/console/banners.rb                  |   2 +-
 core/main/console/commandline.rb              |   2 +-
 core/main/constants/browsers.rb               |   2 +-
 core/main/constants/commandmodule.rb          |   2 +-
 core/main/constants/hardware.rb               |   2 +-
 core/main/constants/os.rb                     |   2 +-
 core/main/crypto.rb                           |   2 +-
 core/main/geoip.rb                            |   2 +-
 core/main/handlers/browserdetails.rb          |   2 +-
 core/main/handlers/commands.rb                |   2 +-
 core/main/handlers/hookedbrowsers.rb          |   2 +-
 core/main/handlers/modules/beefjs.rb          |   2 +-
 core/main/handlers/modules/command.rb         |   4 ++--
 core/main/handlers/modules/legacybeefjs.rb    |   2 +-
 .../main/handlers/modules/multistagebeefjs.rb |   2 +-
 core/main/logger.rb                           |   2 +-
 core/main/migration.rb                        |   2 +-
 core/main/model.rb                            |   2 +-
 core/main/models/browserdetails.rb            |   2 +-
 core/main/models/command.rb                   |   2 +-
 core/main/models/commandmodule.rb             |   2 +-
 core/main/models/execution.rb                 |   2 +-
 core/main/models/hookedbrowser.rb             |   2 +-
 core/main/models/legacybrowseruseragents.rb   |   2 +-
 core/main/models/log.rb                       |   2 +-
 core/main/models/optioncache.rb               |   2 +-
 core/main/models/result.rb                    |   2 +-
 core/main/models/rule.rb                      |   2 +-
 core/main/network_stack/api.rb                |   2 +-
 core/main/network_stack/assethandler.rb       |   2 +-
 .../handlers/dynamicreconstruction.rb         |   2 +-
 core/main/network_stack/handlers/raw.rb       |   2 +-
 .../main/network_stack/handlers/redirector.rb |   2 +-
 .../main/network_stack/websocket/websocket.rb |   2 +-
 core/main/rest/api.rb                         |   2 +-
 core/main/rest/handlers/admin.rb              |   2 +-
 core/main/rest/handlers/autorun_engine.rb     |   2 +-
 core/main/rest/handlers/browserdetails.rb     |   2 +-
 core/main/rest/handlers/categories.rb         |   2 +-
 core/main/rest/handlers/hookedbrowsers.rb     |   2 +-
 core/main/rest/handlers/logs.rb               |   2 +-
 core/main/rest/handlers/modules.rb            |   2 +-
 core/main/rest/handlers/server.rb             |   2 +-
 core/main/router/api.rb                       |   2 +-
 core/main/router/router.rb                    |   2 +-
 core/main/server.rb                           |   2 +-
 core/module.rb                                |   2 +-
 core/modules.rb                               |   2 +-
 core/ruby.rb                                  |   2 +-
 core/ruby/hash.rb                             |   2 +-
 core/ruby/module.rb                           |   2 +-
 core/ruby/print.rb                            |   2 +-
 core/ruby/security.rb                         |   2 +-
 core/ruby/string.rb                           |   2 +-
 core/settings.rb                              |   2 +-
 doc/boilerplate                               |   2 +-
 docs/are.js.html                              |   2 +-
 docs/beef.js.html                             |   2 +-
 docs/browser.js.html                          |   2 +-
 docs/browser_cookie.js.html                   |   2 +-
 docs/browser_popup.js.html                    |   2 +-
 docs/dom.js.html                              |   2 +-
 docs/encode_base64.js.html                    |   2 +-
 docs/encode_json.js.html                      |   2 +-
 docs/geolocation.js.html                      |   2 +-
 docs/hardware.js.html                         |   2 +-
 docs/index.html                               |   2 +-
 docs/init.js.html                             |   2 +-
 docs/logger.js.html                           |   2 +-
 docs/mitb.js.html                             |   2 +-
 docs/net.js.html                              |   2 +-
 docs/net_connection.js.html                   |   2 +-
 docs/net_dns.js.html                          |   2 +-
 docs/net_local.js.html                        |   2 +-
 docs/net_portscanner.js.html                  |   2 +-
 docs/net_requester.js.html                    |   2 +-
 docs/os.js.html                               |   2 +-
 docs/session.js.html                          |   2 +-
 docs/timeout.js.html                          |   2 +-
 docs/updater.js.html                          |   2 +-
 docs/webrtc.js.html                           |   2 +-
 docs/websocket.js.html                        |   2 +-
 extensions/admin_ui/api/handler.rb            |   2 +-
 extensions/admin_ui/classes/httpcontroller.rb |   2 +-
 extensions/admin_ui/classes/session.rb        |   2 +-
 extensions/admin_ui/config.yaml               |   2 +-
 extensions/admin_ui/constants/icons.rb        |   2 +-
 .../authentication/authentication.rb          |   2 +-
 .../controllers/authentication/index.html     |   2 +-
 .../admin_ui/controllers/modules/modules.rb   |   2 +-
 .../admin_ui/controllers/panel/index.html     |   2 +-
 .../admin_ui/controllers/panel/panel.rb       |   2 +-
 extensions/admin_ui/extension.rb              |   2 +-
 extensions/admin_ui/handlers/ui.rb            |   2 +-
 extensions/admin_ui/media/css/base.css        |   2 +-
 extensions/admin_ui/media/css/ext-all.css     |   2 +-
 .../media/javascript/esapi/Class.create.js    |   2 +-
 .../media/javascript/ui/authentication.js     |   2 +-
 .../media/javascript/ui/common/beef_common.js |   2 +-
 .../ui/panel/BrowserDetailsDataGrid.js        |   2 +-
 .../media/javascript/ui/panel/HooksTab.js     |   2 +-
 .../media/javascript/ui/panel/Logout.js       |   2 +-
 .../media/javascript/ui/panel/LogsDataGrid.js |   2 +-
 .../media/javascript/ui/panel/MainPanel.js    |   2 +-
 .../javascript/ui/panel/PanelStatusBar.js     |   2 +-
 .../media/javascript/ui/panel/PanelViewer.js  |   2 +-
 .../media/javascript/ui/panel/WelcomeTab.js   |   2 +-
 .../javascript/ui/panel/ZombieDataGrid.js     |   2 +-
 .../media/javascript/ui/panel/ZombieTab.js    |   2 +-
 .../media/javascript/ui/panel/ZombieTabs.js   |   2 +-
 .../media/javascript/ui/panel/ZombiesMgr.js   |   2 +-
 .../media/javascript/ui/panel/common.js       |   2 +-
 .../ui/panel/tabs/ZombieTabCommands.js        |   2 +-
 .../ui/panel/tabs/ZombieTabDetails.js         |   2 +-
 .../javascript/ui/panel/tabs/ZombieTabLogs.js |   2 +-
 .../ui/panel/tabs/ZombieTabNetwork.js         |   2 +-
 .../javascript/ui/panel/tabs/ZombieTabRTC.js  |   2 +-
 .../ui/panel/tabs/ZombieTabRider.js           |   2 +-
 .../ui/panel/tabs/ZombieTabXssRays.js         |   2 +-
 .../javascript/ui/panel/zombiesTreeList.js    |   2 +-
 .../media/javascript/ux/PagingStore.js        |   2 +-
 .../admin_ui/media/javascript/ux/StatusBar.js |   2 +-
 .../media/javascript/ux/TabCloseMenu.js       |   2 +-
 extensions/autoloader/config.yaml             |   2 +-
 extensions/autoloader/extension.rb            |   2 +-
 extensions/autoloader/model.rb                |   2 +-
 extensions/customhook/api.rb                  |   2 +-
 extensions/customhook/config.yaml             |   2 +-
 extensions/customhook/extension.rb            |   2 +-
 extensions/customhook/handler.rb              |   2 +-
 extensions/customhook/html/index.html         |   2 +-
 extensions/demos/api.rb                       |   2 +-
 extensions/demos/config.yaml                  |   2 +-
 extensions/demos/extension.rb                 |   2 +-
 extensions/demos/handler.rb                   |   2 +-
 extensions/demos/html/basic.html              |   2 +-
 extensions/demos/html/butcher/butch.css       |   2 +-
 extensions/demos/html/butcher/index.html      |   2 +-
 .../html/clickjacking/clickjack_attack.html   |   2 +-
 .../html/clickjacking/clickjack_victim.html   |   2 +-
 extensions/demos/html/plain.html              |   2 +-
 extensions/demos/html/report.html             |   2 +-
 extensions/demos/html/secret_page.html        |   2 +-
 extensions/dns/api.rb                         |   2 +-
 extensions/dns/config.yaml                    |   2 +-
 extensions/dns/dns.rb                         |   2 +-
 extensions/dns/extension.rb                   |   2 +-
 extensions/dns/logger.rb                      |   2 +-
 extensions/dns/model.rb                       |   2 +-
 extensions/dns/rest/dns.rb                    |   2 +-
 extensions/dns_rebinding/api.rb               |   2 +-
 extensions/dns_rebinding/config.yaml          |   2 +-
 extensions/dns_rebinding/extension.rb         |   2 +-
 extensions/etag/api.rb                        |   2 +-
 extensions/etag/config.yaml                   |   2 +-
 extensions/etag/etag.rb                       |   2 +-
 extensions/etag/extension.rb                  |   2 +-
 extensions/evasion/config.yaml                |   2 +-
 extensions/evasion/evasion.rb                 |   2 +-
 extensions/evasion/extension.rb               |   2 +-
 extensions/evasion/obfuscation/base_64.rb     |   2 +-
 extensions/evasion/obfuscation/minify.rb      |   2 +-
 extensions/evasion/obfuscation/scramble.rb    |   2 +-
 extensions/evasion/obfuscation/whitespace.rb  |   2 +-
 extensions/events/api.rb                      |   2 +-
 extensions/events/config.yaml                 |   2 +-
 extensions/events/extension.rb                |   2 +-
 extensions/events/handler.rb                  |   2 +-
 extensions/metasploit/api.rb                  |   2 +-
 extensions/metasploit/config.yaml             |   2 +-
 extensions/metasploit/extension.rb            |   2 +-
 extensions/metasploit/module.rb               |   2 +-
 extensions/metasploit/rest/msf.rb             |   2 +-
 extensions/metasploit/rpcclient.rb            |   2 +-
 extensions/network/api.rb                     |   2 +-
 extensions/network/config.yaml                |   2 +-
 extensions/network/extension.rb               |   2 +-
 extensions/network/models/network_host.rb     |   2 +-
 extensions/network/models/network_service.rb  |   2 +-
 extensions/network/rest/network.rb            |   2 +-
 extensions/notifications/channels/email.rb    |   2 +-
 .../notifications/channels/slack_workspace.rb |   2 +-
 extensions/notifications/config.yaml          |   2 +-
 extensions/notifications/extension.rb         |   2 +-
 extensions/notifications/notifications.rb     |   2 +-
 extensions/proxy/api.rb                       |   2 +-
 extensions/proxy/config.yaml                  |   2 +-
 extensions/proxy/extension.rb                 |   2 +-
 extensions/proxy/proxy.rb                     |   2 +-
 extensions/proxy/rest/proxy.rb                |   2 +-
 extensions/qrcode/config.yaml                 |   2 +-
 extensions/qrcode/extension.rb                |   2 +-
 extensions/qrcode/qrcode.rb                   |   2 +-
 extensions/requester/api.rb                   |   2 +-
 extensions/requester/api/hook.rb              |   4 ++--
 extensions/requester/config.yaml              |   2 +-
 extensions/requester/extension.rb             |   2 +-
 extensions/requester/handler.rb               |   2 +-
 extensions/requester/models/http.rb           |   2 +-
 extensions/requester/rest/requester.rb        |   2 +-
 extensions/s2c_dns_tunnel/api.rb              |   2 +-
 extensions/s2c_dns_tunnel/config.yaml         |   2 +-
 extensions/s2c_dns_tunnel/dnsd.rb             |   2 +-
 extensions/s2c_dns_tunnel/extension.rb        |   2 +-
 extensions/social_engineering/config.yaml     |   2 +-
 extensions/social_engineering/extension.rb    |   2 +-
 .../social_engineering/models/interceptor.rb  |   2 +-
 .../social_engineering/models/web_cloner.rb   |   2 +-
 .../powershell/bind_powershell.rb             |   2 +-
 .../rest/socialengineering.rb                 |   2 +-
 .../web_cloner/interceptor.rb                 |   2 +-
 .../web_cloner/web_cloner.rb                  |   2 +-
 extensions/webrtc/api.rb                      |   2 +-
 extensions/webrtc/api/hook.rb                 |   2 +-
 extensions/webrtc/config.yaml                 |   2 +-
 extensions/webrtc/extension.rb                |   2 +-
 extensions/webrtc/handlers.rb                 |   2 +-
 extensions/webrtc/models/rtcmanage.rb         |   2 +-
 extensions/webrtc/models/rtcmodulestatus.rb   |   2 +-
 extensions/webrtc/models/rtcsignal.rb         |   2 +-
 extensions/webrtc/models/rtcstatus.rb         |   2 +-
 extensions/webrtc/rest/webrtc.rb              |   2 +-
 extensions/xssrays/api.rb                     |   2 +-
 extensions/xssrays/api/scan.rb                |   4 ++--
 extensions/xssrays/config.yaml                |   2 +-
 extensions/xssrays/extension.rb               |   2 +-
 extensions/xssrays/handler.rb                 |   2 +-
 extensions/xssrays/models/xssraysdetail.rb    |   2 +-
 extensions/xssrays/models/xssraysscan.rb      |   2 +-
 extensions/xssrays/rest/xssrays.rb            |   2 +-
 install                                       |   2 +-
 .../browser/browser_fingerprinting/command.js |   2 +-
 .../browser_fingerprinting/config.yaml        |   2 +-
 .../browser/browser_fingerprinting/module.rb  |   2 +-
 modules/browser/detect_activex/command.js     |   2 +-
 modules/browser/detect_activex/config.yaml    |   2 +-
 modules/browser/detect_activex/module.rb      |   2 +-
 .../detect_evernote_clipper/command.js        |   2 +-
 .../detect_evernote_clipper/config.yaml       |   2 +-
 .../browser/detect_evernote_clipper/module.rb |   2 +-
 modules/browser/detect_extensions/command.js  |   2 +-
 modules/browser/detect_extensions/config.yaml |   2 +-
 modules/browser/detect_extensions/module.rb   |   2 +-
 modules/browser/detect_firebug/command.js     |   2 +-
 modules/browser/detect_firebug/config.yaml    |   2 +-
 modules/browser/detect_firebug/module.rb      |   2 +-
 modules/browser/detect_foxit/command.js       |   2 +-
 modules/browser/detect_foxit/config.yaml      |   2 +-
 modules/browser/detect_foxit/module.rb        |   2 +-
 modules/browser/detect_lastpass/command.js    |   2 +-
 modules/browser/detect_lastpass/config.yaml   |   2 +-
 modules/browser/detect_lastpass/module.rb     |   2 +-
 modules/browser/detect_mime_types/command.js  |   2 +-
 modules/browser/detect_mime_types/config.yaml |   2 +-
 modules/browser/detect_mime_types/module.rb   |   2 +-
 modules/browser/detect_office/command.js      |   2 +-
 modules/browser/detect_office/config.yaml     |   2 +-
 modules/browser/detect_office/module.rb       |   2 +-
 .../browser/detect_popup_blocker/command.js   |   2 +-
 .../browser/detect_popup_blocker/config.yaml  |   2 +-
 .../browser/detect_popup_blocker/module.rb    |   2 +-
 modules/browser/detect_quicktime/command.js   |   2 +-
 modules/browser/detect_quicktime/config.yaml  |   2 +-
 modules/browser/detect_quicktime/module.rb    |   2 +-
 modules/browser/detect_realplayer/command.js  |   2 +-
 modules/browser/detect_realplayer/config.yaml |   2 +-
 modules/browser/detect_realplayer/module.rb   |   2 +-
 modules/browser/detect_silverlight/command.js |   2 +-
 .../browser/detect_silverlight/config.yaml    |   2 +-
 modules/browser/detect_silverlight/module.rb  |   2 +-
 .../browser/detect_simple_adblock/command.js  |   2 +-
 .../browser/detect_simple_adblock/config.yaml |   2 +-
 .../browser/detect_simple_adblock/module.rb   |   2 +-
 modules/browser/detect_toolbars/command.js    |   2 +-
 modules/browser/detect_toolbars/config.yaml   |   2 +-
 modules/browser/detect_toolbars/module.rb     |   2 +-
 modules/browser/detect_unity/command.js       |   2 +-
 modules/browser/detect_unity/config.yaml      |   2 +-
 modules/browser/detect_unity/module.rb        |   2 +-
 .../browser/detect_unsafe_activex/command.js  |   2 +-
 .../browser/detect_unsafe_activex/config.yaml |   2 +-
 .../browser/detect_unsafe_activex/module.rb   |   2 +-
 modules/browser/detect_vlc/command.js         |   2 +-
 modules/browser/detect_vlc/config.yaml        |   2 +-
 modules/browser/detect_vlc/module.rb          |   2 +-
 modules/browser/detect_wmp/command.js         |   2 +-
 modules/browser/detect_wmp/config.yaml        |   2 +-
 modules/browser/detect_wmp/module.rb          |   2 +-
 .../browser/fingerprint_browser/command.js    |   2 +-
 .../browser/fingerprint_browser/config.yaml   |   2 +-
 modules/browser/fingerprint_browser/module.rb |   2 +-
 .../browser/get_visited_domains/command.js    |   2 +-
 .../browser/get_visited_domains/config.yaml   |   2 +-
 modules/browser/get_visited_domains/module.rb |   2 +-
 modules/browser/get_visited_urls/command.js   |   2 +-
 modules/browser/get_visited_urls/config.yaml  |   2 +-
 modules/browser/get_visited_urls/module.rb    |   2 +-
 .../hooked_domain/ajax_fingerprint/command.js |   2 +-
 .../ajax_fingerprint/config.yaml              |   2 +-
 .../hooked_domain/ajax_fingerprint/module.rb  |   2 +-
 .../hooked_domain/alert_dialog/command.js     |   2 +-
 .../hooked_domain/alert_dialog/config.yaml    |   2 +-
 .../hooked_domain/alert_dialog/module.rb      |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../hooked_domain/clear_console/command.js    |   2 +-
 .../hooked_domain/clear_console/config.yaml   |   2 +-
 .../hooked_domain/clear_console/module.rb     |   2 +-
 .../hooked_domain/deface_web_page/command.js  |   2 +-
 .../hooked_domain/deface_web_page/config.yaml |   2 +-
 .../hooked_domain/deface_web_page/module.rb   |   2 +-
 .../deface_web_page_component/command.js      |   2 +-
 .../deface_web_page_component/config.yaml     |   2 +-
 .../deface_web_page_component/module.rb       |   2 +-
 .../disable_developer_tools/command.js        |   2 +-
 .../disable_developer_tools/config.yaml       |   2 +-
 .../disable_developer_tools/module.rb         |   2 +-
 .../get_autocomplete_creds/command.js         |   2 +-
 .../get_autocomplete_creds/config.yaml        |   2 +-
 .../get_autocomplete_creds/module.rb          |   2 +-
 .../hooked_domain/get_cookie/command.js       |   2 +-
 .../hooked_domain/get_cookie/config.yaml      |   2 +-
 .../hooked_domain/get_cookie/module.rb        |   2 +-
 .../hooked_domain/get_form_values/command.js  |   2 +-
 .../hooked_domain/get_form_values/config.yaml |   2 +-
 .../hooked_domain/get_form_values/module.rb   |   2 +-
 .../get_local_storage/command.js              |   2 +-
 .../get_local_storage/config.yaml             |   2 +-
 .../hooked_domain/get_local_storage/module.rb |   2 +-
 .../hooked_domain/get_page_html/command.js    |   2 +-
 .../hooked_domain/get_page_html/config.yaml   |   2 +-
 .../hooked_domain/get_page_html/module.rb     |   2 +-
 .../get_page_html_iframe/command.js           |   2 +-
 .../get_page_html_iframe/config.yaml          |   2 +-
 .../get_page_html_iframe/module.rb            |   2 +-
 .../hooked_domain/get_page_links/command.js   |   2 +-
 .../hooked_domain/get_page_links/config.yaml  |   2 +-
 .../hooked_domain/get_page_links/module.rb    |   2 +-
 .../get_session_storage/command.js            |   2 +-
 .../get_session_storage/config.yaml           |   2 +-
 .../get_session_storage/module.rb             |   2 +-
 .../get_stored_credentials/command.js         |   2 +-
 .../get_stored_credentials/config.yaml        |   2 +-
 .../get_stored_credentials/module.rb          |   2 +-
 .../hooked_domain/link_rewrite/command.js     |   2 +-
 .../hooked_domain/link_rewrite/config.yaml    |   2 +-
 .../hooked_domain/link_rewrite/module.rb      |   2 +-
 .../link_rewrite_click_events/command.js      |   2 +-
 .../link_rewrite_click_events/config.yaml     |   2 +-
 .../link_rewrite_click_events/module.rb       |   2 +-
 .../link_rewrite_sslstrip/command.js          |   2 +-
 .../link_rewrite_sslstrip/config.yaml         |   2 +-
 .../link_rewrite_sslstrip/module.rb           |   2 +-
 .../hooked_domain/link_rewrite_tel/command.js |   2 +-
 .../link_rewrite_tel/config.yaml              |   2 +-
 .../hooked_domain/link_rewrite_tel/module.rb  |   2 +-
 .../mobilesafari_address_spoofing/command.js  |   2 +-
 .../mobilesafari_address_spoofing/config.yaml |   2 +-
 .../mobilesafari_address_spoofing/module.rb   |   2 +-
 .../overflow_cookiejar/command.js             |   2 +-
 .../overflow_cookiejar/config.yaml            |   2 +-
 .../overflow_cookiejar/module.rb              |   2 +-
 .../hooked_domain/prompt_dialog/command.js    |   2 +-
 .../hooked_domain/prompt_dialog/config.yaml   |   2 +-
 .../hooked_domain/prompt_dialog/module.rb     |   2 +-
 .../remove_stuck_iframes/command.js           |   2 +-
 .../remove_stuck_iframes/config.yaml          |   2 +-
 .../remove_stuck_iframes/module.rb            |   2 +-
 .../hooked_domain/replace_video/command.js    |   2 +-
 .../hooked_domain/replace_video/config.yaml   |   2 +-
 .../hooked_domain/replace_video/module.rb     |   2 +-
 .../browser/hooked_domain/rickroll/command.js |   2 +-
 .../hooked_domain/rickroll/config.yaml        |   2 +-
 .../browser/hooked_domain/rickroll/module.rb  |   2 +-
 .../hooked_domain/site_redirect/command.js    |   2 +-
 .../hooked_domain/site_redirect/config.yaml   |   2 +-
 .../hooked_domain/site_redirect/module.rb     |   2 +-
 .../site_redirect_iframe/command.js           |   2 +-
 .../site_redirect_iframe/config.yaml          |   2 +-
 .../site_redirect_iframe/module.rb            |   2 +-
 modules/browser/play_sound/command.js         |   2 +-
 modules/browser/play_sound/config.yaml        |   2 +-
 modules/browser/play_sound/module.rb          |   2 +-
 .../browser/remove_hook_element/command.js    |   2 +-
 .../browser/remove_hook_element/config.yaml   |   2 +-
 modules/browser/remove_hook_element/module.rb |   2 +-
 modules/browser/spyder_eye/command.js         |   2 +-
 modules/browser/spyder_eye/config.yaml        |   2 +-
 modules/browser/spyder_eye/module.rb          |   2 +-
 modules/browser/unhook/command.js             |   2 +-
 modules/browser/unhook/config.yaml            |   2 +-
 modules/browser/unhook/module.rb              |   2 +-
 modules/browser/webcam_flash/command.js       |   2 +-
 modules/browser/webcam_flash/config.yaml      |   2 +-
 modules/browser/webcam_flash/module.rb        |   2 +-
 modules/browser/webcam_html5/command.js       |   2 +-
 modules/browser/webcam_html5/config.yaml      |   2 +-
 modules/browser/webcam_html5/module.rb        |   2 +-
 .../webcam_permission_check/cameraCheck.as    |   2 +-
 .../webcam_permission_check/command.js        |   2 +-
 .../webcam_permission_check/config.yaml       |   2 +-
 .../browser/webcam_permission_check/module.rb |   2 +-
 .../chrome_extensions/execute_tabs/command.js |   2 +-
 .../execute_tabs/config.yaml                  |   2 +-
 .../chrome_extensions/execute_tabs/module.rb  |   2 +-
 .../get_all_cookies/command.js                |   2 +-
 .../get_all_cookies/config.yaml               |   2 +-
 .../get_all_cookies/module.rb                 |   2 +-
 .../grab_google_contacts/command.js           |   2 +-
 .../grab_google_contacts/config.yaml          |   2 +-
 .../grab_google_contacts/module.rb            |   2 +-
 .../chrome_extensions/inject_beef/command.js  |   2 +-
 .../chrome_extensions/inject_beef/config.yaml |   2 +-
 .../chrome_extensions/inject_beef/module.rb   |   2 +-
 .../chrome_extensions/screenshot/command.js   |   2 +-
 .../chrome_extensions/screenshot/config.yaml  |   2 +-
 .../chrome_extensions/screenshot/module.rb    |   2 +-
 .../send_gvoice_sms/command.js                |   2 +-
 .../send_gvoice_sms/config.yaml               |   2 +-
 .../send_gvoice_sms/module.rb                 |   2 +-
 modules/debug/test_beef_debug/command.js      |   2 +-
 modules/debug/test_beef_debug/config.yaml     |   2 +-
 modules/debug/test_beef_debug/module.rb       |   2 +-
 modules/debug/test_cors_request/command.js    |   2 +-
 modules/debug/test_cors_request/config.yaml   |   2 +-
 modules/debug/test_cors_request/module.rb     |   2 +-
 .../debug/test_dns_tunnel_client/command.js   |   2 +-
 .../debug/test_dns_tunnel_client/config.yaml  |   2 +-
 .../debug/test_dns_tunnel_client/module.rb    |   2 +-
 modules/debug/test_get_variable/command.js    |   2 +-
 modules/debug/test_get_variable/config.yaml   |   2 +-
 modules/debug/test_get_variable/module.rb     |   2 +-
 modules/debug/test_http_redirect/command.js   |   2 +-
 modules/debug/test_http_redirect/config.yaml  |   2 +-
 modules/debug/test_http_redirect/module.rb    |   2 +-
 modules/debug/test_network_request/command.js |   2 +-
 .../debug/test_network_request/config.yaml    |   2 +-
 modules/debug/test_network_request/module.rb  |   2 +-
 .../debug/test_return_ascii_chars/command.js  |   2 +-
 .../debug/test_return_ascii_chars/config.yaml |   2 +-
 .../debug/test_return_ascii_chars/module.rb   |   2 +-
 modules/debug/test_return_image/command.js    |   2 +-
 modules/debug/test_return_image/config.yaml   |   2 +-
 modules/debug/test_return_image/module.rb     |   2 +-
 .../debug/test_return_long_string/command.js  |   2 +-
 .../debug/test_return_long_string/config.yaml |   2 +-
 .../debug/test_return_long_string/module.rb   |   2 +-
 .../apache_cookie_disclosure/command.js       |   2 +-
 .../apache_cookie_disclosure/config.yaml      |   2 +-
 .../apache_cookie_disclosure/module.rb        |   2 +-
 .../apache_felix_remote_shell/command.js      |   2 +-
 .../apache_felix_remote_shell/config.yaml     |   2 +-
 .../apache_felix_remote_shell/module.rb       |   2 +-
 .../beefbind/beef_bind_shell/command.js       |   2 +-
 .../beefbind/beef_bind_shell/config.yaml      |   2 +-
 .../beefbind/beef_bind_shell/module.rb        |   2 +-
 .../shellcode_sources/linux/x64/socket64.c    |   2 +-
 .../shellcode_sources/linux/x86/socket.c      |   2 +-
 .../shellcode_sources/linux/x86/stage.nasm    |   2 +-
 .../shellcode_sources/linux/x86/stager.nasm   |   2 +-
 .../shellcode_sources/windows/socket.c        |   2 +-
 .../boastmachine_3_1_add_user_csrf/command.js |   2 +-
 .../config.yaml                               |   2 +-
 .../boastmachine_3_1_add_user_csrf/module.rb  |   2 +-
 .../camera/airlive_ip_camera_csrf/command.js  |   2 +-
 .../camera/airlive_ip_camera_csrf/config.yaml |   2 +-
 .../camera/airlive_ip_camera_csrf/module.rb   |   2 +-
 .../camera/dlink_dcs_series_csrf/command.js   |   2 +-
 .../camera/dlink_dcs_series_csrf/config.yaml  |   2 +-
 .../camera/dlink_dcs_series_csrf/module.rb    |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 modules/exploits/extract_cmd_exec/command.js  |   2 +-
 modules/exploits/extract_cmd_exec/config.yaml |   2 +-
 modules/exploits/extract_cmd_exec/module.rb   |   2 +-
 modules/exploits/firephp/command.js           |   2 +-
 modules/exploits/firephp/config.yaml          |   2 +-
 modules/exploits/firephp/module.rb            |   2 +-
 .../glassfish_war_upload_xsrf/command.js      |   2 +-
 .../glassfish_war_upload_xsrf/config.yaml     |   2 +-
 .../glassfish_war_upload_xsrf/module.rb       |   2 +-
 .../groovyshell_server_cmd_exec/command.js    |   2 +-
 .../groovyshell_server_cmd_exec/config.yaml   |   2 +-
 .../groovyshell_server_cmd_exec/module.rb     |   2 +-
 .../hp_ucmdb_add_user_csrf/command.js         |   2 +-
 .../hp_ucmdb_add_user_csrf/config.yaml        |   2 +-
 .../exploits/hp_ucmdb_add_user_csrf/module.rb |   2 +-
 .../jboss_jmx_upload_exploit/command.js       |   2 +-
 .../jboss_jmx_upload_exploit/config.yaml      |   2 +-
 .../jboss_jmx_upload_exploit/module.rb        |   2 +-
 .../jenkins_groovy_code_exec/command.js       |   2 +-
 .../jenkins_groovy_code_exec/config.yaml      |   2 +-
 .../jenkins_groovy_code_exec/module.rb        |   2 +-
 .../kemp_command_execution/command.js         |   2 +-
 .../kemp_command_execution/config.yaml        |   2 +-
 .../exploits/kemp_command_execution/module.rb |   2 +-
 .../activex_command_execution/command.js      |   2 +-
 .../activex_command_execution/config.yaml     |   2 +-
 .../activex_command_execution/module.rb       |   2 +-
 .../local_host/java_payload/command.js        |   2 +-
 .../local_host/java_payload/config.yaml       |   2 +-
 .../local_host/java_payload/module.rb         |   2 +-
 .../mozilla_nsiprocess_interface/command.js   |   2 +-
 .../mozilla_nsiprocess_interface/config.yaml  |   2 +-
 .../mozilla_nsiprocess_interface/module.rb    |   2 +-
 .../local_host/safari_launch_app/command.js   |   2 +-
 .../local_host/safari_launch_app/config.yaml  |   2 +-
 .../local_host/safari_launch_app/module.rb    |   2 +-
 .../signed_applet_dropper/applet/SM.java      |   2 +-
 .../applet/SignedApplet.java                  |   2 +-
 .../signed_applet_dropper/command.js          |   2 +-
 .../signed_applet_dropper/config.yaml         |   2 +-
 .../signed_applet_dropper/module.rb           |   2 +-
 .../window_mail_client_dos/command.js         |   2 +-
 .../window_mail_client_dos/config.yaml        |   2 +-
 .../window_mail_client_dos/module.rb          |   2 +-
 .../nas/dlink_sharecenter_cmd_exec/command.js |   2 +-
 .../dlink_sharecenter_cmd_exec/config.yaml    |   2 +-
 .../nas/dlink_sharecenter_cmd_exec/module.rb  |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../freenas_reverse_root_shell_csrf/module.rb |   2 +-
 .../exploits/ntfscommoncreate_dos/command.js  |   2 +-
 .../exploits/ntfscommoncreate_dos/config.yaml |   2 +-
 .../exploits/ntfscommoncreate_dos/module.rb   |   2 +-
 .../opencart_reset_password/command.js        |   2 +-
 .../opencart_reset_password/config.yaml       |   2 +-
 .../opencart_reset_password/module.rb         |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../pfsense_reverse_root_shell_csrf/module.rb |   2 +-
 modules/exploits/php-5.3.9-dos/command.js     |   2 +-
 modules/exploits/php-5.3.9-dos/config.yaml    |   2 +-
 modules/exploits/php-5.3.9-dos/module.rb      |   2 +-
 .../qemu_monitor_migrate_cmd_exec/command.js  |   2 +-
 .../qemu_monitor_migrate_cmd_exec/config.yaml |   2 +-
 .../qemu_monitor_migrate_cmd_exec/module.rb   |   2 +-
 .../qnx_qconn_command_execution/command.js    |   2 +-
 .../qnx_qconn_command_execution/config.yaml   |   2 +-
 .../qnx_qconn_command_execution/module.rb     |   2 +-
 .../resource_exhaustion_dos/command.js        |   2 +-
 .../resource_exhaustion_dos/config.yaml       |   2 +-
 .../resource_exhaustion_dos/module.rb         |   2 +-
 modules/exploits/rfi_scanner/command.js       |   2 +-
 modules/exploits/rfi_scanner/config.yaml      |   2 +-
 modules/exploits/rfi_scanner/module.rb        |   2 +-
 .../3com_officeconnect_cmd_exec/command.js    |   2 +-
 .../3com_officeconnect_cmd_exec/config.yaml   |   2 +-
 .../3com_officeconnect_cmd_exec/module.rb     |   2 +-
 .../router/actiontec_q1000_csrf/command.js    |   2 +-
 .../router/actiontec_q1000_csrf/config.yaml   |   2 +-
 .../router/actiontec_q1000_csrf/module.rb     |   2 +-
 .../router/argw4_adsl_dns_hijack/command.js   |   2 +-
 .../router/argw4_adsl_dns_hijack/config.yaml  |   2 +-
 .../router/argw4_adsl_dns_hijack/module.rb    |   2 +-
 .../router/asmax_ar804gu_cmd_exec/command.js  |   2 +-
 .../router/asmax_ar804gu_cmd_exec/config.yaml |   2 +-
 .../router/asmax_ar804gu_cmd_exec/module.rb   |   2 +-
 .../router/asus_dslx11_dns_hijack/command.js  |   2 +-
 .../router/asus_dslx11_dns_hijack/config.yaml |   2 +-
 .../router/asus_dslx11_dns_hijack/module.rb   |   2 +-
 .../router/asus_rt_n12e_get_info/command.js   |   2 +-
 .../router/asus_rt_n12e_get_info/config.yaml  |   2 +-
 .../router/asus_rt_n12e_get_info/module.rb    |   2 +-
 .../router/asus_rt_n66u_cmd_exec/command.js   |   2 +-
 .../router/asus_rt_n66u_cmd_exec/config.yaml  |   2 +-
 .../router/asus_rt_n66u_cmd_exec/module.rb    |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../router/belkin_dns_csrf/command.js         |   2 +-
 .../router/belkin_dns_csrf/config.yaml        |   2 +-
 .../exploits/router/belkin_dns_csrf/module.rb |   2 +-
 .../router/bt_home_hub_csrf/command.js        |   2 +-
 .../router/bt_home_hub_csrf/config.yaml       |   2 +-
 .../router/bt_home_hub_csrf/module.rb         |   2 +-
 .../router/cisco_e2400_csrf/command.js        |   2 +-
 .../router/cisco_e2400_csrf/config.yaml       |   2 +-
 .../router/cisco_e2400_csrf/module.rb         |   2 +-
 .../router/comtrend_ct5367_csrf/command.js    |   2 +-
 .../router/comtrend_ct5367_csrf/config.yaml   |   2 +-
 .../router/comtrend_ct5367_csrf/module.rb     |   2 +-
 .../router/comtrend_ct5624_csrf/command.js    |   2 +-
 .../router/comtrend_ct5624_csrf/config.yaml   |   2 +-
 .../router/comtrend_ct5624_csrf/module.rb     |   2 +-
 .../comtrend_ct_series_dns_hijack/command.js  |   2 +-
 .../comtrend_ct_series_dns_hijack/config.yaml |   2 +-
 .../comtrend_ct_series_dns_hijack/module.rb   |   2 +-
 .../router/ddwrt_v24_sp1_cmd_exec/command.js  |   2 +-
 .../router/ddwrt_v24_sp1_cmd_exec/config.yaml |   2 +-
 .../router/ddwrt_v24_sp1_cmd_exec/module.rb   |   2 +-
 .../router/ddwrt_v24_sp1_csrf/command.js      |   2 +-
 .../router/ddwrt_v24_sp1_csrf/config.yaml     |   2 +-
 .../router/ddwrt_v24_sp1_csrf/module.rb       |   2 +-
 .../router/dlink_dir_615_csrf/command.js      |   2 +-
 .../router/dlink_dir_615_csrf/config.yaml     |   2 +-
 .../router/dlink_dir_615_csrf/module.rb       |   2 +-
 .../dlink_dsl2640b_dns_hijack/command.js      |   2 +-
 .../dlink_dsl2640b_dns_hijack/config.yaml     |   2 +-
 .../dlink_dsl2640b_dns_hijack/module.rb       |   2 +-
 .../dlink_dsl2640u_dns_hijack/command.js      |   2 +-
 .../dlink_dsl2640u_dns_hijack/config.yaml     |   2 +-
 .../dlink_dsl2640u_dns_hijack/module.rb       |   2 +-
 .../dlink_dsl2740r_dns_hijack/command.js      |   2 +-
 .../dlink_dsl2740r_dns_hijack/config.yaml     |   2 +-
 .../dlink_dsl2740r_dns_hijack/module.rb       |   2 +-
 .../dlink_dsl2780b_dns_hijack/command.js      |   2 +-
 .../dlink_dsl2780b_dns_hijack/config.yaml     |   2 +-
 .../dlink_dsl2780b_dns_hijack/module.rb       |   2 +-
 .../router/dlink_dsl500t_csrf/command.js      |   2 +-
 .../router/dlink_dsl500t_csrf/config.yaml     |   2 +-
 .../router/dlink_dsl500t_csrf/module.rb       |   2 +-
 .../dlink_dsl526b_dns_hijack/command.js       |   2 +-
 .../dlink_dsl526b_dns_hijack/config.yaml      |   2 +-
 .../router/dlink_dsl526b_dns_hijack/module.rb |   2 +-
 .../exper_ewm01_adsl_dns_hijack/command.js    |   2 +-
 .../exper_ewm01_adsl_dns_hijack/config.yaml   |   2 +-
 .../exper_ewm01_adsl_dns_hijack/module.rb     |   2 +-
 .../router/huawei_smartax_mt880/command.js    |   2 +-
 .../router/huawei_smartax_mt880/config.yaml   |   2 +-
 .../router/huawei_smartax_mt880/module.rb     |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../inteno_eg101r1_voip_dns_hijack/command.js |   2 +-
 .../config.yaml                               |   2 +-
 .../inteno_eg101r1_voip_dns_hijack/module.rb  |   2 +-
 .../router/linksys_befsr41_csrf/command.js    |   2 +-
 .../router/linksys_befsr41_csrf/config.yaml   |   2 +-
 .../router/linksys_befsr41_csrf/module.rb     |   2 +-
 .../router/linksys_e2500_csrf/command.js      |   2 +-
 .../router/linksys_e2500_csrf/config.yaml     |   2 +-
 .../router/linksys_e2500_csrf/module.rb       |   2 +-
 .../linksys_e2500_dns_hijack/command.js       |   2 +-
 .../linksys_e2500_dns_hijack/config.yaml      |   2 +-
 .../router/linksys_e2500_dns_hijack/module.rb |   2 +-
 .../router/linksys_e2500_shell/command.js     |   2 +-
 .../router/linksys_e2500_shell/config.yaml    |   2 +-
 .../router/linksys_e2500_shell/module.rb      |   2 +-
 .../router/linksys_wrt54g2_csrf/command.js    |   2 +-
 .../router/linksys_wrt54g2_csrf/config.yaml   |   2 +-
 .../router/linksys_wrt54g2_csrf/module.rb     |   2 +-
 .../router/linksys_wrt54g_csrf/command.js     |   2 +-
 .../router/linksys_wrt54g_csrf/config.yaml    |   2 +-
 .../router/linksys_wrt54g_csrf/module.rb      |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../netgear_dgn2000_wan_remote_mgmt/module.rb |   2 +-
 .../netgear_dgn2200_cmd_exec/command.js       |   2 +-
 .../netgear_dgn2200_cmd_exec/config.yaml      |   2 +-
 .../router/netgear_dgn2200_cmd_exec/module.rb |   2 +-
 .../router/phillips_dns_hijack/command.js     |   2 +-
 .../router/phillips_dns_hijack/config.yaml    |   2 +-
 .../router/phillips_dns_hijack/module.rb      |   2 +-
 .../pikatel_96338_dns_hijack/command.js       |   2 +-
 .../pikatel_96338_dns_hijack/config.yaml      |   2 +-
 .../router/pikatel_96338_dns_hijack/module.rb |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../planet_vdr300nu_adsl_dns_hijack/module.rb |   2 +-
 .../shuttle_tech_915wm_dns_hijack/command.js  |   2 +-
 .../shuttle_tech_915wm_dns_hijack/config.yaml |   2 +-
 .../shuttle_tech_915wm_dns_hijack/module.rb   |   2 +-
 .../telstra_zte_mf91_change_pw/command.js     |   2 +-
 .../telstra_zte_mf91_change_pw/config.yaml    |   2 +-
 .../telstra_zte_mf91_change_pw/module.rb      |   2 +-
 .../telstra_zte_mf91_change_ssid/command.js   |   2 +-
 .../telstra_zte_mf91_change_ssid/config.yaml  |   2 +-
 .../telstra_zte_mf91_change_ssid/module.rb    |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../router/tenda_adsl_dns_hijack/command.js   |   2 +-
 .../router/tenda_adsl_dns_hijack/config.yaml  |   2 +-
 .../router/tenda_adsl_dns_hijack/module.rb    |   2 +-
 .../router/tplink_dns_csrf/command.js         |   2 +-
 .../router/tplink_dns_csrf/config.yaml        |   2 +-
 .../exploits/router/tplink_dns_csrf/module.rb |   2 +-
 .../utstarcom_wa3002g4_dns_hijack/command.js  |   2 +-
 .../utstarcom_wa3002g4_dns_hijack/config.yaml |   2 +-
 .../utstarcom_wa3002g4_dns_hijack/module.rb   |   2 +-
 .../router/virgin_superhub_csrf/command.js    |   2 +-
 .../router/virgin_superhub_csrf/config.yaml   |   2 +-
 .../router/virgin_superhub_csrf/module.rb     |   2 +-
 .../router/wipg1000_cmd_injection/command.js  |   2 +-
 .../router/wipg1000_cmd_injection/config.yaml |   2 +-
 .../router/wipg1000_cmd_injection/module.rb   |   2 +-
 .../exploits/ruby_nntpd_cmd_exec/command.js   |   2 +-
 .../exploits/ruby_nntpd_cmd_exec/config.yaml  |   2 +-
 .../exploits/ruby_nntpd_cmd_exec/module.rb    |   2 +-
 .../exploits/shell_shock_scanner/command.js   |   2 +-
 .../exploits/shell_shock_scanner/config.yaml  |   2 +-
 .../exploits/shell_shock_scanner/module.rb    |   2 +-
 modules/exploits/shell_shocked/command.js     |   2 +-
 modules/exploits/shell_shocked/config.yaml    |   2 +-
 modules/exploits/shell_shocked/module.rb      |   2 +-
 modules/exploits/skype_xss/command.js         |   2 +-
 modules/exploits/skype_xss/config.yaml        |   2 +-
 modules/exploits/skype_xss/module.rb          |   2 +-
 .../spring_framework_malicious_jar/command.js |   2 +-
 .../config.yaml                               |   2 +-
 .../spring_framework_malicious_jar/module.rb  |   2 +-
 .../dlink_dgs_1100_device_reset/command.js    |   2 +-
 .../dlink_dgs_1100_device_reset/config.yaml   |   2 +-
 .../dlink_dgs_1100_device_reset/module.rb     |   2 +-
 .../dlink_dgs_1100_fdb_whitelist/command.js   |   2 +-
 .../dlink_dgs_1100_fdb_whitelist/config.yaml  |   2 +-
 .../dlink_dgs_1100_fdb_whitelist/module.rb    |   2 +-
 .../dlink_dgs_1100_port_mirroring/command.js  |   2 +-
 .../dlink_dgs_1100_port_mirroring/config.yaml |   2 +-
 .../dlink_dgs_1100_port_mirroring/module.rb   |   2 +-
 .../switch/netgear_gs108t_csrf/command.js     |   2 +-
 .../switch/netgear_gs108t_csrf/config.yaml    |   2 +-
 .../switch/netgear_gs108t_csrf/module.rb      |   2 +-
 .../vtiger_crm_upload_exploit/command.js      |   2 +-
 .../vtiger_crm_upload_exploit/config.yaml     |   2 +-
 .../vtiger_crm_upload_exploit/module.rb       |   2 +-
 .../wanem_command_execution/command.js        |   2 +-
 .../wanem_command_execution/config.yaml       |   2 +-
 .../wanem_command_execution/module.rb         |   2 +-
 .../exploits/wifi_pineapple_csrf/command.js   |   2 +-
 .../exploits/wifi_pineapple_csrf/config.yaml  |   2 +-
 .../exploits/wifi_pineapple_csrf/module.rb    |   2 +-
 .../xss/alienvault_ossim_3.1_xss/command.js   |   2 +-
 .../xss/alienvault_ossim_3.1_xss/config.yaml  |   2 +-
 .../xss/alienvault_ossim_3.1_xss/module.rb    |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../xss/serendipity_1.6_xss/command.js        |   2 +-
 .../xss/serendipity_1.6_xss/config.yaml       |   2 +-
 .../xss/serendipity_1.6_xss/module.rb         |   2 +-
 .../exploits/xss/sqlitemanager_xss/command.js |   2 +-
 .../xss/sqlitemanager_xss/config.yaml         |   2 +-
 .../exploits/xss/sqlitemanager_xss/module.rb  |   2 +-
 .../zenoss_3x_command_execution/command.js    |   2 +-
 .../zenoss_3x_command_execution/config.yaml   |   2 +-
 .../zenoss_3x_command_execution/module.rb     |   2 +-
 .../exploits/zenoss_add_user_csrf/command.js  |   2 +-
 .../exploits/zenoss_add_user_csrf/config.yaml |   2 +-
 .../exploits/zenoss_add_user_csrf/module.rb   |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../zeroshell_2_0rc2_admin_password/module.rb |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../zeroshell_2_0rc2_migrate_hook/command.js  |   2 +-
 .../zeroshell_2_0rc2_migrate_hook/config.yaml |   2 +-
 .../zeroshell_2_0rc2_migrate_hook/module.rb   |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../module.rb                                 |   2 +-
 .../zeroshell_2_0rc2_scanner/command.js       |   2 +-
 .../zeroshell_2_0rc2_scanner/config.yaml      |   2 +-
 .../zeroshell_2_0rc2_scanner/module.rb        |   2 +-
 modules/host/clipboard_theft/command.js       |   2 +-
 modules/host/clipboard_theft/config.yaml      |   2 +-
 modules/host/clipboard_theft/module.rb        |   2 +-
 modules/host/detect_airdroid/command.js       |   2 +-
 modules/host/detect_airdroid/config.yaml      |   2 +-
 modules/host/detect_airdroid/module.rb        |   2 +-
 modules/host/detect_antivirus/command.js      |   2 +-
 modules/host/detect_antivirus/config.yaml     |   2 +-
 modules/host/detect_antivirus/module.rb       |   2 +-
 modules/host/detect_coupon_printer/command.js |   2 +-
 .../host/detect_coupon_printer/config.yaml    |   2 +-
 modules/host/detect_coupon_printer/module.rb  |   2 +-
 modules/host/detect_cups/command.js           |   2 +-
 modules/host/detect_cups/config.yaml          |   2 +-
 modules/host/detect_cups/module.rb            |   2 +-
 .../host/detect_default_browser/command.js    |   2 +-
 .../host/detect_default_browser/config.yaml   |   2 +-
 modules/host/detect_default_browser/module.rb |   2 +-
 modules/host/detect_google_desktop/command.js |   2 +-
 .../host/detect_google_desktop/config.yaml    |   2 +-
 modules/host/detect_google_desktop/module.rb  |   2 +-
 modules/host/detect_hp/command.js             |   2 +-
 modules/host/detect_hp/config.yaml            |   2 +-
 modules/host/detect_hp/module.rb              |   2 +-
 modules/host/detect_local_drives/command.js   |   2 +-
 modules/host/detect_local_drives/config.yaml  |   2 +-
 modules/host/detect_local_drives/module.rb    |   2 +-
 .../host/detect_protocol_handlers/command.js  |   2 +-
 .../host/detect_protocol_handlers/config.yaml |   2 +-
 .../host/detect_protocol_handlers/module.rb   |   2 +-
 modules/host/detect_software/command.js       |   2 +-
 modules/host/detect_software/config.yaml      |   2 +-
 modules/host/detect_software/module.rb        |   2 +-
 modules/host/detect_users/command.js          |   2 +-
 modules/host/detect_users/config.yaml         |   2 +-
 modules/host/detect_users/module.rb           |   2 +-
 modules/host/get_battery_status/command.js    |   2 +-
 modules/host/get_battery_status/config.yaml   |   2 +-
 modules/host/get_battery_status/module.rb     |   2 +-
 modules/host/get_connection_type/command.js   |   2 +-
 modules/host/get_connection_type/config.yaml  |   2 +-
 modules/host/get_connection_type/module.rb    |   2 +-
 modules/host/get_internal_ip_java/command.js  |   2 +-
 modules/host/get_internal_ip_java/config.yaml |   2 +-
 .../get_internal_ip_java/get_internal_ip.java |   2 +-
 modules/host/get_internal_ip_java/module.rb   |   2 +-
 .../host/get_internal_ip_webrtc/command.js    |   2 +-
 .../host/get_internal_ip_webrtc/config.yaml   |   2 +-
 modules/host/get_internal_ip_webrtc/module.rb |   2 +-
 modules/host/get_registry_keys/command.js     |   2 +-
 modules/host/get_registry_keys/config.yaml    |   2 +-
 modules/host/get_registry_keys/module.rb      |   2 +-
 modules/host/get_system_info_java/command.js  |   2 +-
 modules/host/get_system_info_java/config.yaml |   2 +-
 .../get_system_info_java/getSystemInfo.java   |   2 +-
 modules/host/get_system_info_java/module.rb   |   2 +-
 modules/host/get_wireless_keys/command.js     |   2 +-
 modules/host/get_wireless_keys/config.yaml    |   2 +-
 modules/host/get_wireless_keys/module.rb      |   2 +-
 .../get_wireless_keys/wirelessZeroConfig.java |   2 +-
 modules/host/hook_default_browser/command.js  |   2 +-
 modules/host/hook_default_browser/config.yaml |   2 +-
 modules/host/hook_default_browser/module.rb   |   2 +-
 modules/host/hook_microsoft_edge/command.js   |   2 +-
 modules/host/hook_microsoft_edge/config.yaml  |   2 +-
 modules/host/hook_microsoft_edge/module.rb    |   2 +-
 modules/host/insecure_url_skype/command.js    |   2 +-
 modules/host/insecure_url_skype/config.yaml   |   2 +-
 modules/host/insecure_url_skype/module.rb     |   2 +-
 modules/host/iphone_tel/command.js            |   2 +-
 modules/host/iphone_tel/config.yaml           |   2 +-
 modules/host/iphone_tel/module.rb             |   2 +-
 modules/host/physical_location/command.js     |   2 +-
 modules/host/physical_location/config.yaml    |   2 +-
 modules/host/physical_location/module.rb      |   2 +-
 .../physical_location_thirdparty/command.js   |   2 +-
 .../physical_location_thirdparty/config.yaml  |   2 +-
 .../physical_location_thirdparty/module.rb    |   2 +-
 modules/ipec/cross_site_faxing/command.js     |   2 +-
 modules/ipec/cross_site_faxing/config.yaml    |   2 +-
 modules/ipec/cross_site_faxing/module.rb      |   2 +-
 modules/ipec/cross_site_printing/command.js   |   2 +-
 modules/ipec/cross_site_printing/config.yaml  |   2 +-
 modules/ipec/cross_site_printing/module.rb    |   2 +-
 modules/ipec/dns_tunnel/command.js            |   2 +-
 modules/ipec/dns_tunnel/config.yaml           |   2 +-
 modules/ipec/dns_tunnel/module.rb             |   2 +-
 modules/ipec/etag_client/command.js           |   2 +-
 modules/ipec/etag_client/config.yaml          |   2 +-
 modules/ipec/etag_client/module.rb            |   2 +-
 modules/ipec/inter_protocol_imap/command.js   |   2 +-
 modules/ipec/inter_protocol_imap/config.yaml  |   2 +-
 modules/ipec/inter_protocol_imap/module.rb    |   2 +-
 modules/ipec/inter_protocol_irc/command.js    |   2 +-
 modules/ipec/inter_protocol_irc/config.yaml   |   2 +-
 modules/ipec/inter_protocol_irc/module.rb     |   2 +-
 .../inter_protocol_posix_bindshell/command.js |   2 +-
 .../config.yaml                               |   2 +-
 .../inter_protocol_posix_bindshell/module.rb  |   2 +-
 modules/ipec/inter_protocol_redis/command.js  |   2 +-
 modules/ipec/inter_protocol_redis/config.yaml |   2 +-
 modules/ipec/inter_protocol_redis/module.rb   |   2 +-
 .../inter_protocol_win_bindshell/command.js   |   2 +-
 .../command.old.js                            |   2 +-
 .../inter_protocol_win_bindshell/config.yaml  |   2 +-
 .../inter_protocol_win_bindshell/module.rb    |   2 +-
 modules/ipec/s2c_dns_tunnel/command.js        |   2 +-
 modules/ipec/s2c_dns_tunnel/config.yaml       |   2 +-
 modules/ipec/s2c_dns_tunnel/module.rb         |   2 +-
 modules/metasploit/browser_autopwn/command.js |   2 +-
 .../metasploit/browser_autopwn/config.yaml    |   2 +-
 modules/metasploit/browser_autopwn/module.rb  |   2 +-
 modules/misc/blockui/command.js               |   2 +-
 modules/misc/blockui/config.yaml              |   2 +-
 modules/misc/blockui/module.rb                |   2 +-
 modules/misc/iframe_keylogger/command.js      |   2 +-
 modules/misc/iframe_keylogger/config.yaml     |   2 +-
 modules/misc/iframe_keylogger/module.rb       |   2 +-
 modules/misc/iframe_sniffer/command.js        |   2 +-
 modules/misc/iframe_sniffer/config.yaml       |   2 +-
 modules/misc/iframe_sniffer/module.rb         |   2 +-
 modules/misc/invisible_iframe/command.js      |   2 +-
 modules/misc/invisible_iframe/config.yaml     |   2 +-
 modules/misc/invisible_iframe/module.rb       |   2 +-
 modules/misc/local_file_theft/command.js      |   2 +-
 modules/misc/local_file_theft/config.yaml     |   2 +-
 modules/misc/local_file_theft/module.rb       |   2 +-
 modules/misc/nosleep/command.js               |   2 +-
 modules/misc/nosleep/config.yaml              |   2 +-
 modules/misc/nosleep/module.rb                |   2 +-
 modules/misc/raw_javascript/command.js        |   2 +-
 modules/misc/raw_javascript/config.yaml       |   2 +-
 modules/misc/raw_javascript/module.rb         |   2 +-
 .../misc/track_physical_movement/command.js   |   2 +-
 .../misc/track_physical_movement/config.yaml  |   2 +-
 .../misc/track_physical_movement/module.rb    |   2 +-
 modules/misc/unblockui/command.js             |   2 +-
 modules/misc/unblockui/config.yaml            |   2 +-
 modules/misc/unblockui/module.rb              |   2 +-
 modules/misc/wordpress/add_user/command.js    |   2 +-
 modules/misc/wordpress/add_user/config.yaml   |   2 +-
 modules/misc/wordpress/add_user/module.rb     |   2 +-
 .../wordpress/current_user_info/command.js    |   2 +-
 .../wordpress/current_user_info/config.yaml   |   2 +-
 .../wordpress/current_user_info/module.rb     |   2 +-
 .../wordpress/upload_rce_plugin/beefbind.php  |   2 +-
 .../wordpress/upload_rce_plugin/command.js    |   2 +-
 .../wordpress/upload_rce_plugin/config.yaml   |   2 +-
 .../wordpress/upload_rce_plugin/module.rb     |   2 +-
 modules/misc/wordpress/wordpress_command.rb   |   2 +-
 modules/misc/wordpress/wp.js                  |   2 +-
 .../misc/wordpress_post_auth_rce/command.js   |   2 +-
 .../misc/wordpress_post_auth_rce/config.yaml  |   2 +-
 .../misc/wordpress_post_auth_rce/module.rb    |   2 +-
 .../ADC/f5_bigip_cookie_disclosure/command.js |   2 +-
 .../f5_bigip_cookie_disclosure/config.yaml    |   2 +-
 .../ADC/f5_bigip_cookie_disclosure/module.rb  |   2 +-
 .../ADC/f5_bigip_cookie_stealing/command.js   |   2 +-
 .../ADC/f5_bigip_cookie_stealing/config.yaml  |   2 +-
 .../ADC/f5_bigip_cookie_stealing/module.rb    |   2 +-
 modules/network/DOSer/command.js              |   2 +-
 modules/network/DOSer/config.yaml             |   2 +-
 modules/network/DOSer/module.rb               |   2 +-
 .../cross_origin_scanner_cors/command.js      |   2 +-
 .../cross_origin_scanner_cors/config.yaml     |   2 +-
 .../cross_origin_scanner_cors/module.rb       |   2 +-
 .../cross_origin_scanner_flash/command.js     |   2 +-
 .../cross_origin_scanner_flash/config.yaml    |   2 +-
 .../cross_origin_scanner_flash/module.rb      |   2 +-
 modules/network/detect_burp/command.js        |   2 +-
 modules/network/detect_burp/config.yaml       |   2 +-
 modules/network/detect_burp/module.rb         |   2 +-
 .../network/detect_ethereum_ens/command.js    |   2 +-
 .../network/detect_ethereum_ens/config.yaml   |   2 +-
 modules/network/detect_ethereum_ens/module.rb |   2 +-
 modules/network/detect_opennic/command.js     |   2 +-
 modules/network/detect_opennic/config.yaml    |   2 +-
 modules/network/detect_opennic/module.rb      |   2 +-
 modules/network/detect_soc_nets/command.js    |   2 +-
 modules/network/detect_soc_nets/config.yaml   |   2 +-
 modules/network/detect_soc_nets/module.rb     |   2 +-
 modules/network/detect_tor/command.js         |   2 +-
 modules/network/detect_tor/config.yaml        |   2 +-
 modules/network/detect_tor/module.rb          |   2 +-
 modules/network/dns_enumeration/command.js    |   2 +-
 modules/network/dns_enumeration/config.yaml   |   2 +-
 modules/network/dns_enumeration/module.rb     |   2 +-
 modules/network/dns_rebinding/command.js      |   2 +-
 modules/network/dns_rebinding/config.yaml     |   2 +-
 modules/network/dns_rebinding/module.rb       |   2 +-
 modules/network/fetch_port_scanner/command.js |   2 +-
 .../network/fetch_port_scanner/config.yaml    |   2 +-
 modules/network/fetch_port_scanner/module.rb  |   2 +-
 modules/network/get_http_servers/command.js   |   2 +-
 modules/network/get_http_servers/config.yaml  |   2 +-
 modules/network/get_http_servers/module.rb    |   2 +-
 .../network/get_ntop_network_hosts/command.js |   2 +-
 .../get_ntop_network_hosts/config.yaml        |   2 +-
 .../network/get_ntop_network_hosts/module.rb  |   2 +-
 .../network/get_proxy_servers_wpad/command.js |   2 +-
 .../get_proxy_servers_wpad/config.yaml        |   2 +-
 .../network/get_proxy_servers_wpad/module.rb  |   2 +-
 .../network/identify_lan_subnets/command.js   |   2 +-
 .../network/identify_lan_subnets/config.yaml  |   2 +-
 .../network/identify_lan_subnets/module.rb    |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../internal_network_fingerprinting/module.rb |   2 +-
 modules/network/jslanscanner/command.js       |   2 +-
 modules/network/jslanscanner/config.yaml      |   2 +-
 modules/network/jslanscanner/module.rb        |   2 +-
 modules/network/nat_pinning_irc/command.js    |   2 +-
 modules/network/nat_pinning_irc/config.yaml   |   2 +-
 modules/network/nat_pinning_irc/module.rb     |   2 +-
 modules/network/ping_sweep/command.js         |   2 +-
 modules/network/ping_sweep/config.yaml        |   2 +-
 modules/network/ping_sweep/module.rb          |   2 +-
 modules/network/ping_sweep_ff/command.js      |   2 +-
 modules/network/ping_sweep_ff/config.yaml     |   2 +-
 modules/network/ping_sweep_ff/module.rb       |   2 +-
 modules/network/ping_sweep_java/command.js    |   2 +-
 modules/network/ping_sweep_java/config.yaml   |   2 +-
 modules/network/ping_sweep_java/module.rb     |   2 +-
 .../network/ping_sweep_java/pingSweep.java    |   2 +-
 modules/network/port_scanner/command.js       |   2 +-
 modules/network/port_scanner/config.yaml      |   2 +-
 modules/network/port_scanner/module.rb        |   2 +-
 .../persistence/confirm_close_tab/command.js  |   2 +-
 .../persistence/confirm_close_tab/config.yaml |   2 +-
 .../persistence/confirm_close_tab/module.rb   |   2 +-
 modules/persistence/hijack_opener/command.js  |   2 +-
 modules/persistence/hijack_opener/config.yaml |   2 +-
 modules/persistence/hijack_opener/module.rb   |   2 +-
 modules/persistence/iframe_above/command.js   |   2 +-
 modules/persistence/iframe_above/config.yaml  |   2 +-
 modules/persistence/iframe_above/module.rb    |   2 +-
 .../invisible_htmlfile_activex/command.js     |   2 +-
 .../invisible_htmlfile_activex/config.yaml    |   2 +-
 .../invisible_htmlfile_activex/module.rb      |   2 +-
 .../jsonp_service_worker/command.js           |   2 +-
 .../jsonp_service_worker/config.yaml          |   2 +-
 .../persistence/man_in_the_browser/command.js |   2 +-
 .../man_in_the_browser/config.yaml            |   2 +-
 .../persistence/man_in_the_browser/module.rb  |   2 +-
 .../persistence/popunder_window/command.js    |   2 +-
 .../persistence/popunder_window/config.yaml   |   2 +-
 modules/persistence/popunder_window/module.rb |   2 +-
 .../persistence/popunder_window_ie/command.js |   2 +-
 .../popunder_window_ie/config.yaml            |   2 +-
 .../persistence/popunder_window_ie/module.rb  |   2 +-
 .../phonegap/phonegap_alert_user/command.js   |   2 +-
 .../phonegap/phonegap_alert_user/config.yaml  |   2 +-
 .../phonegap/phonegap_alert_user/module.rb    |   2 +-
 modules/phonegap/phonegap_beep/command.js     |   2 +-
 modules/phonegap/phonegap_beep/config.yaml    |   2 +-
 modules/phonegap/phonegap_beep/module.rb      |   2 +-
 .../phonegap_check_connection/command.js      |   2 +-
 .../phonegap_check_connection/config.yaml     |   2 +-
 .../phonegap_check_connection/module.rb       |   2 +-
 modules/phonegap/phonegap_detect/command.js   |   2 +-
 modules/phonegap/phonegap_detect/config.yaml  |   2 +-
 modules/phonegap/phonegap_detect/module.rb    |   2 +-
 .../phonegap/phonegap_file_upload/command.js  |   2 +-
 .../phonegap/phonegap_file_upload/config.yaml |   2 +-
 .../phonegap/phonegap_file_upload/module.rb   |   2 +-
 .../phonegap/phonegap_geo_locate/command.js   |   2 +-
 .../phonegap/phonegap_geo_locate/config.yaml  |   2 +-
 .../phonegap/phonegap_geo_locate/module.rb    |   2 +-
 .../phonegap_globalization_status/command.js  |   2 +-
 .../phonegap_globalization_status/config.yaml |   2 +-
 .../phonegap_globalization_status/module.rb   |   2 +-
 modules/phonegap/phonegap_keychain/command.js |   2 +-
 .../phonegap/phonegap_keychain/config.yaml    |   2 +-
 modules/phonegap/phonegap_keychain/module.rb  |   2 +-
 .../phonegap_list_contacts/command.js         |   2 +-
 .../phonegap_list_contacts/config.yaml        |   2 +-
 .../phonegap/phonegap_list_contacts/module.rb |   2 +-
 .../phonegap/phonegap_list_files/command.js   |   2 +-
 .../phonegap/phonegap_list_files/config.yaml  |   2 +-
 .../phonegap/phonegap_list_files/module.rb    |   2 +-
 .../phonegap_persist_resume/command.js        |   2 +-
 .../phonegap_persist_resume/config.yaml       |   2 +-
 .../phonegap_persist_resume/module.rb         |   2 +-
 .../phonegap/phonegap_persistence/command.js  |   2 +-
 .../phonegap/phonegap_persistence/config.yaml |   2 +-
 .../phonegap/phonegap_persistence/module.rb   |   2 +-
 .../phonegap_plugin_detection/command.js      |   2 +-
 .../phonegap_plugin_detection/config.yaml     |   2 +-
 .../phonegap_plugin_detection/module.rb       |   2 +-
 .../phonegap/phonegap_prompt_user/command.js  |   2 +-
 .../phonegap/phonegap_prompt_user/config.yaml |   2 +-
 .../phonegap/phonegap_prompt_user/module.rb   |   2 +-
 .../phonegap_start_record_audio/command.js    |   2 +-
 .../phonegap_start_record_audio/config.yaml   |   2 +-
 .../phonegap_start_record_audio/module.rb     |   2 +-
 .../phonegap_stop_record_audio/command.js     |   2 +-
 .../phonegap_stop_record_audio/config.yaml    |   2 +-
 .../phonegap_stop_record_audio/module.rb      |   2 +-
 .../clickjacking/command.js                   |   2 +-
 .../clickjacking/config.yaml                  |   2 +-
 .../social_engineering/clickjacking/module.rb |   2 +-
 modules/social_engineering/clippy/command.js  |   2 +-
 modules/social_engineering/clippy/config.yaml |   2 +-
 modules/social_engineering/clippy/module.rb   |   2 +-
 .../edge_wscript_wsh_injection/command.js     |   2 +-
 .../edge_wscript_wsh_injection/config.yaml    |   2 +-
 .../edge_wscript_wsh_injection/module.rb      |   2 +-
 .../fake_evernote_clipper/command.js          |   2 +-
 .../fake_evernote_clipper/config.yaml         |   2 +-
 .../fake_evernote_clipper/module.rb           |   2 +-
 .../fake_flash_update/command.js              |   2 +-
 .../fake_flash_update/config.yaml             |   2 +-
 .../fake_flash_update/module.rb               |   2 +-
 .../fake_lastpass/command.js                  |   2 +-
 .../fake_lastpass/config.yaml                 |   2 +-
 .../fake_lastpass/module.rb                   |   2 +-
 .../fake_notification/command.js              |   2 +-
 .../fake_notification/config.yaml             |   2 +-
 .../fake_notification/module.rb               |   2 +-
 .../fake_notification_c/command.js            |   2 +-
 .../fake_notification_c/config.yaml           |   2 +-
 .../fake_notification_c/module.rb             |   2 +-
 .../fake_notification_ff/command.js           |   2 +-
 .../fake_notification_ff/config.yaml          |   2 +-
 .../fake_notification_ff/module.rb            |   2 +-
 .../fake_notification_ie/command.js           |   2 +-
 .../fake_notification_ie/config.yaml          |   2 +-
 .../fake_notification_ie/module.rb            |   2 +-
 .../firefox_extension_bindshell/command.js    |   2 +-
 .../firefox_extension_bindshell/config.yaml   |   2 +-
 .../firefox_extension_bindshell/module.rb     |   2 +-
 .../firefox_extension_dropper/command.js      |   2 +-
 .../firefox_extension_dropper/config.yaml     |   2 +-
 .../firefox_extension_dropper/module.rb       |   2 +-
 .../command.js                                |   2 +-
 .../config.yaml                               |   2 +-
 .../firefox_extension_reverse_shell/module.rb |   2 +-
 .../gmail_phishing/command.js                 |   2 +-
 .../gmail_phishing/config.yaml                |   2 +-
 .../gmail_phishing/module.rb                  |   2 +-
 .../hta_powershell/command.js                 |   2 +-
 .../hta_powershell/config.yaml                |   2 +-
 .../hta_powershell/module.rb                  |   2 +-
 .../lcamtuf_download/command.js               |   2 +-
 .../lcamtuf_download/config.yaml              |   2 +-
 .../lcamtuf_download/module.rb                |   2 +-
 .../pretty_theft/command.js                   |   2 +-
 .../pretty_theft/config.yaml                  |   2 +-
 .../social_engineering/pretty_theft/module.rb |   2 +-
 .../replace_video_fake_plugin/command.js      |   2 +-
 .../replace_video_fake_plugin/config.yaml     |   2 +-
 .../replace_video_fake_plugin/module.rb       |   2 +-
 .../simple_hijacker/command.js                |   2 +-
 .../simple_hijacker/config.yaml               |   2 +-
 .../simple_hijacker/module.rb                 |   2 +-
 .../simple_hijacker/templates/amazon.js       |   2 +-
 .../templates/chromecertbeggar.js             |   2 +-
 .../templates/chromecertbeggar2.js            |   2 +-
 .../simple_hijacker/templates/confirmbox.js   |   2 +-
 .../simple_hijacker/templates/credential.js   |   2 +-
 .../sitekiosk_breakout/command.js             |   2 +-
 .../sitekiosk_breakout/config.yaml            |   2 +-
 .../sitekiosk_breakout/module.rb              |   2 +-
 .../spoof_addressbar_data/command.js          |   2 +-
 .../spoof_addressbar_data/config.yaml         |   2 +-
 .../spoof_addressbar_data/module.rb           |   2 +-
 .../social_engineering/tabnabbing/command.js  |   2 +-
 .../social_engineering/tabnabbing/config.yaml |   2 +-
 .../social_engineering/tabnabbing/module.rb   |   2 +-
 .../text_to_voice/command.js                  |   2 +-
 .../text_to_voice/config.yaml                 |   2 +-
 .../text_to_voice/module.rb                   |   2 +-
 .../social_engineering/ui_abuse_ie/command.js |   2 +-
 .../ui_abuse_ie/config.yaml                   |   2 +-
 .../social_engineering/ui_abuse_ie/module.rb  |   2 +-
 spec/beef/api/auth_rate_spec.rb               |   2 +-
 .../autorun_engine/autorun_engine_spec.rb     |   2 +-
 .../handlers/browser_details_handler_spec.rb  |   2 +-
 .../websocket_hooked_browser_spec.rb          |   2 +-
 .../modules/debug/test_beef_debugs_spec.rb    |   2 +-
 spec/support/assets/config_new.yaml           |   2 +-
 spec/support/assets/config_old.yaml           |   2 +-
 spec/support/beef_test.rb                     |   2 +-
 spec/support/constants.rb                     |   2 +-
 spec/support/simple_rest_client.rb            |   2 +-
 test/integration/check_environment.rb         |   2 +-
 test/integration/tc_debug_modules.rb          |   2 +-
 test/integration/tc_dns_rest.rb               |   2 +-
 test/integration/tc_login.rb                  |   2 +-
 test/integration/tc_network_rest.rb           |   2 +-
 test/integration/tc_proxy.rb                  |   2 +-
 .../integration/tc_social_engineering_rest.rb |   2 +-
 test/integration/tc_webrtc_rest.rb            |   2 +-
 test/integration/ts_integration.rb            |   2 +-
 test/thirdparty/msf/unit/check_environment.rb |   2 +-
 test/thirdparty/msf/unit/tc_metasploit.rb     |   2 +-
 test/thirdparty/msf/unit/ts_metasploit.rb     |   2 +-
 tools/csrf_to_beef/lib/module.rb              |   6 +++---
 update-beef                                   |   2 +-
 1234 files changed, 1237 insertions(+), 1237 deletions(-)
 create mode 100644 beef.db-shm
 create mode 100644 beef.db-wal

diff --git a/Gemfile b/Gemfile
index 981973ce2..d2389c112 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #gem 'simplecov', require: false, group: :test
diff --git a/INSTALL.txt b/INSTALL.txt
index 335d1183d..ffbd7d4c4 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -1,7 +1,7 @@
 ===============================================================================
    
     Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-    Browser Exploitation Framework (BeEF) - http://beefproject.com
+    Browser Exploitation Framework (BeEF) - https://beefproject.com
     See the file 'doc/COPYING' for copying permission
 
 ===============================================================================
diff --git a/README.md b/README.md
index 58094d799..1e10f73b1 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 ===============================================================================
 
     Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-    Browser Exploitation Framework (BeEF) - http://beefproject.com
+    Browser Exploitation Framework (BeEF) - https://beefproject.com
     See the file 'doc/COPYING' for copying permission
 
 ===============================================================================
diff --git a/VERSION b/VERSION
index 4db506f88..282a519ef 100644
--- a/VERSION
+++ b/VERSION
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 
diff --git a/beef b/beef
index 6d2c5be71..7c997c867 100755
--- a/beef
+++ b/beef
@@ -2,7 +2,7 @@
 
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 
diff --git a/beef.db-shm b/beef.db-shm
new file mode 100644
index 0000000000000000000000000000000000000000..154cd7f92fa2913b5f537c30be09d2329e6c1fb1
GIT binary patch
literal 32768
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
XBj`U{DfCyNaY=SN8X0CgX^-GvR?em=

literal 0
HcmV?d00001

diff --git a/config.yaml b/config.yaml
index b19a1b0a3..b05a210c3 100644
--- a/config.yaml
+++ b/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # BeEF Configuration file
diff --git a/core/api.rb b/core/api.rb
index bc8fdced5..5acfe426e 100644
--- a/core/api.rb
+++ b/core/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 daf3cbb79..dab46df86 100644
--- a/core/api/extension.rb
+++ b/core/api/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 f3ca53a52..a6a09530b 100644
--- a/core/api/extensions.rb
+++ b/core/api/extensions.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/api/main/configuration.rb b/core/api/main/configuration.rb
index 5ec25b243..ed609bfa6 100644
--- a/core/api/main/configuration.rb
+++ b/core/api/main/configuration.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/api/main/migration.rb b/core/api/main/migration.rb
index 9b841ada4..f28dc9d3c 100644
--- a/core/api/main/migration.rb
+++ b/core/api/main/migration.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/api/main/network_stack/assethandler.rb b/core/api/main/network_stack/assethandler.rb
index 08f817e47..f61040ba8 100644
--- a/core/api/main/network_stack/assethandler.rb
+++ b/core/api/main/network_stack/assethandler.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/api/main/server.rb b/core/api/main/server.rb
index 787c39ea0..d4ae82ee2 100644
--- a/core/api/main/server.rb
+++ b/core/api/main/server.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/api/main/server/hook.rb b/core/api/main/server/hook.rb
index ad4c8c12b..e6c80fa4b 100644
--- a/core/api/main/server/hook.rb
+++ b/core/api/main/server/hook.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/api/module.rb b/core/api/module.rb
index a0de3429e..64649d1cc 100644
--- a/core/api/module.rb
+++ b/core/api/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/api/modules.rb b/core/api/modules.rb
index 6c3537ad3..d24ff8244 100644
--- a/core/api/modules.rb
+++ b/core/api/modules.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/bootstrap.rb b/core/bootstrap.rb
index 604bedea5..edf29a860 100644
--- a/core/bootstrap.rb
+++ b/core/bootstrap.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/core.rb b/core/core.rb
index f20d4c1f0..addaf5717 100644
--- a/core/core.rb
+++ b/core/core.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/extension.rb b/core/extension.rb
index 268a5c6d7..12eb7b820 100644
--- a/core/extension.rb
+++ b/core/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/extensions.rb b/core/extensions.rb
index f52e3affe..9cb01f423 100644
--- a/core/extensions.rb
+++ b/core/extensions.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/filters.rb b/core/filters.rb
index 7b3431bc7..a7b0be0e2 100644
--- a/core/filters.rb
+++ b/core/filters.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/filters/base.rb b/core/filters/base.rb
index 4d136c67b..edcce3d17 100644
--- a/core/filters/base.rb
+++ b/core/filters/base.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/filters/browser.rb b/core/filters/browser.rb
index fb5255ee3..109e8a8ae 100644
--- a/core/filters/browser.rb
+++ b/core/filters/browser.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/filters/command.rb b/core/filters/command.rb
index fe400cca2..14842cfd5 100644
--- a/core/filters/command.rb
+++ b/core/filters/command.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/filters/http.rb b/core/filters/http.rb
index adc8180f9..e044eab28 100644
--- a/core/filters/http.rb
+++ b/core/filters/http.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/filters/page.rb b/core/filters/page.rb
index bab74ebd3..e0d7bed8b 100644
--- a/core/filters/page.rb
+++ b/core/filters/page.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/hbmanager.rb b/core/hbmanager.rb
index 69d806665..a8732e344 100644
--- a/core/hbmanager.rb
+++ b/core/hbmanager.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/loader.rb b/core/loader.rb
index a5535c689..7ba0b62b1 100644
--- a/core/loader.rb
+++ b/core/loader.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 54198e777..9e95e8171 100644
--- a/core/logger.rb
+++ b/core/logger.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 767a359ef..45f0df2ba 100644
--- a/core/main/autorun_engine/engine.rb
+++ b/core/main/autorun_engine/engine.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/autorun_engine/parser.rb b/core/main/autorun_engine/parser.rb
index f78f47fb2..6c4ff9fcb 100644
--- a/core/main/autorun_engine/parser.rb
+++ b/core/main/autorun_engine/parser.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/autorun_engine/rule_loader.rb b/core/main/autorun_engine/rule_loader.rb
index b41773b05..e42a6082b 100644
--- a/core/main/autorun_engine/rule_loader.rb
+++ b/core/main/autorun_engine/rule_loader.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/client/are.js b/core/main/client/are.js
index d7e2c07a0..344178207 100644
--- a/core/main/client/are.js
+++ b/core/main/client/are.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 eb1338547..c7e17aa54 100644
--- a/core/main/client/beef.js
+++ b/core/main/client/beef.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7695b2a60..672ced362 100644
--- a/core/main/client/browser.js
+++ b/core/main/client/browser.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5815ca742..3b9af23a2 100644
--- a/core/main/client/browser/cookie.js
+++ b/core/main/client/browser/cookie.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 468dcc8b1..d24adf6bb 100644
--- a/core/main/client/browser/popup.js
+++ b/core/main/client/browser/popup.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 4fb1ad068..bbaee3027 100644
--- a/core/main/client/dom.js
+++ b/core/main/client/dom.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 05d3831b4..f90d6f14d 100644
--- a/core/main/client/encode/base64.js
+++ b/core/main/client/encode/base64.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 940bd646b..d04279647 100644
--- a/core/main/client/encode/json.js
+++ b/core/main/client/encode/json.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 b07a1a2e3..f1a36c225 100644
--- a/core/main/client/geolocation.js
+++ b/core/main/client/geolocation.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 cd03a7e88..f4b2c0953 100644
--- a/core/main/client/hardware.js
+++ b/core/main/client/hardware.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 175cbbfbd..3e8f0045b 100644
--- a/core/main/client/init.js
+++ b/core/main/client/init.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9de1b1478..b785b14e7 100644
--- a/core/main/client/lib/evercookie.js
+++ b/core/main/client/lib/evercookie.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ae1bca065..749d4f72b 100644
--- a/core/main/client/logger.js
+++ b/core/main/client/logger.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 6c8d61f03..efae5dbbc 100644
--- a/core/main/client/mitb.js
+++ b/core/main/client/mitb.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 eb09a950a..f9b8c239e 100644
--- a/core/main/client/net.js
+++ b/core/main/client/net.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 327cdff97..8e7836abb 100644
--- a/core/main/client/net/connection.js
+++ b/core/main/client/net/connection.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 fde1bd536..5f485bf35 100644
--- a/core/main/client/net/dns.js
+++ b/core/main/client/net/dns.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bb43d361c..20a3697f8 100644
--- a/core/main/client/net/local.js
+++ b/core/main/client/net/local.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 620ef943c..7db1544f5 100644
--- a/core/main/client/net/portscanner.js
+++ b/core/main/client/net/portscanner.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 511796d60..379d6da78 100644
--- a/core/main/client/net/requester.js
+++ b/core/main/client/net/requester.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 fb7747523..02ba9f3a3 100644
--- a/core/main/client/os.js
+++ b/core/main/client/os.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 dc9dc9c22..0b4c9712c 100644
--- a/core/main/client/session.js
+++ b/core/main/client/session.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ced1d2f44..698f15800 100644
--- a/core/main/client/timeout.js
+++ b/core/main/client/timeout.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 d0a6cde37..e43cb1a54 100644
--- a/core/main/client/updater.js
+++ b/core/main/client/updater.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 08bbcc0b6..e4c6cb1d8 100644
--- a/core/main/client/webrtc.js
+++ b/core/main/client/webrtc.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 eeb45c07b..3229cef12 100644
--- a/core/main/client/websocket.js
+++ b/core/main/client/websocket.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9e734445e..c52e4ef34 100644
--- a/core/main/command.rb
+++ b/core/main/command.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 f2dcf8f8f..26489651b 100644
--- a/core/main/configuration.rb
+++ b/core/main/configuration.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 854daecbf..15116b49f 100644
--- a/core/main/console/banners.rb
+++ b/core/main/console/banners.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/console/commandline.rb b/core/main/console/commandline.rb
index 0d4ba1c79..711bd44f0 100644
--- a/core/main/console/commandline.rb
+++ b/core/main/console/commandline.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/constants/browsers.rb b/core/main/constants/browsers.rb
index a10ec3dbc..3c1b1fd59 100644
--- a/core/main/constants/browsers.rb
+++ b/core/main/constants/browsers.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 55c7efe3a..40ff5da21 100644
--- a/core/main/constants/commandmodule.rb
+++ b/core/main/constants/commandmodule.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 c8e17cae9..b918a2b09 100644
--- a/core/main/constants/hardware.rb
+++ b/core/main/constants/hardware.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 597266614..5dabbcb06 100644
--- a/core/main/constants/os.rb
+++ b/core/main/constants/os.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 cee30c848..68e59ff38 100644
--- a/core/main/crypto.rb
+++ b/core/main/crypto.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'securerandom'
diff --git a/core/main/geoip.rb b/core/main/geoip.rb
index b3e57935c..24b1b7d25 100644
--- a/core/main/geoip.rb
+++ b/core/main/geoip.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 f87d2e368..c30464776 100644
--- a/core/main/handlers/browserdetails.rb
+++ b/core/main/handlers/browserdetails.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/handlers/commands.rb b/core/main/handlers/commands.rb
index 3c488010e..b1eeb3e5e 100644
--- a/core/main/handlers/commands.rb
+++ b/core/main/handlers/commands.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/handlers/hookedbrowsers.rb b/core/main/handlers/hookedbrowsers.rb
index d27ce84e7..daba46972 100644
--- a/core/main/handlers/hookedbrowsers.rb
+++ b/core/main/handlers/hookedbrowsers.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/handlers/modules/beefjs.rb b/core/main/handlers/modules/beefjs.rb
index 5be646cfc..486da6f96 100644
--- a/core/main/handlers/modules/beefjs.rb
+++ b/core/main/handlers/modules/beefjs.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/handlers/modules/command.rb b/core/main/handlers/modules/command.rb
index 4a7acfc39..68c33de97 100644
--- a/core/main/handlers/modules/command.rb
+++ b/core/main/handlers/modules/command.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
@@ -73,7 +73,7 @@ module BeEF
               # content = command_module.output.gsub('//
               # //
               # //   Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-              # //   Browser Exploitation Framework (BeEF) - http://beefproject.com
+              # //   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 dc27ae7c3..a0040b77b 100644
--- a/core/main/handlers/modules/legacybeefjs.rb
+++ b/core/main/handlers/modules/legacybeefjs.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/handlers/modules/multistagebeefjs.rb b/core/main/handlers/modules/multistagebeefjs.rb
index c98331f9e..7842dfb40 100644
--- a/core/main/handlers/modules/multistagebeefjs.rb
+++ b/core/main/handlers/modules/multistagebeefjs.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/logger.rb b/core/main/logger.rb
index c4b42e795..03d7c5296 100644
--- a/core/main/logger.rb
+++ b/core/main/logger.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 b6914852d..c9dd536a2 100644
--- a/core/main/migration.rb
+++ b/core/main/migration.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 7c1e83c4a..35490a726 100644
--- a/core/main/model.rb
+++ b/core/main/model.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 66e7434cc..93629c123 100644
--- a/core/main/models/browserdetails.rb
+++ b/core/main/models/browserdetails.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/models/command.rb b/core/main/models/command.rb
index 47daa15f9..92b10d001 100644
--- a/core/main/models/command.rb
+++ b/core/main/models/command.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 4751324ba..d0414800d 100644
--- a/core/main/models/commandmodule.rb
+++ b/core/main/models/commandmodule.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/models/execution.rb b/core/main/models/execution.rb
index 8a6f239c9..24b1815d3 100644
--- a/core/main/models/execution.rb
+++ b/core/main/models/execution.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 665bba7b1..1468925d3 100644
--- a/core/main/models/hookedbrowser.rb
+++ b/core/main/models/hookedbrowser.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/models/legacybrowseruseragents.rb b/core/main/models/legacybrowseruseragents.rb
index 3385b9220..6f98f73ba 100644
--- a/core/main/models/legacybrowseruseragents.rb
+++ b/core/main/models/legacybrowseruseragents.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/models/log.rb b/core/main/models/log.rb
index 8a6e45ad3..129db8aed 100644
--- a/core/main/models/log.rb
+++ b/core/main/models/log.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/models/optioncache.rb b/core/main/models/optioncache.rb
index a7ee006c2..77f994abf 100644
--- a/core/main/models/optioncache.rb
+++ b/core/main/models/optioncache.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/models/result.rb b/core/main/models/result.rb
index 54f7b103d..40cb33c31 100644
--- a/core/main/models/result.rb
+++ b/core/main/models/result.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/models/rule.rb b/core/main/models/rule.rb
index 6cf3fe202..c8378ebaa 100644
--- a/core/main/models/rule.rb
+++ b/core/main/models/rule.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 7b761d1ec..f61bbbd64 100644
--- a/core/main/network_stack/api.rb
+++ b/core/main/network_stack/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/network_stack/assethandler.rb b/core/main/network_stack/assethandler.rb
index 888ea41c4..4558e1096 100644
--- a/core/main/network_stack/assethandler.rb
+++ b/core/main/network_stack/assethandler.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/network_stack/handlers/dynamicreconstruction.rb b/core/main/network_stack/handlers/dynamicreconstruction.rb
index c94c14b2b..d8be5fbe2 100644
--- a/core/main/network_stack/handlers/dynamicreconstruction.rb
+++ b/core/main/network_stack/handlers/dynamicreconstruction.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/network_stack/handlers/raw.rb b/core/main/network_stack/handlers/raw.rb
index be81b837d..d8c08ed12 100644
--- a/core/main/network_stack/handlers/raw.rb
+++ b/core/main/network_stack/handlers/raw.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/network_stack/handlers/redirector.rb b/core/main/network_stack/handlers/redirector.rb
index d1ea8cb54..3ea07c4a4 100644
--- a/core/main/network_stack/handlers/redirector.rb
+++ b/core/main/network_stack/handlers/redirector.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/network_stack/websocket/websocket.rb b/core/main/network_stack/websocket/websocket.rb
index 5b7ff2221..cca08db22 100644
--- a/core/main/network_stack/websocket/websocket.rb
+++ b/core/main/network_stack/websocket/websocket.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/rest/api.rb b/core/main/rest/api.rb
index 74fdffca9..175e8c898 100644
--- a/core/main/rest/api.rb
+++ b/core/main/rest/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/rest/handlers/admin.rb b/core/main/rest/handlers/admin.rb
index 33ef4e946..c84c07c57 100644
--- a/core/main/rest/handlers/admin.rb
+++ b/core/main/rest/handlers/admin.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 88061940d..2b9278d93 100644
--- a/core/main/rest/handlers/autorun_engine.rb
+++ b/core/main/rest/handlers/autorun_engine.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 1eb7906c2..6c94f4b18 100644
--- a/core/main/rest/handlers/browserdetails.rb
+++ b/core/main/rest/handlers/browserdetails.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 249bdee16..a3ac60b23 100644
--- a/core/main/rest/handlers/categories.rb
+++ b/core/main/rest/handlers/categories.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 c76336b12..43bc25728 100644
--- a/core/main/rest/handlers/hookedbrowsers.rb
+++ b/core/main/rest/handlers/hookedbrowsers.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 de478a0a2..b0ea0aa8d 100644
--- a/core/main/rest/handlers/logs.rb
+++ b/core/main/rest/handlers/logs.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 24a61a5b0..8e07b7c62 100644
--- a/core/main/rest/handlers/modules.rb
+++ b/core/main/rest/handlers/modules.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 f3c6884d6..6767532da 100644
--- a/core/main/rest/handlers/server.rb
+++ b/core/main/rest/handlers/server.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 c32424dfd..390c8d9e7 100644
--- a/core/main/router/api.rb
+++ b/core/main/router/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/main/router/router.rb b/core/main/router/router.rb
index dc6880844..27387ef9e 100644
--- a/core/main/router/router.rb
+++ b/core/main/router/router.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 bba8a5c6a..791e9318c 100644
--- a/core/main/server.rb
+++ b/core/main/server.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 4a9bc013e..53c63d854 100644
--- a/core/module.rb
+++ b/core/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/modules.rb b/core/modules.rb
index f6d212140..0841b3aa5 100644
--- a/core/modules.rb
+++ b/core/modules.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/core/ruby.rb b/core/ruby.rb
index 2827a8160..9a103cd68 100644
--- a/core/ruby.rb
+++ b/core/ruby.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 50a17ccb6..1ba7b09c5 100644
--- a/core/ruby/hash.rb
+++ b/core/ruby/hash.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Hash
diff --git a/core/ruby/module.rb b/core/ruby/module.rb
index 2de1593a9..c162c1a38 100644
--- a/core/ruby/module.rb
+++ b/core/ruby/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Module
diff --git a/core/ruby/print.rb b/core/ruby/print.rb
index 4d32d49bb..4aba3727d 100644
--- a/core/ruby/print.rb
+++ b/core/ruby/print.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 29356c055..1011a0139 100644
--- a/core/ruby/security.rb
+++ b/core/ruby/security.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 c36f66c06..674b5f7fe 100644
--- a/core/ruby/string.rb
+++ b/core/ruby/string.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class String
diff --git a/core/settings.rb b/core/settings.rb
index ecce4b273..835a4e424 100644
--- a/core/settings.rb
+++ b/core/settings.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/doc/boilerplate b/doc/boilerplate
index 018e75861..9e9aadb81 100644
--- a/doc/boilerplate
+++ b/doc/boilerplate
@@ -1,3 +1,3 @@
 Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-Browser Exploitation Framework (BeEF) - http://beefproject.com
+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 b20a9d859..83e002b19 100644
--- a/docs/are.js.html
+++ b/docs/are.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bd6ce8f84..b02dc3a58 100644
--- a/docs/beef.js.html
+++ b/docs/beef.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 465c4e4ef..602472bf7 100644
--- a/docs/browser.js.html
+++ b/docs/browser.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 36560f8ec..632a63a5c 100644
--- a/docs/browser_cookie.js.html
+++ b/docs/browser_cookie.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3caf3871d..1bbcae3ad 100644
--- a/docs/browser_popup.js.html
+++ b/docs/browser_popup.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 63b2858af..dab35c08b 100644
--- a/docs/dom.js.html
+++ b/docs/dom.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 d2b2f2a8c..001e25a1a 100644
--- a/docs/encode_base64.js.html
+++ b/docs/encode_base64.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f68fd67ed..87689668f 100644
--- a/docs/encode_json.js.html
+++ b/docs/encode_json.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 8d42f10f4..555ba9774 100644
--- a/docs/geolocation.js.html
+++ b/docs/geolocation.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 69d2df1da..fb0ae5fe9 100644
--- a/docs/hardware.js.html
+++ b/docs/hardware.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 17a9263df..e6c3add80 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -45,7 +45,7 @@
     

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

Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-Browser Exploitation Framework (BeEF) - http://beefproject.com
+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 0c0c71a0a..aa28daee7 100644 --- a/docs/init.js.html +++ b/docs/init.js.html @@ -28,7 +28,7 @@
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 466216a01..60d1898e6 100644
--- a/docs/logger.js.html
+++ b/docs/logger.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 d89bd819b..4cac5acf2 100644
--- a/docs/mitb.js.html
+++ b/docs/mitb.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a9e8c5224..c5443db6d 100644
--- a/docs/net.js.html
+++ b/docs/net.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 54f4a0403..609d9422a 100644
--- a/docs/net_connection.js.html
+++ b/docs/net_connection.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 aebcdc8a3..73f86f695 100644
--- a/docs/net_dns.js.html
+++ b/docs/net_dns.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 762680087..c662585a0 100644
--- a/docs/net_local.js.html
+++ b/docs/net_local.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 d9a3e732a..fccce5494 100644
--- a/docs/net_portscanner.js.html
+++ b/docs/net_portscanner.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 893a2412f..8cb3d74fc 100644
--- a/docs/net_requester.js.html
+++ b/docs/net_requester.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0d92c22b4..19f5cb117 100644
--- a/docs/os.js.html
+++ b/docs/os.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 52730d303..eab6a9520 100644
--- a/docs/session.js.html
+++ b/docs/session.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 787ea857d..ee4511c22 100644
--- a/docs/timeout.js.html
+++ b/docs/timeout.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 59e4e5aa7..7f81a4e08 100644
--- a/docs/updater.js.html
+++ b/docs/updater.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 43e435ff3..59c291ec2 100644
--- a/docs/webrtc.js.html
+++ b/docs/webrtc.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 955223595..f8159d77e 100644
--- a/docs/websocket.js.html
+++ b/docs/websocket.js.html
@@ -28,7 +28,7 @@
         
//
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 26f503d25..374b2cd0a 100644
--- a/extensions/admin_ui/api/handler.rb
+++ b/extensions/admin_ui/api/handler.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/admin_ui/classes/httpcontroller.rb b/extensions/admin_ui/classes/httpcontroller.rb
index 7e2938f7d..2176caa6c 100644
--- a/extensions/admin_ui/classes/httpcontroller.rb
+++ b/extensions/admin_ui/classes/httpcontroller.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/admin_ui/classes/session.rb b/extensions/admin_ui/classes/session.rb
index 5c62be3d2..3278bc358 100644
--- a/extensions/admin_ui/classes/session.rb
+++ b/extensions/admin_ui/classes/session.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/admin_ui/config.yaml b/extensions/admin_ui/config.yaml
index 4e0ea5e1f..66bfb24a1 100644
--- a/extensions/admin_ui/config.yaml
+++ b/extensions/admin_ui/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/admin_ui/constants/icons.rb b/extensions/admin_ui/constants/icons.rb
index 9a5fffbbe..0c4ebcb31 100644
--- a/extensions/admin_ui/constants/icons.rb
+++ b/extensions/admin_ui/constants/icons.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/admin_ui/controllers/authentication/authentication.rb b/extensions/admin_ui/controllers/authentication/authentication.rb
index 347b0c7aa..712bad64a 100644
--- a/extensions/admin_ui/controllers/authentication/authentication.rb
+++ b/extensions/admin_ui/controllers/authentication/authentication.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/admin_ui/controllers/authentication/index.html b/extensions/admin_ui/controllers/authentication/index.html
index dd4a96c82..aeb12717f 100644
--- a/extensions/admin_ui/controllers/authentication/index.html
+++ b/extensions/admin_ui/controllers/authentication/index.html
@@ -1,6 +1,6 @@
 
 
diff --git a/extensions/admin_ui/controllers/modules/modules.rb b/extensions/admin_ui/controllers/modules/modules.rb
index cab8fb6eb..d8649a6b8 100644
--- a/extensions/admin_ui/controllers/modules/modules.rb
+++ b/extensions/admin_ui/controllers/modules/modules.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/admin_ui/controllers/panel/index.html b/extensions/admin_ui/controllers/panel/index.html
index edd1f37e2..757f7bde1 100644
--- a/extensions/admin_ui/controllers/panel/index.html
+++ b/extensions/admin_ui/controllers/panel/index.html
@@ -1,6 +1,6 @@
 
 
diff --git a/extensions/admin_ui/controllers/panel/panel.rb b/extensions/admin_ui/controllers/panel/panel.rb
index 89d2ba2ea..7fd4234b9 100644
--- a/extensions/admin_ui/controllers/panel/panel.rb
+++ b/extensions/admin_ui/controllers/panel/panel.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/admin_ui/extension.rb b/extensions/admin_ui/extension.rb
index 7a5baeebe..207d81318 100644
--- a/extensions/admin_ui/extension.rb
+++ b/extensions/admin_ui/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/admin_ui/handlers/ui.rb b/extensions/admin_ui/handlers/ui.rb
index dbacd8862..074228a12 100644
--- a/extensions/admin_ui/handlers/ui.rb
+++ b/extensions/admin_ui/handlers/ui.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 6876bc5b1..548de1d08 100644
--- a/extensions/admin_ui/media/css/base.css
+++ b/extensions/admin_ui/media/css/base.css
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 8affbda70..49b7df492 100644
--- a/extensions/admin_ui/media/css/ext-all.css
+++ b/extensions/admin_ui/media/css/ext-all.css
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 37b564554..1fe4ea807 100644
--- a/extensions/admin_ui/media/javascript/esapi/Class.create.js
+++ b/extensions/admin_ui/media/javascript/esapi/Class.create.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 1af4a7860..9c07ba09e 100644
--- a/extensions/admin_ui/media/javascript/ui/authentication.js
+++ b/extensions/admin_ui/media/javascript/ui/authentication.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 4dffd02b7..76729486e 100644
--- a/extensions/admin_ui/media/javascript/ui/common/beef_common.js
+++ b/extensions/admin_ui/media/javascript/ui/common/beef_common.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a52935193..3a191d064 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 c87afb554..6921b2379 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/HooksTab.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/HooksTab.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 331f7386d..4a7865bfe 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/Logout.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/Logout.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 68d90080e..b0daf85d7 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 74a0e4e54..bd84de36c 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/MainPanel.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/MainPanel.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 dff3eee21..16195b114 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f8f687189..02088ab50 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3669c536e..4ed4c3060 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a1b927281..bdfb55cf1 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e2ec174fb..23a69cc46 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1735828dc..dca9a37fb 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2d316f9f0..47937b7e0 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 fc6ea9ca8..750bda90e 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/common.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/common.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2865b1e39..e8243b0d8 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ab1ad786a..83f34736e 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1a5380658..be4a400a1 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0764dbf41..65098f53a 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f57742dd5..d3f1ea13a 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5144b902c..85ac9fa4a 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5a6137e26..f07ff5a3a 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2b8154204..bbdf1e0f8 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 21527fbd3..668e9a346 100644
--- a/extensions/admin_ui/media/javascript/ux/PagingStore.js
+++ b/extensions/admin_ui/media/javascript/ux/PagingStore.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9bb2231ae..73324fde5 100644
--- a/extensions/admin_ui/media/javascript/ux/StatusBar.js
+++ b/extensions/admin_ui/media/javascript/ux/StatusBar.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 c31e4728e..3f5bacc22 100644
--- a/extensions/admin_ui/media/javascript/ux/TabCloseMenu.js
+++ b/extensions/admin_ui/media/javascript/ux/TabCloseMenu.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e717227d5..d521dea44 100644
--- a/extensions/autoloader/config.yaml
+++ b/extensions/autoloader/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/autoloader/extension.rb b/extensions/autoloader/extension.rb
index 84909266b..294259f52 100644
--- a/extensions/autoloader/extension.rb
+++ b/extensions/autoloader/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/autoloader/model.rb b/extensions/autoloader/model.rb
index 98629d3a2..fb54fd0f5 100644
--- a/extensions/autoloader/model.rb
+++ b/extensions/autoloader/model.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/customhook/api.rb b/extensions/customhook/api.rb
index 0a2506fc9..07348d759 100644
--- a/extensions/customhook/api.rb
+++ b/extensions/customhook/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/customhook/config.yaml b/extensions/customhook/config.yaml
index 9412f714e..3c8665fd4 100644
--- a/extensions/customhook/config.yaml
+++ b/extensions/customhook/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/customhook/extension.rb b/extensions/customhook/extension.rb
index 1285d80a0..a522499d6 100644
--- a/extensions/customhook/extension.rb
+++ b/extensions/customhook/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/customhook/handler.rb b/extensions/customhook/handler.rb
index 8cec3a219..38fe2dc68 100644
--- a/extensions/customhook/handler.rb
+++ b/extensions/customhook/handler.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/customhook/html/index.html b/extensions/customhook/html/index.html
index 53f0c4f8e..eca421402 100644
--- a/extensions/customhook/html/index.html
+++ b/extensions/customhook/html/index.html
@@ -1,6 +1,6 @@
 
 <%
diff --git a/extensions/demos/api.rb b/extensions/demos/api.rb
index 9ea9bc46e..497c1918c 100644
--- a/extensions/demos/api.rb
+++ b/extensions/demos/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/demos/config.yaml b/extensions/demos/config.yaml
index 14fbab818..05de31cc6 100644
--- a/extensions/demos/config.yaml
+++ b/extensions/demos/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/demos/extension.rb b/extensions/demos/extension.rb
index 749334d49..973ddf257 100644
--- a/extensions/demos/extension.rb
+++ b/extensions/demos/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/demos/handler.rb b/extensions/demos/handler.rb
index 3a709ba68..8d9a1641c 100644
--- a/extensions/demos/handler.rb
+++ b/extensions/demos/handler.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/demos/html/basic.html b/extensions/demos/html/basic.html
index ff2e07e6e..404866dae 100644
--- a/extensions/demos/html/basic.html
+++ b/extensions/demos/html/basic.html
@@ -2,7 +2,7 @@
 
 
 
diff --git a/extensions/demos/html/butcher/butch.css b/extensions/demos/html/butcher/butch.css
index 61b1fc894..c8d886405 100644
--- a/extensions/demos/html/butcher/butch.css
+++ b/extensions/demos/html/butcher/butch.css
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 8138b4c47..55196829c 100644
--- a/extensions/demos/html/butcher/index.html
+++ b/extensions/demos/html/butcher/index.html
@@ -1,6 +1,6 @@
 
 
 
diff --git a/extensions/demos/html/clickjacking/clickjack_victim.html b/extensions/demos/html/clickjacking/clickjack_victim.html
index 89204db6f..980ecd5e5 100644
--- a/extensions/demos/html/clickjacking/clickjack_victim.html
+++ b/extensions/demos/html/clickjacking/clickjack_victim.html
@@ -1,6 +1,6 @@
 
 
diff --git a/extensions/demos/html/plain.html b/extensions/demos/html/plain.html
index d58b644c8..7f8bd0b32 100644
--- a/extensions/demos/html/plain.html
+++ b/extensions/demos/html/plain.html
@@ -1,6 +1,6 @@
 
 
diff --git a/extensions/demos/html/report.html b/extensions/demos/html/report.html
index c052994cb..0ec8097bb 100644
--- a/extensions/demos/html/report.html
+++ b/extensions/demos/html/report.html
@@ -1,6 +1,6 @@
 
 
diff --git a/extensions/demos/html/secret_page.html b/extensions/demos/html/secret_page.html
index 32ea5dd9a..1eb81dc5e 100644
--- a/extensions/demos/html/secret_page.html
+++ b/extensions/demos/html/secret_page.html
@@ -1,6 +1,6 @@
 
 
diff --git a/extensions/dns/api.rb b/extensions/dns/api.rb
index 2092a3a94..9722a416e 100644
--- a/extensions/dns/api.rb
+++ b/extensions/dns/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/dns/config.yaml b/extensions/dns/config.yaml
index eca4b7332..347405e7b 100644
--- a/extensions/dns/config.yaml
+++ b/extensions/dns/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/dns/dns.rb b/extensions/dns/dns.rb
index 1a5742e6b..c25574028 100644
--- a/extensions/dns/dns.rb
+++ b/extensions/dns/dns.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/dns/extension.rb b/extensions/dns/extension.rb
index 0a8ea915c..66399ce1b 100644
--- a/extensions/dns/extension.rb
+++ b/extensions/dns/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'async/dns'
diff --git a/extensions/dns/logger.rb b/extensions/dns/logger.rb
index c6c203365..794c62e7f 100644
--- a/extensions/dns/logger.rb
+++ b/extensions/dns/logger.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 9bf1383be..2f11ac5ac 100644
--- a/extensions/dns/model.rb
+++ b/extensions/dns/model.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/dns/rest/dns.rb b/extensions/dns/rest/dns.rb
index b44991565..dc4c5e4f5 100644
--- a/extensions/dns/rest/dns.rb
+++ b/extensions/dns/rest/dns.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/dns_rebinding/api.rb b/extensions/dns_rebinding/api.rb
index f1841a0cd..cf4ffb161 100644
--- a/extensions/dns_rebinding/api.rb
+++ b/extensions/dns_rebinding/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/dns_rebinding/config.yaml b/extensions/dns_rebinding/config.yaml
index ed8050724..0c753ec48 100644
--- a/extensions/dns_rebinding/config.yaml
+++ b/extensions/dns_rebinding/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/dns_rebinding/extension.rb b/extensions/dns_rebinding/extension.rb
index 482fd5195..792612f1d 100644
--- a/extensions/dns_rebinding/extension.rb
+++ b/extensions/dns_rebinding/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/etag/api.rb b/extensions/etag/api.rb
index cbd5dc96f..0830b9a5b 100644
--- a/extensions/etag/api.rb
+++ b/extensions/etag/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/etag/config.yaml b/extensions/etag/config.yaml
index 669ec8c9f..01ac7c6d2 100644
--- a/extensions/etag/config.yaml
+++ b/extensions/etag/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/etag/etag.rb b/extensions/etag/etag.rb
index 86db163c5..a88faa906 100644
--- a/extensions/etag/etag.rb
+++ b/extensions/etag/etag.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/etag/extension.rb b/extensions/etag/extension.rb
index 9ccab03ed..f275c2c50 100644
--- a/extensions/etag/extension.rb
+++ b/extensions/etag/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/evasion/config.yaml b/extensions/evasion/config.yaml
index d86946944..b8a24fc15 100644
--- a/extensions/evasion/config.yaml
+++ b/extensions/evasion/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/evasion/evasion.rb b/extensions/evasion/evasion.rb
index 5f9e0d1d1..98189cb5a 100644
--- a/extensions/evasion/evasion.rb
+++ b/extensions/evasion/evasion.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/evasion/extension.rb b/extensions/evasion/extension.rb
index a41ccdc6e..9f1a3ea6f 100644
--- a/extensions/evasion/extension.rb
+++ b/extensions/evasion/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/evasion/obfuscation/base_64.rb b/extensions/evasion/obfuscation/base_64.rb
index 104c504fa..a95bce23d 100644
--- a/extensions/evasion/obfuscation/base_64.rb
+++ b/extensions/evasion/obfuscation/base_64.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/evasion/obfuscation/minify.rb b/extensions/evasion/obfuscation/minify.rb
index 933032538..de6ffc4b0 100644
--- a/extensions/evasion/obfuscation/minify.rb
+++ b/extensions/evasion/obfuscation/minify.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/evasion/obfuscation/scramble.rb b/extensions/evasion/obfuscation/scramble.rb
index a348240d9..dd10bc4b2 100644
--- a/extensions/evasion/obfuscation/scramble.rb
+++ b/extensions/evasion/obfuscation/scramble.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/evasion/obfuscation/whitespace.rb b/extensions/evasion/obfuscation/whitespace.rb
index f02240c4d..f2836783f 100644
--- a/extensions/evasion/obfuscation/whitespace.rb
+++ b/extensions/evasion/obfuscation/whitespace.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/events/api.rb b/extensions/events/api.rb
index 6241121d0..a9180fda9 100644
--- a/extensions/events/api.rb
+++ b/extensions/events/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/events/config.yaml b/extensions/events/config.yaml
index 49e849549..98f8d9024 100644
--- a/extensions/events/config.yaml
+++ b/extensions/events/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/events/extension.rb b/extensions/events/extension.rb
index 9e15603cb..7707d64ec 100644
--- a/extensions/events/extension.rb
+++ b/extensions/events/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/events/handler.rb b/extensions/events/handler.rb
index a9882e908..2012e1c68 100644
--- a/extensions/events/handler.rb
+++ b/extensions/events/handler.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/metasploit/api.rb b/extensions/metasploit/api.rb
index d3a00e217..376bd8444 100644
--- a/extensions/metasploit/api.rb
+++ b/extensions/metasploit/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/metasploit/config.yaml b/extensions/metasploit/config.yaml
index 484697e67..7ff58bff9 100644
--- a/extensions/metasploit/config.yaml
+++ b/extensions/metasploit/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 3e0dfa36f..9d616d47b 100644
--- a/extensions/metasploit/extension.rb
+++ b/extensions/metasploit/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/metasploit/module.rb b/extensions/metasploit/module.rb
index dd40afe88..0ea03af7a 100644
--- a/extensions/metasploit/module.rb
+++ b/extensions/metasploit/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 9dc01df8f..965e10f6a 100644
--- a/extensions/metasploit/rest/msf.rb
+++ b/extensions/metasploit/rest/msf.rb
@@ -1,7 +1,7 @@
 require_relative '../../../core/main/router/router'
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/metasploit/rpcclient.rb b/extensions/metasploit/rpcclient.rb
index 49737f5f2..770c9e480 100644
--- a/extensions/metasploit/rpcclient.rb
+++ b/extensions/metasploit/rpcclient.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/network/api.rb b/extensions/network/api.rb
index 4b2a03dad..d1bbefdb3 100644
--- a/extensions/network/api.rb
+++ b/extensions/network/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/network/config.yaml b/extensions/network/config.yaml
index 50338554b..3981b7f42 100644
--- a/extensions/network/config.yaml
+++ b/extensions/network/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/network/extension.rb b/extensions/network/extension.rb
index 329f38438..640640edc 100644
--- a/extensions/network/extension.rb
+++ b/extensions/network/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/network/models/network_host.rb b/extensions/network/models/network_host.rb
index afa8207fb..5c3cf0c56 100644
--- a/extensions/network/models/network_host.rb
+++ b/extensions/network/models/network_host.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/network/models/network_service.rb b/extensions/network/models/network_service.rb
index 8cd44272f..0dc59a1a2 100644
--- a/extensions/network/models/network_service.rb
+++ b/extensions/network/models/network_service.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/network/rest/network.rb b/extensions/network/rest/network.rb
index af4b8df59..228d595b8 100644
--- a/extensions/network/rest/network.rb
+++ b/extensions/network/rest/network.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/notifications/channels/email.rb b/extensions/notifications/channels/email.rb
index cc95c6c67..5fb3134fd 100644
--- a/extensions/notifications/channels/email.rb
+++ b/extensions/notifications/channels/email.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 1bb2d152e..e5cffb03a 100644
--- a/extensions/notifications/channels/slack_workspace.rb
+++ b/extensions/notifications/channels/slack_workspace.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'slack-notifier'
diff --git a/extensions/notifications/config.yaml b/extensions/notifications/config.yaml
index b0244508f..9bf7d0ecf 100644
--- a/extensions/notifications/config.yaml
+++ b/extensions/notifications/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/notifications/extension.rb b/extensions/notifications/extension.rb
index 7436b2af2..6ac191456 100644
--- a/extensions/notifications/extension.rb
+++ b/extensions/notifications/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/notifications/notifications.rb b/extensions/notifications/notifications.rb
index e057b19ab..cf35623f2 100644
--- a/extensions/notifications/notifications.rb
+++ b/extensions/notifications/notifications.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 8e3d857a3..3f8f5e620 100644
--- a/extensions/proxy/api.rb
+++ b/extensions/proxy/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/proxy/config.yaml b/extensions/proxy/config.yaml
index 91d223c7b..1a2f58e67 100644
--- a/extensions/proxy/config.yaml
+++ b/extensions/proxy/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/proxy/extension.rb b/extensions/proxy/extension.rb
index e9903b2b7..2f20ff7de 100644
--- a/extensions/proxy/extension.rb
+++ b/extensions/proxy/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/proxy/proxy.rb b/extensions/proxy/proxy.rb
index d9fd1e1be..52bcedaeb 100644
--- a/extensions/proxy/proxy.rb
+++ b/extensions/proxy/proxy.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'openssl'
diff --git a/extensions/proxy/rest/proxy.rb b/extensions/proxy/rest/proxy.rb
index 97f60311f..0759451ad 100644
--- a/extensions/proxy/rest/proxy.rb
+++ b/extensions/proxy/rest/proxy.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/qrcode/config.yaml b/extensions/qrcode/config.yaml
index 5d943946f..c8eee7b35 100644
--- a/extensions/qrcode/config.yaml
+++ b/extensions/qrcode/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/qrcode/extension.rb b/extensions/qrcode/extension.rb
index acda415f0..51a76f5a0 100644
--- a/extensions/qrcode/extension.rb
+++ b/extensions/qrcode/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/qrcode/qrcode.rb b/extensions/qrcode/qrcode.rb
index c4066d2c2..15ebd3bf5 100644
--- a/extensions/qrcode/qrcode.rb
+++ b/extensions/qrcode/qrcode.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/requester/api.rb b/extensions/requester/api.rb
index 91c649782..3db88714c 100644
--- a/extensions/requester/api.rb
+++ b/extensions/requester/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/requester/api/hook.rb b/extensions/requester/api/hook.rb
index db859d72f..374ff1855 100644
--- a/extensions/requester/api/hook.rb
+++ b/extensions/requester/api/hook.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 
@@ -38,7 +38,7 @@ module BeEF
             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-2024Wade Alcorn - wade@bindshell.net
-              //   Browser Exploitation Framework (BeEF) - http://beefproject.com
+              //   Browser Exploitation Framework (BeEF) - https://beefproject.com
               //   See the file \'doc/COPYING\' for copying permission
               //', '')
               add_to_body output
diff --git a/extensions/requester/config.yaml b/extensions/requester/config.yaml
index 5ddb51d44..05789ba09 100644
--- a/extensions/requester/config.yaml
+++ b/extensions/requester/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/requester/extension.rb b/extensions/requester/extension.rb
index 86f0340be..3d869976f 100644
--- a/extensions/requester/extension.rb
+++ b/extensions/requester/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/requester/handler.rb b/extensions/requester/handler.rb
index 3a918da67..9f0053f06 100644
--- a/extensions/requester/handler.rb
+++ b/extensions/requester/handler.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/requester/models/http.rb b/extensions/requester/models/http.rb
index c7e0a5c5a..286a4bfb3 100644
--- a/extensions/requester/models/http.rb
+++ b/extensions/requester/models/http.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/requester/rest/requester.rb b/extensions/requester/rest/requester.rb
index 91c67b5e9..1b37f2d8b 100644
--- a/extensions/requester/rest/requester.rb
+++ b/extensions/requester/rest/requester.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/s2c_dns_tunnel/api.rb b/extensions/s2c_dns_tunnel/api.rb
index 38e990057..8c44719ac 100644
--- a/extensions/s2c_dns_tunnel/api.rb
+++ b/extensions/s2c_dns_tunnel/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/s2c_dns_tunnel/config.yaml b/extensions/s2c_dns_tunnel/config.yaml
index 6a81f87a1..ddf2e6d32 100644
--- a/extensions/s2c_dns_tunnel/config.yaml
+++ b/extensions/s2c_dns_tunnel/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/s2c_dns_tunnel/dnsd.rb b/extensions/s2c_dns_tunnel/dnsd.rb
index 81f27f537..c981e5adb 100644
--- a/extensions/s2c_dns_tunnel/dnsd.rb
+++ b/extensions/s2c_dns_tunnel/dnsd.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/s2c_dns_tunnel/extension.rb b/extensions/s2c_dns_tunnel/extension.rb
index c1aaa67ac..bfd76334e 100644
--- a/extensions/s2c_dns_tunnel/extension.rb
+++ b/extensions/s2c_dns_tunnel/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/social_engineering/config.yaml b/extensions/social_engineering/config.yaml
index 1e57ce595..3ee158597 100644
--- a/extensions/social_engineering/config.yaml
+++ b/extensions/social_engineering/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/social_engineering/extension.rb b/extensions/social_engineering/extension.rb
index b32f141b7..3ff9ba22e 100644
--- a/extensions/social_engineering/extension.rb
+++ b/extensions/social_engineering/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/social_engineering/models/interceptor.rb b/extensions/social_engineering/models/interceptor.rb
index 2ea8faade..aab71593b 100644
--- a/extensions/social_engineering/models/interceptor.rb
+++ b/extensions/social_engineering/models/interceptor.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/social_engineering/models/web_cloner.rb b/extensions/social_engineering/models/web_cloner.rb
index 782d6058e..28ac1a9dc 100644
--- a/extensions/social_engineering/models/web_cloner.rb
+++ b/extensions/social_engineering/models/web_cloner.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/social_engineering/powershell/bind_powershell.rb b/extensions/social_engineering/powershell/bind_powershell.rb
index bf7caef47..a830213d3 100644
--- a/extensions/social_engineering/powershell/bind_powershell.rb
+++ b/extensions/social_engineering/powershell/bind_powershell.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/social_engineering/rest/socialengineering.rb b/extensions/social_engineering/rest/socialengineering.rb
index 642def372..44f5d831e 100644
--- a/extensions/social_engineering/rest/socialengineering.rb
+++ b/extensions/social_engineering/rest/socialengineering.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 797f33fbb..5e5eff747 100644
--- a/extensions/social_engineering/web_cloner/interceptor.rb
+++ b/extensions/social_engineering/web_cloner/interceptor.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/social_engineering/web_cloner/web_cloner.rb b/extensions/social_engineering/web_cloner/web_cloner.rb
index 024cdecfc..5dd56d268 100644
--- a/extensions/social_engineering/web_cloner/web_cloner.rb
+++ b/extensions/social_engineering/web_cloner/web_cloner.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/webrtc/api.rb b/extensions/webrtc/api.rb
index df163c988..40ef2b1b3 100644
--- a/extensions/webrtc/api.rb
+++ b/extensions/webrtc/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/webrtc/api/hook.rb b/extensions/webrtc/api/hook.rb
index 269b57c21..9fa74ed7f 100644
--- a/extensions/webrtc/api/hook.rb
+++ b/extensions/webrtc/api/hook.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 b69e7e200..fcf44cf6a 100644
--- a/extensions/webrtc/config.yaml
+++ b/extensions/webrtc/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/webrtc/extension.rb b/extensions/webrtc/extension.rb
index 1c413bc88..dbda56729 100644
--- a/extensions/webrtc/extension.rb
+++ b/extensions/webrtc/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/webrtc/handlers.rb b/extensions/webrtc/handlers.rb
index d0d924386..16a330c49 100644
--- a/extensions/webrtc/handlers.rb
+++ b/extensions/webrtc/handlers.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/webrtc/models/rtcmanage.rb b/extensions/webrtc/models/rtcmanage.rb
index ea683838f..4ed921a64 100644
--- a/extensions/webrtc/models/rtcmanage.rb
+++ b/extensions/webrtc/models/rtcmanage.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/webrtc/models/rtcmodulestatus.rb b/extensions/webrtc/models/rtcmodulestatus.rb
index 75bd9d2b5..77da42407 100644
--- a/extensions/webrtc/models/rtcmodulestatus.rb
+++ b/extensions/webrtc/models/rtcmodulestatus.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 19266413e..a38b09a7e 100644
--- a/extensions/webrtc/models/rtcsignal.rb
+++ b/extensions/webrtc/models/rtcsignal.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/webrtc/models/rtcstatus.rb b/extensions/webrtc/models/rtcstatus.rb
index 0d6e4c8bb..12ac74472 100644
--- a/extensions/webrtc/models/rtcstatus.rb
+++ b/extensions/webrtc/models/rtcstatus.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 ca14fedf7..6ffcc8bec 100644
--- a/extensions/webrtc/rest/webrtc.rb
+++ b/extensions/webrtc/rest/webrtc.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/xssrays/api.rb b/extensions/xssrays/api.rb
index 343f3ba9e..895e42cb3 100644
--- a/extensions/xssrays/api.rb
+++ b/extensions/xssrays/api.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/xssrays/api/scan.rb b/extensions/xssrays/api/scan.rb
index cdd986b9a..fa727fbf4 100644
--- a/extensions/xssrays/api/scan.rb
+++ b/extensions/xssrays/api/scan.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
@@ -44,7 +44,7 @@ module BeEF
             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-2024Wade Alcorn - wade@bindshell.net
-              //   Browser Exploitation Framework (BeEF) - http://beefproject.com
+              //   Browser Exploitation Framework (BeEF) - https://beefproject.com
               //   See the file \'doc/COPYING\' for copying permission
               //', '')
               add_to_body xs.id, hb.session, beefurl, cross_domain, timeout
diff --git a/extensions/xssrays/config.yaml b/extensions/xssrays/config.yaml
index 1371c6138..50004205e 100644
--- a/extensions/xssrays/config.yaml
+++ b/extensions/xssrays/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/extensions/xssrays/extension.rb b/extensions/xssrays/extension.rb
index 9a7a38133..7bf16ce89 100644
--- a/extensions/xssrays/extension.rb
+++ b/extensions/xssrays/extension.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/xssrays/handler.rb b/extensions/xssrays/handler.rb
index 0a8e24580..77894d46a 100644
--- a/extensions/xssrays/handler.rb
+++ b/extensions/xssrays/handler.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/xssrays/models/xssraysdetail.rb b/extensions/xssrays/models/xssraysdetail.rb
index fa8fd2ee8..318484332 100644
--- a/extensions/xssrays/models/xssraysdetail.rb
+++ b/extensions/xssrays/models/xssraysdetail.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/xssrays/models/xssraysscan.rb b/extensions/xssrays/models/xssraysscan.rb
index af4670589..eb0ff1840 100644
--- a/extensions/xssrays/models/xssraysscan.rb
+++ b/extensions/xssrays/models/xssraysscan.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/extensions/xssrays/rest/xssrays.rb b/extensions/xssrays/rest/xssrays.rb
index d035f9a05..9d3a0a66e 100644
--- a/extensions/xssrays/rest/xssrays.rb
+++ b/extensions/xssrays/rest/xssrays.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 module BeEF
diff --git a/install b/install
index d806d902c..ddfa0bcb1 100755
--- a/install
+++ b/install
@@ -1,7 +1,7 @@
 #!/bin/bash
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 
diff --git a/modules/browser/browser_fingerprinting/command.js b/modules/browser/browser_fingerprinting/command.js
index 6a18eb2f3..e1ea3f6cc 100644
--- a/modules/browser/browser_fingerprinting/command.js
+++ b/modules/browser/browser_fingerprinting/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 91cf8fb87..e4815ed58 100644
--- a/modules/browser/browser_fingerprinting/config.yaml
+++ b/modules/browser/browser_fingerprinting/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/browser_fingerprinting/module.rb b/modules/browser/browser_fingerprinting/module.rb
index 89cf51559..d1f4de0e8 100644
--- a/modules/browser/browser_fingerprinting/module.rb
+++ b/modules/browser/browser_fingerprinting/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Uses methods described here:
diff --git a/modules/browser/detect_activex/command.js b/modules/browser/detect_activex/command.js
index 3ee11ca94..5f13cf85f 100644
--- a/modules/browser/detect_activex/command.js
+++ b/modules/browser/detect_activex/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 99d56d11c..46e318ed6 100644
--- a/modules/browser/detect_activex/config.yaml
+++ b/modules/browser/detect_activex/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_activex/module.rb b/modules/browser/detect_activex/module.rb
index 5742e21f8..b9f52818a 100644
--- a/modules/browser/detect_activex/module.rb
+++ b/modules/browser/detect_activex/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_activex < BeEF::Core::Command
diff --git a/modules/browser/detect_evernote_clipper/command.js b/modules/browser/detect_evernote_clipper/command.js
index 1dc57e5ff..0c0315576 100644
--- a/modules/browser/detect_evernote_clipper/command.js
+++ b/modules/browser/detect_evernote_clipper/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5f35c6921..9b29ffabd 100644
--- a/modules/browser/detect_evernote_clipper/config.yaml
+++ b/modules/browser/detect_evernote_clipper/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_evernote_clipper/module.rb b/modules/browser/detect_evernote_clipper/module.rb
index dc7160fad..41367e2ff 100644
--- a/modules/browser/detect_evernote_clipper/module.rb
+++ b/modules/browser/detect_evernote_clipper/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_evernote_clipper < BeEF::Core::Command
diff --git a/modules/browser/detect_extensions/command.js b/modules/browser/detect_extensions/command.js
index 68264c01b..2b40cf947 100644
--- a/modules/browser/detect_extensions/command.js
+++ b/modules/browser/detect_extensions/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 4e3b7da9b..4ae736c0f 100644
--- a/modules/browser/detect_extensions/config.yaml
+++ b/modules/browser/detect_extensions/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_extensions/module.rb b/modules/browser/detect_extensions/module.rb
index 0cd5c03e6..e7245e928 100644
--- a/modules/browser/detect_extensions/module.rb
+++ b/modules/browser/detect_extensions/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # More info:
diff --git a/modules/browser/detect_firebug/command.js b/modules/browser/detect_firebug/command.js
index d4c16537e..5eecec5e7 100644
--- a/modules/browser/detect_firebug/command.js
+++ b/modules/browser/detect_firebug/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1cf2173ba..66ec6764f 100644
--- a/modules/browser/detect_firebug/config.yaml
+++ b/modules/browser/detect_firebug/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_firebug/module.rb b/modules/browser/detect_firebug/module.rb
index eb376df3c..9d5ed4a37 100644
--- a/modules/browser/detect_firebug/module.rb
+++ b/modules/browser/detect_firebug/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_firebug < BeEF::Core::Command
diff --git a/modules/browser/detect_foxit/command.js b/modules/browser/detect_foxit/command.js
index 9bf3a25cb..46ab769fa 100644
--- a/modules/browser/detect_foxit/command.js
+++ b/modules/browser/detect_foxit/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 939daaddd..b58dbaa07 100644
--- a/modules/browser/detect_foxit/config.yaml
+++ b/modules/browser/detect_foxit/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_foxit/module.rb b/modules/browser/detect_foxit/module.rb
index 87c74c9d9..ec26459d3 100644
--- a/modules/browser/detect_foxit/module.rb
+++ b/modules/browser/detect_foxit/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_foxit < BeEF::Core::Command
diff --git a/modules/browser/detect_lastpass/command.js b/modules/browser/detect_lastpass/command.js
index 528ea6baf..407cbe286 100644
--- a/modules/browser/detect_lastpass/command.js
+++ b/modules/browser/detect_lastpass/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0083ebc08..435bd2fa1 100644
--- a/modules/browser/detect_lastpass/config.yaml
+++ b/modules/browser/detect_lastpass/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_lastpass/module.rb b/modules/browser/detect_lastpass/module.rb
index bad2c8290..eac55ec9f 100644
--- a/modules/browser/detect_lastpass/module.rb
+++ b/modules/browser/detect_lastpass/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_lastpass < BeEF::Core::Command
diff --git a/modules/browser/detect_mime_types/command.js b/modules/browser/detect_mime_types/command.js
index a6eaa1551..952e18b99 100644
--- a/modules/browser/detect_mime_types/command.js
+++ b/modules/browser/detect_mime_types/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 35cfc88d7..1349e085b 100644
--- a/modules/browser/detect_mime_types/config.yaml
+++ b/modules/browser/detect_mime_types/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_mime_types/module.rb b/modules/browser/detect_mime_types/module.rb
index 0e8d214cf..c61daa128 100644
--- a/modules/browser/detect_mime_types/module.rb
+++ b/modules/browser/detect_mime_types/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 13d2d5ebc..70ab7ee92 100644
--- a/modules/browser/detect_office/command.js
+++ b/modules/browser/detect_office/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 94b914b5f..e4d64753b 100644
--- a/modules/browser/detect_office/config.yaml
+++ b/modules/browser/detect_office/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_office/module.rb b/modules/browser/detect_office/module.rb
index cb09517b5..78e054cb0 100644
--- a/modules/browser/detect_office/module.rb
+++ b/modules/browser/detect_office/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_office < BeEF::Core::Command
diff --git a/modules/browser/detect_popup_blocker/command.js b/modules/browser/detect_popup_blocker/command.js
index 91a99c302..a96596d8a 100644
--- a/modules/browser/detect_popup_blocker/command.js
+++ b/modules/browser/detect_popup_blocker/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 fd046533b..c7ff54081 100644
--- a/modules/browser/detect_popup_blocker/config.yaml
+++ b/modules/browser/detect_popup_blocker/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_popup_blocker/module.rb b/modules/browser/detect_popup_blocker/module.rb
index ed615e055..efcb721ce 100644
--- a/modules/browser/detect_popup_blocker/module.rb
+++ b/modules/browser/detect_popup_blocker/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_popup_blocker < BeEF::Core::Command
diff --git a/modules/browser/detect_quicktime/command.js b/modules/browser/detect_quicktime/command.js
index e39b8024f..a0c02fc52 100644
--- a/modules/browser/detect_quicktime/command.js
+++ b/modules/browser/detect_quicktime/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9f9e2eee6..3ffae16be 100644
--- a/modules/browser/detect_quicktime/config.yaml
+++ b/modules/browser/detect_quicktime/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_quicktime/module.rb b/modules/browser/detect_quicktime/module.rb
index 6095a9fd9..7e76b5f76 100644
--- a/modules/browser/detect_quicktime/module.rb
+++ b/modules/browser/detect_quicktime/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_quicktime < BeEF::Core::Command
diff --git a/modules/browser/detect_realplayer/command.js b/modules/browser/detect_realplayer/command.js
index e2f37a295..85d547871 100644
--- a/modules/browser/detect_realplayer/command.js
+++ b/modules/browser/detect_realplayer/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 b31ae3ca7..af8ecd3ab 100644
--- a/modules/browser/detect_realplayer/config.yaml
+++ b/modules/browser/detect_realplayer/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_realplayer/module.rb b/modules/browser/detect_realplayer/module.rb
index 1945ea21d..5f48115a3 100644
--- a/modules/browser/detect_realplayer/module.rb
+++ b/modules/browser/detect_realplayer/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_realplayer < BeEF::Core::Command
diff --git a/modules/browser/detect_silverlight/command.js b/modules/browser/detect_silverlight/command.js
index a119ed735..1355ead3e 100644
--- a/modules/browser/detect_silverlight/command.js
+++ b/modules/browser/detect_silverlight/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 8670b081e..8bea02645 100644
--- a/modules/browser/detect_silverlight/config.yaml
+++ b/modules/browser/detect_silverlight/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_silverlight/module.rb b/modules/browser/detect_silverlight/module.rb
index ea9d0644a..3e38fc759 100644
--- a/modules/browser/detect_silverlight/module.rb
+++ b/modules/browser/detect_silverlight/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_silverlight < BeEF::Core::Command
diff --git a/modules/browser/detect_simple_adblock/command.js b/modules/browser/detect_simple_adblock/command.js
index cb42af278..20f1a9738 100644
--- a/modules/browser/detect_simple_adblock/command.js
+++ b/modules/browser/detect_simple_adblock/command.js
@@ -1,5 +1,5 @@
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3fafec457..a82373743 100644
--- a/modules/browser/detect_simple_adblock/config.yaml
+++ b/modules/browser/detect_simple_adblock/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_simple_adblock/module.rb b/modules/browser/detect_simple_adblock/module.rb
index 94e8647b6..24e70b9f5 100644
--- a/modules/browser/detect_simple_adblock/module.rb
+++ b/modules/browser/detect_simple_adblock/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_simple_adblock < BeEF::Core::Command
diff --git a/modules/browser/detect_toolbars/command.js b/modules/browser/detect_toolbars/command.js
index 5d4ff951b..c417b3bfe 100644
--- a/modules/browser/detect_toolbars/command.js
+++ b/modules/browser/detect_toolbars/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 89476367d..e8817517b 100644
--- a/modules/browser/detect_toolbars/config.yaml
+++ b/modules/browser/detect_toolbars/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_toolbars/module.rb b/modules/browser/detect_toolbars/module.rb
index 41a1b4b42..a18fee19a 100644
--- a/modules/browser/detect_toolbars/module.rb
+++ b/modules/browser/detect_toolbars/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_toolbars < BeEF::Core::Command
diff --git a/modules/browser/detect_unity/command.js b/modules/browser/detect_unity/command.js
index 2efe4dda1..0c6a35c08 100644
--- a/modules/browser/detect_unity/command.js
+++ b/modules/browser/detect_unity/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9e59aac9c..f368d5f47 100644
--- a/modules/browser/detect_unity/config.yaml
+++ b/modules/browser/detect_unity/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_unity/module.rb b/modules/browser/detect_unity/module.rb
index dc0fd28c7..f05b89bdc 100644
--- a/modules/browser/detect_unity/module.rb
+++ b/modules/browser/detect_unity/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_unity < BeEF::Core::Command
diff --git a/modules/browser/detect_unsafe_activex/command.js b/modules/browser/detect_unsafe_activex/command.js
index a5d1dfde4..99bc0da04 100644
--- a/modules/browser/detect_unsafe_activex/command.js
+++ b/modules/browser/detect_unsafe_activex/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1f76d9caf..19757e9dc 100644
--- a/modules/browser/detect_unsafe_activex/config.yaml
+++ b/modules/browser/detect_unsafe_activex/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_unsafe_activex/module.rb b/modules/browser/detect_unsafe_activex/module.rb
index 1667d04e1..c5d4ba518 100644
--- a/modules/browser/detect_unsafe_activex/module.rb
+++ b/modules/browser/detect_unsafe_activex/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_unsafe_activex < BeEF::Core::Command
diff --git a/modules/browser/detect_vlc/command.js b/modules/browser/detect_vlc/command.js
index 8a2856f11..c3cb98b76 100644
--- a/modules/browser/detect_vlc/command.js
+++ b/modules/browser/detect_vlc/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bdecbec8b..d4facb8ab 100644
--- a/modules/browser/detect_vlc/config.yaml
+++ b/modules/browser/detect_vlc/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_vlc/module.rb b/modules/browser/detect_vlc/module.rb
index 09aecf157..62326dd82 100644
--- a/modules/browser/detect_vlc/module.rb
+++ b/modules/browser/detect_vlc/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_vlc < BeEF::Core::Command
diff --git a/modules/browser/detect_wmp/command.js b/modules/browser/detect_wmp/command.js
index c23c641e0..d82e7dceb 100644
--- a/modules/browser/detect_wmp/command.js
+++ b/modules/browser/detect_wmp/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 37f3d4ca9..1c78495fa 100644
--- a/modules/browser/detect_wmp/config.yaml
+++ b/modules/browser/detect_wmp/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/detect_wmp/module.rb b/modules/browser/detect_wmp/module.rb
index 11a12768c..e446f9662 100644
--- a/modules/browser/detect_wmp/module.rb
+++ b/modules/browser/detect_wmp/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_wmp < BeEF::Core::Command
diff --git a/modules/browser/fingerprint_browser/command.js b/modules/browser/fingerprint_browser/command.js
index 96307f6a3..e295751f6 100644
--- a/modules/browser/fingerprint_browser/command.js
+++ b/modules/browser/fingerprint_browser/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e17820cc9..d7949d3e5 100644
--- a/modules/browser/fingerprint_browser/config.yaml
+++ b/modules/browser/fingerprint_browser/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/fingerprint_browser/module.rb b/modules/browser/fingerprint_browser/module.rb
index b27140664..a352f030c 100644
--- a/modules/browser/fingerprint_browser/module.rb
+++ b/modules/browser/fingerprint_browser/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 8e4fe4e8a..1d4389644 100644
--- a/modules/browser/get_visited_domains/command.js
+++ b/modules/browser/get_visited_domains/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7f66f627c..048397cee 100644
--- a/modules/browser/get_visited_domains/config.yaml
+++ b/modules/browser/get_visited_domains/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/get_visited_domains/module.rb b/modules/browser/get_visited_domains/module.rb
index 670496e1d..d8c77b184 100644
--- a/modules/browser/get_visited_domains/module.rb
+++ b/modules/browser/get_visited_domains/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 0b8483daa..07f86da34 100644
--- a/modules/browser/get_visited_urls/command.js
+++ b/modules/browser/get_visited_urls/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 b3e62b4c2..981dfaa73 100644
--- a/modules/browser/get_visited_urls/config.yaml
+++ b/modules/browser/get_visited_urls/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/get_visited_urls/module.rb b/modules/browser/get_visited_urls/module.rb
index ca23aa884..29587de59 100644
--- a/modules/browser/get_visited_urls/module.rb
+++ b/modules/browser/get_visited_urls/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_visited_urls < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/ajax_fingerprint/command.js b/modules/browser/hooked_domain/ajax_fingerprint/command.js
index 78afa5af7..f2da9523f 100644
--- a/modules/browser/hooked_domain/ajax_fingerprint/command.js
+++ b/modules/browser/hooked_domain/ajax_fingerprint/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/ajax_fingerprint/config.yaml b/modules/browser/hooked_domain/ajax_fingerprint/config.yaml
index b3ad70138..4b9276a24 100644
--- a/modules/browser/hooked_domain/ajax_fingerprint/config.yaml
+++ b/modules/browser/hooked_domain/ajax_fingerprint/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/ajax_fingerprint/module.rb b/modules/browser/hooked_domain/ajax_fingerprint/module.rb
index 3542b3f0b..21f1d5b4a 100644
--- a/modules/browser/hooked_domain/ajax_fingerprint/module.rb
+++ b/modules/browser/hooked_domain/ajax_fingerprint/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 
diff --git a/modules/browser/hooked_domain/alert_dialog/command.js b/modules/browser/hooked_domain/alert_dialog/command.js
index cd4eea313..1b3d1374b 100644
--- a/modules/browser/hooked_domain/alert_dialog/command.js
+++ b/modules/browser/hooked_domain/alert_dialog/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/alert_dialog/config.yaml b/modules/browser/hooked_domain/alert_dialog/config.yaml
index c7b8d3870..79aece585 100644
--- a/modules/browser/hooked_domain/alert_dialog/config.yaml
+++ b/modules/browser/hooked_domain/alert_dialog/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/alert_dialog/module.rb b/modules/browser/hooked_domain/alert_dialog/module.rb
index 47ba7a122..5623a6bfc 100644
--- a/modules/browser/hooked_domain/alert_dialog/module.rb
+++ b/modules/browser/hooked_domain/alert_dialog/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Alert_dialog < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/command.js b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/command.js
index bf31afbda..46cc1b21d 100644
--- a/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/command.js
+++ b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/config.yaml b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/config.yaml
index 2b85a7597..af4ede44d 100644
--- a/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/config.yaml
+++ b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/module.rb b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/module.rb
index 9b23629ed..fe38a553a 100644
--- a/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/module.rb
+++ b/modules/browser/hooked_domain/apache_tomcat_examples_cookie_disclosure/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Apache_tomcat_examples_cookie_disclosure < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/clear_console/command.js b/modules/browser/hooked_domain/clear_console/command.js
index 6b5ccbb22..d06e6d42d 100644
--- a/modules/browser/hooked_domain/clear_console/command.js
+++ b/modules/browser/hooked_domain/clear_console/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/clear_console/config.yaml b/modules/browser/hooked_domain/clear_console/config.yaml
index 255a4652f..4c0017cfc 100644
--- a/modules/browser/hooked_domain/clear_console/config.yaml
+++ b/modules/browser/hooked_domain/clear_console/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/clear_console/module.rb b/modules/browser/hooked_domain/clear_console/module.rb
index 3d71dd760..a1b535141 100644
--- a/modules/browser/hooked_domain/clear_console/module.rb
+++ b/modules/browser/hooked_domain/clear_console/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Clear_console < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/deface_web_page/command.js b/modules/browser/hooked_domain/deface_web_page/command.js
index 63581b880..695db796b 100644
--- a/modules/browser/hooked_domain/deface_web_page/command.js
+++ b/modules/browser/hooked_domain/deface_web_page/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/deface_web_page/config.yaml b/modules/browser/hooked_domain/deface_web_page/config.yaml
index 96505c81a..bfba76523 100644
--- a/modules/browser/hooked_domain/deface_web_page/config.yaml
+++ b/modules/browser/hooked_domain/deface_web_page/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/deface_web_page/module.rb b/modules/browser/hooked_domain/deface_web_page/module.rb
index a32298b13..5c3ca2301 100644
--- a/modules/browser/hooked_domain/deface_web_page/module.rb
+++ b/modules/browser/hooked_domain/deface_web_page/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Deface_web_page < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/deface_web_page_component/command.js b/modules/browser/hooked_domain/deface_web_page_component/command.js
index d8132858e..ab7b3b51d 100644
--- a/modules/browser/hooked_domain/deface_web_page_component/command.js
+++ b/modules/browser/hooked_domain/deface_web_page_component/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/deface_web_page_component/config.yaml b/modules/browser/hooked_domain/deface_web_page_component/config.yaml
index 845b29290..e0bd826c0 100644
--- a/modules/browser/hooked_domain/deface_web_page_component/config.yaml
+++ b/modules/browser/hooked_domain/deface_web_page_component/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/deface_web_page_component/module.rb b/modules/browser/hooked_domain/deface_web_page_component/module.rb
index 9d5eb9ebe..d1d3dcca1 100644
--- a/modules/browser/hooked_domain/deface_web_page_component/module.rb
+++ b/modules/browser/hooked_domain/deface_web_page_component/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Deface_web_page_component < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/disable_developer_tools/command.js b/modules/browser/hooked_domain/disable_developer_tools/command.js
index 6742f25fd..edf3c109b 100644
--- a/modules/browser/hooked_domain/disable_developer_tools/command.js
+++ b/modules/browser/hooked_domain/disable_developer_tools/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/disable_developer_tools/config.yaml b/modules/browser/hooked_domain/disable_developer_tools/config.yaml
index deb952433..b35a92a92 100644
--- a/modules/browser/hooked_domain/disable_developer_tools/config.yaml
+++ b/modules/browser/hooked_domain/disable_developer_tools/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/disable_developer_tools/module.rb b/modules/browser/hooked_domain/disable_developer_tools/module.rb
index 4e54533d0..994d8f33c 100644
--- a/modules/browser/hooked_domain/disable_developer_tools/module.rb
+++ b/modules/browser/hooked_domain/disable_developer_tools/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Disable_developer_tools < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/get_autocomplete_creds/command.js b/modules/browser/hooked_domain/get_autocomplete_creds/command.js
index 343f23ffd..32a4f63da 100644
--- a/modules/browser/hooked_domain/get_autocomplete_creds/command.js
+++ b/modules/browser/hooked_domain/get_autocomplete_creds/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/get_autocomplete_creds/config.yaml b/modules/browser/hooked_domain/get_autocomplete_creds/config.yaml
index 11f781d35..1b531808d 100644
--- a/modules/browser/hooked_domain/get_autocomplete_creds/config.yaml
+++ b/modules/browser/hooked_domain/get_autocomplete_creds/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/get_autocomplete_creds/module.rb b/modules/browser/hooked_domain/get_autocomplete_creds/module.rb
index e29bd1744..6da0c6a34 100644
--- a/modules/browser/hooked_domain/get_autocomplete_creds/module.rb
+++ b/modules/browser/hooked_domain/get_autocomplete_creds/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_autocomplete_creds < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/get_cookie/command.js b/modules/browser/hooked_domain/get_cookie/command.js
index c90008ed8..ae6419dc6 100644
--- a/modules/browser/hooked_domain/get_cookie/command.js
+++ b/modules/browser/hooked_domain/get_cookie/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 beef.execute(function() {
diff --git a/modules/browser/hooked_domain/get_cookie/config.yaml b/modules/browser/hooked_domain/get_cookie/config.yaml
index e898ab4eb..a340dd68f 100644
--- a/modules/browser/hooked_domain/get_cookie/config.yaml
+++ b/modules/browser/hooked_domain/get_cookie/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/get_cookie/module.rb b/modules/browser/hooked_domain/get_cookie/module.rb
index 1e7d67427..9e39853a5 100644
--- a/modules/browser/hooked_domain/get_cookie/module.rb
+++ b/modules/browser/hooked_domain/get_cookie/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_cookie < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/get_form_values/command.js b/modules/browser/hooked_domain/get_form_values/command.js
index 37be479e6..d24b7e0d2 100644
--- a/modules/browser/hooked_domain/get_form_values/command.js
+++ b/modules/browser/hooked_domain/get_form_values/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/get_form_values/config.yaml b/modules/browser/hooked_domain/get_form_values/config.yaml
index b64ace981..aceb8bddb 100644
--- a/modules/browser/hooked_domain/get_form_values/config.yaml
+++ b/modules/browser/hooked_domain/get_form_values/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/get_form_values/module.rb b/modules/browser/hooked_domain/get_form_values/module.rb
index 961f507ec..94888139b 100644
--- a/modules/browser/hooked_domain/get_form_values/module.rb
+++ b/modules/browser/hooked_domain/get_form_values/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_form_values < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/get_local_storage/command.js b/modules/browser/hooked_domain/get_local_storage/command.js
index 2664cafbc..4373874a5 100644
--- a/modules/browser/hooked_domain/get_local_storage/command.js
+++ b/modules/browser/hooked_domain/get_local_storage/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/get_local_storage/config.yaml b/modules/browser/hooked_domain/get_local_storage/config.yaml
index f999a1996..90ca2a994 100644
--- a/modules/browser/hooked_domain/get_local_storage/config.yaml
+++ b/modules/browser/hooked_domain/get_local_storage/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/get_local_storage/module.rb b/modules/browser/hooked_domain/get_local_storage/module.rb
index aa0828d09..d1d908037 100644
--- a/modules/browser/hooked_domain/get_local_storage/module.rb
+++ b/modules/browser/hooked_domain/get_local_storage/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_local_storage < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/get_page_html/command.js b/modules/browser/hooked_domain/get_page_html/command.js
index 5593f8363..26a7ec904 100644
--- a/modules/browser/hooked_domain/get_page_html/command.js
+++ b/modules/browser/hooked_domain/get_page_html/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/get_page_html/config.yaml b/modules/browser/hooked_domain/get_page_html/config.yaml
index a049b72c8..8e70e533a 100644
--- a/modules/browser/hooked_domain/get_page_html/config.yaml
+++ b/modules/browser/hooked_domain/get_page_html/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/get_page_html/module.rb b/modules/browser/hooked_domain/get_page_html/module.rb
index 04ba13ec1..441c3bd71 100644
--- a/modules/browser/hooked_domain/get_page_html/module.rb
+++ b/modules/browser/hooked_domain/get_page_html/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_page_html < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/get_page_html_iframe/command.js b/modules/browser/hooked_domain/get_page_html_iframe/command.js
index b2c4b051b..607f20e37 100644
--- a/modules/browser/hooked_domain/get_page_html_iframe/command.js
+++ b/modules/browser/hooked_domain/get_page_html_iframe/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/get_page_html_iframe/config.yaml b/modules/browser/hooked_domain/get_page_html_iframe/config.yaml
index 0174f1877..ce3f50937 100644
--- a/modules/browser/hooked_domain/get_page_html_iframe/config.yaml
+++ b/modules/browser/hooked_domain/get_page_html_iframe/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/get_page_html_iframe/module.rb b/modules/browser/hooked_domain/get_page_html_iframe/module.rb
index 9565df52d..ad64d1a1a 100644
--- a/modules/browser/hooked_domain/get_page_html_iframe/module.rb
+++ b/modules/browser/hooked_domain/get_page_html_iframe/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_page_html_iframe < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/get_page_links/command.js b/modules/browser/hooked_domain/get_page_links/command.js
index e56e05e49..742edca4d 100644
--- a/modules/browser/hooked_domain/get_page_links/command.js
+++ b/modules/browser/hooked_domain/get_page_links/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/get_page_links/config.yaml b/modules/browser/hooked_domain/get_page_links/config.yaml
index a9f714182..3b67373fb 100644
--- a/modules/browser/hooked_domain/get_page_links/config.yaml
+++ b/modules/browser/hooked_domain/get_page_links/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/get_page_links/module.rb b/modules/browser/hooked_domain/get_page_links/module.rb
index b9e06c2a1..31331a12f 100644
--- a/modules/browser/hooked_domain/get_page_links/module.rb
+++ b/modules/browser/hooked_domain/get_page_links/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_page_links < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/get_session_storage/command.js b/modules/browser/hooked_domain/get_session_storage/command.js
index 7a3159208..fd6523fa1 100644
--- a/modules/browser/hooked_domain/get_session_storage/command.js
+++ b/modules/browser/hooked_domain/get_session_storage/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/get_session_storage/config.yaml b/modules/browser/hooked_domain/get_session_storage/config.yaml
index 1fd522fcb..061f0817c 100644
--- a/modules/browser/hooked_domain/get_session_storage/config.yaml
+++ b/modules/browser/hooked_domain/get_session_storage/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/get_session_storage/module.rb b/modules/browser/hooked_domain/get_session_storage/module.rb
index 8161acfff..44a21b0e7 100644
--- a/modules/browser/hooked_domain/get_session_storage/module.rb
+++ b/modules/browser/hooked_domain/get_session_storage/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_session_storage < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/get_stored_credentials/command.js b/modules/browser/hooked_domain/get_stored_credentials/command.js
index bf285b030..d6a5f163a 100644
--- a/modules/browser/hooked_domain/get_stored_credentials/command.js
+++ b/modules/browser/hooked_domain/get_stored_credentials/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/get_stored_credentials/config.yaml b/modules/browser/hooked_domain/get_stored_credentials/config.yaml
index 76c9d47c0..0ac261c1e 100644
--- a/modules/browser/hooked_domain/get_stored_credentials/config.yaml
+++ b/modules/browser/hooked_domain/get_stored_credentials/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/get_stored_credentials/module.rb b/modules/browser/hooked_domain/get_stored_credentials/module.rb
index dc7f4d4db..2bdfe9b1c 100644
--- a/modules/browser/hooked_domain/get_stored_credentials/module.rb
+++ b/modules/browser/hooked_domain/get_stored_credentials/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_stored_credentials < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/link_rewrite/command.js b/modules/browser/hooked_domain/link_rewrite/command.js
index 78c034685..238d70f7b 100644
--- a/modules/browser/hooked_domain/link_rewrite/command.js
+++ b/modules/browser/hooked_domain/link_rewrite/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/link_rewrite/config.yaml b/modules/browser/hooked_domain/link_rewrite/config.yaml
index 7ae4ac92f..c2042272a 100644
--- a/modules/browser/hooked_domain/link_rewrite/config.yaml
+++ b/modules/browser/hooked_domain/link_rewrite/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/link_rewrite/module.rb b/modules/browser/hooked_domain/link_rewrite/module.rb
index bf3c2a4b5..f7f69cedb 100644
--- a/modules/browser/hooked_domain/link_rewrite/module.rb
+++ b/modules/browser/hooked_domain/link_rewrite/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Link_rewrite < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/link_rewrite_click_events/command.js b/modules/browser/hooked_domain/link_rewrite_click_events/command.js
index ed8148f56..eb188a56f 100644
--- a/modules/browser/hooked_domain/link_rewrite_click_events/command.js
+++ b/modules/browser/hooked_domain/link_rewrite_click_events/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/link_rewrite_click_events/config.yaml b/modules/browser/hooked_domain/link_rewrite_click_events/config.yaml
index 33957ef03..430b935af 100644
--- a/modules/browser/hooked_domain/link_rewrite_click_events/config.yaml
+++ b/modules/browser/hooked_domain/link_rewrite_click_events/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/link_rewrite_click_events/module.rb b/modules/browser/hooked_domain/link_rewrite_click_events/module.rb
index 3e5d5de73..582daf6a0 100644
--- a/modules/browser/hooked_domain/link_rewrite_click_events/module.rb
+++ b/modules/browser/hooked_domain/link_rewrite_click_events/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Link_rewrite_click_events < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/link_rewrite_sslstrip/command.js b/modules/browser/hooked_domain/link_rewrite_sslstrip/command.js
index 793f9ef2f..148177d4d 100644
--- a/modules/browser/hooked_domain/link_rewrite_sslstrip/command.js
+++ b/modules/browser/hooked_domain/link_rewrite_sslstrip/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/link_rewrite_sslstrip/config.yaml b/modules/browser/hooked_domain/link_rewrite_sslstrip/config.yaml
index c96bcdfbd..b9af971e7 100644
--- a/modules/browser/hooked_domain/link_rewrite_sslstrip/config.yaml
+++ b/modules/browser/hooked_domain/link_rewrite_sslstrip/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/link_rewrite_sslstrip/module.rb b/modules/browser/hooked_domain/link_rewrite_sslstrip/module.rb
index be0768774..76ea3deaa 100644
--- a/modules/browser/hooked_domain/link_rewrite_sslstrip/module.rb
+++ b/modules/browser/hooked_domain/link_rewrite_sslstrip/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Link_rewrite_sslstrip < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/link_rewrite_tel/command.js b/modules/browser/hooked_domain/link_rewrite_tel/command.js
index 470cf3589..aae0a65bf 100644
--- a/modules/browser/hooked_domain/link_rewrite_tel/command.js
+++ b/modules/browser/hooked_domain/link_rewrite_tel/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/link_rewrite_tel/config.yaml b/modules/browser/hooked_domain/link_rewrite_tel/config.yaml
index bfa837be3..2cf685941 100644
--- a/modules/browser/hooked_domain/link_rewrite_tel/config.yaml
+++ b/modules/browser/hooked_domain/link_rewrite_tel/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/link_rewrite_tel/module.rb b/modules/browser/hooked_domain/link_rewrite_tel/module.rb
index 1e663e9f9..fcae1a88b 100644
--- a/modules/browser/hooked_domain/link_rewrite_tel/module.rb
+++ b/modules/browser/hooked_domain/link_rewrite_tel/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Link_rewrite_tel < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/mobilesafari_address_spoofing/command.js b/modules/browser/hooked_domain/mobilesafari_address_spoofing/command.js
index da7b8f40f..ecd439c98 100644
--- a/modules/browser/hooked_domain/mobilesafari_address_spoofing/command.js
+++ b/modules/browser/hooked_domain/mobilesafari_address_spoofing/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/mobilesafari_address_spoofing/config.yaml b/modules/browser/hooked_domain/mobilesafari_address_spoofing/config.yaml
index b7058e1e2..3e93c51f7 100644
--- a/modules/browser/hooked_domain/mobilesafari_address_spoofing/config.yaml
+++ b/modules/browser/hooked_domain/mobilesafari_address_spoofing/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/mobilesafari_address_spoofing/module.rb b/modules/browser/hooked_domain/mobilesafari_address_spoofing/module.rb
index 687cbf1b6..ee045c149 100644
--- a/modules/browser/hooked_domain/mobilesafari_address_spoofing/module.rb
+++ b/modules/browser/hooked_domain/mobilesafari_address_spoofing/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Mobilesafari_address_spoofing < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/overflow_cookiejar/command.js b/modules/browser/hooked_domain/overflow_cookiejar/command.js
index e166e08b5..62f311abc 100644
--- a/modules/browser/hooked_domain/overflow_cookiejar/command.js
+++ b/modules/browser/hooked_domain/overflow_cookiejar/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/overflow_cookiejar/config.yaml b/modules/browser/hooked_domain/overflow_cookiejar/config.yaml
index c33528e5d..d6f620899 100644
--- a/modules/browser/hooked_domain/overflow_cookiejar/config.yaml
+++ b/modules/browser/hooked_domain/overflow_cookiejar/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/overflow_cookiejar/module.rb b/modules/browser/hooked_domain/overflow_cookiejar/module.rb
index 948aa252a..abe969dbe 100644
--- a/modules/browser/hooked_domain/overflow_cookiejar/module.rb
+++ b/modules/browser/hooked_domain/overflow_cookiejar/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Overflow_cookiejar < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/prompt_dialog/command.js b/modules/browser/hooked_domain/prompt_dialog/command.js
index 3e0c4a0f4..e9eb274c2 100644
--- a/modules/browser/hooked_domain/prompt_dialog/command.js
+++ b/modules/browser/hooked_domain/prompt_dialog/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/prompt_dialog/config.yaml b/modules/browser/hooked_domain/prompt_dialog/config.yaml
index 30aa44771..b433ec725 100644
--- a/modules/browser/hooked_domain/prompt_dialog/config.yaml
+++ b/modules/browser/hooked_domain/prompt_dialog/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/prompt_dialog/module.rb b/modules/browser/hooked_domain/prompt_dialog/module.rb
index d54783a25..b59da3af6 100644
--- a/modules/browser/hooked_domain/prompt_dialog/module.rb
+++ b/modules/browser/hooked_domain/prompt_dialog/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Prompt_dialog < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/remove_stuck_iframes/command.js b/modules/browser/hooked_domain/remove_stuck_iframes/command.js
index 343643c82..d3d30a458 100644
--- a/modules/browser/hooked_domain/remove_stuck_iframes/command.js
+++ b/modules/browser/hooked_domain/remove_stuck_iframes/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/remove_stuck_iframes/config.yaml b/modules/browser/hooked_domain/remove_stuck_iframes/config.yaml
index 44a7a42e8..4196a0326 100644
--- a/modules/browser/hooked_domain/remove_stuck_iframes/config.yaml
+++ b/modules/browser/hooked_domain/remove_stuck_iframes/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/remove_stuck_iframes/module.rb b/modules/browser/hooked_domain/remove_stuck_iframes/module.rb
index 6c313a503..c1dca4464 100644
--- a/modules/browser/hooked_domain/remove_stuck_iframes/module.rb
+++ b/modules/browser/hooked_domain/remove_stuck_iframes/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Remove_stuck_iframes < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/replace_video/command.js b/modules/browser/hooked_domain/replace_video/command.js
index fb6c2bc99..81b67dec3 100644
--- a/modules/browser/hooked_domain/replace_video/command.js
+++ b/modules/browser/hooked_domain/replace_video/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/replace_video/config.yaml b/modules/browser/hooked_domain/replace_video/config.yaml
index f7f160793..9e85c2510 100644
--- a/modules/browser/hooked_domain/replace_video/config.yaml
+++ b/modules/browser/hooked_domain/replace_video/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/replace_video/module.rb b/modules/browser/hooked_domain/replace_video/module.rb
index f9428071d..42550aeeb 100644
--- a/modules/browser/hooked_domain/replace_video/module.rb
+++ b/modules/browser/hooked_domain/replace_video/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Replace_video < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/rickroll/command.js b/modules/browser/hooked_domain/rickroll/command.js
index 618047ef4..e7843f928 100644
--- a/modules/browser/hooked_domain/rickroll/command.js
+++ b/modules/browser/hooked_domain/rickroll/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/rickroll/config.yaml b/modules/browser/hooked_domain/rickroll/config.yaml
index 023fea117..a4b7ee21c 100644
--- a/modules/browser/hooked_domain/rickroll/config.yaml
+++ b/modules/browser/hooked_domain/rickroll/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/rickroll/module.rb b/modules/browser/hooked_domain/rickroll/module.rb
index faac9f239..57f389fb2 100644
--- a/modules/browser/hooked_domain/rickroll/module.rb
+++ b/modules/browser/hooked_domain/rickroll/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Rickroll < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/site_redirect/command.js b/modules/browser/hooked_domain/site_redirect/command.js
index 97ce7e2ed..0014ef8f1 100644
--- a/modules/browser/hooked_domain/site_redirect/command.js
+++ b/modules/browser/hooked_domain/site_redirect/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/site_redirect/config.yaml b/modules/browser/hooked_domain/site_redirect/config.yaml
index fb0c98a8a..8a70d713c 100644
--- a/modules/browser/hooked_domain/site_redirect/config.yaml
+++ b/modules/browser/hooked_domain/site_redirect/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/site_redirect/module.rb b/modules/browser/hooked_domain/site_redirect/module.rb
index d1681eef9..d1c94b347 100644
--- a/modules/browser/hooked_domain/site_redirect/module.rb
+++ b/modules/browser/hooked_domain/site_redirect/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Site_redirect < BeEF::Core::Command
diff --git a/modules/browser/hooked_domain/site_redirect_iframe/command.js b/modules/browser/hooked_domain/site_redirect_iframe/command.js
index bf63c2c05..288424425 100644
--- a/modules/browser/hooked_domain/site_redirect_iframe/command.js
+++ b/modules/browser/hooked_domain/site_redirect_iframe/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/modules/browser/hooked_domain/site_redirect_iframe/config.yaml b/modules/browser/hooked_domain/site_redirect_iframe/config.yaml
index 15e763034..83466437b 100644
--- a/modules/browser/hooked_domain/site_redirect_iframe/config.yaml
+++ b/modules/browser/hooked_domain/site_redirect_iframe/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/hooked_domain/site_redirect_iframe/module.rb b/modules/browser/hooked_domain/site_redirect_iframe/module.rb
index d5887e9fd..c7f0248d5 100644
--- a/modules/browser/hooked_domain/site_redirect_iframe/module.rb
+++ b/modules/browser/hooked_domain/site_redirect_iframe/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Site_redirect_iframe < BeEF::Core::Command
diff --git a/modules/browser/play_sound/command.js b/modules/browser/play_sound/command.js
index e6ff7de19..06336944b 100644
--- a/modules/browser/play_sound/command.js
+++ b/modules/browser/play_sound/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5a20171f4..9ddea92c8 100644
--- a/modules/browser/play_sound/config.yaml
+++ b/modules/browser/play_sound/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/play_sound/module.rb b/modules/browser/play_sound/module.rb
index de9860eb5..46f1ecf8e 100644
--- a/modules/browser/play_sound/module.rb
+++ b/modules/browser/play_sound/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Play_sound < BeEF::Core::Command
diff --git a/modules/browser/remove_hook_element/command.js b/modules/browser/remove_hook_element/command.js
index 38d698435..b90627757 100644
--- a/modules/browser/remove_hook_element/command.js
+++ b/modules/browser/remove_hook_element/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 97073df8b..c7c5a10aa 100644
--- a/modules/browser/remove_hook_element/config.yaml
+++ b/modules/browser/remove_hook_element/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/remove_hook_element/module.rb b/modules/browser/remove_hook_element/module.rb
index b0fbb3d09..ce476630f 100644
--- a/modules/browser/remove_hook_element/module.rb
+++ b/modules/browser/remove_hook_element/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Remove_hook_element < BeEF::Core::Command
diff --git a/modules/browser/spyder_eye/command.js b/modules/browser/spyder_eye/command.js
index 585d8d022..1d787c24d 100644
--- a/modules/browser/spyder_eye/command.js
+++ b/modules/browser/spyder_eye/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 521c77651..b5fe434c3 100644
--- a/modules/browser/spyder_eye/config.yaml
+++ b/modules/browser/spyder_eye/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/spyder_eye/module.rb b/modules/browser/spyder_eye/module.rb
index 41ee1b86d..eb2b4fca1 100644
--- a/modules/browser/spyder_eye/module.rb
+++ b/modules/browser/spyder_eye/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Spyder_eye < BeEF::Core::Command
diff --git a/modules/browser/unhook/command.js b/modules/browser/unhook/command.js
index b5fc1d236..b9a08f5ae 100644
--- a/modules/browser/unhook/command.js
+++ b/modules/browser/unhook/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 4e3cb53da..bb17d9887 100644
--- a/modules/browser/unhook/config.yaml
+++ b/modules/browser/unhook/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/unhook/module.rb b/modules/browser/unhook/module.rb
index ca18a1f32..e4c5223cd 100644
--- a/modules/browser/unhook/module.rb
+++ b/modules/browser/unhook/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Unhook < BeEF::Core::Command
diff --git a/modules/browser/webcam_flash/command.js b/modules/browser/webcam_flash/command.js
index d9d73e267..0d5c31b6a 100644
--- a/modules/browser/webcam_flash/command.js
+++ b/modules/browser/webcam_flash/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e4d9df2c2..6fdcfb812 100644
--- a/modules/browser/webcam_flash/config.yaml
+++ b/modules/browser/webcam_flash/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/webcam_flash/module.rb b/modules/browser/webcam_flash/module.rb
index b891bc590..407bc22a3 100644
--- a/modules/browser/webcam_flash/module.rb
+++ b/modules/browser/webcam_flash/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'base64'
diff --git a/modules/browser/webcam_html5/command.js b/modules/browser/webcam_html5/command.js
index bab98aacf..de20b1833 100644
--- a/modules/browser/webcam_html5/command.js
+++ b/modules/browser/webcam_html5/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bae5ab1cb..5a26014ab 100644
--- a/modules/browser/webcam_html5/config.yaml
+++ b/modules/browser/webcam_html5/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/webcam_html5/module.rb b/modules/browser/webcam_html5/module.rb
index 4d5849bec..1f5ede17d 100644
--- a/modules/browser/webcam_html5/module.rb
+++ b/modules/browser/webcam_html5/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'base64'
diff --git a/modules/browser/webcam_permission_check/cameraCheck.as b/modules/browser/webcam_permission_check/cameraCheck.as
index aa090e6ca..cbbe8a65e 100644
--- a/modules/browser/webcam_permission_check/cameraCheck.as
+++ b/modules/browser/webcam_permission_check/cameraCheck.as
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 b53d80048..1f8f758be 100644
--- a/modules/browser/webcam_permission_check/command.js
+++ b/modules/browser/webcam_permission_check/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9f084b088..2257719ef 100644
--- a/modules/browser/webcam_permission_check/config.yaml
+++ b/modules/browser/webcam_permission_check/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/browser/webcam_permission_check/module.rb b/modules/browser/webcam_permission_check/module.rb
index db7c512b2..3ce4ca7d1 100644
--- a/modules/browser/webcam_permission_check/module.rb
+++ b/modules/browser/webcam_permission_check/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 054d65324..78e82b074 100644
--- a/modules/chrome_extensions/execute_tabs/command.js
+++ b/modules/chrome_extensions/execute_tabs/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1b3cd0598..7df5c60e4 100644
--- a/modules/chrome_extensions/execute_tabs/config.yaml
+++ b/modules/chrome_extensions/execute_tabs/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/chrome_extensions/execute_tabs/module.rb b/modules/chrome_extensions/execute_tabs/module.rb
index 1247866d3..cf6384e91 100644
--- a/modules/chrome_extensions/execute_tabs/module.rb
+++ b/modules/chrome_extensions/execute_tabs/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Execute_tabs < BeEF::Core::Command
diff --git a/modules/chrome_extensions/get_all_cookies/command.js b/modules/chrome_extensions/get_all_cookies/command.js
index dd70b756f..3d2f4acab 100755
--- a/modules/chrome_extensions/get_all_cookies/command.js
+++ b/modules/chrome_extensions/get_all_cookies/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 363d93b43..9cf83bae1 100755
--- a/modules/chrome_extensions/get_all_cookies/config.yaml
+++ b/modules/chrome_extensions/get_all_cookies/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/chrome_extensions/get_all_cookies/module.rb b/modules/chrome_extensions/get_all_cookies/module.rb
index ecc30228e..a707459ca 100755
--- a/modules/chrome_extensions/get_all_cookies/module.rb
+++ b/modules/chrome_extensions/get_all_cookies/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_all_cookies < BeEF::Core::Command
diff --git a/modules/chrome_extensions/grab_google_contacts/command.js b/modules/chrome_extensions/grab_google_contacts/command.js
index c7bf5e2e0..3209d1084 100644
--- a/modules/chrome_extensions/grab_google_contacts/command.js
+++ b/modules/chrome_extensions/grab_google_contacts/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a1f101f6f..7908692c2 100644
--- a/modules/chrome_extensions/grab_google_contacts/config.yaml
+++ b/modules/chrome_extensions/grab_google_contacts/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/chrome_extensions/grab_google_contacts/module.rb b/modules/chrome_extensions/grab_google_contacts/module.rb
index 604939282..ae4813c60 100644
--- a/modules/chrome_extensions/grab_google_contacts/module.rb
+++ b/modules/chrome_extensions/grab_google_contacts/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Grab_google_contacts < BeEF::Core::Command
diff --git a/modules/chrome_extensions/inject_beef/command.js b/modules/chrome_extensions/inject_beef/command.js
index 519610a07..6ba779084 100755
--- a/modules/chrome_extensions/inject_beef/command.js
+++ b/modules/chrome_extensions/inject_beef/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a4972daba..c9cb31573 100755
--- a/modules/chrome_extensions/inject_beef/config.yaml
+++ b/modules/chrome_extensions/inject_beef/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/chrome_extensions/inject_beef/module.rb b/modules/chrome_extensions/inject_beef/module.rb
index 9434db303..7fc4f0a20 100755
--- a/modules/chrome_extensions/inject_beef/module.rb
+++ b/modules/chrome_extensions/inject_beef/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Inject_beef < BeEF::Core::Command
diff --git a/modules/chrome_extensions/screenshot/command.js b/modules/chrome_extensions/screenshot/command.js
index 75a9d53d1..effdbd355 100755
--- a/modules/chrome_extensions/screenshot/command.js
+++ b/modules/chrome_extensions/screenshot/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3daf09ecf..22bbfea8b 100755
--- a/modules/chrome_extensions/screenshot/config.yaml
+++ b/modules/chrome_extensions/screenshot/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/chrome_extensions/screenshot/module.rb b/modules/chrome_extensions/screenshot/module.rb
index 2d0a2d076..c2ce94972 100755
--- a/modules/chrome_extensions/screenshot/module.rb
+++ b/modules/chrome_extensions/screenshot/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Screenshot < BeEF::Core::Command
diff --git a/modules/chrome_extensions/send_gvoice_sms/command.js b/modules/chrome_extensions/send_gvoice_sms/command.js
index 4d729a341..7ed239b8d 100755
--- a/modules/chrome_extensions/send_gvoice_sms/command.js
+++ b/modules/chrome_extensions/send_gvoice_sms/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 835a57f4a..1c29268be 100755
--- a/modules/chrome_extensions/send_gvoice_sms/config.yaml
+++ b/modules/chrome_extensions/send_gvoice_sms/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/chrome_extensions/send_gvoice_sms/module.rb b/modules/chrome_extensions/send_gvoice_sms/module.rb
index e1099c44b..4b637174d 100755
--- a/modules/chrome_extensions/send_gvoice_sms/module.rb
+++ b/modules/chrome_extensions/send_gvoice_sms/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Send_gvoice_sms < BeEF::Core::Command
diff --git a/modules/debug/test_beef_debug/command.js b/modules/debug/test_beef_debug/command.js
index 61e478784..4ed561958 100644
--- a/modules/debug/test_beef_debug/command.js
+++ b/modules/debug/test_beef_debug/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7f2615441..dce1c1d59 100644
--- a/modules/debug/test_beef_debug/config.yaml
+++ b/modules/debug/test_beef_debug/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/debug/test_beef_debug/module.rb b/modules/debug/test_beef_debug/module.rb
index e76a07ab5..e0f6dacc1 100644
--- a/modules/debug/test_beef_debug/module.rb
+++ b/modules/debug/test_beef_debug/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Test_beef_debug < BeEF::Core::Command
diff --git a/modules/debug/test_cors_request/command.js b/modules/debug/test_cors_request/command.js
index 643529774..fa013c772 100644
--- a/modules/debug/test_cors_request/command.js
+++ b/modules/debug/test_cors_request/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5e1b9fabc..ed6235788 100644
--- a/modules/debug/test_cors_request/config.yaml
+++ b/modules/debug/test_cors_request/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/debug/test_cors_request/module.rb b/modules/debug/test_cors_request/module.rb
index af2712eb1..196ef7a73 100644
--- a/modules/debug/test_cors_request/module.rb
+++ b/modules/debug/test_cors_request/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Test_cors_request < BeEF::Core::Command
diff --git a/modules/debug/test_dns_tunnel_client/command.js b/modules/debug/test_dns_tunnel_client/command.js
index c7ee88095..1b31fcb69 100644
--- a/modules/debug/test_dns_tunnel_client/command.js
+++ b/modules/debug/test_dns_tunnel_client/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 16fa434a4..ca9e49f83 100644
--- a/modules/debug/test_dns_tunnel_client/config.yaml
+++ b/modules/debug/test_dns_tunnel_client/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/debug/test_dns_tunnel_client/module.rb b/modules/debug/test_dns_tunnel_client/module.rb
index dfbcb90bd..9dc46a9e4 100644
--- a/modules/debug/test_dns_tunnel_client/module.rb
+++ b/modules/debug/test_dns_tunnel_client/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Test_dns_tunnel_client < BeEF::Core::Command
diff --git a/modules/debug/test_get_variable/command.js b/modules/debug/test_get_variable/command.js
index de2a62289..a2bc3dff3 100644
--- a/modules/debug/test_get_variable/command.js
+++ b/modules/debug/test_get_variable/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 6af79e1f9..c62d84dcf 100644
--- a/modules/debug/test_get_variable/config.yaml
+++ b/modules/debug/test_get_variable/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/debug/test_get_variable/module.rb b/modules/debug/test_get_variable/module.rb
index 356f693a5..7549e2cb3 100644
--- a/modules/debug/test_get_variable/module.rb
+++ b/modules/debug/test_get_variable/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Test_get_variable < BeEF::Core::Command
diff --git a/modules/debug/test_http_redirect/command.js b/modules/debug/test_http_redirect/command.js
index 004f0dd6a..8c7b92e57 100644
--- a/modules/debug/test_http_redirect/command.js
+++ b/modules/debug/test_http_redirect/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 6880cde7d..4e7cfa9d1 100644
--- a/modules/debug/test_http_redirect/config.yaml
+++ b/modules/debug/test_http_redirect/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/debug/test_http_redirect/module.rb b/modules/debug/test_http_redirect/module.rb
index c9bf5661a..d92bd9b7e 100644
--- a/modules/debug/test_http_redirect/module.rb
+++ b/modules/debug/test_http_redirect/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Test_http_redirect < BeEF::Core::Command
diff --git a/modules/debug/test_network_request/command.js b/modules/debug/test_network_request/command.js
index 6f3a76fe2..f45b4359b 100644
--- a/modules/debug/test_network_request/command.js
+++ b/modules/debug/test_network_request/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 465522064..d168fa954 100644
--- a/modules/debug/test_network_request/config.yaml
+++ b/modules/debug/test_network_request/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/debug/test_network_request/module.rb b/modules/debug/test_network_request/module.rb
index 2b5c7b834..8d375c607 100644
--- a/modules/debug/test_network_request/module.rb
+++ b/modules/debug/test_network_request/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Test_network_request < BeEF::Core::Command
diff --git a/modules/debug/test_return_ascii_chars/command.js b/modules/debug/test_return_ascii_chars/command.js
index d7fc393d8..148625c45 100644
--- a/modules/debug/test_return_ascii_chars/command.js
+++ b/modules/debug/test_return_ascii_chars/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0717a438b..dd4c8f7c8 100644
--- a/modules/debug/test_return_ascii_chars/config.yaml
+++ b/modules/debug/test_return_ascii_chars/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/debug/test_return_ascii_chars/module.rb b/modules/debug/test_return_ascii_chars/module.rb
index 465829623..f4ac716f7 100644
--- a/modules/debug/test_return_ascii_chars/module.rb
+++ b/modules/debug/test_return_ascii_chars/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Test_return_ascii_chars < BeEF::Core::Command
diff --git a/modules/debug/test_return_image/command.js b/modules/debug/test_return_image/command.js
index 27b32352c..29410075f 100644
--- a/modules/debug/test_return_image/command.js
+++ b/modules/debug/test_return_image/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 95243d902..cdd3faf64 100644
--- a/modules/debug/test_return_image/config.yaml
+++ b/modules/debug/test_return_image/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/debug/test_return_image/module.rb b/modules/debug/test_return_image/module.rb
index a070be559..4a2b689ac 100644
--- a/modules/debug/test_return_image/module.rb
+++ b/modules/debug/test_return_image/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Test_return_image < BeEF::Core::Command
diff --git a/modules/debug/test_return_long_string/command.js b/modules/debug/test_return_long_string/command.js
index d8a8bab9b..7ef3e81d7 100644
--- a/modules/debug/test_return_long_string/command.js
+++ b/modules/debug/test_return_long_string/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e9659cfb9..341156585 100644
--- a/modules/debug/test_return_long_string/config.yaml
+++ b/modules/debug/test_return_long_string/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/debug/test_return_long_string/module.rb b/modules/debug/test_return_long_string/module.rb
index 24b913319..09508d00a 100644
--- a/modules/debug/test_return_long_string/module.rb
+++ b/modules/debug/test_return_long_string/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Test_return_long_string < BeEF::Core::Command
diff --git a/modules/exploits/apache_cookie_disclosure/command.js b/modules/exploits/apache_cookie_disclosure/command.js
index e40b780f8..98fc8330e 100644
--- a/modules/exploits/apache_cookie_disclosure/command.js
+++ b/modules/exploits/apache_cookie_disclosure/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 184cdc006..81a9d0ccd 100644
--- a/modules/exploits/apache_cookie_disclosure/config.yaml
+++ b/modules/exploits/apache_cookie_disclosure/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/apache_cookie_disclosure/module.rb b/modules/exploits/apache_cookie_disclosure/module.rb
index 42d5fbed8..f582c11ed 100644
--- a/modules/exploits/apache_cookie_disclosure/module.rb
+++ b/modules/exploits/apache_cookie_disclosure/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Apache_cookies < BeEF::Core::Command
diff --git a/modules/exploits/apache_felix_remote_shell/command.js b/modules/exploits/apache_felix_remote_shell/command.js
index 6e724282e..65319f294 100644
--- a/modules/exploits/apache_felix_remote_shell/command.js
+++ b/modules/exploits/apache_felix_remote_shell/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 46d923170..a976ef2be 100644
--- a/modules/exploits/apache_felix_remote_shell/config.yaml
+++ b/modules/exploits/apache_felix_remote_shell/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/apache_felix_remote_shell/module.rb b/modules/exploits/apache_felix_remote_shell/module.rb
index 3ee701ee6..d9276b66f 100644
--- a/modules/exploits/apache_felix_remote_shell/module.rb
+++ b/modules/exploits/apache_felix_remote_shell/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Apache_felix_remote_shell < BeEF::Core::Command
diff --git a/modules/exploits/beefbind/beef_bind_shell/command.js b/modules/exploits/beefbind/beef_bind_shell/command.js
index 7c98ba7f0..76960b199 100755
--- a/modules/exploits/beefbind/beef_bind_shell/command.js
+++ b/modules/exploits/beefbind/beef_bind_shell/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 51507a5dc..3ef4f2c2d 100755
--- a/modules/exploits/beefbind/beef_bind_shell/config.yaml
+++ b/modules/exploits/beefbind/beef_bind_shell/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/beefbind/beef_bind_shell/module.rb b/modules/exploits/beefbind/beef_bind_shell/module.rb
index 35a312095..e70cde13c 100755
--- a/modules/exploits/beefbind/beef_bind_shell/module.rb
+++ b/modules/exploits/beefbind/beef_bind_shell/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Beef_bind_shell < BeEF::Core::Command
diff --git a/modules/exploits/beefbind/shellcode_sources/linux/x64/socket64.c b/modules/exploits/beefbind/shellcode_sources/linux/x64/socket64.c
index f9e63233f..09a072bdc 100755
--- a/modules/exploits/beefbind/shellcode_sources/linux/x64/socket64.c
+++ b/modules/exploits/beefbind/shellcode_sources/linux/x64/socket64.c
@@ -1,6 +1,6 @@
 /**
  Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- Browser Exploitation Framework (BeEF) - http://beefproject.com
+ Browser Exploitation Framework (BeEF) - https://beefproject.com
  See the file 'doc/COPYING' for copying permission
  
  The C-skeleton to compile and test this shellcode is used with kind permission of Vivek Ramachandran. A standalone version can be compiled with:
diff --git a/modules/exploits/beefbind/shellcode_sources/linux/x86/socket.c b/modules/exploits/beefbind/shellcode_sources/linux/x86/socket.c
index e3d82495e..46ebace49 100644
--- a/modules/exploits/beefbind/shellcode_sources/linux/x86/socket.c
+++ b/modules/exploits/beefbind/shellcode_sources/linux/x86/socket.c
@@ -1,6 +1,6 @@
 /**
  Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- Browser Exploitation Framework (BeEF) - http://beefproject.com
+ Browser Exploitation Framework (BeEF) - https://beefproject.com
  See the file 'doc/COPYING' for copying permission
  
  The C-skeleton to compile and test this shellcode is used with kind permission of Vivek Ramachandran. A standalone version can be compiled with:
diff --git a/modules/exploits/beefbind/shellcode_sources/linux/x86/stage.nasm b/modules/exploits/beefbind/shellcode_sources/linux/x86/stage.nasm
index 7ab504af1..71e743309 100644
--- a/modules/exploits/beefbind/shellcode_sources/linux/x86/stage.nasm
+++ b/modules/exploits/beefbind/shellcode_sources/linux/x86/stage.nasm
@@ -1,5 +1,5 @@
 ; Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-; Browser Exploitation Framework (BeEF) - http://beefproject.com
+; Browser Exploitation Framework (BeEF) - https://beefproject.com
 ; See the file 'doc/COPYING' for copying permission
 
 BITS 32
diff --git a/modules/exploits/beefbind/shellcode_sources/linux/x86/stager.nasm b/modules/exploits/beefbind/shellcode_sources/linux/x86/stager.nasm
index d4bbf2abc..f51fa702b 100644
--- a/modules/exploits/beefbind/shellcode_sources/linux/x86/stager.nasm
+++ b/modules/exploits/beefbind/shellcode_sources/linux/x86/stager.nasm
@@ -1,5 +1,5 @@
 ; Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-; Browser Exploitation Framework (BeEF) - http://beefproject.com
+; Browser Exploitation Framework (BeEF) - https://beefproject.com
 ; See the file 'doc/COPYING' for copying permission
 
 BITS 32
diff --git a/modules/exploits/beefbind/shellcode_sources/windows/socket.c b/modules/exploits/beefbind/shellcode_sources/windows/socket.c
index d0cf7ec1a..2cf9fb0fd 100644
--- a/modules/exploits/beefbind/shellcode_sources/windows/socket.c
+++ b/modules/exploits/beefbind/shellcode_sources/windows/socket.c
@@ -1,6 +1,6 @@
 /**
  Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- Browser Exploitation Framework (BeEF) - http://beefproject.com
+ Browser Exploitation Framework (BeEF) - https://beefproject.com
  See the file 'doc/COPYING' for copying permission
 
 A standalone version can be compiled with MinGW:
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 0578a71d7..973b3d542 100644
--- a/modules/exploits/boastmachine_3_1_add_user_csrf/command.js
+++ b/modules/exploits/boastmachine_3_1_add_user_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 98188512b..ee9856300 100644
--- a/modules/exploits/boastmachine_3_1_add_user_csrf/config.yaml
+++ b/modules/exploits/boastmachine_3_1_add_user_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 f408975c9..e69e4aabb 100644
--- a/modules/exploits/boastmachine_3_1_add_user_csrf/module.rb
+++ b/modules/exploits/boastmachine_3_1_add_user_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Boastmachine_add_user_csrf < BeEF::Core::Command
diff --git a/modules/exploits/camera/airlive_ip_camera_csrf/command.js b/modules/exploits/camera/airlive_ip_camera_csrf/command.js
index b00264536..aa6abc35e 100644
--- a/modules/exploits/camera/airlive_ip_camera_csrf/command.js
+++ b/modules/exploits/camera/airlive_ip_camera_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 30943d5d8..3a3872b03 100644
--- a/modules/exploits/camera/airlive_ip_camera_csrf/config.yaml
+++ b/modules/exploits/camera/airlive_ip_camera_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # For more information see:
diff --git a/modules/exploits/camera/airlive_ip_camera_csrf/module.rb b/modules/exploits/camera/airlive_ip_camera_csrf/module.rb
index 2218b79b6..84ada00ab 100644
--- a/modules/exploits/camera/airlive_ip_camera_csrf/module.rb
+++ b/modules/exploits/camera/airlive_ip_camera_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Airlive_add_user_csrf < BeEF::Core::Command
diff --git a/modules/exploits/camera/dlink_dcs_series_csrf/command.js b/modules/exploits/camera/dlink_dcs_series_csrf/command.js
index a2bbd34ad..0a1a57d60 100644
--- a/modules/exploits/camera/dlink_dcs_series_csrf/command.js
+++ b/modules/exploits/camera/dlink_dcs_series_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 d4ec48f92..b4cf4f790 100644
--- a/modules/exploits/camera/dlink_dcs_series_csrf/config.yaml
+++ b/modules/exploits/camera/dlink_dcs_series_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # More info: http://www.exploit-db.com/exploits/18509/
diff --git a/modules/exploits/camera/dlink_dcs_series_csrf/module.rb b/modules/exploits/camera/dlink_dcs_series_csrf/module.rb
index 0123e410f..80db2d01d 100644
--- a/modules/exploits/camera/dlink_dcs_series_csrf/module.rb
+++ b/modules/exploits/camera/dlink_dcs_series_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dcs_series_csrf < BeEF::Core::Command
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 082044e52..c50b30f11 100644
--- a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js
+++ b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7b1721da9..6c0a2584b 100644
--- a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/config.yaml
+++ b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 65762acf3..bd03335ad 100644
--- a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb
+++ b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Linksys_wvc_wireless_camera_csrf < BeEF::Core::Command
diff --git a/modules/exploits/coldfusion_dir_traversal_exploit/command.js b/modules/exploits/coldfusion_dir_traversal_exploit/command.js
index 2199fd42f..02d34c00d 100644
--- a/modules/exploits/coldfusion_dir_traversal_exploit/command.js
+++ b/modules/exploits/coldfusion_dir_traversal_exploit/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 200a327b1..e6b86b288 100644
--- a/modules/exploits/coldfusion_dir_traversal_exploit/config.yaml
+++ b/modules/exploits/coldfusion_dir_traversal_exploit/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/coldfusion_dir_traversal_exploit/module.rb b/modules/exploits/coldfusion_dir_traversal_exploit/module.rb
index 31317df60..f020adea6 100644
--- a/modules/exploits/coldfusion_dir_traversal_exploit/module.rb
+++ b/modules/exploits/coldfusion_dir_traversal_exploit/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Coldfusion_dir_traversal_exploit < BeEF::Core::Command
diff --git a/modules/exploits/extract_cmd_exec/command.js b/modules/exploits/extract_cmd_exec/command.js
index 81c1ead39..33f1d1473 100644
--- a/modules/exploits/extract_cmd_exec/command.js
+++ b/modules/exploits/extract_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 d720167cd..c7e09734a 100644
--- a/modules/exploits/extract_cmd_exec/config.yaml
+++ b/modules/exploits/extract_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/extract_cmd_exec/module.rb b/modules/exploits/extract_cmd_exec/module.rb
index 91fa53b2b..44909b047 100644
--- a/modules/exploits/extract_cmd_exec/module.rb
+++ b/modules/exploits/extract_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 ###
 # Reference: http://itsecuritysolutions.org/2011-12-16-Privilege-escalation-and-remote-inter-protocol-exploitation-with-EXTRACT-0.5.1/
diff --git a/modules/exploits/firephp/command.js b/modules/exploits/firephp/command.js
index 44c34ff6e..659574dfa 100644
--- a/modules/exploits/firephp/command.js
+++ b/modules/exploits/firephp/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 578b75bad..24aaafbd9 100644
--- a/modules/exploits/firephp/config.yaml
+++ b/modules/exploits/firephp/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 b2ce1587b..1cb0435cb 100644
--- a/modules/exploits/firephp/module.rb
+++ b/modules/exploits/firephp/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 ###
 # PoC by Wireghoul: http://www.justanotherhacker.com/advisories/jahx132.html
diff --git a/modules/exploits/glassfish_war_upload_xsrf/command.js b/modules/exploits/glassfish_war_upload_xsrf/command.js
index b0b143cca..2bc4bc6b2 100644
--- a/modules/exploits/glassfish_war_upload_xsrf/command.js
+++ b/modules/exploits/glassfish_war_upload_xsrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2104e3358..b8ba42d72 100644
--- a/modules/exploits/glassfish_war_upload_xsrf/config.yaml
+++ b/modules/exploits/glassfish_war_upload_xsrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/glassfish_war_upload_xsrf/module.rb b/modules/exploits/glassfish_war_upload_xsrf/module.rb
index deb3b3331..187504fec 100644
--- a/modules/exploits/glassfish_war_upload_xsrf/module.rb
+++ b/modules/exploits/glassfish_war_upload_xsrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Glassfish_war_upload_xsrf < BeEF::Core::Command
diff --git a/modules/exploits/groovyshell_server_cmd_exec/command.js b/modules/exploits/groovyshell_server_cmd_exec/command.js
index 5abf4786d..de635f84b 100644
--- a/modules/exploits/groovyshell_server_cmd_exec/command.js
+++ b/modules/exploits/groovyshell_server_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 d824b3708..2b1805da1 100644
--- a/modules/exploits/groovyshell_server_cmd_exec/config.yaml
+++ b/modules/exploits/groovyshell_server_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/groovyshell_server_cmd_exec/module.rb b/modules/exploits/groovyshell_server_cmd_exec/module.rb
index 89a301d6a..51d39273c 100644
--- a/modules/exploits/groovyshell_server_cmd_exec/module.rb
+++ b/modules/exploits/groovyshell_server_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Groovyshell_server_command_execution < BeEF::Core::Command
diff --git a/modules/exploits/hp_ucmdb_add_user_csrf/command.js b/modules/exploits/hp_ucmdb_add_user_csrf/command.js
index 59e93e742..9190489f0 100644
--- a/modules/exploits/hp_ucmdb_add_user_csrf/command.js
+++ b/modules/exploits/hp_ucmdb_add_user_csrf/command.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 6460e5b51..54a0eb0a7 100644
--- a/modules/exploits/hp_ucmdb_add_user_csrf/config.yaml
+++ b/modules/exploits/hp_ucmdb_add_user_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/hp_ucmdb_add_user_csrf/module.rb b/modules/exploits/hp_ucmdb_add_user_csrf/module.rb
index ee2527701..de58a3708 100644
--- a/modules/exploits/hp_ucmdb_add_user_csrf/module.rb
+++ b/modules/exploits/hp_ucmdb_add_user_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 f9465f43d..0a70a7597 100644
--- a/modules/exploits/jboss_jmx_upload_exploit/command.js
+++ b/modules/exploits/jboss_jmx_upload_exploit/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3849c3293..8d286fd30 100644
--- a/modules/exploits/jboss_jmx_upload_exploit/config.yaml
+++ b/modules/exploits/jboss_jmx_upload_exploit/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/jboss_jmx_upload_exploit/module.rb b/modules/exploits/jboss_jmx_upload_exploit/module.rb
index 6040f1c4b..39c10e478 100644
--- a/modules/exploits/jboss_jmx_upload_exploit/module.rb
+++ b/modules/exploits/jboss_jmx_upload_exploit/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Jboss_jmx_upload_exploit < BeEF::Core::Command
diff --git a/modules/exploits/jenkins_groovy_code_exec/command.js b/modules/exploits/jenkins_groovy_code_exec/command.js
index 0e482aa59..3ab3cb64e 100644
--- a/modules/exploits/jenkins_groovy_code_exec/command.js
+++ b/modules/exploits/jenkins_groovy_code_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 637e911e7..d528cfc65 100644
--- a/modules/exploits/jenkins_groovy_code_exec/config.yaml
+++ b/modules/exploits/jenkins_groovy_code_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/jenkins_groovy_code_exec/module.rb b/modules/exploits/jenkins_groovy_code_exec/module.rb
index 768af687c..109431476 100644
--- a/modules/exploits/jenkins_groovy_code_exec/module.rb
+++ b/modules/exploits/jenkins_groovy_code_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Jenkins_groovy_code_exec < BeEF::Core::Command
diff --git a/modules/exploits/kemp_command_execution/command.js b/modules/exploits/kemp_command_execution/command.js
index c676fda4a..5dc1f7f59 100644
--- a/modules/exploits/kemp_command_execution/command.js
+++ b/modules/exploits/kemp_command_execution/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 74761a36a..03c6da3db 100644
--- a/modules/exploits/kemp_command_execution/config.yaml
+++ b/modules/exploits/kemp_command_execution/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/kemp_command_execution/module.rb b/modules/exploits/kemp_command_execution/module.rb
index e0381b0c5..f9bf2d76e 100644
--- a/modules/exploits/kemp_command_execution/module.rb
+++ b/modules/exploits/kemp_command_execution/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Kemp_command_execution < BeEF::Core::Command
diff --git a/modules/exploits/local_host/activex_command_execution/command.js b/modules/exploits/local_host/activex_command_execution/command.js
index 1517bcab4..0654d0274 100755
--- a/modules/exploits/local_host/activex_command_execution/command.js
+++ b/modules/exploits/local_host/activex_command_execution/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 21b55f8d5..b55f51230 100755
--- a/modules/exploits/local_host/activex_command_execution/config.yaml
+++ b/modules/exploits/local_host/activex_command_execution/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/local_host/activex_command_execution/module.rb b/modules/exploits/local_host/activex_command_execution/module.rb
index 1939c4bcf..403d9695b 100755
--- a/modules/exploits/local_host/activex_command_execution/module.rb
+++ b/modules/exploits/local_host/activex_command_execution/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Activex_command_execution < BeEF::Core::Command
diff --git a/modules/exploits/local_host/java_payload/command.js b/modules/exploits/local_host/java_payload/command.js
index c73c25a00..3a66fb9a6 100755
--- a/modules/exploits/local_host/java_payload/command.js
+++ b/modules/exploits/local_host/java_payload/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2d3400111..f704f6da0 100755
--- a/modules/exploits/local_host/java_payload/config.yaml
+++ b/modules/exploits/local_host/java_payload/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/local_host/java_payload/module.rb b/modules/exploits/local_host/java_payload/module.rb
index 0ce5deded..452fd5744 100755
--- a/modules/exploits/local_host/java_payload/module.rb
+++ b/modules/exploits/local_host/java_payload/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Java_payload < BeEF::Core::Command
diff --git a/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js b/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js
index 149a35185..934fd3459 100644
--- a/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js
+++ b/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 90300cca3..43b10828b 100644
--- a/modules/exploits/local_host/mozilla_nsiprocess_interface/config.yaml
+++ b/modules/exploits/local_host/mozilla_nsiprocess_interface/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb b/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb
index 12b88a89e..28d649427 100644
--- a/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb
+++ b/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # This module is a port of the same module from BeEF-0.4.0.0
diff --git a/modules/exploits/local_host/safari_launch_app/command.js b/modules/exploits/local_host/safari_launch_app/command.js
index 7d17da305..83a9576da 100755
--- a/modules/exploits/local_host/safari_launch_app/command.js
+++ b/modules/exploits/local_host/safari_launch_app/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 61983c29c..a8abc477f 100755
--- a/modules/exploits/local_host/safari_launch_app/config.yaml
+++ b/modules/exploits/local_host/safari_launch_app/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/local_host/safari_launch_app/module.rb b/modules/exploits/local_host/safari_launch_app/module.rb
index 9e98368b7..61ade0d9a 100755
--- a/modules/exploits/local_host/safari_launch_app/module.rb
+++ b/modules/exploits/local_host/safari_launch_app/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Safari_launch_app < BeEF::Core::Command
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 72e0a1032..d42aa8215 100755
--- a/modules/exploits/local_host/signed_applet_dropper/applet/SM.java
+++ b/modules/exploits/local_host/signed_applet_dropper/applet/SM.java
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 7c6c35aa2..78a2308d7 100755
--- a/modules/exploits/local_host/signed_applet_dropper/applet/SignedApplet.java
+++ b/modules/exploits/local_host/signed_applet_dropper/applet/SignedApplet.java
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 1a751de27..b291e6ba5 100755
--- a/modules/exploits/local_host/signed_applet_dropper/command.js
+++ b/modules/exploits/local_host/signed_applet_dropper/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a44642655..e0f24b2dd 100755
--- a/modules/exploits/local_host/signed_applet_dropper/config.yaml
+++ b/modules/exploits/local_host/signed_applet_dropper/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/local_host/signed_applet_dropper/module.rb b/modules/exploits/local_host/signed_applet_dropper/module.rb
index 7c02aa61a..848550bad 100755
--- a/modules/exploits/local_host/signed_applet_dropper/module.rb
+++ b/modules/exploits/local_host/signed_applet_dropper/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Signed_applet_dropper < BeEF::Core::Command
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 0394261d4..0fe317742 100644
--- a/modules/exploits/local_host/window_mail_client_dos/command.js
+++ b/modules/exploits/local_host/window_mail_client_dos/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 b8634bbbb..929cf4df5 100644
--- a/modules/exploits/local_host/window_mail_client_dos/config.yaml
+++ b/modules/exploits/local_host/window_mail_client_dos/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 afdd6992e..cc9168e2d 100644
--- a/modules/exploits/local_host/window_mail_client_dos/module.rb
+++ b/modules/exploits/local_host/window_mail_client_dos/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Windows_mail_client_dos < BeEF::Core::Command
diff --git a/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js b/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js
index b0de705ee..5d5c4aa1a 100644
--- a/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js
+++ b/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 462d91511..c9e0aa0be 100644
--- a/modules/exploits/nas/dlink_sharecenter_cmd_exec/config.yaml
+++ b/modules/exploits/nas/dlink_sharecenter_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb b/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb
index 85f531854..f97e8e4d8 100644
--- a/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb
+++ b/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 ###
 # This module has not been tested. For more information see:
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 82ffdd809..a78636fa4 100644
--- a/modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js
+++ b/modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 708ae5e95..0f45c0197 100644
--- a/modules/exploits/nas/freenas_reverse_root_shell_csrf/config.yaml
+++ b/modules/exploits/nas/freenas_reverse_root_shell_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 0279b5200..42c44c5a5 100644
--- a/modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb
+++ b/modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 0a528f390..9003e3806 100644
--- a/modules/exploits/ntfscommoncreate_dos/command.js
+++ b/modules/exploits/ntfscommoncreate_dos/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 4fc7b5f2a..e0fe4fc14 100644
--- a/modules/exploits/ntfscommoncreate_dos/config.yaml
+++ b/modules/exploits/ntfscommoncreate_dos/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/ntfscommoncreate_dos/module.rb b/modules/exploits/ntfscommoncreate_dos/module.rb
index 89aafd541..0bc7f195f 100644
--- a/modules/exploits/ntfscommoncreate_dos/module.rb
+++ b/modules/exploits/ntfscommoncreate_dos/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Ntfscommoncreate_dos < BeEF::Core::Command
diff --git a/modules/exploits/opencart_reset_password/command.js b/modules/exploits/opencart_reset_password/command.js
index 16954e2c7..655d5a74f 100644
--- a/modules/exploits/opencart_reset_password/command.js
+++ b/modules/exploits/opencart_reset_password/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a69041563..5ed16c16c 100644
--- a/modules/exploits/opencart_reset_password/config.yaml
+++ b/modules/exploits/opencart_reset_password/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/opencart_reset_password/module.rb b/modules/exploits/opencart_reset_password/module.rb
index b616dabd5..3353321c5 100644
--- a/modules/exploits/opencart_reset_password/module.rb
+++ b/modules/exploits/opencart_reset_password/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # This module has not been tested
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 22df2f127..682922419 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,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bfda7142b..091c098b7 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 a4a048202..ee6c2ac98 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Pfsense_2_3_2_reverse_root_shell_csrf < BeEF::Core::Command
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 e06cf1e67..3be684b13 100644
--- a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js
+++ b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 367997fd2..7d68a98f6 100644
--- a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/config.yaml
+++ b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 609061472..18aef0b37 100644
--- a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb
+++ b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Pfsense_reverse_root_shell_csrf < BeEF::Core::Command
diff --git a/modules/exploits/php-5.3.9-dos/command.js b/modules/exploits/php-5.3.9-dos/command.js
index 6b4b1bc4f..a0533532f 100644
--- a/modules/exploits/php-5.3.9-dos/command.js
+++ b/modules/exploits/php-5.3.9-dos/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a6b2a6c3b..29d178ebb 100644
--- a/modules/exploits/php-5.3.9-dos/config.yaml
+++ b/modules/exploits/php-5.3.9-dos/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/php-5.3.9-dos/module.rb b/modules/exploits/php-5.3.9-dos/module.rb
index af6d8cdff..9959a598b 100644
--- a/modules/exploits/php-5.3.9-dos/module.rb
+++ b/modules/exploits/php-5.3.9-dos/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Php_dos < BeEF::Core::Command
diff --git a/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js b/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js
index 63edccd7d..ddc57b67d 100644
--- a/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js
+++ b/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5e9a6edc2..11bc95a22 100644
--- a/modules/exploits/qemu_monitor_migrate_cmd_exec/config.yaml
+++ b/modules/exploits/qemu_monitor_migrate_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb b/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb
index fd1242dae..927d52f15 100644
--- a/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb
+++ b/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Qemu_monitor_migrate_cmd_exec < BeEF::Core::Command
diff --git a/modules/exploits/qnx_qconn_command_execution/command.js b/modules/exploits/qnx_qconn_command_execution/command.js
index 51390fe4b..327a216e8 100644
--- a/modules/exploits/qnx_qconn_command_execution/command.js
+++ b/modules/exploits/qnx_qconn_command_execution/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 de9c92bfc..1458dc29d 100644
--- a/modules/exploits/qnx_qconn_command_execution/config.yaml
+++ b/modules/exploits/qnx_qconn_command_execution/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/qnx_qconn_command_execution/module.rb b/modules/exploits/qnx_qconn_command_execution/module.rb
index 207ed71ed..a3e0c745e 100644
--- a/modules/exploits/qnx_qconn_command_execution/module.rb
+++ b/modules/exploits/qnx_qconn_command_execution/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Qnx_qconn_command_execution < BeEF::Core::Command
diff --git a/modules/exploits/resource_exhaustion_dos/command.js b/modules/exploits/resource_exhaustion_dos/command.js
index cced907f7..16faa1c75 100644
--- a/modules/exploits/resource_exhaustion_dos/command.js
+++ b/modules/exploits/resource_exhaustion_dos/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 91f383f6b..9ad5a6802 100644
--- a/modules/exploits/resource_exhaustion_dos/config.yaml
+++ b/modules/exploits/resource_exhaustion_dos/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/resource_exhaustion_dos/module.rb b/modules/exploits/resource_exhaustion_dos/module.rb
index f78c8bf42..ec66b1884 100644
--- a/modules/exploits/resource_exhaustion_dos/module.rb
+++ b/modules/exploits/resource_exhaustion_dos/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Resource_exhaustion_dos < BeEF::Core::Command
diff --git a/modules/exploits/rfi_scanner/command.js b/modules/exploits/rfi_scanner/command.js
index 4bd0c610c..ad7be82a8 100644
--- a/modules/exploits/rfi_scanner/command.js
+++ b/modules/exploits/rfi_scanner/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 08f6e0dcf..ec5c5e8ad 100644
--- a/modules/exploits/rfi_scanner/config.yaml
+++ b/modules/exploits/rfi_scanner/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/rfi_scanner/module.rb b/modules/exploits/rfi_scanner/module.rb
index 2359b4920..744a2da51 100644
--- a/modules/exploits/rfi_scanner/module.rb
+++ b/modules/exploits/rfi_scanner/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Rfi_scanner < BeEF::Core::Command
diff --git a/modules/exploits/router/3com_officeconnect_cmd_exec/command.js b/modules/exploits/router/3com_officeconnect_cmd_exec/command.js
index 8db084e2a..98a93dc8a 100644
--- a/modules/exploits/router/3com_officeconnect_cmd_exec/command.js
+++ b/modules/exploits/router/3com_officeconnect_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bbde702a6..747615d52 100644
--- a/modules/exploits/router/3com_officeconnect_cmd_exec/config.yaml
+++ b/modules/exploits/router/3com_officeconnect_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb b/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
index 790ad180f..2e3cea502 100644
--- a/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
+++ b/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Com_officeconnect_cmd_exec < BeEF::Core::Command
diff --git a/modules/exploits/router/actiontec_q1000_csrf/command.js b/modules/exploits/router/actiontec_q1000_csrf/command.js
index 1276cc9df..56ffdc9d7 100644
--- a/modules/exploits/router/actiontec_q1000_csrf/command.js
+++ b/modules/exploits/router/actiontec_q1000_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ed6367a93..c18c869a8 100644
--- a/modules/exploits/router/actiontec_q1000_csrf/config.yaml
+++ b/modules/exploits/router/actiontec_q1000_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/actiontec_q1000_csrf/module.rb b/modules/exploits/router/actiontec_q1000_csrf/module.rb
index 5b5033532..85cb98263 100644
--- a/modules/exploits/router/actiontec_q1000_csrf/module.rb
+++ b/modules/exploits/router/actiontec_q1000_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Actiontec_q1000_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/argw4_adsl_dns_hijack/command.js b/modules/exploits/router/argw4_adsl_dns_hijack/command.js
index 0b42d9d64..676d64936 100644
--- a/modules/exploits/router/argw4_adsl_dns_hijack/command.js
+++ b/modules/exploits/router/argw4_adsl_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1fe09a071..1df1fd32e 100644
--- a/modules/exploits/router/argw4_adsl_dns_hijack/config.yaml
+++ b/modules/exploits/router/argw4_adsl_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/argw4_adsl_dns_hijack/module.rb b/modules/exploits/router/argw4_adsl_dns_hijack/module.rb
index d8df739e6..e2d49536b 100644
--- a/modules/exploits/router/argw4_adsl_dns_hijack/module.rb
+++ b/modules/exploits/router/argw4_adsl_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Argw4_adsl_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js b/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
index ddd2bba86..dfe8c94cb 100644
--- a/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
+++ b/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 895f04fe0..ab82793ec 100644
--- a/modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml
+++ b/modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb b/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
index 67500bec2..c4f1368cb 100644
--- a/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
+++ b/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Asmax_ar804gu_cmd_exec < BeEF::Core::Command
diff --git a/modules/exploits/router/asus_dslx11_dns_hijack/command.js b/modules/exploits/router/asus_dslx11_dns_hijack/command.js
index d3f1f5404..91adb8a20 100644
--- a/modules/exploits/router/asus_dslx11_dns_hijack/command.js
+++ b/modules/exploits/router/asus_dslx11_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1a3deb5c3..db1db65b0 100644
--- a/modules/exploits/router/asus_dslx11_dns_hijack/config.yaml
+++ b/modules/exploits/router/asus_dslx11_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/asus_dslx11_dns_hijack/module.rb b/modules/exploits/router/asus_dslx11_dns_hijack/module.rb
index 550ae5902..ae972dcf1 100644
--- a/modules/exploits/router/asus_dslx11_dns_hijack/module.rb
+++ b/modules/exploits/router/asus_dslx11_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Asus_dslx11_dns_hijack < BeEF::Core::Command
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 a9db4719c..ab365b0a7 100644
--- a/modules/exploits/router/asus_rt_n12e_get_info/command.js
+++ b/modules/exploits/router/asus_rt_n12e_get_info/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 34f3ebd9a..511eff161 100644
--- a/modules/exploits/router/asus_rt_n12e_get_info/config.yaml
+++ b/modules/exploits/router/asus_rt_n12e_get_info/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 156ae4af5..352a414a3 100644
--- a/modules/exploits/router/asus_rt_n12e_get_info/module.rb
+++ b/modules/exploits/router/asus_rt_n12e_get_info/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Asus_rt_n12e_get_info < BeEF::Core::Command
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 5a6752069..9abb013eb 100755
--- a/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
+++ b/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 fffc088a1..19ba87a6d 100755
--- a/modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml
+++ b/modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 31edd7b64..e1df9a22d 100755
--- a/modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb
+++ b/modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Asus_rt_n66u_cmd_exec < BeEF::Core::Command
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 667653e0e..9568020d3 100644
--- a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js
+++ b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e4503a218..8a5b0baf1 100644
--- a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/config.yaml
+++ b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 b9400cfba..c75107a6d 100644
--- a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb
+++ b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Beetel_bcm96338_router_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/belkin_dns_csrf/command.js b/modules/exploits/router/belkin_dns_csrf/command.js
index 0ea855f59..ea44fe151 100644
--- a/modules/exploits/router/belkin_dns_csrf/command.js
+++ b/modules/exploits/router/belkin_dns_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0047399b1..edc308aa5 100644
--- a/modules/exploits/router/belkin_dns_csrf/config.yaml
+++ b/modules/exploits/router/belkin_dns_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Tested on F1PI242EGau_V1.00.002 and F1PI242EGau_V1.00.009
diff --git a/modules/exploits/router/belkin_dns_csrf/module.rb b/modules/exploits/router/belkin_dns_csrf/module.rb
index f6020ee95..498a6295b 100644
--- a/modules/exploits/router/belkin_dns_csrf/module.rb
+++ b/modules/exploits/router/belkin_dns_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Belkin_dns_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/bt_home_hub_csrf/command.js b/modules/exploits/router/bt_home_hub_csrf/command.js
index dac351d3d..61e154501 100644
--- a/modules/exploits/router/bt_home_hub_csrf/command.js
+++ b/modules/exploits/router/bt_home_hub_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ffe93b1bc..8488ee5c0 100644
--- a/modules/exploits/router/bt_home_hub_csrf/config.yaml
+++ b/modules/exploits/router/bt_home_hub_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/bt_home_hub_csrf/module.rb b/modules/exploits/router/bt_home_hub_csrf/module.rb
index 2266fa4fb..26351cd11 100644
--- a/modules/exploits/router/bt_home_hub_csrf/module.rb
+++ b/modules/exploits/router/bt_home_hub_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Bt_home_hub_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/cisco_e2400_csrf/command.js b/modules/exploits/router/cisco_e2400_csrf/command.js
index 9c2ae3fcf..0dcab3f33 100644
--- a/modules/exploits/router/cisco_e2400_csrf/command.js
+++ b/modules/exploits/router/cisco_e2400_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 93cdbfbcd..8d693071f 100644
--- a/modules/exploits/router/cisco_e2400_csrf/config.yaml
+++ b/modules/exploits/router/cisco_e2400_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/cisco_e2400_csrf/module.rb b/modules/exploits/router/cisco_e2400_csrf/module.rb
index 0474c0027..f85e50682 100644
--- a/modules/exploits/router/cisco_e2400_csrf/module.rb
+++ b/modules/exploits/router/cisco_e2400_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Cisco_e2400_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/comtrend_ct5367_csrf/command.js b/modules/exploits/router/comtrend_ct5367_csrf/command.js
index 855fb1924..c64bc0627 100644
--- a/modules/exploits/router/comtrend_ct5367_csrf/command.js
+++ b/modules/exploits/router/comtrend_ct5367_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f6ef90ec6..83df2609a 100644
--- a/modules/exploits/router/comtrend_ct5367_csrf/config.yaml
+++ b/modules/exploits/router/comtrend_ct5367_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/comtrend_ct5367_csrf/module.rb b/modules/exploits/router/comtrend_ct5367_csrf/module.rb
index 66b514569..88954d6a0 100644
--- a/modules/exploits/router/comtrend_ct5367_csrf/module.rb
+++ b/modules/exploits/router/comtrend_ct5367_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Comtrend_ct5367_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/comtrend_ct5624_csrf/command.js b/modules/exploits/router/comtrend_ct5624_csrf/command.js
index 76ec4a7bc..6aebbe16d 100644
--- a/modules/exploits/router/comtrend_ct5624_csrf/command.js
+++ b/modules/exploits/router/comtrend_ct5624_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ede088b86..272db2fd5 100644
--- a/modules/exploits/router/comtrend_ct5624_csrf/config.yaml
+++ b/modules/exploits/router/comtrend_ct5624_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/comtrend_ct5624_csrf/module.rb b/modules/exploits/router/comtrend_ct5624_csrf/module.rb
index 9a7b57f5a..34119b65a 100644
--- a/modules/exploits/router/comtrend_ct5624_csrf/module.rb
+++ b/modules/exploits/router/comtrend_ct5624_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Comtrend_ct5624_csrf < BeEF::Core::Command
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 6a0b39d40..ad52339fd 100644
--- a/modules/exploits/router/comtrend_ct_series_dns_hijack/command.js
+++ b/modules/exploits/router/comtrend_ct_series_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 18b61dd71..0a87fcfce 100644
--- a/modules/exploits/router/comtrend_ct_series_dns_hijack/config.yaml
+++ b/modules/exploits/router/comtrend_ct_series_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 7fbcb0243..134fd25de 100644
--- a/modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb
+++ b/modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Comtrend_ct_series_dns_hijack < BeEF::Core::Command
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 872c57beb..06d986412 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js
+++ b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 cc58ce7bb..5d4874fd6 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml
+++ b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 ad717f2d4..59a834421 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb
+++ b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Ddwrt_v24_sp1_cmd_exec < BeEF::Core::Command
diff --git a/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js b/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
index 74542ee91..15db5aa0c 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
+++ b/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 d65677187..231ba84eb 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml
+++ b/modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb b/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
index 5bee10661..50dbb3f1d 100644
--- a/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
+++ b/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Ddwrt_v24_sp1_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/dlink_dir_615_csrf/command.js b/modules/exploits/router/dlink_dir_615_csrf/command.js
index d24c0f7cb..69da03518 100644
--- a/modules/exploits/router/dlink_dir_615_csrf/command.js
+++ b/modules/exploits/router/dlink_dir_615_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 8c359be53..73a3dc29a 100644
--- a/modules/exploits/router/dlink_dir_615_csrf/config.yaml
+++ b/modules/exploits/router/dlink_dir_615_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/dlink_dir_615_csrf/module.rb b/modules/exploits/router/dlink_dir_615_csrf/module.rb
index 7e12186b1..44ac645be 100644
--- a/modules/exploits/router/dlink_dir_615_csrf/module.rb
+++ b/modules/exploits/router/dlink_dir_615_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dir_615_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
index a30e30ec8..d6fc477fe 100644
--- a/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 6de58042f..bc837a8c8 100644
--- a/modules/exploits/router/dlink_dsl2640b_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl2640b_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
index 07f96b00d..9b35f9475 100644
--- a/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_2640b_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
index efa3fc28d..bdc60661e 100644
--- a/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9904142e6..3c7765526 100644
--- a/modules/exploits/router/dlink_dsl2640u_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl2640u_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
index 144a861a7..b4dfd7751 100644
--- a/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dsl2640u_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
index 43a755d6f..1becc925d 100644
--- a/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7b2616d29..f2461fd60 100644
--- a/modules/exploits/router/dlink_dsl2740r_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl2740r_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
index 63ff1c538..85162afbd 100644
--- a/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dsl2740r_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
index f825848be..ddeac2e74 100644
--- a/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e4ee02851..46545869a 100644
--- a/modules/exploits/router/dlink_dsl2780b_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl2780b_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
index 686c6d902..21d17502f 100644
--- a/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dsl2780b_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/dlink_dsl500t_csrf/command.js b/modules/exploits/router/dlink_dsl500t_csrf/command.js
index a3d865127..e76af1450 100644
--- a/modules/exploits/router/dlink_dsl500t_csrf/command.js
+++ b/modules/exploits/router/dlink_dsl500t_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 b516f70b3..21a6c1255 100644
--- a/modules/exploits/router/dlink_dsl500t_csrf/config.yaml
+++ b/modules/exploits/router/dlink_dsl500t_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/dlink_dsl500t_csrf/module.rb b/modules/exploits/router/dlink_dsl500t_csrf/module.rb
index c95f4e885..bab4b63d1 100644
--- a/modules/exploits/router/dlink_dsl500t_csrf/module.rb
+++ b/modules/exploits/router/dlink_dsl500t_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dsl500t_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js b/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
index 57fa5ec6e..7ff18b193 100644
--- a/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
+++ b/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9a33b5052..b9f0ac20f 100644
--- a/modules/exploits/router/dlink_dsl526b_dns_hijack/config.yaml
+++ b/modules/exploits/router/dlink_dsl526b_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
index d3e3d7b79..3adbf11af 100644
--- a/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
+++ b/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dsl526b_dns_hijack < BeEF::Core::Command
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 5c08ef075..3d0acf913 100644
--- a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js
+++ b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 32ee7e023..8ff3fd73a 100644
--- a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml
+++ b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 70930347c..7be20589d 100644
--- a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb
+++ b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Exper_ewm01_adsl_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/huawei_smartax_mt880/command.js b/modules/exploits/router/huawei_smartax_mt880/command.js
index 1bb495528..19524d344 100644
--- a/modules/exploits/router/huawei_smartax_mt880/command.js
+++ b/modules/exploits/router/huawei_smartax_mt880/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ed874d136..3c729f0f9 100644
--- a/modules/exploits/router/huawei_smartax_mt880/config.yaml
+++ b/modules/exploits/router/huawei_smartax_mt880/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/huawei_smartax_mt880/module.rb b/modules/exploits/router/huawei_smartax_mt880/module.rb
index ad0b06108..3d15aa338 100644
--- a/modules/exploits/router/huawei_smartax_mt880/module.rb
+++ b/modules/exploits/router/huawei_smartax_mt880/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Huawei_smartax_mt880_csrf < BeEF::Core::Command
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 e90f2fb10..dca40f52e 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,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0def11446..9db310fcf 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 10967d406..78d0b0331 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Iball_baton_ib_wra150n_dns_hijack < BeEF::Core::Command
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 d716a09b5..27ef45990 100644
--- a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js
+++ b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5f710275f..173fe9739 100644
--- a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/config.yaml
+++ b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 8e1304bb9..1da56f337 100644
--- a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb
+++ b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Inteno_eg101r1_voip_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/linksys_befsr41_csrf/command.js b/modules/exploits/router/linksys_befsr41_csrf/command.js
index fac2f789b..1d445cd5f 100644
--- a/modules/exploits/router/linksys_befsr41_csrf/command.js
+++ b/modules/exploits/router/linksys_befsr41_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2d722b8e9..53f6116bd 100644
--- a/modules/exploits/router/linksys_befsr41_csrf/config.yaml
+++ b/modules/exploits/router/linksys_befsr41_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/linksys_befsr41_csrf/module.rb b/modules/exploits/router/linksys_befsr41_csrf/module.rb
index 79ed19962..46fa5fc00 100644
--- a/modules/exploits/router/linksys_befsr41_csrf/module.rb
+++ b/modules/exploits/router/linksys_befsr41_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Linksys_befsr41_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/linksys_e2500_csrf/command.js b/modules/exploits/router/linksys_e2500_csrf/command.js
index b02b83a1e..774f98e75 100644
--- a/modules/exploits/router/linksys_e2500_csrf/command.js
+++ b/modules/exploits/router/linksys_e2500_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ec2003b6e..80b9ae561 100644
--- a/modules/exploits/router/linksys_e2500_csrf/config.yaml
+++ b/modules/exploits/router/linksys_e2500_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/linksys_e2500_csrf/module.rb b/modules/exploits/router/linksys_e2500_csrf/module.rb
index 356eff540..843a455cb 100644
--- a/modules/exploits/router/linksys_e2500_csrf/module.rb
+++ b/modules/exploits/router/linksys_e2500_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Linksys_e2500_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/linksys_e2500_dns_hijack/command.js b/modules/exploits/router/linksys_e2500_dns_hijack/command.js
index 4bab318f4..075411608 100644
--- a/modules/exploits/router/linksys_e2500_dns_hijack/command.js
+++ b/modules/exploits/router/linksys_e2500_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5eac4a0f8..e5bf3a4f6 100644
--- a/modules/exploits/router/linksys_e2500_dns_hijack/config.yaml
+++ b/modules/exploits/router/linksys_e2500_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/linksys_e2500_dns_hijack/module.rb b/modules/exploits/router/linksys_e2500_dns_hijack/module.rb
index 0a8bf9ece..abbe98d0c 100644
--- a/modules/exploits/router/linksys_e2500_dns_hijack/module.rb
+++ b/modules/exploits/router/linksys_e2500_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Linksys_e2500_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/linksys_e2500_shell/command.js b/modules/exploits/router/linksys_e2500_shell/command.js
index adab5a856..ec878ca5e 100644
--- a/modules/exploits/router/linksys_e2500_shell/command.js
+++ b/modules/exploits/router/linksys_e2500_shell/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 dda936955..53a3c86b1 100644
--- a/modules/exploits/router/linksys_e2500_shell/config.yaml
+++ b/modules/exploits/router/linksys_e2500_shell/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/linksys_e2500_shell/module.rb b/modules/exploits/router/linksys_e2500_shell/module.rb
index 4bcc45239..6eb437c74 100644
--- a/modules/exploits/router/linksys_e2500_shell/module.rb
+++ b/modules/exploits/router/linksys_e2500_shell/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Linksys_e2500_shell < BeEF::Core::Command
diff --git a/modules/exploits/router/linksys_wrt54g2_csrf/command.js b/modules/exploits/router/linksys_wrt54g2_csrf/command.js
index 29c2d5b9a..994e1edb5 100644
--- a/modules/exploits/router/linksys_wrt54g2_csrf/command.js
+++ b/modules/exploits/router/linksys_wrt54g2_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 6a8d69167..c3726df24 100644
--- a/modules/exploits/router/linksys_wrt54g2_csrf/config.yaml
+++ b/modules/exploits/router/linksys_wrt54g2_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/linksys_wrt54g2_csrf/module.rb b/modules/exploits/router/linksys_wrt54g2_csrf/module.rb
index 134db6bde..0db9498e7 100644
--- a/modules/exploits/router/linksys_wrt54g2_csrf/module.rb
+++ b/modules/exploits/router/linksys_wrt54g2_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Linksys_wrt54g2_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/linksys_wrt54g_csrf/command.js b/modules/exploits/router/linksys_wrt54g_csrf/command.js
index 9722a77e9..febb7cb50 100644
--- a/modules/exploits/router/linksys_wrt54g_csrf/command.js
+++ b/modules/exploits/router/linksys_wrt54g_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bc0a63519..67eeaea7f 100644
--- a/modules/exploits/router/linksys_wrt54g_csrf/config.yaml
+++ b/modules/exploits/router/linksys_wrt54g_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/linksys_wrt54g_csrf/module.rb b/modules/exploits/router/linksys_wrt54g_csrf/module.rb
index 1da52a639..eab63e22e 100644
--- a/modules/exploits/router/linksys_wrt54g_csrf/module.rb
+++ b/modules/exploits/router/linksys_wrt54g_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Linksys_wrt54g_csrf < BeEF::Core::Command
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 55532841b..eaab290d7 100644
--- a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js
+++ b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 4ac929387..f68c97d74 100644
--- a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/config.yaml
+++ b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 27c4a4cee..137b9e8f5 100644
--- a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb
+++ b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Netgear_dgn_2000_wan_mgmt_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js b/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js
index bb07499b2..541eb79d5 100755
--- a/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js
+++ b/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 63cc74d6b..2da1b5fa5 100755
--- a/modules/exploits/router/netgear_dgn2200_cmd_exec/config.yaml
+++ b/modules/exploits/router/netgear_dgn2200_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb b/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb
index 92690938b..70193311a 100755
--- a/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb
+++ b/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Netgear_dgn2200_cmd_exec < BeEF::Core::Command
diff --git a/modules/exploits/router/phillips_dns_hijack/command.js b/modules/exploits/router/phillips_dns_hijack/command.js
index aab7188af..ba61d3c90 100644
--- a/modules/exploits/router/phillips_dns_hijack/command.js
+++ b/modules/exploits/router/phillips_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 99a6be056..6228d8963 100644
--- a/modules/exploits/router/phillips_dns_hijack/config.yaml
+++ b/modules/exploits/router/phillips_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/phillips_dns_hijack/module.rb b/modules/exploits/router/phillips_dns_hijack/module.rb
index 7ebc2ab03..337e163c0 100644
--- a/modules/exploits/router/phillips_dns_hijack/module.rb
+++ b/modules/exploits/router/phillips_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 class Philips_dns_hijack < BeEF::Core::Command
   def self.options
diff --git a/modules/exploits/router/pikatel_96338_dns_hijack/command.js b/modules/exploits/router/pikatel_96338_dns_hijack/command.js
index 2ebefe717..211f44ac6 100644
--- a/modules/exploits/router/pikatel_96338_dns_hijack/command.js
+++ b/modules/exploits/router/pikatel_96338_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7ec4fd73d..f4009ca86 100644
--- a/modules/exploits/router/pikatel_96338_dns_hijack/config.yaml
+++ b/modules/exploits/router/pikatel_96338_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/pikatel_96338_dns_hijack/module.rb b/modules/exploits/router/pikatel_96338_dns_hijack/module.rb
index e71a7bfbe..be6237d04 100644
--- a/modules/exploits/router/pikatel_96338_dns_hijack/module.rb
+++ b/modules/exploits/router/pikatel_96338_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Pikatel_96338_dns_hijack < BeEF::Core::Command
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 46546e048..f3c6243c6 100644
--- a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js
+++ b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 8a9c0b163..873740817 100644
--- a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/config.yaml
+++ b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 73eb13061..4f7ee09f3 100644
--- a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb
+++ b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Planet_vdr300nu_adsl_dns_hijack < BeEF::Core::Command
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 ff16def25..eca8553a0 100644
--- a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js
+++ b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ee6ab87de..320a7b41b 100644
--- a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/config.yaml
+++ b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 52abb3756..563e347a7 100644
--- a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb
+++ b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Shuttle_tech_915wm_dns_hijack < BeEF::Core::Command
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 0e3697429..372b72eb8 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_pw/command.js
+++ b/modules/exploits/router/telstra_zte_mf91_change_pw/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9d16ecde7..360b1f361 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_pw/config.yaml
+++ b/modules/exploits/router/telstra_zte_mf91_change_pw/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 b7e16d876..4513743b7 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_pw/module.rb
+++ b/modules/exploits/router/telstra_zte_mf91_change_pw/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Telstra_zte_mf91_change_pw < BeEF::Core::Command
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 4c42c25d7..842e70672 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_ssid/command.js
+++ b/modules/exploits/router/telstra_zte_mf91_change_ssid/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 eb8597fbc..256ff8a89 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_ssid/config.yaml
+++ b/modules/exploits/router/telstra_zte_mf91_change_ssid/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 c553ce1c7..04a41c5ff 100644
--- a/modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb
+++ b/modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Telstra_zte_mf91_change_ssid < BeEF::Core::Command
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 6e5d00073..a754a7c21 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,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 12316d176..c5386c302 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
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 41ba68c15..4dba67ea4 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Telstra_zte_mf91_disable_ap_isolation < BeEF::Core::Command
diff --git a/modules/exploits/router/tenda_adsl_dns_hijack/command.js b/modules/exploits/router/tenda_adsl_dns_hijack/command.js
index 6a85a9c73..046da1353 100644
--- a/modules/exploits/router/tenda_adsl_dns_hijack/command.js
+++ b/modules/exploits/router/tenda_adsl_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a3d080b6d..4f60b2e0b 100644
--- a/modules/exploits/router/tenda_adsl_dns_hijack/config.yaml
+++ b/modules/exploits/router/tenda_adsl_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/tenda_adsl_dns_hijack/module.rb b/modules/exploits/router/tenda_adsl_dns_hijack/module.rb
index e57ab4f65..72950a128 100644
--- a/modules/exploits/router/tenda_adsl_dns_hijack/module.rb
+++ b/modules/exploits/router/tenda_adsl_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Tenda_adsl_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/tplink_dns_csrf/command.js b/modules/exploits/router/tplink_dns_csrf/command.js
index df7864e17..e3c5a9a4c 100644
--- a/modules/exploits/router/tplink_dns_csrf/command.js
+++ b/modules/exploits/router/tplink_dns_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2b60c3458..0bff74820 100644
--- a/modules/exploits/router/tplink_dns_csrf/config.yaml
+++ b/modules/exploits/router/tplink_dns_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/tplink_dns_csrf/module.rb b/modules/exploits/router/tplink_dns_csrf/module.rb
index 3812c0080..d146f6575 100644
--- a/modules/exploits/router/tplink_dns_csrf/module.rb
+++ b/modules/exploits/router/tplink_dns_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Tplink_dns_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js
index a2b8057a4..447fe7c4c 100644
--- a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js
+++ b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bf603a84b..c2379ac73 100644
--- a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/config.yaml
+++ b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # References:
diff --git a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb
index 2a0b02ec6..d45ae5b72 100644
--- a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb
+++ b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Utstarcom_wa3002g4_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/virgin_superhub_csrf/command.js b/modules/exploits/router/virgin_superhub_csrf/command.js
index 7ad446f66..0b8cd57fe 100644
--- a/modules/exploits/router/virgin_superhub_csrf/command.js
+++ b/modules/exploits/router/virgin_superhub_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 204bcb866..e6cd4dc69 100644
--- a/modules/exploits/router/virgin_superhub_csrf/config.yaml
+++ b/modules/exploits/router/virgin_superhub_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/virgin_superhub_csrf/module.rb b/modules/exploits/router/virgin_superhub_csrf/module.rb
index e963679f2..c5586b4e5 100644
--- a/modules/exploits/router/virgin_superhub_csrf/module.rb
+++ b/modules/exploits/router/virgin_superhub_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Virgin_superhub_csrf < BeEF::Core::Command
diff --git a/modules/exploits/router/wipg1000_cmd_injection/command.js b/modules/exploits/router/wipg1000_cmd_injection/command.js
index dc51efc87..7f5b34891 100644
--- a/modules/exploits/router/wipg1000_cmd_injection/command.js
+++ b/modules/exploits/router/wipg1000_cmd_injection/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 29d65beb7..13726984b 100644
--- a/modules/exploits/router/wipg1000_cmd_injection/config.yaml
+++ b/modules/exploits/router/wipg1000_cmd_injection/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/router/wipg1000_cmd_injection/module.rb b/modules/exploits/router/wipg1000_cmd_injection/module.rb
index 1a6382439..364850372 100644
--- a/modules/exploits/router/wipg1000_cmd_injection/module.rb
+++ b/modules/exploits/router/wipg1000_cmd_injection/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Wipg1000_cmd_injection < BeEF::Core::Command
diff --git a/modules/exploits/ruby_nntpd_cmd_exec/command.js b/modules/exploits/ruby_nntpd_cmd_exec/command.js
index 53c6c7804..ae83c6b63 100644
--- a/modules/exploits/ruby_nntpd_cmd_exec/command.js
+++ b/modules/exploits/ruby_nntpd_cmd_exec/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 cbb57a48e..20b359119 100644
--- a/modules/exploits/ruby_nntpd_cmd_exec/config.yaml
+++ b/modules/exploits/ruby_nntpd_cmd_exec/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/ruby_nntpd_cmd_exec/module.rb b/modules/exploits/ruby_nntpd_cmd_exec/module.rb
index 217e69678..c9095dea6 100644
--- a/modules/exploits/ruby_nntpd_cmd_exec/module.rb
+++ b/modules/exploits/ruby_nntpd_cmd_exec/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 ###
 # ruby-nntpd homepage: http://code.google.com/p/ruby-nntpd/
diff --git a/modules/exploits/shell_shock_scanner/command.js b/modules/exploits/shell_shock_scanner/command.js
index 9aecc815b..82ec14f94 100644
--- a/modules/exploits/shell_shock_scanner/command.js
+++ b/modules/exploits/shell_shock_scanner/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3a8262f4f..f0e6bcb09 100644
--- a/modules/exploits/shell_shock_scanner/config.yaml
+++ b/modules/exploits/shell_shock_scanner/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/shell_shock_scanner/module.rb b/modules/exploits/shell_shock_scanner/module.rb
index e06ecfb1c..98ad84d54 100644
--- a/modules/exploits/shell_shock_scanner/module.rb
+++ b/modules/exploits/shell_shock_scanner/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Shell_shock_scanner < BeEF::Core::Command
diff --git a/modules/exploits/shell_shocked/command.js b/modules/exploits/shell_shocked/command.js
index c3dabd9db..dd680ab61 100644
--- a/modules/exploits/shell_shocked/command.js
+++ b/modules/exploits/shell_shocked/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f189a9034..eb5b7fae3 100644
--- a/modules/exploits/shell_shocked/config.yaml
+++ b/modules/exploits/shell_shocked/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/shell_shocked/module.rb b/modules/exploits/shell_shocked/module.rb
index 93581cc0b..da6ecf46b 100644
--- a/modules/exploits/shell_shocked/module.rb
+++ b/modules/exploits/shell_shocked/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Shell_shocked < BeEF::Core::Command
diff --git a/modules/exploits/skype_xss/command.js b/modules/exploits/skype_xss/command.js
index 4bdb36b99..b8e9ab7bf 100644
--- a/modules/exploits/skype_xss/command.js
+++ b/modules/exploits/skype_xss/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 beef.execute(function() {
diff --git a/modules/exploits/skype_xss/config.yaml b/modules/exploits/skype_xss/config.yaml
index 95c9ca418..9e7d4a409 100644
--- a/modules/exploits/skype_xss/config.yaml
+++ b/modules/exploits/skype_xss/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/skype_xss/module.rb b/modules/exploits/skype_xss/module.rb
index fcf6536e2..08fe13aa4 100644
--- a/modules/exploits/skype_xss/module.rb
+++ b/modules/exploits/skype_xss/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Skype_xss < BeEF::Core::Command
diff --git a/modules/exploits/spring_framework_malicious_jar/command.js b/modules/exploits/spring_framework_malicious_jar/command.js
index e4c338e78..3d4e3f60d 100644
--- a/modules/exploits/spring_framework_malicious_jar/command.js
+++ b/modules/exploits/spring_framework_malicious_jar/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 279def102..e52378122 100644
--- a/modules/exploits/spring_framework_malicious_jar/config.yaml
+++ b/modules/exploits/spring_framework_malicious_jar/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/spring_framework_malicious_jar/module.rb b/modules/exploits/spring_framework_malicious_jar/module.rb
index 05b1af2b7..32ba72915 100644
--- a/modules/exploits/spring_framework_malicious_jar/module.rb
+++ b/modules/exploits/spring_framework_malicious_jar/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Spring_framework_malicious_jar < BeEF::Core::Command
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 f87e5fbd1..76bc11d48 100644
--- a/modules/exploits/switch/dlink_dgs_1100_device_reset/command.js
+++ b/modules/exploits/switch/dlink_dgs_1100_device_reset/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7fd3ef572..f0ed37433 100644
--- a/modules/exploits/switch/dlink_dgs_1100_device_reset/config.yaml
+++ b/modules/exploits/switch/dlink_dgs_1100_device_reset/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 1ffbfccd2..f514eac9d 100644
--- a/modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb
+++ b/modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dgs_1100_device_reset_csrf < BeEF::Core::Command
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 4efa2958f..b7de12bf6 100644
--- a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js
+++ b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 84a02e33e..8dbcae3ce 100644
--- a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/config.yaml
+++ b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 323cb9e20..8ae81c528 100644
--- a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb
+++ b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dgs_1100_fdb_whitelist_csrf < BeEF::Core::Command
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 9ffb614b7..d00d07a27 100644
--- a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js
+++ b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f548d5ae4..48ed5b6d7 100644
--- a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/config.yaml
+++ b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 afdc6a5d0..7b7549fe6 100644
--- a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb
+++ b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dlink_dgs_1100_port_mirroring_csrf < BeEF::Core::Command
diff --git a/modules/exploits/switch/netgear_gs108t_csrf/command.js b/modules/exploits/switch/netgear_gs108t_csrf/command.js
index 8564d19de..a259e5ec5 100644
--- a/modules/exploits/switch/netgear_gs108t_csrf/command.js
+++ b/modules/exploits/switch/netgear_gs108t_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 cd1c75013..df777a3dc 100644
--- a/modules/exploits/switch/netgear_gs108t_csrf/config.yaml
+++ b/modules/exploits/switch/netgear_gs108t_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/switch/netgear_gs108t_csrf/module.rb b/modules/exploits/switch/netgear_gs108t_csrf/module.rb
index 768786d6a..f7dfaee6e 100644
--- a/modules/exploits/switch/netgear_gs108t_csrf/module.rb
+++ b/modules/exploits/switch/netgear_gs108t_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Netgear_gs108t_csrf < BeEF::Core::Command
diff --git a/modules/exploits/vtiger_crm_upload_exploit/command.js b/modules/exploits/vtiger_crm_upload_exploit/command.js
index a7548cf05..e28ee8672 100644
--- a/modules/exploits/vtiger_crm_upload_exploit/command.js
+++ b/modules/exploits/vtiger_crm_upload_exploit/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 c367fc763..a89661d03 100644
--- a/modules/exploits/vtiger_crm_upload_exploit/config.yaml
+++ b/modules/exploits/vtiger_crm_upload_exploit/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/vtiger_crm_upload_exploit/module.rb b/modules/exploits/vtiger_crm_upload_exploit/module.rb
index 47f785226..291efcdeb 100644
--- a/modules/exploits/vtiger_crm_upload_exploit/module.rb
+++ b/modules/exploits/vtiger_crm_upload_exploit/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Vtiger_crm_upload_exploit < BeEF::Core::Command
diff --git a/modules/exploits/wanem_command_execution/command.js b/modules/exploits/wanem_command_execution/command.js
index 17854d5d4..fb9a598d3 100644
--- a/modules/exploits/wanem_command_execution/command.js
+++ b/modules/exploits/wanem_command_execution/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 51028effc..7c96bb452 100644
--- a/modules/exploits/wanem_command_execution/config.yaml
+++ b/modules/exploits/wanem_command_execution/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 9d3c4394e..ab46c52a1 100644
--- a/modules/exploits/wanem_command_execution/module.rb
+++ b/modules/exploits/wanem_command_execution/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 977d4cd72..01aae3c19 100644
--- a/modules/exploits/wifi_pineapple_csrf/command.js
+++ b/modules/exploits/wifi_pineapple_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 8e279d45a..de2dab842 100644
--- a/modules/exploits/wifi_pineapple_csrf/config.yaml
+++ b/modules/exploits/wifi_pineapple_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/wifi_pineapple_csrf/module.rb b/modules/exploits/wifi_pineapple_csrf/module.rb
index 56cf04614..79c4478be 100644
--- a/modules/exploits/wifi_pineapple_csrf/module.rb
+++ b/modules/exploits/wifi_pineapple_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Wifi_pineapple_csrf < BeEF::Core::Command
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 ca7231d14..9414cbd39 100644
--- a/modules/exploits/xss/alienvault_ossim_3.1_xss/command.js
+++ b/modules/exploits/xss/alienvault_ossim_3.1_xss/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3c6765d37..6f251d4f6 100644
--- a/modules/exploits/xss/alienvault_ossim_3.1_xss/config.yaml
+++ b/modules/exploits/xss/alienvault_ossim_3.1_xss/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 388192e65..e946765c9 100644
--- a/modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb
+++ b/modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Alienvault_ossim_3_1_xss < BeEF::Core::Command
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 de2b025d8..a3ee71751 100644
--- a/modules/exploits/xss/cisco_collaboration_server_5_xss/command.js
+++ b/modules/exploits/xss/cisco_collaboration_server_5_xss/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 b1409ebb2..5fe001a8f 100644
--- a/modules/exploits/xss/cisco_collaboration_server_5_xss/config.yaml
+++ b/modules/exploits/xss/cisco_collaboration_server_5_xss/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 a111a34dd..4c58b2448 100644
--- a/modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb
+++ b/modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Cisco_collaboration_server_5_xss < BeEF::Core::Command
diff --git a/modules/exploits/xss/serendipity_1.6_xss/command.js b/modules/exploits/xss/serendipity_1.6_xss/command.js
index 04880a8e5..72665edf9 100644
--- a/modules/exploits/xss/serendipity_1.6_xss/command.js
+++ b/modules/exploits/xss/serendipity_1.6_xss/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 203444fe8..3949c7170 100644
--- a/modules/exploits/xss/serendipity_1.6_xss/config.yaml
+++ b/modules/exploits/xss/serendipity_1.6_xss/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/xss/serendipity_1.6_xss/module.rb b/modules/exploits/xss/serendipity_1.6_xss/module.rb
index 984a290a3..c5f6c3774 100644
--- a/modules/exploits/xss/serendipity_1.6_xss/module.rb
+++ b/modules/exploits/xss/serendipity_1.6_xss/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Serendipity_1_6_xss < BeEF::Core::Command
diff --git a/modules/exploits/xss/sqlitemanager_xss/command.js b/modules/exploits/xss/sqlitemanager_xss/command.js
index 04880a8e5..72665edf9 100644
--- a/modules/exploits/xss/sqlitemanager_xss/command.js
+++ b/modules/exploits/xss/sqlitemanager_xss/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2260249ac..633a32250 100644
--- a/modules/exploits/xss/sqlitemanager_xss/config.yaml
+++ b/modules/exploits/xss/sqlitemanager_xss/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/xss/sqlitemanager_xss/module.rb b/modules/exploits/xss/sqlitemanager_xss/module.rb
index 51257b1e8..add5fb932 100644
--- a/modules/exploits/xss/sqlitemanager_xss/module.rb
+++ b/modules/exploits/xss/sqlitemanager_xss/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Sqlitemanager_xss < BeEF::Core::Command
diff --git a/modules/exploits/zenoss_3x_command_execution/command.js b/modules/exploits/zenoss_3x_command_execution/command.js
index d16240e52..d8ff4eb67 100644
--- a/modules/exploits/zenoss_3x_command_execution/command.js
+++ b/modules/exploits/zenoss_3x_command_execution/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 419bca897..1ff74ed40 100644
--- a/modules/exploits/zenoss_3x_command_execution/config.yaml
+++ b/modules/exploits/zenoss_3x_command_execution/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 1a1ffcbd3..1defa8d7d 100644
--- a/modules/exploits/zenoss_3x_command_execution/module.rb
+++ b/modules/exploits/zenoss_3x_command_execution/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 cb13b9ec6..b7e6cb06e 100644
--- a/modules/exploits/zenoss_add_user_csrf/command.js
+++ b/modules/exploits/zenoss_add_user_csrf/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7a3afa322..5da947902 100644
--- a/modules/exploits/zenoss_add_user_csrf/config.yaml
+++ b/modules/exploits/zenoss_add_user_csrf/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/zenoss_add_user_csrf/module.rb b/modules/exploits/zenoss_add_user_csrf/module.rb
index ba8bb6fc0..174ff3d26 100644
--- a/modules/exploits/zenoss_add_user_csrf/module.rb
+++ b/modules/exploits/zenoss_add_user_csrf/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Zenoss_add_user_csrf < BeEF::Core::Command
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 2b9cddb74..8c2a2c091 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,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f87bd332a..73477778c 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 4aa681f62..e17f5854d 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Zeroshell_2_0rc2_admin_dynamic_token < BeEF::Core::Command
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 b2dff3e2d..fd156db14 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1ddc923e6..f26caea31 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 9ca8e1794..894b1e1ff 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Zeroshell_2_0rc2_admin_password < BeEF::Core::Command
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 f28dd9d54..08931f2ec 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,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 124c8cb88..ef11a8705 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 496e74314..bac6d9031 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Zeroshell_2_0rc2_admin_static_token < BeEF::Core::Command
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 5fa6b612d..67f454b65 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 773a0e8d3..514adc113 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 9d24d730c..9d2aaa308 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Zeroshell_2_0rc2_file_disclosure < BeEF::Core::Command
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 fa19a67c4..4feb53dae 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 123fc474d..64a3554dc 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 395de70be..d046e0990 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Zeroshell_2_0rc2_migrate_hook < BeEF::Core::Command
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 d67fee1cd..5024fcee6 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,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9c5b34dbc..3240c4be8 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 439dfa03e..63a3d89ea 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Zeroshell_2_0rc2_reverse_shell_csrf_sop < BeEF::Core::Command
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 042e0c865..c921af373 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,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5dbe64ba0..aade2b456 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 2e02e14e8..5a09629d4 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,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass < BeEF::Core::Command
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js
index bc95f889e..b2dd895a0 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3517c6e7e..729d63703 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/config.yaml
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb
index 1e0cf4cf4..e4740d7d0 100644
--- a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb
+++ b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Zeroshell_2_0rc2_scanner < BeEF::Core::Command
diff --git a/modules/host/clipboard_theft/command.js b/modules/host/clipboard_theft/command.js
index 21168bf17..b0ad9f07c 100644
--- a/modules/host/clipboard_theft/command.js
+++ b/modules/host/clipboard_theft/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 08f5aad8a..b868bf4e6 100644
--- a/modules/host/clipboard_theft/config.yaml
+++ b/modules/host/clipboard_theft/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/clipboard_theft/module.rb b/modules/host/clipboard_theft/module.rb
index 428739691..0297d6372 100644
--- a/modules/host/clipboard_theft/module.rb
+++ b/modules/host/clipboard_theft/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Clipboard_theft < BeEF::Core::Command
diff --git a/modules/host/detect_airdroid/command.js b/modules/host/detect_airdroid/command.js
index 229f17b83..d922bdfd9 100644
--- a/modules/host/detect_airdroid/command.js
+++ b/modules/host/detect_airdroid/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 eaaca5fb6..73c477d5c 100644
--- a/modules/host/detect_airdroid/config.yaml
+++ b/modules/host/detect_airdroid/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_airdroid/module.rb b/modules/host/detect_airdroid/module.rb
index 38b7d216b..dd8f05a76 100644
--- a/modules/host/detect_airdroid/module.rb
+++ b/modules/host/detect_airdroid/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 afd623df7..78a977a13 100644
--- a/modules/host/detect_antivirus/command.js
+++ b/modules/host/detect_antivirus/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 addb59190..9e327b48b 100644
--- a/modules/host/detect_antivirus/config.yaml
+++ b/modules/host/detect_antivirus/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_antivirus/module.rb b/modules/host/detect_antivirus/module.rb
index 3528eadeb..027b8c156 100644
--- a/modules/host/detect_antivirus/module.rb
+++ b/modules/host/detect_antivirus/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 08300ffa7..503f3b5f2 100644
--- a/modules/host/detect_coupon_printer/command.js
+++ b/modules/host/detect_coupon_printer/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5f9d051ff..e29e529dd 100644
--- a/modules/host/detect_coupon_printer/config.yaml
+++ b/modules/host/detect_coupon_printer/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_coupon_printer/module.rb b/modules/host/detect_coupon_printer/module.rb
index b2cb947e3..b6e74db2f 100644
--- a/modules/host/detect_coupon_printer/module.rb
+++ b/modules/host/detect_coupon_printer/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 7e96fecf1..2324cf093 100644
--- a/modules/host/detect_cups/command.js
+++ b/modules/host/detect_cups/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5b06d4721..d53602b3b 100644
--- a/modules/host/detect_cups/config.yaml
+++ b/modules/host/detect_cups/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_cups/module.rb b/modules/host/detect_cups/module.rb
index e6443fb55..8bf05ef07 100644
--- a/modules/host/detect_cups/module.rb
+++ b/modules/host/detect_cups/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 1699e83d6..84eadbd70 100644
--- a/modules/host/detect_default_browser/command.js
+++ b/modules/host/detect_default_browser/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 beef.execute(function() {
diff --git a/modules/host/detect_default_browser/config.yaml b/modules/host/detect_default_browser/config.yaml
index fd32bcc47..840e634ff 100644
--- a/modules/host/detect_default_browser/config.yaml
+++ b/modules/host/detect_default_browser/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_default_browser/module.rb b/modules/host/detect_default_browser/module.rb
index 435b46c88..13f5dfc56 100644
--- a/modules/host/detect_default_browser/module.rb
+++ b/modules/host/detect_default_browser/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_default_browser < BeEF::Core::Command
diff --git a/modules/host/detect_google_desktop/command.js b/modules/host/detect_google_desktop/command.js
index ee21b0d5d..556578d0b 100644
--- a/modules/host/detect_google_desktop/command.js
+++ b/modules/host/detect_google_desktop/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0b556e724..580ba9931 100644
--- a/modules/host/detect_google_desktop/config.yaml
+++ b/modules/host/detect_google_desktop/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_google_desktop/module.rb b/modules/host/detect_google_desktop/module.rb
index 237913137..c2049abb1 100644
--- a/modules/host/detect_google_desktop/module.rb
+++ b/modules/host/detect_google_desktop/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 6c8114c92..59f149c97 100644
--- a/modules/host/detect_hp/command.js
+++ b/modules/host/detect_hp/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 6767af01a..c5ce7d302 100644
--- a/modules/host/detect_hp/config.yaml
+++ b/modules/host/detect_hp/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_hp/module.rb b/modules/host/detect_hp/module.rb
index 6eeef28aa..4fd79661b 100644
--- a/modules/host/detect_hp/module.rb
+++ b/modules/host/detect_hp/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 7f28e55a4..28b1801bb 100644
--- a/modules/host/detect_local_drives/command.js
+++ b/modules/host/detect_local_drives/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 fae652d0a..73a9ea236 100644
--- a/modules/host/detect_local_drives/config.yaml
+++ b/modules/host/detect_local_drives/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_local_drives/module.rb b/modules/host/detect_local_drives/module.rb
index 072e54399..7320ee28c 100644
--- a/modules/host/detect_local_drives/module.rb
+++ b/modules/host/detect_local_drives/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 dccf7c2b2..a34ac8b13 100644
--- a/modules/host/detect_protocol_handlers/command.js
+++ b/modules/host/detect_protocol_handlers/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 881ef0c67..093ae8743 100644
--- a/modules/host/detect_protocol_handlers/config.yaml
+++ b/modules/host/detect_protocol_handlers/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_protocol_handlers/module.rb b/modules/host/detect_protocol_handlers/module.rb
index 8f74fdee1..b71eefeac 100644
--- a/modules/host/detect_protocol_handlers/module.rb
+++ b/modules/host/detect_protocol_handlers/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Some additional protocol handlers #
diff --git a/modules/host/detect_software/command.js b/modules/host/detect_software/command.js
index 502604d53..b58f7e5a4 100644
--- a/modules/host/detect_software/command.js
+++ b/modules/host/detect_software/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 aafe40701..6eb772078 100644
--- a/modules/host/detect_software/config.yaml
+++ b/modules/host/detect_software/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 d61e65cf5..272f38b5e 100644
--- a/modules/host/detect_software/module.rb
+++ b/modules/host/detect_software/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 fc25d8674..fb6752220 100644
--- a/modules/host/detect_users/command.js
+++ b/modules/host/detect_users/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 64192404d..820517e12 100644
--- a/modules/host/detect_users/config.yaml
+++ b/modules/host/detect_users/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/detect_users/module.rb b/modules/host/detect_users/module.rb
index a16ae6ff8..b74c96426 100644
--- a/modules/host/detect_users/module.rb
+++ b/modules/host/detect_users/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 58b9a73f7..e9bde7bda 100644
--- a/modules/host/get_battery_status/command.js
+++ b/modules/host/get_battery_status/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 beef.execute(function() {
diff --git a/modules/host/get_battery_status/config.yaml b/modules/host/get_battery_status/config.yaml
index 480be4630..3ee19ab67 100644
--- a/modules/host/get_battery_status/config.yaml
+++ b/modules/host/get_battery_status/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/get_battery_status/module.rb b/modules/host/get_battery_status/module.rb
index fe812f89a..6e04880b7 100644
--- a/modules/host/get_battery_status/module.rb
+++ b/modules/host/get_battery_status/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_battery_status < BeEF::Core::Command
diff --git a/modules/host/get_connection_type/command.js b/modules/host/get_connection_type/command.js
index dc1ae6c1a..1ddc855d1 100755
--- a/modules/host/get_connection_type/command.js
+++ b/modules/host/get_connection_type/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 b21a00eb2..3c2019020 100755
--- a/modules/host/get_connection_type/config.yaml
+++ b/modules/host/get_connection_type/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/get_connection_type/module.rb b/modules/host/get_connection_type/module.rb
index 0ec836102..4d5496ba7 100755
--- a/modules/host/get_connection_type/module.rb
+++ b/modules/host/get_connection_type/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_connection_type < BeEF::Core::Command
diff --git a/modules/host/get_internal_ip_java/command.js b/modules/host/get_internal_ip_java/command.js
index 9586f641d..c6bf0053b 100755
--- a/modules/host/get_internal_ip_java/command.js
+++ b/modules/host/get_internal_ip_java/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3b34c30a0..913b61157 100755
--- a/modules/host/get_internal_ip_java/config.yaml
+++ b/modules/host/get_internal_ip_java/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
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 9571b41f6..14d72f7f5 100755
--- a/modules/host/get_internal_ip_java/get_internal_ip.java
+++ b/modules/host/get_internal_ip_java/get_internal_ip.java
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 286f38652..9258c8ea8 100755
--- a/modules/host/get_internal_ip_java/module.rb
+++ b/modules/host/get_internal_ip_java/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_internal_ip_java < BeEF::Core::Command
diff --git a/modules/host/get_internal_ip_webrtc/command.js b/modules/host/get_internal_ip_webrtc/command.js
index 26da11178..4502006c4 100755
--- a/modules/host/get_internal_ip_webrtc/command.js
+++ b/modules/host/get_internal_ip_webrtc/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3bc7c99c6..3f55fbb71 100755
--- a/modules/host/get_internal_ip_webrtc/config.yaml
+++ b/modules/host/get_internal_ip_webrtc/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/get_internal_ip_webrtc/module.rb b/modules/host/get_internal_ip_webrtc/module.rb
index 489ed6c51..d7f61b8aa 100755
--- a/modules/host/get_internal_ip_webrtc/module.rb
+++ b/modules/host/get_internal_ip_webrtc/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_internal_ip_webrtc < BeEF::Core::Command
diff --git a/modules/host/get_registry_keys/command.js b/modules/host/get_registry_keys/command.js
index 386e591ff..888dc4e57 100644
--- a/modules/host/get_registry_keys/command.js
+++ b/modules/host/get_registry_keys/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 6a06caf8e..6e6012505 100644
--- a/modules/host/get_registry_keys/config.yaml
+++ b/modules/host/get_registry_keys/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/get_registry_keys/module.rb b/modules/host/get_registry_keys/module.rb
index fbfe968d3..683ba9b04 100644
--- a/modules/host/get_registry_keys/module.rb
+++ b/modules/host/get_registry_keys/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_registry_keys < BeEF::Core::Command
diff --git a/modules/host/get_system_info_java/command.js b/modules/host/get_system_info_java/command.js
index e2038e27f..767785be9 100644
--- a/modules/host/get_system_info_java/command.js
+++ b/modules/host/get_system_info_java/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5e549ac5c..855f89f04 100644
--- a/modules/host/get_system_info_java/config.yaml
+++ b/modules/host/get_system_info_java/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/get_system_info_java/getSystemInfo.java b/modules/host/get_system_info_java/getSystemInfo.java
index 025cd152e..44d308022 100644
--- a/modules/host/get_system_info_java/getSystemInfo.java
+++ b/modules/host/get_system_info_java/getSystemInfo.java
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 8512fc1b7..b9fcfff29 100644
--- a/modules/host/get_system_info_java/module.rb
+++ b/modules/host/get_system_info_java/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_system_info_java < BeEF::Core::Command
diff --git a/modules/host/get_wireless_keys/command.js b/modules/host/get_wireless_keys/command.js
index a954a0155..030ffe012 100644
--- a/modules/host/get_wireless_keys/command.js
+++ b/modules/host/get_wireless_keys/command.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 3f9fab6a8..d9ada051f 100644
--- a/modules/host/get_wireless_keys/config.yaml
+++ b/modules/host/get_wireless_keys/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 cd8c77652..b64ee25cb 100644
--- a/modules/host/get_wireless_keys/module.rb
+++ b/modules/host/get_wireless_keys/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_wireless_keys < BeEF::Core::Command
diff --git a/modules/host/get_wireless_keys/wirelessZeroConfig.java b/modules/host/get_wireless_keys/wirelessZeroConfig.java
index caf0e00ed..794ff5415 100644
--- a/modules/host/get_wireless_keys/wirelessZeroConfig.java
+++ b/modules/host/get_wireless_keys/wirelessZeroConfig.java
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 4686252e0..fb7e69b2e 100644
--- a/modules/host/hook_default_browser/command.js
+++ b/modules/host/hook_default_browser/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3522dc521..fcca88517 100644
--- a/modules/host/hook_default_browser/config.yaml
+++ b/modules/host/hook_default_browser/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/hook_default_browser/module.rb b/modules/host/hook_default_browser/module.rb
index ffa684d9b..f2a5c0617 100644
--- a/modules/host/hook_default_browser/module.rb
+++ b/modules/host/hook_default_browser/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 f23f70a2e..20fca547f 100644
--- a/modules/host/hook_microsoft_edge/command.js
+++ b/modules/host/hook_microsoft_edge/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 75ea504d5..8dc4dd108 100644
--- a/modules/host/hook_microsoft_edge/config.yaml
+++ b/modules/host/hook_microsoft_edge/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/hook_microsoft_edge/module.rb b/modules/host/hook_microsoft_edge/module.rb
index f0ac97f9d..94bb1cff2 100644
--- a/modules/host/hook_microsoft_edge/module.rb
+++ b/modules/host/hook_microsoft_edge/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 aa0924ea3..74d6bef3d 100644
--- a/modules/host/insecure_url_skype/command.js
+++ b/modules/host/insecure_url_skype/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 aebaa8c5f..59c2938c0 100644
--- a/modules/host/insecure_url_skype/config.yaml
+++ b/modules/host/insecure_url_skype/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/insecure_url_skype/module.rb b/modules/host/insecure_url_skype/module.rb
index af12e1f8c..7e5dc591e 100644
--- a/modules/host/insecure_url_skype/module.rb
+++ b/modules/host/insecure_url_skype/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Insecure_url_skype < BeEF::Core::Command
diff --git a/modules/host/iphone_tel/command.js b/modules/host/iphone_tel/command.js
index f33921118..6a7168526 100644
--- a/modules/host/iphone_tel/command.js
+++ b/modules/host/iphone_tel/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 c4d24fa79..b3bc99a1c 100644
--- a/modules/host/iphone_tel/config.yaml
+++ b/modules/host/iphone_tel/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/iphone_tel/module.rb b/modules/host/iphone_tel/module.rb
index 365bc7812..27cdecd30 100644
--- a/modules/host/iphone_tel/module.rb
+++ b/modules/host/iphone_tel/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Iphone_tel < BeEF::Core::Command
diff --git a/modules/host/physical_location/command.js b/modules/host/physical_location/command.js
index 0a3da6d3a..5c9319034 100644
--- a/modules/host/physical_location/command.js
+++ b/modules/host/physical_location/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 491127bc4..92c489412 100644
--- a/modules/host/physical_location/config.yaml
+++ b/modules/host/physical_location/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/physical_location/module.rb b/modules/host/physical_location/module.rb
index d1e68334a..ffa7d0e8e 100644
--- a/modules/host/physical_location/module.rb
+++ b/modules/host/physical_location/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Physical_location < BeEF::Core::Command
diff --git a/modules/host/physical_location_thirdparty/command.js b/modules/host/physical_location_thirdparty/command.js
index e45d944e2..d19bb970f 100644
--- a/modules/host/physical_location_thirdparty/command.js
+++ b/modules/host/physical_location_thirdparty/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 4c3dae464..284aad476 100644
--- a/modules/host/physical_location_thirdparty/config.yaml
+++ b/modules/host/physical_location_thirdparty/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/host/physical_location_thirdparty/module.rb b/modules/host/physical_location_thirdparty/module.rb
index c1500aa56..b6bdcdb1b 100644
--- a/modules/host/physical_location_thirdparty/module.rb
+++ b/modules/host/physical_location_thirdparty/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Physical_location_thirdparty < BeEF::Core::Command
diff --git a/modules/ipec/cross_site_faxing/command.js b/modules/ipec/cross_site_faxing/command.js
index ac5d6ee7a..375368799 100644
--- a/modules/ipec/cross_site_faxing/command.js
+++ b/modules/ipec/cross_site_faxing/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3b5441b82..3fba419e5 100644
--- a/modules/ipec/cross_site_faxing/config.yaml
+++ b/modules/ipec/cross_site_faxing/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/cross_site_faxing/module.rb b/modules/ipec/cross_site_faxing/module.rb
index 5bf1ac65a..d29dadd3b 100644
--- a/modules/ipec/cross_site_faxing/module.rb
+++ b/modules/ipec/cross_site_faxing/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Cross_site_faxing < BeEF::Core::Command
diff --git a/modules/ipec/cross_site_printing/command.js b/modules/ipec/cross_site_printing/command.js
index 3832d3e20..69fd29024 100644
--- a/modules/ipec/cross_site_printing/command.js
+++ b/modules/ipec/cross_site_printing/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3afe1d67c..55197a273 100644
--- a/modules/ipec/cross_site_printing/config.yaml
+++ b/modules/ipec/cross_site_printing/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/cross_site_printing/module.rb b/modules/ipec/cross_site_printing/module.rb
index 1d6bed768..26770ba43 100644
--- a/modules/ipec/cross_site_printing/module.rb
+++ b/modules/ipec/cross_site_printing/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Cross_site_printing < BeEF::Core::Command
diff --git a/modules/ipec/dns_tunnel/command.js b/modules/ipec/dns_tunnel/command.js
index 4e82f7378..042aa91ff 100644
--- a/modules/ipec/dns_tunnel/command.js
+++ b/modules/ipec/dns_tunnel/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bfdd74019..77b6480d2 100644
--- a/modules/ipec/dns_tunnel/config.yaml
+++ b/modules/ipec/dns_tunnel/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/dns_tunnel/module.rb b/modules/ipec/dns_tunnel/module.rb
index 04b701221..5dabd7c3f 100644
--- a/modules/ipec/dns_tunnel/module.rb
+++ b/modules/ipec/dns_tunnel/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dns_tunnel < BeEF::Core::Command
diff --git a/modules/ipec/etag_client/command.js b/modules/ipec/etag_client/command.js
index bd348a313..d20a42586 100644
--- a/modules/ipec/etag_client/command.js
+++ b/modules/ipec/etag_client/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5e78dd6e1..51639d309 100644
--- a/modules/ipec/etag_client/config.yaml
+++ b/modules/ipec/etag_client/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/etag_client/module.rb b/modules/ipec/etag_client/module.rb
index 980503359..921824cef 100644
--- a/modules/ipec/etag_client/module.rb
+++ b/modules/ipec/etag_client/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Etag_client < BeEF::Core::Command
diff --git a/modules/ipec/inter_protocol_imap/command.js b/modules/ipec/inter_protocol_imap/command.js
index f0cb41a43..0d856264a 100644
--- a/modules/ipec/inter_protocol_imap/command.js
+++ b/modules/ipec/inter_protocol_imap/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 cc96ffa85..95433559b 100644
--- a/modules/ipec/inter_protocol_imap/config.yaml
+++ b/modules/ipec/inter_protocol_imap/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/inter_protocol_imap/module.rb b/modules/ipec/inter_protocol_imap/module.rb
index 7dc668ed8..5fbb4cd2c 100644
--- a/modules/ipec/inter_protocol_imap/module.rb
+++ b/modules/ipec/inter_protocol_imap/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Inter_protocol_imap < BeEF::Core::Command
diff --git a/modules/ipec/inter_protocol_irc/command.js b/modules/ipec/inter_protocol_irc/command.js
index 84f0efa5c..d223de548 100644
--- a/modules/ipec/inter_protocol_irc/command.js
+++ b/modules/ipec/inter_protocol_irc/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f23e14d03..ba7da1657 100644
--- a/modules/ipec/inter_protocol_irc/config.yaml
+++ b/modules/ipec/inter_protocol_irc/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/inter_protocol_irc/module.rb b/modules/ipec/inter_protocol_irc/module.rb
index d71891f43..99ba5a15c 100644
--- a/modules/ipec/inter_protocol_irc/module.rb
+++ b/modules/ipec/inter_protocol_irc/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Inter_protocol_irc < BeEF::Core::Command
diff --git a/modules/ipec/inter_protocol_posix_bindshell/command.js b/modules/ipec/inter_protocol_posix_bindshell/command.js
index 1211fc0a8..991accadd 100644
--- a/modules/ipec/inter_protocol_posix_bindshell/command.js
+++ b/modules/ipec/inter_protocol_posix_bindshell/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f8d6e9987..f6b02d2e3 100644
--- a/modules/ipec/inter_protocol_posix_bindshell/config.yaml
+++ b/modules/ipec/inter_protocol_posix_bindshell/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/inter_protocol_posix_bindshell/module.rb b/modules/ipec/inter_protocol_posix_bindshell/module.rb
index ee6330188..545745388 100644
--- a/modules/ipec/inter_protocol_posix_bindshell/module.rb
+++ b/modules/ipec/inter_protocol_posix_bindshell/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # [+] Summary:
diff --git a/modules/ipec/inter_protocol_redis/command.js b/modules/ipec/inter_protocol_redis/command.js
index 85cbf080a..608cf3333 100644
--- a/modules/ipec/inter_protocol_redis/command.js
+++ b/modules/ipec/inter_protocol_redis/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 31f0b3c50..48fc88526 100644
--- a/modules/ipec/inter_protocol_redis/config.yaml
+++ b/modules/ipec/inter_protocol_redis/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/inter_protocol_redis/module.rb b/modules/ipec/inter_protocol_redis/module.rb
index 8da487ccf..61baaac20 100644
--- a/modules/ipec/inter_protocol_redis/module.rb
+++ b/modules/ipec/inter_protocol_redis/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Inter_protocol_redis < BeEF::Core::Command
diff --git a/modules/ipec/inter_protocol_win_bindshell/command.js b/modules/ipec/inter_protocol_win_bindshell/command.js
index 1f9c8312d..a8b3cdd05 100644
--- a/modules/ipec/inter_protocol_win_bindshell/command.js
+++ b/modules/ipec/inter_protocol_win_bindshell/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7a656f0ea..62b99488c 100644
--- a/modules/ipec/inter_protocol_win_bindshell/command.old.js
+++ b/modules/ipec/inter_protocol_win_bindshell/command.old.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 // This is the old module which supports bi-directional communications for Firefox before version ~16
diff --git a/modules/ipec/inter_protocol_win_bindshell/config.yaml b/modules/ipec/inter_protocol_win_bindshell/config.yaml
index 44d1d0be4..3f2e4774c 100644
--- a/modules/ipec/inter_protocol_win_bindshell/config.yaml
+++ b/modules/ipec/inter_protocol_win_bindshell/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/inter_protocol_win_bindshell/module.rb b/modules/ipec/inter_protocol_win_bindshell/module.rb
index 47df4a4c9..b3fa13ba0 100644
--- a/modules/ipec/inter_protocol_win_bindshell/module.rb
+++ b/modules/ipec/inter_protocol_win_bindshell/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # The bindshell is closed once the module has completed. This is necessary otherwise the cmd.exe process will hang. To avoid this issue:
diff --git a/modules/ipec/s2c_dns_tunnel/command.js b/modules/ipec/s2c_dns_tunnel/command.js
index cbaf54b4b..34674eb89 100644
--- a/modules/ipec/s2c_dns_tunnel/command.js
+++ b/modules/ipec/s2c_dns_tunnel/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0b754a5ef..d09ab5df9 100644
--- a/modules/ipec/s2c_dns_tunnel/config.yaml
+++ b/modules/ipec/s2c_dns_tunnel/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/ipec/s2c_dns_tunnel/module.rb b/modules/ipec/s2c_dns_tunnel/module.rb
index 691aa6c92..6e15cf28d 100644
--- a/modules/ipec/s2c_dns_tunnel/module.rb
+++ b/modules/ipec/s2c_dns_tunnel/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class S2c_dns_tunnel < BeEF::Core::Command
diff --git a/modules/metasploit/browser_autopwn/command.js b/modules/metasploit/browser_autopwn/command.js
index e96dff787..c7cf9715a 100644
--- a/modules/metasploit/browser_autopwn/command.js
+++ b/modules/metasploit/browser_autopwn/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3c0c7246f..b7d6a4823 100644
--- a/modules/metasploit/browser_autopwn/config.yaml
+++ b/modules/metasploit/browser_autopwn/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/metasploit/browser_autopwn/module.rb b/modules/metasploit/browser_autopwn/module.rb
index 595cd615a..9f23b5734 100644
--- a/modules/metasploit/browser_autopwn/module.rb
+++ b/modules/metasploit/browser_autopwn/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Browser_autopwn < BeEF::Core::Command
diff --git a/modules/misc/blockui/command.js b/modules/misc/blockui/command.js
index e76b40583..b786d4778 100644
--- a/modules/misc/blockui/command.js
+++ b/modules/misc/blockui/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9b1e4e84f..ef39399f7 100644
--- a/modules/misc/blockui/config.yaml
+++ b/modules/misc/blockui/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/blockui/module.rb b/modules/misc/blockui/module.rb
index d362e62a4..d99f2e773 100644
--- a/modules/misc/blockui/module.rb
+++ b/modules/misc/blockui/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Blockui < BeEF::Core::Command
diff --git a/modules/misc/iframe_keylogger/command.js b/modules/misc/iframe_keylogger/command.js
index 1c8ad0e22..c108912b0 100644
--- a/modules/misc/iframe_keylogger/command.js
+++ b/modules/misc/iframe_keylogger/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a2c4a72e6..7db1f2810 100644
--- a/modules/misc/iframe_keylogger/config.yaml
+++ b/modules/misc/iframe_keylogger/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/iframe_keylogger/module.rb b/modules/misc/iframe_keylogger/module.rb
index f780bb887..dee1dfb0c 100644
--- a/modules/misc/iframe_keylogger/module.rb
+++ b/modules/misc/iframe_keylogger/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Iframe_keylogger < BeEF::Core::Command
diff --git a/modules/misc/iframe_sniffer/command.js b/modules/misc/iframe_sniffer/command.js
index 823a9a2fa..0f498b9e7 100644
--- a/modules/misc/iframe_sniffer/command.js
+++ b/modules/misc/iframe_sniffer/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 89c0b6421..7da02be52 100644
--- a/modules/misc/iframe_sniffer/config.yaml
+++ b/modules/misc/iframe_sniffer/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/iframe_sniffer/module.rb b/modules/misc/iframe_sniffer/module.rb
index 4379a0a83..54512e667 100644
--- a/modules/misc/iframe_sniffer/module.rb
+++ b/modules/misc/iframe_sniffer/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Iframe_sniffer < BeEF::Core::Command
diff --git a/modules/misc/invisible_iframe/command.js b/modules/misc/invisible_iframe/command.js
index 0ca646866..007091973 100644
--- a/modules/misc/invisible_iframe/command.js
+++ b/modules/misc/invisible_iframe/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 612a601ad..84b35f23f 100644
--- a/modules/misc/invisible_iframe/config.yaml
+++ b/modules/misc/invisible_iframe/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/invisible_iframe/module.rb b/modules/misc/invisible_iframe/module.rb
index d52720bae..1eb280c28 100644
--- a/modules/misc/invisible_iframe/module.rb
+++ b/modules/misc/invisible_iframe/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Invisible_iframe < BeEF::Core::Command
diff --git a/modules/misc/local_file_theft/command.js b/modules/misc/local_file_theft/command.js
index cc81d4d62..ecfb1ec18 100644
--- a/modules/misc/local_file_theft/command.js
+++ b/modules/misc/local_file_theft/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 c7943f10c..85791bb03 100644
--- a/modules/misc/local_file_theft/config.yaml
+++ b/modules/misc/local_file_theft/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #  local_file_theft
diff --git a/modules/misc/local_file_theft/module.rb b/modules/misc/local_file_theft/module.rb
index 745e308b2..0f6cf7836 100644
--- a/modules/misc/local_file_theft/module.rb
+++ b/modules/misc/local_file_theft/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # local_file_theft
diff --git a/modules/misc/nosleep/command.js b/modules/misc/nosleep/command.js
index 5c13730db..3ed37402f 100644
--- a/modules/misc/nosleep/command.js
+++ b/modules/misc/nosleep/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 78e62fb23..3b5c9bbee 100644
--- a/modules/misc/nosleep/config.yaml
+++ b/modules/misc/nosleep/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/nosleep/module.rb b/modules/misc/nosleep/module.rb
index 57873f6b7..2cc5ab3b1 100644
--- a/modules/misc/nosleep/module.rb
+++ b/modules/misc/nosleep/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class No_sleep < BeEF::Core::Command
diff --git a/modules/misc/raw_javascript/command.js b/modules/misc/raw_javascript/command.js
index 9d3e93990..d384a2cca 100644
--- a/modules/misc/raw_javascript/command.js
+++ b/modules/misc/raw_javascript/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ab24209ad..5d02e0fce 100644
--- a/modules/misc/raw_javascript/config.yaml
+++ b/modules/misc/raw_javascript/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/raw_javascript/module.rb b/modules/misc/raw_javascript/module.rb
index e9628231f..5d0dc7888 100644
--- a/modules/misc/raw_javascript/module.rb
+++ b/modules/misc/raw_javascript/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Raw_javascript < BeEF::Core::Command
diff --git a/modules/misc/track_physical_movement/command.js b/modules/misc/track_physical_movement/command.js
index c8f5befb0..1a04d8b76 100644
--- a/modules/misc/track_physical_movement/command.js
+++ b/modules/misc/track_physical_movement/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e65376c0b..33c794950 100644
--- a/modules/misc/track_physical_movement/config.yaml
+++ b/modules/misc/track_physical_movement/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/track_physical_movement/module.rb b/modules/misc/track_physical_movement/module.rb
index abb91c0d9..3b5bdefdb 100644
--- a/modules/misc/track_physical_movement/module.rb
+++ b/modules/misc/track_physical_movement/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Track_physical_movement < BeEF::Core::Command
diff --git a/modules/misc/unblockui/command.js b/modules/misc/unblockui/command.js
index cc0e74f10..3c694d16e 100644
--- a/modules/misc/unblockui/command.js
+++ b/modules/misc/unblockui/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 add2c78f1..a2b074ba7 100644
--- a/modules/misc/unblockui/config.yaml
+++ b/modules/misc/unblockui/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/unblockui/module.rb b/modules/misc/unblockui/module.rb
index 1fcf66ff0..1b2371766 100644
--- a/modules/misc/unblockui/module.rb
+++ b/modules/misc/unblockui/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Unblockui < BeEF::Core::Command
diff --git a/modules/misc/wordpress/add_user/command.js b/modules/misc/wordpress/add_user/command.js
index c95e4fc22..995dc3528 100644
--- a/modules/misc/wordpress/add_user/command.js
+++ b/modules/misc/wordpress/add_user/command.js
@@ -1,5 +1,5 @@
 /*
-  Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+  Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
   See the file 'doc/COPYING' for copying permission
 
   This is a complete rewrite of the original module exploits/wordpress_add_admin which was not working anymore
diff --git a/modules/misc/wordpress/add_user/config.yaml b/modules/misc/wordpress/add_user/config.yaml
index 0e27769e8..f5388765c 100644
--- a/modules/misc/wordpress/add_user/config.yaml
+++ b/modules/misc/wordpress/add_user/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 # 
 # This is a complete rewrite of the original module exploits/wordpress_add_admin which was not working anymore
diff --git a/modules/misc/wordpress/add_user/module.rb b/modules/misc/wordpress/add_user/module.rb
index ae8cdd47a..b621e35dc 100644
--- a/modules/misc/wordpress/add_user/module.rb
+++ b/modules/misc/wordpress/add_user/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # This is a complete rewrite of the original module exploits/wordpress_add_admin which was not working anymore
diff --git a/modules/misc/wordpress/current_user_info/command.js b/modules/misc/wordpress/current_user_info/command.js
index 64a4a10db..593baca14 100644
--- a/modules/misc/wordpress/current_user_info/command.js
+++ b/modules/misc/wordpress/current_user_info/command.js
@@ -1,5 +1,5 @@
 /*
-  Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+  Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
   See the file 'doc/COPYING' for copying permission
   
   Author @erwan_lr (WPScanTeam) - https://wpscan.org/
diff --git a/modules/misc/wordpress/current_user_info/config.yaml b/modules/misc/wordpress/current_user_info/config.yaml
index 013fb6598..dbcea2056 100644
--- a/modules/misc/wordpress/current_user_info/config.yaml
+++ b/modules/misc/wordpress/current_user_info/config.yaml
@@ -1,5 +1,5 @@
 #
-# Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Author @erwan_lr (WPscanTeam) - https://wpscan.org/
diff --git a/modules/misc/wordpress/current_user_info/module.rb b/modules/misc/wordpress/current_user_info/module.rb
index cc5dda314..82d987213 100644
--- a/modules/misc/wordpress/current_user_info/module.rb
+++ b/modules/misc/wordpress/current_user_info/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Author @erwan_lr (WPscanTeam) - https://wpscan.org/
diff --git a/modules/misc/wordpress/upload_rce_plugin/beefbind.php b/modules/misc/wordpress/upload_rce_plugin/beefbind.php
index 0e298fffc..c048cf925 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-2024Wade Alcorn - wade@bindshell.net - Browser Exploitation Framework (BeEF) - http://beefproject.com - See the file 'doc/COPYING' for copying permission
+ * License: Copyright (c) 2006-2024Wade 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/command.js b/modules/misc/wordpress/upload_rce_plugin/command.js
index 73d11b3bb..b6b009a7b 100644
--- a/modules/misc/wordpress/upload_rce_plugin/command.js
+++ b/modules/misc/wordpress/upload_rce_plugin/command.js
@@ -1,5 +1,5 @@
 /*
-  Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+  Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
   See the file 'doc/COPYING' for copying permission
   
   This is a rewrite of the original module misc/wordpress_post_auth_rce.
diff --git a/modules/misc/wordpress/upload_rce_plugin/config.yaml b/modules/misc/wordpress/upload_rce_plugin/config.yaml
index a1c261911..d346015a3 100644
--- a/modules/misc/wordpress/upload_rce_plugin/config.yaml
+++ b/modules/misc/wordpress/upload_rce_plugin/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/wordpress/upload_rce_plugin/module.rb b/modules/misc/wordpress/upload_rce_plugin/module.rb
index fed292d16..b4e3042c5 100644
--- a/modules/misc/wordpress/upload_rce_plugin/module.rb
+++ b/modules/misc/wordpress/upload_rce_plugin/module.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # This is a rewrite of the original module misc/wordpress_post_auth_rce.
diff --git a/modules/misc/wordpress/wordpress_command.rb b/modules/misc/wordpress/wordpress_command.rb
index 20775fe09..42dfd83a3 100644
--- a/modules/misc/wordpress/wordpress_command.rb
+++ b/modules/misc/wordpress/wordpress_command.rb
@@ -1,5 +1,5 @@
 #
-# Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Author Erwan LR (@erwan_lr | WPScanTeam) - https://wpscan.org/
diff --git a/modules/misc/wordpress/wp.js b/modules/misc/wordpress/wp.js
index 248f13356..9226cc526 100644
--- a/modules/misc/wordpress/wp.js
+++ b/modules/misc/wordpress/wp.js
@@ -1,5 +1,5 @@
 /*
-  Copyright (c) Browser Exploitation Framework (BeEF) - http://beefproject.com
+  Copyright (c) Browser Exploitation Framework (BeEF) - https://beefproject.com
   See the file 'doc/COPYING' for copying permission
   
   Author @erwan_lr (WPScanTeam) - https://wpscan.org/
diff --git a/modules/misc/wordpress_post_auth_rce/command.js b/modules/misc/wordpress_post_auth_rce/command.js
index dca3d1ab8..f153c3892 100644
--- a/modules/misc/wordpress_post_auth_rce/command.js
+++ b/modules/misc/wordpress_post_auth_rce/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3d1300e27..5baf5ec8a 100644
--- a/modules/misc/wordpress_post_auth_rce/config.yaml
+++ b/modules/misc/wordpress_post_auth_rce/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/misc/wordpress_post_auth_rce/module.rb b/modules/misc/wordpress_post_auth_rce/module.rb
index fa777b373..6a4bab96d 100644
--- a/modules/misc/wordpress_post_auth_rce/module.rb
+++ b/modules/misc/wordpress_post_auth_rce/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Wordpress_post_auth_rce < BeEF::Core::Command
diff --git a/modules/network/ADC/f5_bigip_cookie_disclosure/command.js b/modules/network/ADC/f5_bigip_cookie_disclosure/command.js
index 3b6294076..da7f9c00c 100644
--- a/modules/network/ADC/f5_bigip_cookie_disclosure/command.js
+++ b/modules/network/ADC/f5_bigip_cookie_disclosure/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e0ce52bb8..97ece2edf 100644
--- a/modules/network/ADC/f5_bigip_cookie_disclosure/config.yaml
+++ b/modules/network/ADC/f5_bigip_cookie_disclosure/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb b/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb
index 3c4398a84..3b46e1f9a 100644
--- a/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb
+++ b/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class F5_bigip_cookie_disclosure < BeEF::Core::Command
diff --git a/modules/network/ADC/f5_bigip_cookie_stealing/command.js b/modules/network/ADC/f5_bigip_cookie_stealing/command.js
index 2021263a4..264d8ae9f 100644
--- a/modules/network/ADC/f5_bigip_cookie_stealing/command.js
+++ b/modules/network/ADC/f5_bigip_cookie_stealing/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3ff645c92..352daa4a1 100644
--- a/modules/network/ADC/f5_bigip_cookie_stealing/config.yaml
+++ b/modules/network/ADC/f5_bigip_cookie_stealing/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/ADC/f5_bigip_cookie_stealing/module.rb b/modules/network/ADC/f5_bigip_cookie_stealing/module.rb
index 6c5b05c5f..61a78305f 100644
--- a/modules/network/ADC/f5_bigip_cookie_stealing/module.rb
+++ b/modules/network/ADC/f5_bigip_cookie_stealing/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class F5_bigip_cookie_stealing < BeEF::Core::Command
diff --git a/modules/network/DOSer/command.js b/modules/network/DOSer/command.js
index 0646fd9d2..34af86856 100644
--- a/modules/network/DOSer/command.js
+++ b/modules/network/DOSer/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 37ebb22fe..3c767cb01 100644
--- a/modules/network/DOSer/config.yaml
+++ b/modules/network/DOSer/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/DOSer/module.rb b/modules/network/DOSer/module.rb
index fa664c85b..77fbd16bf 100644
--- a/modules/network/DOSer/module.rb
+++ b/modules/network/DOSer/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Doser < BeEF::Core::Command
diff --git a/modules/network/cross_origin_scanner_cors/command.js b/modules/network/cross_origin_scanner_cors/command.js
index 859e17628..052218b58 100644
--- a/modules/network/cross_origin_scanner_cors/command.js
+++ b/modules/network/cross_origin_scanner_cors/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2099344d8..edde152e6 100644
--- a/modules/network/cross_origin_scanner_cors/config.yaml
+++ b/modules/network/cross_origin_scanner_cors/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/cross_origin_scanner_cors/module.rb b/modules/network/cross_origin_scanner_cors/module.rb
index 1367c9be9..51f5751ab 100644
--- a/modules/network/cross_origin_scanner_cors/module.rb
+++ b/modules/network/cross_origin_scanner_cors/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Cross_origin_scanner_cors < BeEF::Core::Command
diff --git a/modules/network/cross_origin_scanner_flash/command.js b/modules/network/cross_origin_scanner_flash/command.js
index 40838514a..cc1af6c93 100644
--- a/modules/network/cross_origin_scanner_flash/command.js
+++ b/modules/network/cross_origin_scanner_flash/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0ea98150f..5e3508c57 100644
--- a/modules/network/cross_origin_scanner_flash/config.yaml
+++ b/modules/network/cross_origin_scanner_flash/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/cross_origin_scanner_flash/module.rb b/modules/network/cross_origin_scanner_flash/module.rb
index 59be75d9d..a802399e9 100644
--- a/modules/network/cross_origin_scanner_flash/module.rb
+++ b/modules/network/cross_origin_scanner_flash/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Cross_origin_scanner_flash < BeEF::Core::Command
diff --git a/modules/network/detect_burp/command.js b/modules/network/detect_burp/command.js
index e8221df9d..c538cd9c3 100644
--- a/modules/network/detect_burp/command.js
+++ b/modules/network/detect_burp/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 4f16555f7..fea4763f9 100644
--- a/modules/network/detect_burp/config.yaml
+++ b/modules/network/detect_burp/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/detect_burp/module.rb b/modules/network/detect_burp/module.rb
index 5ad3c9703..8bb148807 100644
--- a/modules/network/detect_burp/module.rb
+++ b/modules/network/detect_burp/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_burp < BeEF::Core::Command
diff --git a/modules/network/detect_ethereum_ens/command.js b/modules/network/detect_ethereum_ens/command.js
index b2e161214..207ba5870 100644
--- a/modules/network/detect_ethereum_ens/command.js
+++ b/modules/network/detect_ethereum_ens/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 f1b411203..531e04c4a 100644
--- a/modules/network/detect_ethereum_ens/config.yaml
+++ b/modules/network/detect_ethereum_ens/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/detect_ethereum_ens/module.rb b/modules/network/detect_ethereum_ens/module.rb
index 621479d93..01645fe51 100644
--- a/modules/network/detect_ethereum_ens/module.rb
+++ b/modules/network/detect_ethereum_ens/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_ethereum_ens < BeEF::Core::Command
diff --git a/modules/network/detect_opennic/command.js b/modules/network/detect_opennic/command.js
index 3ddaff66f..a277948d9 100644
--- a/modules/network/detect_opennic/command.js
+++ b/modules/network/detect_opennic/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e45ac36a5..baecd09fc 100644
--- a/modules/network/detect_opennic/config.yaml
+++ b/modules/network/detect_opennic/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/detect_opennic/module.rb b/modules/network/detect_opennic/module.rb
index e8f83ec25..520650e60 100644
--- a/modules/network/detect_opennic/module.rb
+++ b/modules/network/detect_opennic/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_opennic < BeEF::Core::Command
diff --git a/modules/network/detect_soc_nets/command.js b/modules/network/detect_soc_nets/command.js
index cbcd43429..e36584070 100644
--- a/modules/network/detect_soc_nets/command.js
+++ b/modules/network/detect_soc_nets/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 19f02e04d..bdeadd6f2 100644
--- a/modules/network/detect_soc_nets/config.yaml
+++ b/modules/network/detect_soc_nets/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/detect_soc_nets/module.rb b/modules/network/detect_soc_nets/module.rb
index 43b219e89..dacf36f65 100644
--- a/modules/network/detect_soc_nets/module.rb
+++ b/modules/network/detect_soc_nets/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_soc_nets < BeEF::Core::Command
diff --git a/modules/network/detect_tor/command.js b/modules/network/detect_tor/command.js
index e4b6374a3..3ef3371d7 100644
--- a/modules/network/detect_tor/command.js
+++ b/modules/network/detect_tor/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 c9b8eef9e..97fd76d3d 100644
--- a/modules/network/detect_tor/config.yaml
+++ b/modules/network/detect_tor/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/detect_tor/module.rb b/modules/network/detect_tor/module.rb
index f28b6aee1..c20a53cba 100644
--- a/modules/network/detect_tor/module.rb
+++ b/modules/network/detect_tor/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Detect_tor < BeEF::Core::Command
diff --git a/modules/network/dns_enumeration/command.js b/modules/network/dns_enumeration/command.js
index a6e5f2381..c7fc38d47 100644
--- a/modules/network/dns_enumeration/command.js
+++ b/modules/network/dns_enumeration/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 bf6f49fc6..70a67042b 100644
--- a/modules/network/dns_enumeration/config.yaml
+++ b/modules/network/dns_enumeration/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/dns_enumeration/module.rb b/modules/network/dns_enumeration/module.rb
index 05f6b44da..db832ea67 100644
--- a/modules/network/dns_enumeration/module.rb
+++ b/modules/network/dns_enumeration/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 b58d1d554..6d75a5e1d 100644
--- a/modules/network/dns_rebinding/command.js
+++ b/modules/network/dns_rebinding/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 beef.execute(function() {
diff --git a/modules/network/dns_rebinding/config.yaml b/modules/network/dns_rebinding/config.yaml
index 2042477b0..56fca4f0a 100644
--- a/modules/network/dns_rebinding/config.yaml
+++ b/modules/network/dns_rebinding/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/dns_rebinding/module.rb b/modules/network/dns_rebinding/module.rb
index 28c1af2da..73ca2e8b3 100644
--- a/modules/network/dns_rebinding/module.rb
+++ b/modules/network/dns_rebinding/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Dns_rebinding < BeEF::Core::Command
diff --git a/modules/network/fetch_port_scanner/command.js b/modules/network/fetch_port_scanner/command.js
index 71dc0d01f..773d1005f 100644
--- a/modules/network/fetch_port_scanner/command.js
+++ b/modules/network/fetch_port_scanner/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 68d955b32..638af2b64 100644
--- a/modules/network/fetch_port_scanner/config.yaml
+++ b/modules/network/fetch_port_scanner/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/fetch_port_scanner/module.rb b/modules/network/fetch_port_scanner/module.rb
index 05c9de414..1bdd27bb7 100644
--- a/modules/network/fetch_port_scanner/module.rb
+++ b/modules/network/fetch_port_scanner/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Fetch_port_scanner < BeEF::Core::Command
diff --git a/modules/network/get_http_servers/command.js b/modules/network/get_http_servers/command.js
index cecaa5687..2a2bc5631 100644
--- a/modules/network/get_http_servers/command.js
+++ b/modules/network/get_http_servers/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 289d11569..daddfbf06 100644
--- a/modules/network/get_http_servers/config.yaml
+++ b/modules/network/get_http_servers/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/get_http_servers/module.rb b/modules/network/get_http_servers/module.rb
index e25e7c881..99d061e62 100644
--- a/modules/network/get_http_servers/module.rb
+++ b/modules/network/get_http_servers/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 4448346b2..658ae57ab 100644
--- a/modules/network/get_ntop_network_hosts/command.js
+++ b/modules/network/get_ntop_network_hosts/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 de6ea7980..59f8efc4a 100644
--- a/modules/network/get_ntop_network_hosts/config.yaml
+++ b/modules/network/get_ntop_network_hosts/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/get_ntop_network_hosts/module.rb b/modules/network/get_ntop_network_hosts/module.rb
index b1c41ac1d..0c10e5137 100644
--- a/modules/network/get_ntop_network_hosts/module.rb
+++ b/modules/network/get_ntop_network_hosts/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_ntop_network_hosts < BeEF::Core::Command
diff --git a/modules/network/get_proxy_servers_wpad/command.js b/modules/network/get_proxy_servers_wpad/command.js
index 52cb90418..b2c5593ee 100644
--- a/modules/network/get_proxy_servers_wpad/command.js
+++ b/modules/network/get_proxy_servers_wpad/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3b5b6f381..30e0eb7a5 100644
--- a/modules/network/get_proxy_servers_wpad/config.yaml
+++ b/modules/network/get_proxy_servers_wpad/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/get_proxy_servers_wpad/module.rb b/modules/network/get_proxy_servers_wpad/module.rb
index d3deff351..405d91c30 100644
--- a/modules/network/get_proxy_servers_wpad/module.rb
+++ b/modules/network/get_proxy_servers_wpad/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Get_proxy_servers_wpad < BeEF::Core::Command
diff --git a/modules/network/identify_lan_subnets/command.js b/modules/network/identify_lan_subnets/command.js
index a5ac1080e..58fbb90be 100644
--- a/modules/network/identify_lan_subnets/command.js
+++ b/modules/network/identify_lan_subnets/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 820814998..e43794037 100644
--- a/modules/network/identify_lan_subnets/config.yaml
+++ b/modules/network/identify_lan_subnets/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/identify_lan_subnets/module.rb b/modules/network/identify_lan_subnets/module.rb
index 87f94745b..a2388fb3c 100644
--- a/modules/network/identify_lan_subnets/module.rb
+++ b/modules/network/identify_lan_subnets/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 435c19033..8fb5d9ff1 100644
--- a/modules/network/internal_network_fingerprinting/command.js
+++ b/modules/network/internal_network_fingerprinting/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 234189a6a..8350777fc 100644
--- a/modules/network/internal_network_fingerprinting/config.yaml
+++ b/modules/network/internal_network_fingerprinting/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/internal_network_fingerprinting/module.rb b/modules/network/internal_network_fingerprinting/module.rb
index ffceee7ec..de009eb49 100644
--- a/modules/network/internal_network_fingerprinting/module.rb
+++ b/modules/network/internal_network_fingerprinting/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 521152a71..328173e70 100644
--- a/modules/network/jslanscanner/command.js
+++ b/modules/network/jslanscanner/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 // Ported to BeEF from jslanscanner: https://code.google.com/p/jslanscanner/source/browse/trunk/lan_scan/js/lan_scan.js
diff --git a/modules/network/jslanscanner/config.yaml b/modules/network/jslanscanner/config.yaml
index f0d4293b2..13be09cf6 100644
--- a/modules/network/jslanscanner/config.yaml
+++ b/modules/network/jslanscanner/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Ported to BeEF from JsLanScanner: https://code.google.com/p/jslanscanner/source/browse/trunk/lan_scan/js/lan_scan.js
diff --git a/modules/network/jslanscanner/module.rb b/modules/network/jslanscanner/module.rb
index 00dc60237..91056da9a 100644
--- a/modules/network/jslanscanner/module.rb
+++ b/modules/network/jslanscanner/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 bb0af99ce..2e1850180 100644
--- a/modules/network/nat_pinning_irc/command.js
+++ b/modules/network/nat_pinning_irc/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 05f2dc5f4..f30c414c4 100644
--- a/modules/network/nat_pinning_irc/config.yaml
+++ b/modules/network/nat_pinning_irc/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/nat_pinning_irc/module.rb b/modules/network/nat_pinning_irc/module.rb
index 45eb811cb..efdaf5bdd 100644
--- a/modules/network/nat_pinning_irc/module.rb
+++ b/modules/network/nat_pinning_irc/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Irc_nat_pinning < BeEF::Core::Command
diff --git a/modules/network/ping_sweep/command.js b/modules/network/ping_sweep/command.js
index ff7e7cb05..1a8a64de2 100644
--- a/modules/network/ping_sweep/command.js
+++ b/modules/network/ping_sweep/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 b5fad66a9..3db356641 100644
--- a/modules/network/ping_sweep/config.yaml
+++ b/modules/network/ping_sweep/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/ping_sweep/module.rb b/modules/network/ping_sweep/module.rb
index dfe922feb..2ad3c3867 100644
--- a/modules/network/ping_sweep/module.rb
+++ b/modules/network/ping_sweep/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Ping_sweep < BeEF::Core::Command
diff --git a/modules/network/ping_sweep_ff/command.js b/modules/network/ping_sweep_ff/command.js
index a82c23a59..e2a3407d4 100644
--- a/modules/network/ping_sweep_ff/command.js
+++ b/modules/network/ping_sweep_ff/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1a01e4003..1d6a555b6 100644
--- a/modules/network/ping_sweep_ff/config.yaml
+++ b/modules/network/ping_sweep_ff/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/ping_sweep_ff/module.rb b/modules/network/ping_sweep_ff/module.rb
index 24ad1ce09..e2e417b27 100644
--- a/modules/network/ping_sweep_ff/module.rb
+++ b/modules/network/ping_sweep_ff/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 2a18cfd9a..d55bf2c08 100644
--- a/modules/network/ping_sweep_java/command.js
+++ b/modules/network/ping_sweep_java/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 529c0c032..315ef2ab6 100644
--- a/modules/network/ping_sweep_java/config.yaml
+++ b/modules/network/ping_sweep_java/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/ping_sweep_java/module.rb b/modules/network/ping_sweep_java/module.rb
index a80dff9d8..9b06fb616 100644
--- a/modules/network/ping_sweep_java/module.rb
+++ b/modules/network/ping_sweep_java/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 d6c2a5342..81cb0e410 100644
--- a/modules/network/ping_sweep_java/pingSweep.java
+++ b/modules/network/ping_sweep_java/pingSweep.java
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 5ffd5baa2..f19ae2a89 100644
--- a/modules/network/port_scanner/command.js
+++ b/modules/network/port_scanner/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5f93c81e3..2c509bb99 100644
--- a/modules/network/port_scanner/config.yaml
+++ b/modules/network/port_scanner/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/network/port_scanner/module.rb b/modules/network/port_scanner/module.rb
index e9fa7bef2..a20de1cc8 100644
--- a/modules/network/port_scanner/module.rb
+++ b/modules/network/port_scanner/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 9e6c9d91e..04c95f8c8 100644
--- a/modules/persistence/confirm_close_tab/command.js
+++ b/modules/persistence/confirm_close_tab/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 d1bf5fc1d..93eb6e66d 100644
--- a/modules/persistence/confirm_close_tab/config.yaml
+++ b/modules/persistence/confirm_close_tab/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/persistence/confirm_close_tab/module.rb b/modules/persistence/confirm_close_tab/module.rb
index b39d8b932..96ddc55df 100644
--- a/modules/persistence/confirm_close_tab/module.rb
+++ b/modules/persistence/confirm_close_tab/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Confirm_close_tab < BeEF::Core::Command
diff --git a/modules/persistence/hijack_opener/command.js b/modules/persistence/hijack_opener/command.js
index c7c252f44..f5f8cbaeb 100644
--- a/modules/persistence/hijack_opener/command.js
+++ b/modules/persistence/hijack_opener/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 dfc92bf6d..b3010d41f 100644
--- a/modules/persistence/hijack_opener/config.yaml
+++ b/modules/persistence/hijack_opener/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/persistence/hijack_opener/module.rb b/modules/persistence/hijack_opener/module.rb
index 7d4e123ef..0f195cc99 100644
--- a/modules/persistence/hijack_opener/module.rb
+++ b/modules/persistence/hijack_opener/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Hijack_opener < BeEF::Core::Command
diff --git a/modules/persistence/iframe_above/command.js b/modules/persistence/iframe_above/command.js
index d7883c343..2f8792949 100644
--- a/modules/persistence/iframe_above/command.js
+++ b/modules/persistence/iframe_above/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 12fe755f1..f709f1e7d 100644
--- a/modules/persistence/iframe_above/config.yaml
+++ b/modules/persistence/iframe_above/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/persistence/iframe_above/module.rb b/modules/persistence/iframe_above/module.rb
index 05c9d1241..ec5b42d8a 100644
--- a/modules/persistence/iframe_above/module.rb
+++ b/modules/persistence/iframe_above/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Iframe_above < BeEF::Core::Command
diff --git a/modules/persistence/invisible_htmlfile_activex/command.js b/modules/persistence/invisible_htmlfile_activex/command.js
index 54d8c31ba..ac1cf214e 100644
--- a/modules/persistence/invisible_htmlfile_activex/command.js
+++ b/modules/persistence/invisible_htmlfile_activex/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 075d0cc2e..ba008ebf3 100644
--- a/modules/persistence/invisible_htmlfile_activex/config.yaml
+++ b/modules/persistence/invisible_htmlfile_activex/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/persistence/invisible_htmlfile_activex/module.rb b/modules/persistence/invisible_htmlfile_activex/module.rb
index ea2901f36..a37789d05 100644
--- a/modules/persistence/invisible_htmlfile_activex/module.rb
+++ b/modules/persistence/invisible_htmlfile_activex/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Invisible_htmlfile_activex < BeEF::Core::Command
diff --git a/modules/persistence/jsonp_service_worker/command.js b/modules/persistence/jsonp_service_worker/command.js
index 52e22a3d6..bbc3bef48 100644
--- a/modules/persistence/jsonp_service_worker/command.js
+++ b/modules/persistence/jsonp_service_worker/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 c469c009d..fe942213c 100644
--- a/modules/persistence/jsonp_service_worker/config.yaml
+++ b/modules/persistence/jsonp_service_worker/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/persistence/man_in_the_browser/command.js b/modules/persistence/man_in_the_browser/command.js
index 4654cb76b..05b32f798 100644
--- a/modules/persistence/man_in_the_browser/command.js
+++ b/modules/persistence/man_in_the_browser/command.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 9d2a228a4..26f1505af 100644
--- a/modules/persistence/man_in_the_browser/config.yaml
+++ b/modules/persistence/man_in_the_browser/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/persistence/man_in_the_browser/module.rb b/modules/persistence/man_in_the_browser/module.rb
index f7dedd09b..72a681fc6 100644
--- a/modules/persistence/man_in_the_browser/module.rb
+++ b/modules/persistence/man_in_the_browser/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 9454319af..69bea3c69 100644
--- a/modules/persistence/popunder_window/command.js
+++ b/modules/persistence/popunder_window/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5cc8c4cd7..89ec51e6e 100644
--- a/modules/persistence/popunder_window/config.yaml
+++ b/modules/persistence/popunder_window/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/persistence/popunder_window/module.rb b/modules/persistence/popunder_window/module.rb
index 2b02d22ae..ed43fa999 100644
--- a/modules/persistence/popunder_window/module.rb
+++ b/modules/persistence/popunder_window/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Popunder_window < BeEF::Core::Command
diff --git a/modules/persistence/popunder_window_ie/command.js b/modules/persistence/popunder_window_ie/command.js
index 536b73ada..a4e0673db 100644
--- a/modules/persistence/popunder_window_ie/command.js
+++ b/modules/persistence/popunder_window_ie/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3fe09c65a..5708e40ab 100644
--- a/modules/persistence/popunder_window_ie/config.yaml
+++ b/modules/persistence/popunder_window_ie/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/persistence/popunder_window_ie/module.rb b/modules/persistence/popunder_window_ie/module.rb
index 7f09df15b..c66250336 100644
--- a/modules/persistence/popunder_window_ie/module.rb
+++ b/modules/persistence/popunder_window_ie/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Popunder_window_ie < BeEF::Core::Command
diff --git a/modules/phonegap/phonegap_alert_user/command.js b/modules/phonegap/phonegap_alert_user/command.js
index e0d64e894..742294bfb 100644
--- a/modules/phonegap/phonegap_alert_user/command.js
+++ b/modules/phonegap/phonegap_alert_user/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 6cac8f81b..ed7fcc05d 100644
--- a/modules/phonegap/phonegap_alert_user/config.yaml
+++ b/modules/phonegap/phonegap_alert_user/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   Phonegap_prompt_user
diff --git a/modules/phonegap/phonegap_alert_user/module.rb b/modules/phonegap/phonegap_alert_user/module.rb
index 2570524fc..b2a20749e 100644
--- a/modules/phonegap/phonegap_alert_user/module.rb
+++ b/modules/phonegap/phonegap_alert_user/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Phonegap_prompt_user
diff --git a/modules/phonegap/phonegap_beep/command.js b/modules/phonegap/phonegap_beep/command.js
index 38287e77b..1219fc5a8 100644
--- a/modules/phonegap/phonegap_beep/command.js
+++ b/modules/phonegap/phonegap_beep/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 85b926a63..83335d806 100644
--- a/modules/phonegap/phonegap_beep/config.yaml
+++ b/modules/phonegap/phonegap_beep/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap
diff --git a/modules/phonegap/phonegap_beep/module.rb b/modules/phonegap/phonegap_beep/module.rb
index 1ae3410a5..a482ef906 100644
--- a/modules/phonegap/phonegap_beep/module.rb
+++ b/modules/phonegap/phonegap_beep/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # phonegap
diff --git a/modules/phonegap/phonegap_check_connection/command.js b/modules/phonegap/phonegap_check_connection/command.js
index 93c7210de..d57a4323c 100644
--- a/modules/phonegap/phonegap_check_connection/command.js
+++ b/modules/phonegap/phonegap_check_connection/command.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 579baae6b..52b9c64e5 100644
--- a/modules/phonegap/phonegap_check_connection/config.yaml
+++ b/modules/phonegap/phonegap_check_connection/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap
diff --git a/modules/phonegap/phonegap_check_connection/module.rb b/modules/phonegap/phonegap_check_connection/module.rb
index 2bf890ceb..739a834f1 100644
--- a/modules/phonegap/phonegap_check_connection/module.rb
+++ b/modules/phonegap/phonegap_check_connection/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # phonegap
diff --git a/modules/phonegap/phonegap_detect/command.js b/modules/phonegap/phonegap_detect/command.js
index 33a78ea06..467d3d213 100644
--- a/modules/phonegap/phonegap_detect/command.js
+++ b/modules/phonegap/phonegap_detect/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 c97dd8d50..bfc797555 100644
--- a/modules/phonegap/phonegap_detect/config.yaml
+++ b/modules/phonegap/phonegap_detect/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap
diff --git a/modules/phonegap/phonegap_detect/module.rb b/modules/phonegap/phonegap_detect/module.rb
index fb89a2384..19a20d6ec 100644
--- a/modules/phonegap/phonegap_detect/module.rb
+++ b/modules/phonegap/phonegap_detect/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # phonegap
diff --git a/modules/phonegap/phonegap_file_upload/command.js b/modules/phonegap/phonegap_file_upload/command.js
index e0f62cf9f..a52ab2295 100644
--- a/modules/phonegap/phonegap_file_upload/command.js
+++ b/modules/phonegap/phonegap_file_upload/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 5b709c913..3baa778c2 100644
--- a/modules/phonegap/phonegap_file_upload/config.yaml
+++ b/modules/phonegap/phonegap_file_upload/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap
diff --git a/modules/phonegap/phonegap_file_upload/module.rb b/modules/phonegap/phonegap_file_upload/module.rb
index 355355d35..0fd7fe127 100644
--- a/modules/phonegap/phonegap_file_upload/module.rb
+++ b/modules/phonegap/phonegap_file_upload/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # phonegap
diff --git a/modules/phonegap/phonegap_geo_locate/command.js b/modules/phonegap/phonegap_geo_locate/command.js
index a39743c24..3a6d5e63a 100644
--- a/modules/phonegap/phonegap_geo_locate/command.js
+++ b/modules/phonegap/phonegap_geo_locate/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 9685a80a2..030cb4752 100644
--- a/modules/phonegap/phonegap_geo_locate/config.yaml
+++ b/modules/phonegap/phonegap_geo_locate/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap
diff --git a/modules/phonegap/phonegap_geo_locate/module.rb b/modules/phonegap/phonegap_geo_locate/module.rb
index 5d7353b39..995d51586 100644
--- a/modules/phonegap/phonegap_geo_locate/module.rb
+++ b/modules/phonegap/phonegap_geo_locate/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # phonegap
diff --git a/modules/phonegap/phonegap_globalization_status/command.js b/modules/phonegap/phonegap_globalization_status/command.js
index 5d4a8a8f6..3a345b25e 100644
--- a/modules/phonegap/phonegap_globalization_status/command.js
+++ b/modules/phonegap/phonegap_globalization_status/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ff73aaa36..254bd5ed1 100644
--- a/modules/phonegap/phonegap_globalization_status/config.yaml
+++ b/modules/phonegap/phonegap_globalization_status/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   Phonegap_globalization_status
diff --git a/modules/phonegap/phonegap_globalization_status/module.rb b/modules/phonegap/phonegap_globalization_status/module.rb
index ddb737557..a862ddeb7 100644
--- a/modules/phonegap/phonegap_globalization_status/module.rb
+++ b/modules/phonegap/phonegap_globalization_status/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # // Phonegap_globalization_status
diff --git a/modules/phonegap/phonegap_keychain/command.js b/modules/phonegap/phonegap_keychain/command.js
index 31f98e80b..7a7168809 100644
--- a/modules/phonegap/phonegap_keychain/command.js
+++ b/modules/phonegap/phonegap_keychain/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 53bcf2801..35c75cfbf 100644
--- a/modules/phonegap/phonegap_keychain/config.yaml
+++ b/modules/phonegap/phonegap_keychain/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   Phonegap_keychain
diff --git a/modules/phonegap/phonegap_keychain/module.rb b/modules/phonegap/phonegap_keychain/module.rb
index 62c966c52..ed033371e 100644
--- a/modules/phonegap/phonegap_keychain/module.rb
+++ b/modules/phonegap/phonegap_keychain/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Phonegap_keychain
diff --git a/modules/phonegap/phonegap_list_contacts/command.js b/modules/phonegap/phonegap_list_contacts/command.js
index 38d547dc5..d60326852 100644
--- a/modules/phonegap/phonegap_list_contacts/command.js
+++ b/modules/phonegap/phonegap_list_contacts/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 fe9ba63a2..798815fbf 100644
--- a/modules/phonegap/phonegap_list_contacts/config.yaml
+++ b/modules/phonegap/phonegap_list_contacts/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap
diff --git a/modules/phonegap/phonegap_list_contacts/module.rb b/modules/phonegap/phonegap_list_contacts/module.rb
index 3b212e86e..ce1c2161a 100644
--- a/modules/phonegap/phonegap_list_contacts/module.rb
+++ b/modules/phonegap/phonegap_list_contacts/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # // phonegap_list_contacts
diff --git a/modules/phonegap/phonegap_list_files/command.js b/modules/phonegap/phonegap_list_files/command.js
index 5222e92bd..c260a8012 100644
--- a/modules/phonegap/phonegap_list_files/command.js
+++ b/modules/phonegap/phonegap_list_files/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 313e87902..bef37af35 100644
--- a/modules/phonegap/phonegap_list_files/config.yaml
+++ b/modules/phonegap/phonegap_list_files/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap
diff --git a/modules/phonegap/phonegap_list_files/module.rb b/modules/phonegap/phonegap_list_files/module.rb
index d4b84b4d2..67ec38e80 100644
--- a/modules/phonegap/phonegap_list_files/module.rb
+++ b/modules/phonegap/phonegap_list_files/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # phonegap
diff --git a/modules/phonegap/phonegap_persist_resume/command.js b/modules/phonegap/phonegap_persist_resume/command.js
index bfde5ea14..ff7063951 100644
--- a/modules/phonegap/phonegap_persist_resume/command.js
+++ b/modules/phonegap/phonegap_persist_resume/command.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 77d148cfc..a26376505 100644
--- a/modules/phonegap/phonegap_persist_resume/config.yaml
+++ b/modules/phonegap/phonegap_persist_resume/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 c35f6ccea..d95c2b4df 100644
--- a/modules/phonegap/phonegap_persist_resume/module.rb
+++ b/modules/phonegap/phonegap_persist_resume/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 d0a7524ce..ffc8e786f 100644
--- a/modules/phonegap/phonegap_persistence/command.js
+++ b/modules/phonegap/phonegap_persistence/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e3120e694..14de8e71a 100644
--- a/modules/phonegap/phonegap_persistence/config.yaml
+++ b/modules/phonegap/phonegap_persistence/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap persistence
diff --git a/modules/phonegap/phonegap_persistence/module.rb b/modules/phonegap/phonegap_persistence/module.rb
index 219b04a25..0933757da 100644
--- a/modules/phonegap/phonegap_persistence/module.rb
+++ b/modules/phonegap/phonegap_persistence/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # phonegap persistenece
diff --git a/modules/phonegap/phonegap_plugin_detection/command.js b/modules/phonegap/phonegap_plugin_detection/command.js
index e619a3684..28ebbc1c1 100644
--- a/modules/phonegap/phonegap_plugin_detection/command.js
+++ b/modules/phonegap/phonegap_plugin_detection/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 911cfcfdb..920df9bd8 100644
--- a/modules/phonegap/phonegap_plugin_detection/config.yaml
+++ b/modules/phonegap/phonegap_plugin_detection/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap_plugin_detection
diff --git a/modules/phonegap/phonegap_plugin_detection/module.rb b/modules/phonegap/phonegap_plugin_detection/module.rb
index f9886e29c..1914e46a4 100644
--- a/modules/phonegap/phonegap_plugin_detection/module.rb
+++ b/modules/phonegap/phonegap_plugin_detection/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # // phonegap_plugin_detection
diff --git a/modules/phonegap/phonegap_prompt_user/command.js b/modules/phonegap/phonegap_prompt_user/command.js
index fbb027956..ae57101a5 100644
--- a/modules/phonegap/phonegap_prompt_user/command.js
+++ b/modules/phonegap/phonegap_prompt_user/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 335aed498..b0d4bb9d1 100644
--- a/modules/phonegap/phonegap_prompt_user/config.yaml
+++ b/modules/phonegap/phonegap_prompt_user/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   Phonegap_prompt_user
diff --git a/modules/phonegap/phonegap_prompt_user/module.rb b/modules/phonegap/phonegap_prompt_user/module.rb
index e5303a1f9..66ae433a8 100644
--- a/modules/phonegap/phonegap_prompt_user/module.rb
+++ b/modules/phonegap/phonegap_prompt_user/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # Phonegap_prompt_user
diff --git a/modules/phonegap/phonegap_start_record_audio/command.js b/modules/phonegap/phonegap_start_record_audio/command.js
index 7ed0e94ec..1c2222489 100644
--- a/modules/phonegap/phonegap_start_record_audio/command.js
+++ b/modules/phonegap/phonegap_start_record_audio/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 18fdc3e9d..bfc5fce8d 100644
--- a/modules/phonegap/phonegap_start_record_audio/config.yaml
+++ b/modules/phonegap/phonegap_start_record_audio/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap
diff --git a/modules/phonegap/phonegap_start_record_audio/module.rb b/modules/phonegap/phonegap_start_record_audio/module.rb
index efcb0a7fa..e6882d3c0 100644
--- a/modules/phonegap/phonegap_start_record_audio/module.rb
+++ b/modules/phonegap/phonegap_start_record_audio/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # phonegap
diff --git a/modules/phonegap/phonegap_stop_record_audio/command.js b/modules/phonegap/phonegap_stop_record_audio/command.js
index d2302ce91..e0a53deef 100644
--- a/modules/phonegap/phonegap_stop_record_audio/command.js
+++ b/modules/phonegap/phonegap_stop_record_audio/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 2e88be8ce..e539edf95 100644
--- a/modules/phonegap/phonegap_stop_record_audio/config.yaml
+++ b/modules/phonegap/phonegap_stop_record_audio/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 #   phonegap
diff --git a/modules/phonegap/phonegap_stop_record_audio/module.rb b/modules/phonegap/phonegap_stop_record_audio/module.rb
index fc1ffd91f..ed98f1dc0 100644
--- a/modules/phonegap/phonegap_stop_record_audio/module.rb
+++ b/modules/phonegap/phonegap_stop_record_audio/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # phonegap
diff --git a/modules/social_engineering/clickjacking/command.js b/modules/social_engineering/clickjacking/command.js
index 6948f7c1e..d109edb96 100644
--- a/modules/social_engineering/clickjacking/command.js
+++ b/modules/social_engineering/clickjacking/command.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 1d658847b..3b5ee709f 100644
--- a/modules/social_engineering/clickjacking/config.yaml
+++ b/modules/social_engineering/clickjacking/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 db95083d8..a0698e6d2 100644
--- a/modules/social_engineering/clickjacking/module.rb
+++ b/modules/social_engineering/clickjacking/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 5f44e5843..b41bb0c5c 100755
--- a/modules/social_engineering/clippy/command.js
+++ b/modules/social_engineering/clippy/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 300fe80ff..2b3c06c0d 100755
--- a/modules/social_engineering/clippy/config.yaml
+++ b/modules/social_engineering/clippy/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/clippy/module.rb b/modules/social_engineering/clippy/module.rb
index 2cb219336..06569a16c 100755
--- a/modules/social_engineering/clippy/module.rb
+++ b/modules/social_engineering/clippy/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Clippy < BeEF::Core::Command
diff --git a/modules/social_engineering/edge_wscript_wsh_injection/command.js b/modules/social_engineering/edge_wscript_wsh_injection/command.js
index 79d5b44e9..62da54671 100755
--- a/modules/social_engineering/edge_wscript_wsh_injection/command.js
+++ b/modules/social_engineering/edge_wscript_wsh_injection/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3c2194d2c..8e6231a78 100755
--- a/modules/social_engineering/edge_wscript_wsh_injection/config.yaml
+++ b/modules/social_engineering/edge_wscript_wsh_injection/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/edge_wscript_wsh_injection/module.rb b/modules/social_engineering/edge_wscript_wsh_injection/module.rb
index ca2bdcadf..66e32974b 100755
--- a/modules/social_engineering/edge_wscript_wsh_injection/module.rb
+++ b/modules/social_engineering/edge_wscript_wsh_injection/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Edge_wscript_wsh_injection < BeEF::Core::Command
diff --git a/modules/social_engineering/fake_evernote_clipper/command.js b/modules/social_engineering/fake_evernote_clipper/command.js
index b370e2ab9..9691d06bf 100755
--- a/modules/social_engineering/fake_evernote_clipper/command.js
+++ b/modules/social_engineering/fake_evernote_clipper/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 ad153641e..ff2f55e06 100755
--- a/modules/social_engineering/fake_evernote_clipper/config.yaml
+++ b/modules/social_engineering/fake_evernote_clipper/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/fake_evernote_clipper/module.rb b/modules/social_engineering/fake_evernote_clipper/module.rb
index 4596d60e0..03bed5f52 100755
--- a/modules/social_engineering/fake_evernote_clipper/module.rb
+++ b/modules/social_engineering/fake_evernote_clipper/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Fake_evernote_clipper < BeEF::Core::Command
diff --git a/modules/social_engineering/fake_flash_update/command.js b/modules/social_engineering/fake_flash_update/command.js
index 478417346..8e4375233 100755
--- a/modules/social_engineering/fake_flash_update/command.js
+++ b/modules/social_engineering/fake_flash_update/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 cd13e65fc..370709767 100755
--- a/modules/social_engineering/fake_flash_update/config.yaml
+++ b/modules/social_engineering/fake_flash_update/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/fake_flash_update/module.rb b/modules/social_engineering/fake_flash_update/module.rb
index 0fbff56af..6a76b94af 100755
--- a/modules/social_engineering/fake_flash_update/module.rb
+++ b/modules/social_engineering/fake_flash_update/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Fake_flash_update < BeEF::Core::Command
diff --git a/modules/social_engineering/fake_lastpass/command.js b/modules/social_engineering/fake_lastpass/command.js
index 24fd7c756..f6f4054b0 100755
--- a/modules/social_engineering/fake_lastpass/command.js
+++ b/modules/social_engineering/fake_lastpass/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 84b40c3cc..56e1b2d2f 100755
--- a/modules/social_engineering/fake_lastpass/config.yaml
+++ b/modules/social_engineering/fake_lastpass/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/fake_lastpass/module.rb b/modules/social_engineering/fake_lastpass/module.rb
index 97a1ba318..a6e806b35 100755
--- a/modules/social_engineering/fake_lastpass/module.rb
+++ b/modules/social_engineering/fake_lastpass/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Fake_lastpass < BeEF::Core::Command
diff --git a/modules/social_engineering/fake_notification/command.js b/modules/social_engineering/fake_notification/command.js
index 107a83f25..31153da25 100644
--- a/modules/social_engineering/fake_notification/command.js
+++ b/modules/social_engineering/fake_notification/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 93b902df2..376b008f8 100644
--- a/modules/social_engineering/fake_notification/config.yaml
+++ b/modules/social_engineering/fake_notification/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/fake_notification/module.rb b/modules/social_engineering/fake_notification/module.rb
index c6a3fcd93..a0bdec379 100644
--- a/modules/social_engineering/fake_notification/module.rb
+++ b/modules/social_engineering/fake_notification/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Fake_notification < BeEF::Core::Command
diff --git a/modules/social_engineering/fake_notification_c/command.js b/modules/social_engineering/fake_notification_c/command.js
index dd6bc597f..0fea10293 100644
--- a/modules/social_engineering/fake_notification_c/command.js
+++ b/modules/social_engineering/fake_notification_c/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 1a995a477..855940fdf 100644
--- a/modules/social_engineering/fake_notification_c/config.yaml
+++ b/modules/social_engineering/fake_notification_c/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/fake_notification_c/module.rb b/modules/social_engineering/fake_notification_c/module.rb
index acaa0328f..05a38a7b2 100644
--- a/modules/social_engineering/fake_notification_c/module.rb
+++ b/modules/social_engineering/fake_notification_c/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Fake_notification_c < BeEF::Core::Command
diff --git a/modules/social_engineering/fake_notification_ff/command.js b/modules/social_engineering/fake_notification_ff/command.js
index 498ce218d..c801a941a 100644
--- a/modules/social_engineering/fake_notification_ff/command.js
+++ b/modules/social_engineering/fake_notification_ff/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 7d4809d40..0cf50f352 100644
--- a/modules/social_engineering/fake_notification_ff/config.yaml
+++ b/modules/social_engineering/fake_notification_ff/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/fake_notification_ff/module.rb b/modules/social_engineering/fake_notification_ff/module.rb
index 06a71d941..fed7efdc4 100644
--- a/modules/social_engineering/fake_notification_ff/module.rb
+++ b/modules/social_engineering/fake_notification_ff/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Fake_notification_ff < BeEF::Core::Command
diff --git a/modules/social_engineering/fake_notification_ie/command.js b/modules/social_engineering/fake_notification_ie/command.js
index 959989b09..7b72f76b0 100644
--- a/modules/social_engineering/fake_notification_ie/command.js
+++ b/modules/social_engineering/fake_notification_ie/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 95fa281fe..f1ca7a940 100644
--- a/modules/social_engineering/fake_notification_ie/config.yaml
+++ b/modules/social_engineering/fake_notification_ie/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/fake_notification_ie/module.rb b/modules/social_engineering/fake_notification_ie/module.rb
index b91e76a9b..81cb85aec 100644
--- a/modules/social_engineering/fake_notification_ie/module.rb
+++ b/modules/social_engineering/fake_notification_ie/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Fake_notification_ie < BeEF::Core::Command
diff --git a/modules/social_engineering/firefox_extension_bindshell/command.js b/modules/social_engineering/firefox_extension_bindshell/command.js
index 005b579ad..0aac061c6 100644
--- a/modules/social_engineering/firefox_extension_bindshell/command.js
+++ b/modules/social_engineering/firefox_extension_bindshell/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 e9cd49ebd..5f9b2094f 100644
--- a/modules/social_engineering/firefox_extension_bindshell/config.yaml
+++ b/modules/social_engineering/firefox_extension_bindshell/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/firefox_extension_bindshell/module.rb b/modules/social_engineering/firefox_extension_bindshell/module.rb
index 921ca9389..de4f7d12b 100644
--- a/modules/social_engineering/firefox_extension_bindshell/module.rb
+++ b/modules/social_engineering/firefox_extension_bindshell/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Firefox_extension_bindshell < BeEF::Core::Command
diff --git a/modules/social_engineering/firefox_extension_dropper/command.js b/modules/social_engineering/firefox_extension_dropper/command.js
index 7825a559d..939ed2b48 100644
--- a/modules/social_engineering/firefox_extension_dropper/command.js
+++ b/modules/social_engineering/firefox_extension_dropper/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 155ce241e..61f54fb03 100644
--- a/modules/social_engineering/firefox_extension_dropper/config.yaml
+++ b/modules/social_engineering/firefox_extension_dropper/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/firefox_extension_dropper/module.rb b/modules/social_engineering/firefox_extension_dropper/module.rb
index 377e5f5f3..0edcd8a07 100644
--- a/modules/social_engineering/firefox_extension_dropper/module.rb
+++ b/modules/social_engineering/firefox_extension_dropper/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Firefox_extension_dropper < BeEF::Core::Command
diff --git a/modules/social_engineering/firefox_extension_reverse_shell/command.js b/modules/social_engineering/firefox_extension_reverse_shell/command.js
index 005b579ad..0aac061c6 100644
--- a/modules/social_engineering/firefox_extension_reverse_shell/command.js
+++ b/modules/social_engineering/firefox_extension_reverse_shell/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 a27b82a93..f905cf151 100644
--- a/modules/social_engineering/firefox_extension_reverse_shell/config.yaml
+++ b/modules/social_engineering/firefox_extension_reverse_shell/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/firefox_extension_reverse_shell/module.rb b/modules/social_engineering/firefox_extension_reverse_shell/module.rb
index 331d66c5c..98ebd3001 100644
--- a/modules/social_engineering/firefox_extension_reverse_shell/module.rb
+++ b/modules/social_engineering/firefox_extension_reverse_shell/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Firefox_extension_reverse_shell < BeEF::Core::Command
diff --git a/modules/social_engineering/gmail_phishing/command.js b/modules/social_engineering/gmail_phishing/command.js
index 90a640be6..f2790cb99 100644
--- a/modules/social_engineering/gmail_phishing/command.js
+++ b/modules/social_engineering/gmail_phishing/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 de3294923..e1cf7b36a 100644
--- a/modules/social_engineering/gmail_phishing/config.yaml
+++ b/modules/social_engineering/gmail_phishing/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/gmail_phishing/module.rb b/modules/social_engineering/gmail_phishing/module.rb
index b9f62524d..ce133216b 100644
--- a/modules/social_engineering/gmail_phishing/module.rb
+++ b/modules/social_engineering/gmail_phishing/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Gmail_phishing < BeEF::Core::Command
diff --git a/modules/social_engineering/hta_powershell/command.js b/modules/social_engineering/hta_powershell/command.js
index 2f330f97c..119ae1dd7 100755
--- a/modules/social_engineering/hta_powershell/command.js
+++ b/modules/social_engineering/hta_powershell/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 c34683fe3..b768743ee 100755
--- a/modules/social_engineering/hta_powershell/config.yaml
+++ b/modules/social_engineering/hta_powershell/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/hta_powershell/module.rb b/modules/social_engineering/hta_powershell/module.rb
index 5f71dc776..9bea5e3f8 100755
--- a/modules/social_engineering/hta_powershell/module.rb
+++ b/modules/social_engineering/hta_powershell/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Hta_powershell < BeEF::Core::Command
diff --git a/modules/social_engineering/lcamtuf_download/command.js b/modules/social_engineering/lcamtuf_download/command.js
index f196fbf17..c81a803b9 100644
--- a/modules/social_engineering/lcamtuf_download/command.js
+++ b/modules/social_engineering/lcamtuf_download/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 46e9dc82e..56e002b1d 100644
--- a/modules/social_engineering/lcamtuf_download/config.yaml
+++ b/modules/social_engineering/lcamtuf_download/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/lcamtuf_download/module.rb b/modules/social_engineering/lcamtuf_download/module.rb
index 279897538..23058c6e3 100755
--- a/modules/social_engineering/lcamtuf_download/module.rb
+++ b/modules/social_engineering/lcamtuf_download/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Lcamtuf_download < BeEF::Core::Command
diff --git a/modules/social_engineering/pretty_theft/command.js b/modules/social_engineering/pretty_theft/command.js
index 6c32d3be3..817d04a8c 100644
--- a/modules/social_engineering/pretty_theft/command.js
+++ b/modules/social_engineering/pretty_theft/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 fb5b8e63a..ddd504f48 100644
--- a/modules/social_engineering/pretty_theft/config.yaml
+++ b/modules/social_engineering/pretty_theft/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/pretty_theft/module.rb b/modules/social_engineering/pretty_theft/module.rb
index ecd9a3943..1274673e5 100644
--- a/modules/social_engineering/pretty_theft/module.rb
+++ b/modules/social_engineering/pretty_theft/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Pretty_theft < BeEF::Core::Command
diff --git a/modules/social_engineering/replace_video_fake_plugin/command.js b/modules/social_engineering/replace_video_fake_plugin/command.js
index d493103ea..5c785f004 100644
--- a/modules/social_engineering/replace_video_fake_plugin/command.js
+++ b/modules/social_engineering/replace_video_fake_plugin/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 0e3d258a8..68c8fcd09 100644
--- a/modules/social_engineering/replace_video_fake_plugin/config.yaml
+++ b/modules/social_engineering/replace_video_fake_plugin/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/replace_video_fake_plugin/module.rb b/modules/social_engineering/replace_video_fake_plugin/module.rb
index e4edbb423..b9eb655ba 100644
--- a/modules/social_engineering/replace_video_fake_plugin/module.rb
+++ b/modules/social_engineering/replace_video_fake_plugin/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Replace_video_fake_plugin < BeEF::Core::Command
diff --git a/modules/social_engineering/simple_hijacker/command.js b/modules/social_engineering/simple_hijacker/command.js
index b2ed7c03a..2734a3001 100644
--- a/modules/social_engineering/simple_hijacker/command.js
+++ b/modules/social_engineering/simple_hijacker/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 cb1a4cb24..e7a50cfc3 100644
--- a/modules/social_engineering/simple_hijacker/config.yaml
+++ b/modules/social_engineering/simple_hijacker/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/simple_hijacker/module.rb b/modules/social_engineering/simple_hijacker/module.rb
index 0875c247c..646d22cb4 100644
--- a/modules/social_engineering/simple_hijacker/module.rb
+++ b/modules/social_engineering/simple_hijacker/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Simple_hijacker < BeEF::Core::Command
diff --git a/modules/social_engineering/simple_hijacker/templates/amazon.js b/modules/social_engineering/simple_hijacker/templates/amazon.js
index 1f804fafe..8946598f2 100644
--- a/modules/social_engineering/simple_hijacker/templates/amazon.js
+++ b/modules/social_engineering/simple_hijacker/templates/amazon.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 f02ab6c4c..b47495084 100644
--- a/modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js
+++ b/modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 1d99ca0f9..534fab1d1 100644
--- a/modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js
+++ b/modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 b1d089a40..108ed7d33 100644
--- a/modules/social_engineering/simple_hijacker/templates/confirmbox.js
+++ b/modules/social_engineering/simple_hijacker/templates/confirmbox.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 35e1b4798..66336edbe 100644
--- a/modules/social_engineering/simple_hijacker/templates/credential.js
+++ b/modules/social_engineering/simple_hijacker/templates/credential.js
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
- * Browser Exploitation Framework (BeEF) - http://beefproject.com
+ * 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 e4a5f11ed..2088b9cdf 100644
--- a/modules/social_engineering/sitekiosk_breakout/command.js
+++ b/modules/social_engineering/sitekiosk_breakout/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 04c8e718e..18b94ac53 100644
--- a/modules/social_engineering/sitekiosk_breakout/config.yaml
+++ b/modules/social_engineering/sitekiosk_breakout/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/sitekiosk_breakout/module.rb b/modules/social_engineering/sitekiosk_breakout/module.rb
index fb4a0f15c..43be320f5 100644
--- a/modules/social_engineering/sitekiosk_breakout/module.rb
+++ b/modules/social_engineering/sitekiosk_breakout/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Sitekiosk_breakout < BeEF::Core::Command
diff --git a/modules/social_engineering/spoof_addressbar_data/command.js b/modules/social_engineering/spoof_addressbar_data/command.js
index 09af03106..30088d798 100644
--- a/modules/social_engineering/spoof_addressbar_data/command.js
+++ b/modules/social_engineering/spoof_addressbar_data/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 89651ea7b..994792706 100644
--- a/modules/social_engineering/spoof_addressbar_data/config.yaml
+++ b/modules/social_engineering/spoof_addressbar_data/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/spoof_addressbar_data/module.rb b/modules/social_engineering/spoof_addressbar_data/module.rb
index 86aaa4096..bf1028ecf 100644
--- a/modules/social_engineering/spoof_addressbar_data/module.rb
+++ b/modules/social_engineering/spoof_addressbar_data/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Spoof_addressbar_data < BeEF::Core::Command
diff --git a/modules/social_engineering/tabnabbing/command.js b/modules/social_engineering/tabnabbing/command.js
index 03121a2d3..a721f78f2 100644
--- a/modules/social_engineering/tabnabbing/command.js
+++ b/modules/social_engineering/tabnabbing/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 56c394f1c..ef8b11591 100644
--- a/modules/social_engineering/tabnabbing/config.yaml
+++ b/modules/social_engineering/tabnabbing/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/tabnabbing/module.rb b/modules/social_engineering/tabnabbing/module.rb
index ba9a5dab3..592cd54ee 100644
--- a/modules/social_engineering/tabnabbing/module.rb
+++ b/modules/social_engineering/tabnabbing/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Tabnabbing < BeEF::Core::Command
diff --git a/modules/social_engineering/text_to_voice/command.js b/modules/social_engineering/text_to_voice/command.js
index e3bc175e5..e1ba8fe48 100644
--- a/modules/social_engineering/text_to_voice/command.js
+++ b/modules/social_engineering/text_to_voice/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 3e3bda754..184be4996 100644
--- a/modules/social_engineering/text_to_voice/config.yaml
+++ b/modules/social_engineering/text_to_voice/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/text_to_voice/module.rb b/modules/social_engineering/text_to_voice/module.rb
index ae7f1d905..fafa2865e 100644
--- a/modules/social_engineering/text_to_voice/module.rb
+++ b/modules/social_engineering/text_to_voice/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class Text_to_voice < BeEF::Core::Command
diff --git a/modules/social_engineering/ui_abuse_ie/command.js b/modules/social_engineering/ui_abuse_ie/command.js
index 47234643a..dfde3f900 100644
--- a/modules/social_engineering/ui_abuse_ie/command.js
+++ b/modules/social_engineering/ui_abuse_ie/command.js
@@ -1,6 +1,6 @@
 //
 // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// 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 939bd3a23..51e47be33 100644
--- a/modules/social_engineering/ui_abuse_ie/config.yaml
+++ b/modules/social_engineering/ui_abuse_ie/config.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
diff --git a/modules/social_engineering/ui_abuse_ie/module.rb b/modules/social_engineering/ui_abuse_ie/module.rb
index f004d200d..e2fcdc259 100644
--- a/modules/social_engineering/ui_abuse_ie/module.rb
+++ b/modules/social_engineering/ui_abuse_ie/module.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 ################################################################################
diff --git a/spec/beef/api/auth_rate_spec.rb b/spec/beef/api/auth_rate_spec.rb
index fccac9126..f9f94bbb6 100644
--- a/spec/beef/api/auth_rate_spec.rb
+++ b/spec/beef/api/auth_rate_spec.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 09e239c92..5d4d99789 100644
--- a/spec/beef/core/main/autorun_engine/autorun_engine_spec.rb
+++ b/spec/beef/core/main/autorun_engine/autorun_engine_spec.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 f73a9518b..cc172e871 100644
--- a/spec/beef/core/main/handlers/browser_details_handler_spec.rb
+++ b/spec/beef/core/main/handlers/browser_details_handler_spec.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 89208c612..8ed4e9a97 100644
--- a/spec/beef/extensions/websocket_hooked_browser_spec.rb
+++ b/spec/beef/extensions/websocket_hooked_browser_spec.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 f1347957d..b1e7fce94 100644
--- a/spec/beef/modules/debug/test_beef_debugs_spec.rb
+++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 167c14e8a..9e1436953 100644
--- a/spec/support/assets/config_new.yaml
+++ b/spec/support/assets/config_new.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # BeEF Configuration file
diff --git a/spec/support/assets/config_old.yaml b/spec/support/assets/config_old.yaml
index d35455eaa..a88f630f8 100644
--- a/spec/support/assets/config_old.yaml
+++ b/spec/support/assets/config_old.yaml
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # BeEF Configuration file
diff --git a/spec/support/beef_test.rb b/spec/support/beef_test.rb
index fce9090e4..ad41558ea 100644
--- a/spec/support/beef_test.rb
+++ b/spec/support/beef_test.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/spec/support/constants.rb b/spec/support/constants.rb
index 266a28332..2f71ef965 100644
--- a/spec/support/constants.rb
+++ b/spec/support/constants.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 BEEF_TEST_DIR = '/tmp/beef-test/'.freeze
diff --git a/spec/support/simple_rest_client.rb b/spec/support/simple_rest_client.rb
index 1e6dbcc77..3d2f723ff 100644
--- a/spec/support/simple_rest_client.rb
+++ b/spec/support/simple_rest_client.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 # less noisy verson of BeeRestAPI found in tools.
diff --git a/test/integration/check_environment.rb b/test/integration/check_environment.rb
index 004a816a4..ff1a9b7b2 100644
--- a/test/integration/check_environment.rb
+++ b/test/integration/check_environment.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/integration/tc_debug_modules.rb b/test/integration/tc_debug_modules.rb
index ad8aa77ed..def28995e 100644
--- a/test/integration/tc_debug_modules.rb
+++ b/test/integration/tc_debug_modules.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/integration/tc_dns_rest.rb b/test/integration/tc_dns_rest.rb
index 64d9b1206..05ed4d4f9 100644
--- a/test/integration/tc_dns_rest.rb
+++ b/test/integration/tc_dns_rest.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/integration/tc_login.rb b/test/integration/tc_login.rb
index 5217ebfa7..82e80fa3d 100644
--- a/test/integration/tc_login.rb
+++ b/test/integration/tc_login.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/integration/tc_network_rest.rb b/test/integration/tc_network_rest.rb
index f4621ea8d..23c7ed15b 100644
--- a/test/integration/tc_network_rest.rb
+++ b/test/integration/tc_network_rest.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/integration/tc_proxy.rb b/test/integration/tc_proxy.rb
index 6b5c315f0..87ca8b7ed 100644
--- a/test/integration/tc_proxy.rb
+++ b/test/integration/tc_proxy.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/integration/tc_social_engineering_rest.rb b/test/integration/tc_social_engineering_rest.rb
index 2e727a18f..d3d5afbf1 100644
--- a/test/integration/tc_social_engineering_rest.rb
+++ b/test/integration/tc_social_engineering_rest.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/integration/tc_webrtc_rest.rb b/test/integration/tc_webrtc_rest.rb
index 878dd11c3..920e742c5 100644
--- a/test/integration/tc_webrtc_rest.rb
+++ b/test/integration/tc_webrtc_rest.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/integration/ts_integration.rb b/test/integration/ts_integration.rb
index efa1591c8..6a2911877 100644
--- a/test/integration/ts_integration.rb
+++ b/test/integration/ts_integration.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 
diff --git a/test/thirdparty/msf/unit/check_environment.rb b/test/thirdparty/msf/unit/check_environment.rb
index 004a816a4..ff1a9b7b2 100644
--- a/test/thirdparty/msf/unit/check_environment.rb
+++ b/test/thirdparty/msf/unit/check_environment.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/thirdparty/msf/unit/tc_metasploit.rb b/test/thirdparty/msf/unit/tc_metasploit.rb
index 9dc17b78d..0a83289c1 100644
--- a/test/thirdparty/msf/unit/tc_metasploit.rb
+++ b/test/thirdparty/msf/unit/tc_metasploit.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'test/unit'
diff --git a/test/thirdparty/msf/unit/ts_metasploit.rb b/test/thirdparty/msf/unit/ts_metasploit.rb
index a4bd1c76a..003ea70d4 100644
--- a/test/thirdparty/msf/unit/ts_metasploit.rb
+++ b/test/thirdparty/msf/unit/ts_metasploit.rb
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# 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 499d66d4b..2f634ecb2 100644
--- a/tools/csrf_to_beef/lib/module.rb
+++ b/tools/csrf_to_beef/lib/module.rb
@@ -6,7 +6,7 @@ class ConfigFile
     return <<-EOF
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 beef:
@@ -35,7 +35,7 @@ class ModuleFile
     return <<-EOF
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 class #{class_name.capitalize} < BeEF::Core::Command
@@ -68,7 +68,7 @@ class CommandFile
     return <<-EOF
 //
 // Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-// Browser Exploitation Framework (BeEF) - http://beefproject.com
+// Browser Exploitation Framework (BeEF) - https://beefproject.com
 // See the file 'doc/COPYING' for copying permission
 //
 
diff --git a/update-beef b/update-beef
index 07f8353aa..147b42e07 100755
--- a/update-beef
+++ b/update-beef
@@ -1,7 +1,7 @@
 #!/bin/bash
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 set -euo pipefail

From 482143067b18369fcdd5b8d520baf61a7364ce90 Mon Sep 17 00:00:00 2001
From: Stephen 
Date: Sun, 31 Dec 2023 14:46:15 +1000
Subject: [PATCH 20/64] Updated http://beefproject.com to
 https://beefproject.com

---
 Rakefile                                                        | 2 +-
 extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js     | 2 +-
 extensions/demos/html/secret_page.html                          | 2 +-
 extensions/qrcode/config.yaml                                   | 2 +-
 modules/browser/get_visited_urls/module.rb                      | 2 +-
 modules/browser/hooked_domain/link_rewrite/module.rb            | 2 +-
 .../browser/hooked_domain/link_rewrite_click_events/module.rb   | 2 +-
 modules/browser/hooked_domain/site_redirect/module.rb           | 2 +-
 modules/browser/hooked_domain/site_redirect_iframe/module.rb    | 2 +-
 modules/debug/test_cors_request/module.rb                       | 2 +-
 modules/debug/test_http_redirect/module.rb                      | 2 +-
 modules/misc/invisible_iframe/module.rb                         | 2 +-
 modules/misc/wordpress/upload_rce_plugin/beefbind.php           | 2 +-
 test/integration/tc_social_engineering_rest.rb                  | 2 +-
 tools/csrf_to_beef/csrf_to_beef                                 | 2 +-
 15 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/Rakefile b/Rakefile
index f7101cb34..7388e673b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,6 +1,6 @@
 #
 # Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
-# Browser Exploitation Framework (BeEF) - http://beefproject.com
+# Browser Exploitation Framework (BeEF) - https://beefproject.com
 # See the file 'doc/COPYING' for copying permission
 #
 require 'yaml'
diff --git a/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js b/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
index 4ed4c3060..cb5b7cd90 100644
--- a/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
+++ b/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
@@ -15,7 +15,7 @@ WelcomeTab = function() {
     welcome = " \
               
\

BeEF - The Browser Exploitation Framework


\ -

Official website: http://beefproject.com/


\ +

Official website: https://beefproject.com/


\

Getting Started


\

Welcome to BeEF!


\

Before being able to fully explore the framework you will have to 'hook' a browser. To begin with you can point a browser towards the basic demo page here, or the advanced version here.


\ diff --git a/extensions/demos/html/secret_page.html b/extensions/demos/html/secret_page.html index 1eb81dc5e..c2e644ac4 100644 --- a/extensions/demos/html/secret_page.html +++ b/extensions/demos/html/secret_page.html @@ -11,7 +11,7 @@

Secret page

- This page is not hooked by BeEF. + This page is not hooked by BeEF. However you should still be capable of accessing it using: