//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -126,7 +126,7 @@ if(typeof beef === 'undefined' && typeof window.beef === 'undefined') {
diff --git a/docs/beef.logger.html b/docs/beef.logger.html
index 9f4ca60be..8eed90df4 100644
--- a/docs/beef.logger.html
+++ b/docs/beef.logger.html
@@ -2159,7 +2159,7 @@ TODO: Cleanup this function
diff --git a/docs/beef.mitb.html b/docs/beef.mitb.html
index a1636de91..0ba770084 100644
--- a/docs/beef.mitb.html
+++ b/docs/beef.mitb.html
@@ -917,7 +917,7 @@
diff --git a/docs/beef.net.connection.html b/docs/beef.net.connection.html
index a2b8fa861..8c312ac6c 100644
--- a/docs/beef.net.connection.html
+++ b/docs/beef.net.connection.html
@@ -360,7 +360,7 @@ https://developer.mozilla.org/en-US/docs/Web/API/Navigator/connection
diff --git a/docs/beef.net.cors.html b/docs/beef.net.cors.html
index 53cdb77fb..cdf628dda 100644
--- a/docs/beef.net.cors.html
+++ b/docs/beef.net.cors.html
@@ -443,7 +443,7 @@
diff --git a/docs/beef.net.dns.html b/docs/beef.net.dns.html
index 8d8423fb8..447dbaa60 100644
--- a/docs/beef.net.dns.html
+++ b/docs/beef.net.dns.html
@@ -316,7 +316,7 @@
diff --git a/docs/beef.net.html b/docs/beef.net.html
index 1795e5dcb..54842168c 100644
--- a/docs/beef.net.html
+++ b/docs/beef.net.html
@@ -2379,7 +2379,7 @@ even if WebSockets are enabled.
diff --git a/docs/beef.net.local.html b/docs/beef.net.local.html
index 2ec8f7303..a9dfb8d81 100644
--- a/docs/beef.net.local.html
+++ b/docs/beef.net.local.html
@@ -440,7 +440,7 @@ sock: new java.net.Socket();
diff --git a/docs/beef.net.portscanner.html b/docs/beef.net.portscanner.html
index 1bab44639..44cdb3ccb 100644
--- a/docs/beef.net.portscanner.html
+++ b/docs/beef.net.portscanner.html
@@ -495,7 +495,7 @@ homepage: 'http://www.gnucitizen.org'
diff --git a/docs/beef.net.requester.html b/docs/beef.net.requester.html
index 45f9b0d5c..313d728e0 100644
--- a/docs/beef.net.requester.html
+++ b/docs/beef.net.requester.html
@@ -268,7 +268,7 @@
diff --git a/docs/beef.net.xssrays.html b/docs/beef.net.xssrays.html
index 903174577..d374ffb42 100644
--- a/docs/beef.net.xssrays.html
+++ b/docs/beef.net.xssrays.html
@@ -764,7 +764,7 @@ Other aspects of the original code have been simplified and improved.
diff --git a/docs/beef.os.html b/docs/beef.os.html
index d5e21abfa..7f3550f39 100644
--- a/docs/beef.os.html
+++ b/docs/beef.os.html
@@ -4189,7 +4189,7 @@ http://ha.ckers.org/blog/20070319/detecting-default-browser-in-ie/
diff --git a/docs/beef.session.html b/docs/beef.session.html
index 9473c9724..3e50ab922 100644
--- a/docs/beef.session.html
+++ b/docs/beef.session.html
@@ -391,7 +391,7 @@
diff --git a/docs/beef.timeout.html b/docs/beef.timeout.html
index 6e5df1709..e639f782a 100644
--- a/docs/beef.timeout.html
+++ b/docs/beef.timeout.html
@@ -217,7 +217,7 @@ antisnatchor
diff --git a/docs/beef.updater.html b/docs/beef.updater.html
index 250b66708..e37f904fa 100644
--- a/docs/beef.updater.html
+++ b/docs/beef.updater.html
@@ -722,7 +722,7 @@ websocket.js is used instead.
diff --git a/docs/beef.webrtc.html b/docs/beef.webrtc.html
index e73c2004f..a7ee54c7a 100644
--- a/docs/beef.webrtc.html
+++ b/docs/beef.webrtc.html
@@ -3062,7 +3062,7 @@ against the message directly
diff --git a/docs/beef.websocket.html b/docs/beef.websocket.html
index e8c20e145..0cafb00b2 100644
--- a/docs/beef.websocket.html
+++ b/docs/beef.websocket.html
@@ -490,7 +490,7 @@ beef.websocket.send('{"handler" : "' + handler + '", "c
diff --git a/docs/browser.js.html b/docs/browser.js.html
index caa1eb340..dee61e7ec 100644
--- a/docs/browser.js.html
+++ b/docs/browser.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -972,14 +972,25 @@ beef.browser = {
*/
isFF99: function () {
return !!window.devicePixelRatio && !!window.history.replaceState && (this.getProtocol() == "https:" ? typeof navigator.mozGetUserMedia != "undefined" : true) && (typeof window.crypto != "undefined" && typeof window.crypto.getRandomValues != "undefined") && typeof Math.hypot == 'function' && typeof String.prototype.codePointAt === 'function' && typeof Number.isSafeInteger === 'function' && window.navigator.userAgent.match(/Firefox\/99./) != null;
+ },
+
+ /**
+ * Returns true if the browser is any version of Firefox.
+ * @example: beef.browser.isFFbowser()
+ */
+ isFFbowser: function () {
+ const parser = bowser.getParser(navigator.userAgent);
+ const browserName = parser.getBrowserName();
+ return browserName == 'Firefox';
},
/**
- * Returns true if FF.
+ * Returns true if the browser is any version of Firefox.
* @example: beef.browser.isFF()
*/
isFF: function () {
- return this.isFF2() || this.isFF3() || this.isFF3_5() || this.isFF3_6() || this.isFF4() || this.isFF5() || this.isFF6() || this.isFF7() || this.isFF8() || this.isFF9() || this.isFF10() || this.isFF11() || this.isFF12() || this.isFF13() || this.isFF14() || this.isFF15() || this.isFF16() || this.isFF17() || this.isFF18() || this.isFF19() || this.isFF20() || this.isFF21() || this.isFF22() || this.isFF23() || this.isFF24() || this.isFF25() || this.isFF26() || this.isFF27() || this.isFF28() || this.isFF29() || this.isFF30() || this.isFF31() || this.isFF32() || this.isFF33() || this.isFF34() || this.isFF35() || this.isFF36() || this.isFF37() || this.isFF38() || this.isFF39() || this.isFF40() || this.isFF41() || this.isFF42() || this.isFF43() || this.isFF44() || this.isFF45() || this.isFF46() || this.isFF47() || this.isFF48() || this.isFF49() || this.isFF50() || this.isFF51() || this.isFF52() || this.isFF53() || this.isFF54() || this.isFF55() || this.isFF56() || this.isFF57() || this.isFF58()|| this.isFF59() || this.isFF60() || this.isFF61() || this.isFF62() || this.isFF63() || this.isFF64() || this.isFF65() || this.isFF66() || this.isFF67() || this.isFF68() || this.isFF69() || this.isFF70() || this.isFF71() || this.isFF72() || this.isFF73() || this.isFF74() || this.isFF75() || this.isFF76() || this.isFF77() || this.isFF78() || this.isFF79() || this.isFF80() || this.isFF81() || this.isFF82() || this.isFF83() || this.isFF84() || this.isFF85() || this.isFF86() || this.isFF87() || this.isFF88() || this.isFF89() || this.isFF90() || this.isFF91() || this.isFF92() || this.isFF93() || this.isFF94() || this.isFF95() || this.isFF96() || this.isFF97() || this.isFF98() || this.isFF99();
+ var legacyCheck = this.isFF2() || this.isFF3() || this.isFF3_5() || this.isFF3_6() || this.isFF4() || this.isFF5() || this.isFF6() || this.isFF7() || this.isFF8() || this.isFF9() || this.isFF10() || this.isFF11() || this.isFF12() || this.isFF13() || this.isFF14() || this.isFF15() || this.isFF16() || this.isFF17() || this.isFF18() || this.isFF19() || this.isFF20() || this.isFF21() || this.isFF22() || this.isFF23() || this.isFF24() || this.isFF25() || this.isFF26() || this.isFF27() || this.isFF28() || this.isFF29() || this.isFF30() || this.isFF31() || this.isFF32() || this.isFF33() || this.isFF34() || this.isFF35() || this.isFF36() || this.isFF37() || this.isFF38() || this.isFF39() || this.isFF40() || this.isFF41() || this.isFF42() || this.isFF43() || this.isFF44() || this.isFF45() || this.isFF46() || this.isFF47() || this.isFF48() || this.isFF49() || this.isFF50() || this.isFF51() || this.isFF52() || this.isFF53() || this.isFF54() || this.isFF55() || this.isFF56() || this.isFF57() || this.isFF58()|| this.isFF59() || this.isFF60() || this.isFF61() || this.isFF62() || this.isFF63() || this.isFF64() || this.isFF65() || this.isFF66() || this.isFF67() || this.isFF68() || this.isFF69() || this.isFF70() || this.isFF71() || this.isFF72() || this.isFF73() || this.isFF74() || this.isFF75() || this.isFF76() || this.isFF77() || this.isFF78() || this.isFF79() || this.isFF80() || this.isFF81() || this.isFF82() || this.isFF83() || this.isFF84() || this.isFF85() || this.isFF86() || this.isFF87() || this.isFF88() || this.isFF89() || this.isFF90() || this.isFF91() || this.isFF92() || this.isFF93() || this.isFF94() || this.isFF95() || this.isFF96() || this.isFF97() || this.isFF98() || this.isFF99();
+ return legacyCheck || this.isFFbowser();
},
/**
@@ -2466,12 +2477,23 @@ beef.browser = {
return (!window.webkitPerformance && window.navigator.appVersion.match(/CriOS\/(\d+)\./) != null) && ((parseInt(window.navigator.appVersion.match(/CriOS\/(\d+)\./)[1], 10) == 99) ? true : false);
},
+ /**
+ * Returns true for modern versions of Chrome (above 9).
+ * @example: beef.browser.isCbowser()
+ */
+ isCbowser: function () {
+ const parser = bowser.getParser(navigator.userAgent);
+ const browserName = parser.getBrowserName();
+ return browserName == 'Chrome';
+ },
+
/**
* Returns true if Chrome.
* @example: beef.browser.isC()
*/
isC: function () {
- return this.isC5() || this.isC6() || this.isC7() || this.isC8() || this.isC9() || this.isC10() || this.isC11() || this.isC12() || this.isC13() || this.isC14() || this.isC15() || this.isC16() || this.isC17() || this.isC18() || this.isC19() || this.isC19iOS() || this.isC20() || this.isC20iOS() || this.isC21() || this.isC21iOS() || this.isC22() || this.isC22iOS() || this.isC23() || this.isC23iOS() || this.isC24() || this.isC24iOS() || this.isC25() || this.isC25iOS() || this.isC26() || this.isC26iOS() || this.isC27() || this.isC27iOS() || this.isC28() || this.isC28iOS() || this.isC29() || this.isC29iOS() || this.isC30() || this.isC30iOS() || this.isC31() || this.isC31iOS() || this.isC32() || this.isC32iOS() || this.isC33() || this.isC33iOS() || this.isC34() || this.isC34iOS() || this.isC35() || this.isC35iOS() || this.isC36() || this.isC36iOS() || this.isC37() || this.isC37iOS() || this.isC38() || this.isC38iOS() || this.isC39() || this.isC39iOS() || this.isC40() || this.isC40iOS() || this.isC41() || this.isC41iOS() || this.isC42() || this.isC42iOS() || this.isC43() || this.isC43iOS() || this.isC44() || this.isC44iOS() || this.isC45() || this.isC45iOS() || this.isC46() || this.isC46iOS() || this.isC47() || this.isC47iOS() || this.isC48() || this.isC48iOS() || this.isC49() || this.isC49iOS() || this.isC50() || this.isC50iOS() || this.isC51() || this.isC51iOS() || this.isC52() || this.isC52iOS() || this.isC53() || this.isC53iOS() || this.isC54() || this.isC54iOS() || this.isC55() || this.isC55iOS() || this.isC56() || this.isC56iOS() || this.isC57() || this.isC57iOS() || this.isC58() || this.isC58iOS() || this.isC59() || this.isC59iOS()|| this.isC60() || this.isC60iOS()|| this.isC61() || this.isC61iOS()|| this.isC62() || this.isC62iOS()|| this.isC63() || this.isC63iOS()|| this.isC64() || this.isC64iOS()|| this.isC65() || this.isC65iOS()|| this.isC66() || this.isC66iOS()|| this.isC67() || this.isC67iOS()|| this.isC68() || this.isC68iOS()|| this.isC69() || this.isC69iOS()|| this.isC70() || this.isC70iOS()|| this.isC71() || this.isC71iOS()|| this.isC72() || this.isC72iOS()|| this.isC73() || this.isC73iOS()|| this.isC74() || this.isC74iOS()|| this.isC75() || this.isC75iOS()|| this.isC76() || this.isC76iOS()|| this.isC77() || this.isC77iOS()|| this.isC78() || this.isC78iOS()|| this.isC79() || this.isC79iOS()|| this.isC80() || this.isC80iOS()|| this.isC81() || this.isC81iOS()|| this.isC82() || this.isC82iOS()|| this.isC83() || this.isC83iOS()|| this.isC84() || this.isC84iOS()|| this.isC85() || this.isC85iOS()|| this.isC86() || this.isC86iOS()|| this.isC87() || this.isC87iOS()|| this.isC88() || this.isC88iOS()|| this.isC89() || this.isC89iOS()|| this.isC90() || this.isC90iOS()|| this.isC91() || this.isC91iOS()|| this.isC92() || this.isC92iOS()|| this.isC93() || this.isC93iOS()|| this.isC94() || this.isC94iOS()|| this.isC95() || this.isC95iOS()|| this.isC96() || this.isC96iOS()|| this.isC97() || this.isC97iOS()|| this.isC98() || this.isC98iOS()|| this.isC99() || this.isC99iOS();
+ var legacyCheck = this.isC5() || this.isC6() || this.isC7() || this.isC8() || this.isC9() || this.isC10() || this.isC11() || this.isC12() || this.isC13() || this.isC14() || this.isC15() || this.isC16() || this.isC17() || this.isC18() || this.isC19() || this.isC19iOS() || this.isC20() || this.isC20iOS() || this.isC21() || this.isC21iOS() || this.isC22() || this.isC22iOS() || this.isC23() || this.isC23iOS() || this.isC24() || this.isC24iOS() || this.isC25() || this.isC25iOS() || this.isC26() || this.isC26iOS() || this.isC27() || this.isC27iOS() || this.isC28() || this.isC28iOS() || this.isC29() || this.isC29iOS() || this.isC30() || this.isC30iOS() || this.isC31() || this.isC31iOS() || this.isC32() || this.isC32iOS() || this.isC33() || this.isC33iOS() || this.isC34() || this.isC34iOS() || this.isC35() || this.isC35iOS() || this.isC36() || this.isC36iOS() || this.isC37() || this.isC37iOS() || this.isC38() || this.isC38iOS() || this.isC39() || this.isC39iOS() || this.isC40() || this.isC40iOS() || this.isC41() || this.isC41iOS() || this.isC42() || this.isC42iOS() || this.isC43() || this.isC43iOS() || this.isC44() || this.isC44iOS() || this.isC45() || this.isC45iOS() || this.isC46() || this.isC46iOS() || this.isC47() || this.isC47iOS() || this.isC48() || this.isC48iOS() || this.isC49() || this.isC49iOS() || this.isC50() || this.isC50iOS() || this.isC51() || this.isC51iOS() || this.isC52() || this.isC52iOS() || this.isC53() || this.isC53iOS() || this.isC54() || this.isC54iOS() || this.isC55() || this.isC55iOS() || this.isC56() || this.isC56iOS() || this.isC57() || this.isC57iOS() || this.isC58() || this.isC58iOS() || this.isC59() || this.isC59iOS()|| this.isC60() || this.isC60iOS()|| this.isC61() || this.isC61iOS()|| this.isC62() || this.isC62iOS()|| this.isC63() || this.isC63iOS()|| this.isC64() || this.isC64iOS()|| this.isC65() || this.isC65iOS()|| this.isC66() || this.isC66iOS()|| this.isC67() || this.isC67iOS()|| this.isC68() || this.isC68iOS()|| this.isC69() || this.isC69iOS()|| this.isC70() || this.isC70iOS()|| this.isC71() || this.isC71iOS()|| this.isC72() || this.isC72iOS()|| this.isC73() || this.isC73iOS()|| this.isC74() || this.isC74iOS()|| this.isC75() || this.isC75iOS()|| this.isC76() || this.isC76iOS()|| this.isC77() || this.isC77iOS()|| this.isC78() || this.isC78iOS()|| this.isC79() || this.isC79iOS()|| this.isC80() || this.isC80iOS()|| this.isC81() || this.isC81iOS()|| this.isC82() || this.isC82iOS()|| this.isC83() || this.isC83iOS()|| this.isC84() || this.isC84iOS()|| this.isC85() || this.isC85iOS()|| this.isC86() || this.isC86iOS()|| this.isC87() || this.isC87iOS()|| this.isC88() || this.isC88iOS()|| this.isC89() || this.isC89iOS()|| this.isC90() || this.isC90iOS()|| this.isC91() || this.isC91iOS()|| this.isC92() || this.isC92iOS()|| this.isC93() || this.isC93iOS()|| this.isC94() || this.isC94iOS()|| this.isC95() || this.isC95iOS()|| this.isC96() || this.isC96iOS()|| this.isC97() || this.isC97iOS()|| this.isC98() || this.isC98iOS()|| this.isC99() || this.isC99iOS();
+ return legacyCheck || this.isCbowser();
},
/**
@@ -2514,12 +2536,23 @@ beef.browser = {
return (!!window.opera && (window.navigator.userAgent.match(/Opera\/9\.80.*Version\/12\./) != null));
},
+ /**
+ * Returns true if the browser is any version of Opera.
+ * @example: beef.browser.isObowser()
+ */
+ isObowser: function () {
+ const parser = bowser.getParser(navigator.userAgent);
+ const browserName = parser.getBrowserName();
+ return browserName == 'Opera';
+ },
+
/**
* Returns true if Opera.
* @example: beef.browser.isO()
*/
isO: function () {
- return this.isO9_52() || this.isO9_60() || this.isO10() || this.isO11() || this.isO12();
+ var legacyCheck = this.isO9_52() || this.isO9_60() || this.isO10() || this.isO11() || this.isO12();
+ return legacyCheck || this.isObowser();
},
/**
@@ -4680,7 +4713,7 @@ beef.regCmp('beef.browser');
diff --git a/docs/browser_cookie.js.html b/docs/browser_cookie.js.html
index b67ef92c4..4e1b06018 100644
--- a/docs/browser_cookie.js.html
+++ b/docs/browser_cookie.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -163,7 +163,7 @@ beef.regCmp('beef.browser.cookie');
diff --git a/docs/browser_popup.js.html b/docs/browser_popup.js.html
index 0fb747ab0..84cafe510 100644
--- a/docs/browser_popup.js.html
+++ b/docs/browser_popup.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -70,7 +70,7 @@ beef.regCmp('beef.browser.popup');
diff --git a/docs/dom.js.html b/docs/dom.js.html
index 1b37f155d..739c30e09 100644
--- a/docs/dom.js.html
+++ b/docs/dom.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -545,7 +545,7 @@ beef.regCmp('beef.dom');
diff --git a/docs/encode_base64.js.html b/docs/encode_base64.js.html
index 8955081a5..981df8bee 100644
--- a/docs/encode_base64.js.html
+++ b/docs/encode_base64.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -214,7 +214,7 @@ beef.regCmp('beef.encode.base64');
diff --git a/docs/encode_json.js.html b/docs/encode_json.js.html
index c6071ca6c..88f7e83fc 100644
--- a/docs/encode_json.js.html
+++ b/docs/encode_json.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -182,7 +182,7 @@ beef.regCmp('beef.encode.json');
diff --git a/docs/geolocation.js.html b/docs/geolocation.js.html
index c2f1c8421..1ce504e79 100644
--- a/docs/geolocation.js.html
+++ b/docs/geolocation.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -150,7 +150,7 @@ beef.regCmp('beef.geolocation');
diff --git a/docs/global.html b/docs/global.html
index 19b4c0257..baed680e2 100644
--- a/docs/global.html
+++ b/docs/global.html
@@ -192,7 +192,7 @@
diff --git a/docs/hardware.js.html b/docs/hardware.js.html
index 5bf5c2692..c5fabcf81 100644
--- a/docs/hardware.js.html
+++ b/docs/hardware.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -359,7 +359,7 @@ beef.regCmp('beef.hardware');
diff --git a/docs/index.html b/docs/index.html
index 24365d5d6..7cb85ea80 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -102,7 +102,7 @@ See the file 'doc/COPYING' for copying permission
diff --git a/docs/init.js.html b/docs/init.js.html
index 25c7612f1..3d844eed3 100644
--- a/docs/init.js.html
+++ b/docs/init.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -132,7 +132,7 @@ function beef_init() {
diff --git a/docs/lib_platform.js.html b/docs/lib_platform.js.html
index 6d3d423b5..a65315d55 100644
--- a/docs/lib_platform.js.html
+++ b/docs/lib_platform.js.html
@@ -1302,7 +1302,7 @@
diff --git a/docs/logger.js.html b/docs/logger.js.html
index 62cef8b5a..c77c7d9cd 100644
--- a/docs/logger.js.html
+++ b/docs/logger.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -403,7 +403,7 @@ beef.regCmp('beef.logger');
diff --git a/docs/mitb.js.html b/docs/mitb.js.html
index 707068c0f..862fa9892 100644
--- a/docs/mitb.js.html
+++ b/docs/mitb.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -288,7 +288,7 @@ beef.regCmp('beef.mitb');
diff --git a/docs/net.js.html b/docs/net.js.html
index e01730ae6..091f78339 100644
--- a/docs/net.js.html
+++ b/docs/net.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -606,7 +606,7 @@ beef.regCmp('beef.net');
diff --git a/docs/net_connection.js.html b/docs/net_connection.js.html
index 90178a77b..6b9ab5da8 100644
--- a/docs/net_connection.js.html
+++ b/docs/net_connection.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -92,7 +92,7 @@ beef.regCmp('beef.net.connection');
diff --git a/docs/net_cors.js.html b/docs/net_cors.js.html
index e3ff3d309..9748d35e7 100644
--- a/docs/net_cors.js.html
+++ b/docs/net_cors.js.html
@@ -125,7 +125,7 @@ beef.regCmp('beef.net.cors');
diff --git a/docs/net_dns.js.html b/docs/net_dns.js.html
index b76c49054..dad6fec85 100644
--- a/docs/net_dns.js.html
+++ b/docs/net_dns.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -139,7 +139,7 @@ beef.regCmp('beef.net.dns');
diff --git a/docs/net_local.js.html b/docs/net_local.js.html
index ebc8cb793..38a5943ce 100644
--- a/docs/net_local.js.html
+++ b/docs/net_local.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -129,7 +129,7 @@ beef.regCmp('beef.net.local');
diff --git a/docs/net_portscanner.js.html b/docs/net_portscanner.js.html
index f3a79c055..6aafddac5 100644
--- a/docs/net_portscanner.js.html
+++ b/docs/net_portscanner.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -108,7 +108,7 @@ beef.regCmp('beef.net.portscanner');
diff --git a/docs/net_requester.js.html b/docs/net_requester.js.html
index bf1e7fc28..c731a1fd1 100644
--- a/docs/net_requester.js.html
+++ b/docs/net_requester.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -83,7 +83,7 @@ beef.regCmp('beef.net.requester');
diff --git a/docs/net_xssrays.js.html b/docs/net_xssrays.js.html
index 3ca54ff5c..b3160df8a 100644
--- a/docs/net_xssrays.js.html
+++ b/docs/net_xssrays.js.html
@@ -541,7 +541,7 @@ beef.regCmp('beef.net.xssrays');
diff --git a/docs/os.js.html b/docs/os.js.html
index 861cfa1ef..ed7bf6ef2 100644
--- a/docs/os.js.html
+++ b/docs/os.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -403,7 +403,7 @@ beef.regCmp('beef.net.os');
diff --git a/docs/session.js.html b/docs/session.js.html
index aa3a5909b..542f2bfbd 100644
--- a/docs/session.js.html
+++ b/docs/session.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -116,7 +116,7 @@ beef.regCmp('beef.session');
diff --git a/docs/timeout.js.html b/docs/timeout.js.html
index 1121421d4..39675c926 100644
--- a/docs/timeout.js.html
+++ b/docs/timeout.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -65,7 +65,7 @@ setTimeout(beef_init, 1000);
diff --git a/docs/updater.js.html b/docs/updater.js.html
index bcef99c65..a4291692d 100644
--- a/docs/updater.js.html
+++ b/docs/updater.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -135,7 +135,7 @@ beef.regCmp('beef.updater');
diff --git a/docs/webrtc.js.html b/docs/webrtc.js.html
index a8c6ec669..722cec0b8 100644
--- a/docs/webrtc.js.html
+++ b/docs/webrtc.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -758,7 +758,7 @@ beef.regCmp('beef.webrtc');
diff --git a/docs/websocket.js.html b/docs/websocket.js.html
index cd6a570b7..2c10139aa 100644
--- a/docs/websocket.js.html
+++ b/docs/websocket.js.html
@@ -27,7 +27,7 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
@@ -142,7 +142,7 @@ beef.regCmp('beef.websocket');
diff --git a/extensions/admin_ui/api/handler.rb b/extensions/admin_ui/api/handler.rb
index cf1dbe0d9..2a65d4dfa 100644
--- a/extensions/admin_ui/api/handler.rb
+++ b/extensions/admin_ui/api/handler.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/admin_ui/classes/httpcontroller.rb b/extensions/admin_ui/classes/httpcontroller.rb
index 2176caa6c..85bc91bc4 100644
--- a/extensions/admin_ui/classes/httpcontroller.rb
+++ b/extensions/admin_ui/classes/httpcontroller.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/admin_ui/classes/session.rb b/extensions/admin_ui/classes/session.rb
index 3278bc358..6571c169a 100644
--- a/extensions/admin_ui/classes/session.rb
+++ b/extensions/admin_ui/classes/session.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/admin_ui/constants/icons.rb b/extensions/admin_ui/constants/icons.rb
index 0c4ebcb31..df3f616f3 100644
--- a/extensions/admin_ui/constants/icons.rb
+++ b/extensions/admin_ui/constants/icons.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/admin_ui/controllers/authentication/authentication.rb b/extensions/admin_ui/controllers/authentication/authentication.rb
index 712bad64a..8aa6c3931 100644
--- a/extensions/admin_ui/controllers/authentication/authentication.rb
+++ b/extensions/admin_ui/controllers/authentication/authentication.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/admin_ui/controllers/modules/modules.rb b/extensions/admin_ui/controllers/modules/modules.rb
index 445ddb871..36c863fe1 100644
--- a/extensions/admin_ui/controllers/modules/modules.rb
+++ b/extensions/admin_ui/controllers/modules/modules.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/admin_ui/controllers/panel/panel.rb b/extensions/admin_ui/controllers/panel/panel.rb
index 7fd4234b9..a170faaac 100644
--- a/extensions/admin_ui/controllers/panel/panel.rb
+++ b/extensions/admin_ui/controllers/panel/panel.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/admin_ui/extension.rb b/extensions/admin_ui/extension.rb
index 207d81318..a104b0ff1 100644
--- a/extensions/admin_ui/extension.rb
+++ b/extensions/admin_ui/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/admin_ui/handlers/ui.rb b/extensions/admin_ui/handlers/ui.rb
index 074228a12..208811a6c 100644
--- a/extensions/admin_ui/handlers/ui.rb
+++ b/extensions/admin_ui/handlers/ui.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/admin_ui/media/javascript/esapi/Class.create.js b/extensions/admin_ui/media/javascript/esapi/Class.create.js
index 1fe4ea807..dfdbfe588 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-2024 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/extensions/admin_ui/media/javascript/ui/authentication.js b/extensions/admin_ui/media/javascript/ui/authentication.js
index 9c07ba09e..2448aa3ce 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/common/beef_common.js b/extensions/admin_ui/media/javascript/ui/common/beef_common.js
index 76729486e..9939cc455 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js b/extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js
index 3a191d064..924064eb8 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/HooksTab.js b/extensions/admin_ui/media/javascript/ui/panel/HooksTab.js
index 6921b2379..77c7baaad 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/Logout.js b/extensions/admin_ui/media/javascript/ui/panel/Logout.js
index 4a7865bfe..40c5d959a 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js b/extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js
index b0daf85d7..9522833e8 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/MainPanel.js b/extensions/admin_ui/media/javascript/ui/panel/MainPanel.js
index 43c8dcf42..f0e32533e 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js b/extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js
index 16195b114..045368faa 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js b/extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js
index 02088ab50..c6e61ad59 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js b/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
index cb5b7cd90..8e1674a51 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js b/extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js
index 51a295999..a97057e29 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js b/extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js
index 23a69cc46..edac7d6e5 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js b/extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js
index dca9a37fb..a3a56374f 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js b/extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js
index 47937b7e0..ef117d30d 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/common.js b/extensions/admin_ui/media/javascript/ui/panel/common.js
index 48c1f7047..c02389038 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js
index e8243b0d8..18e3bbbf7 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js
index 83f34736e..82ba0d186 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js
index be4a400a1..dd1b03ac0 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js
index 65098f53a..60fbe91f5 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js
index d3f1ea13a..a264a3679 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js
index 85ac9fa4a..5db323caf 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js b/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js
index 31882aa79..992230e5e 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js b/extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js
index e40e144f5..2a4db252a 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ux/PagingStore.js b/extensions/admin_ui/media/javascript/ux/PagingStore.js
index 668e9a346..342493326 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ux/StatusBar.js b/extensions/admin_ui/media/javascript/ux/StatusBar.js
index 73324fde5..831034270 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/admin_ui/media/javascript/ux/TabCloseMenu.js b/extensions/admin_ui/media/javascript/ux/TabCloseMenu.js
index 3f5bacc22..00feaf2bb 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/extensions/autoloader/extension.rb b/extensions/autoloader/extension.rb
index 294259f52..b9340d085 100644
--- a/extensions/autoloader/extension.rb
+++ b/extensions/autoloader/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/autoloader/model.rb b/extensions/autoloader/model.rb
index fb54fd0f5..aaea573af 100644
--- a/extensions/autoloader/model.rb
+++ b/extensions/autoloader/model.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/customhook/api.rb b/extensions/customhook/api.rb
index 07348d759..540490fdd 100644
--- a/extensions/customhook/api.rb
+++ b/extensions/customhook/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/customhook/extension.rb b/extensions/customhook/extension.rb
index a522499d6..099b3c69c 100644
--- a/extensions/customhook/extension.rb
+++ b/extensions/customhook/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/customhook/handler.rb b/extensions/customhook/handler.rb
index 38fe2dc68..7803da54b 100644
--- a/extensions/customhook/handler.rb
+++ b/extensions/customhook/handler.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/demos/api.rb b/extensions/demos/api.rb
index 497c1918c..8c39552a7 100644
--- a/extensions/demos/api.rb
+++ b/extensions/demos/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/demos/extension.rb b/extensions/demos/extension.rb
index 973ddf257..12d22f6f5 100644
--- a/extensions/demos/extension.rb
+++ b/extensions/demos/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/demos/handler.rb b/extensions/demos/handler.rb
index 8d9a1641c..d52eb18fe 100644
--- a/extensions/demos/handler.rb
+++ b/extensions/demos/handler.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/dns/api.rb b/extensions/dns/api.rb
index f34de49c8..f4e14551c 100644
--- a/extensions/dns/api.rb
+++ b/extensions/dns/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/dns/dns.rb b/extensions/dns/dns.rb
index 2f460a84b..ccddb4513 100644
--- a/extensions/dns/dns.rb
+++ b/extensions/dns/dns.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/dns/extension.rb b/extensions/dns/extension.rb
index 66399ce1b..88214af7b 100644
--- a/extensions/dns/extension.rb
+++ b/extensions/dns/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/dns/logger.rb b/extensions/dns/logger.rb
index 794c62e7f..0a8324964 100644
--- a/extensions/dns/logger.rb
+++ b/extensions/dns/logger.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/dns/model.rb b/extensions/dns/model.rb
index b46283d32..04633aa87 100644
--- a/extensions/dns/model.rb
+++ b/extensions/dns/model.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/dns/rest/dns.rb b/extensions/dns/rest/dns.rb
index dc4c5e4f5..ac3f2a831 100644
--- a/extensions/dns/rest/dns.rb
+++ b/extensions/dns/rest/dns.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/dns_rebinding/api.rb b/extensions/dns_rebinding/api.rb
index cf4ffb161..c270c92de 100644
--- a/extensions/dns_rebinding/api.rb
+++ b/extensions/dns_rebinding/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/dns_rebinding/extension.rb b/extensions/dns_rebinding/extension.rb
index 792612f1d..a8abcdf30 100644
--- a/extensions/dns_rebinding/extension.rb
+++ b/extensions/dns_rebinding/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/etag/api.rb b/extensions/etag/api.rb
index 0830b9a5b..76fdbc9f6 100644
--- a/extensions/etag/api.rb
+++ b/extensions/etag/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/etag/etag.rb b/extensions/etag/etag.rb
index a88faa906..51425af55 100644
--- a/extensions/etag/etag.rb
+++ b/extensions/etag/etag.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/etag/extension.rb b/extensions/etag/extension.rb
index f275c2c50..9ce0e84b1 100644
--- a/extensions/etag/extension.rb
+++ b/extensions/etag/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/evasion/evasion.rb b/extensions/evasion/evasion.rb
index 98189cb5a..9b10d3891 100644
--- a/extensions/evasion/evasion.rb
+++ b/extensions/evasion/evasion.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/evasion/extension.rb b/extensions/evasion/extension.rb
index 9f1a3ea6f..dade3a809 100644
--- a/extensions/evasion/extension.rb
+++ b/extensions/evasion/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/evasion/obfuscation/base_64.rb b/extensions/evasion/obfuscation/base_64.rb
index a95bce23d..771c9b51c 100644
--- a/extensions/evasion/obfuscation/base_64.rb
+++ b/extensions/evasion/obfuscation/base_64.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/evasion/obfuscation/minify.rb b/extensions/evasion/obfuscation/minify.rb
index de6ffc4b0..27571c8e7 100644
--- a/extensions/evasion/obfuscation/minify.rb
+++ b/extensions/evasion/obfuscation/minify.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/evasion/obfuscation/scramble.rb b/extensions/evasion/obfuscation/scramble.rb
index dd10bc4b2..1ebfc0ee0 100644
--- a/extensions/evasion/obfuscation/scramble.rb
+++ b/extensions/evasion/obfuscation/scramble.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/evasion/obfuscation/whitespace.rb b/extensions/evasion/obfuscation/whitespace.rb
index f2836783f..90f318568 100644
--- a/extensions/evasion/obfuscation/whitespace.rb
+++ b/extensions/evasion/obfuscation/whitespace.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/events/api.rb b/extensions/events/api.rb
index a9180fda9..d6e99cd0f 100644
--- a/extensions/events/api.rb
+++ b/extensions/events/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/events/extension.rb b/extensions/events/extension.rb
index 7707d64ec..0385acb35 100644
--- a/extensions/events/extension.rb
+++ b/extensions/events/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/events/handler.rb b/extensions/events/handler.rb
index 2012e1c68..3239c2519 100644
--- a/extensions/events/handler.rb
+++ b/extensions/events/handler.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/metasploit/api.rb b/extensions/metasploit/api.rb
index 376bd8444..d5078387e 100644
--- a/extensions/metasploit/api.rb
+++ b/extensions/metasploit/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/metasploit/extension.rb b/extensions/metasploit/extension.rb
index 9d616d47b..acf1d18c4 100644
--- a/extensions/metasploit/extension.rb
+++ b/extensions/metasploit/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/metasploit/module.rb b/extensions/metasploit/module.rb
index 0ea03af7a..33eb7c50f 100644
--- a/extensions/metasploit/module.rb
+++ b/extensions/metasploit/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/metasploit/rest/msf.rb b/extensions/metasploit/rest/msf.rb
index 965e10f6a..e848e4a71 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/metasploit/rpcclient.rb b/extensions/metasploit/rpcclient.rb
index 770c9e480..eaf991d21 100644
--- a/extensions/metasploit/rpcclient.rb
+++ b/extensions/metasploit/rpcclient.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/network/api.rb b/extensions/network/api.rb
index d1bbefdb3..ab1a2ad1b 100644
--- a/extensions/network/api.rb
+++ b/extensions/network/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/network/extension.rb b/extensions/network/extension.rb
index 640640edc..2bde49be9 100644
--- a/extensions/network/extension.rb
+++ b/extensions/network/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/network/models/network_host.rb b/extensions/network/models/network_host.rb
index 5c3cf0c56..441247777 100644
--- a/extensions/network/models/network_host.rb
+++ b/extensions/network/models/network_host.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/network/models/network_service.rb b/extensions/network/models/network_service.rb
index 0dc59a1a2..ffe52bdb5 100644
--- a/extensions/network/models/network_service.rb
+++ b/extensions/network/models/network_service.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/network/rest/network.rb b/extensions/network/rest/network.rb
index 228d595b8..f5a9563b2 100644
--- a/extensions/network/rest/network.rb
+++ b/extensions/network/rest/network.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/notifications/channels/email.rb b/extensions/notifications/channels/email.rb
index 5fb3134fd..b2222044f 100644
--- a/extensions/notifications/channels/email.rb
+++ b/extensions/notifications/channels/email.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/notifications/channels/slack_workspace.rb b/extensions/notifications/channels/slack_workspace.rb
index e5cffb03a..6f3e87231 100644
--- a/extensions/notifications/channels/slack_workspace.rb
+++ b/extensions/notifications/channels/slack_workspace.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/notifications/extension.rb b/extensions/notifications/extension.rb
index 6ac191456..dfe0cb858 100644
--- a/extensions/notifications/extension.rb
+++ b/extensions/notifications/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/notifications/notifications.rb b/extensions/notifications/notifications.rb
index 8a632d56f..b42179b40 100644
--- a/extensions/notifications/notifications.rb
+++ b/extensions/notifications/notifications.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/proxy/api.rb b/extensions/proxy/api.rb
index a5f95d7d0..21bdbbaa6 100644
--- a/extensions/proxy/api.rb
+++ b/extensions/proxy/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/proxy/extension.rb b/extensions/proxy/extension.rb
index f9ce522e0..5891c6f6c 100644
--- a/extensions/proxy/extension.rb
+++ b/extensions/proxy/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/proxy/proxy.rb b/extensions/proxy/proxy.rb
index 3da8cadc9..e5ed5fbf4 100644
--- a/extensions/proxy/proxy.rb
+++ b/extensions/proxy/proxy.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/proxy/rest/proxy.rb b/extensions/proxy/rest/proxy.rb
index 0759451ad..3753103df 100644
--- a/extensions/proxy/rest/proxy.rb
+++ b/extensions/proxy/rest/proxy.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/qrcode/extension.rb b/extensions/qrcode/extension.rb
index 51a76f5a0..ca57ecc79 100644
--- a/extensions/qrcode/extension.rb
+++ b/extensions/qrcode/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/qrcode/qrcode.rb b/extensions/qrcode/qrcode.rb
index e55ccd3d1..6f4df2901 100644
--- a/extensions/qrcode/qrcode.rb
+++ b/extensions/qrcode/qrcode.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/requester/api.rb b/extensions/requester/api.rb
index 3db88714c..b23959c00 100644
--- a/extensions/requester/api.rb
+++ b/extensions/requester/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/requester/api/hook.rb b/extensions/requester/api/hook.rb
index 5e075097c..6c3f72990 100644
--- a/extensions/requester/api/hook.rb
+++ b/extensions/requester/api/hook.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
@@ -37,7 +37,7 @@ module BeEF
# If we use WebSockets, just reply wih the component contents
if config.get('beef.http.websocket.enable') && ws.getsocket(hb.session)
content = File.read(find_beefjs_component_path('beef.net.requester')).gsub('//
- // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+ // Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file \'doc/COPYING\' for copying permission
//', '')
diff --git a/extensions/requester/extension.rb b/extensions/requester/extension.rb
index 3d869976f..2d1512979 100644
--- a/extensions/requester/extension.rb
+++ b/extensions/requester/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/requester/handler.rb b/extensions/requester/handler.rb
index 9f0053f06..b866e65e7 100644
--- a/extensions/requester/handler.rb
+++ b/extensions/requester/handler.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/requester/models/http.rb b/extensions/requester/models/http.rb
index 286a4bfb3..8b859d4f5 100644
--- a/extensions/requester/models/http.rb
+++ b/extensions/requester/models/http.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/requester/rest/requester.rb b/extensions/requester/rest/requester.rb
index 746b8039b..76585bddb 100644
--- a/extensions/requester/rest/requester.rb
+++ b/extensions/requester/rest/requester.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/s2c_dns_tunnel/api.rb b/extensions/s2c_dns_tunnel/api.rb
index 8c44719ac..6dd3b9dc8 100644
--- a/extensions/s2c_dns_tunnel/api.rb
+++ b/extensions/s2c_dns_tunnel/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/s2c_dns_tunnel/dnsd.rb b/extensions/s2c_dns_tunnel/dnsd.rb
index c981e5adb..aa9ef8f70 100644
--- a/extensions/s2c_dns_tunnel/dnsd.rb
+++ b/extensions/s2c_dns_tunnel/dnsd.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/s2c_dns_tunnel/extension.rb b/extensions/s2c_dns_tunnel/extension.rb
index bfd76334e..491963bfe 100644
--- a/extensions/s2c_dns_tunnel/extension.rb
+++ b/extensions/s2c_dns_tunnel/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/social_engineering/extension.rb b/extensions/social_engineering/extension.rb
index 3ff9ba22e..592a5cf8b 100644
--- a/extensions/social_engineering/extension.rb
+++ b/extensions/social_engineering/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/social_engineering/models/interceptor.rb b/extensions/social_engineering/models/interceptor.rb
index aab71593b..286baad99 100644
--- a/extensions/social_engineering/models/interceptor.rb
+++ b/extensions/social_engineering/models/interceptor.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/social_engineering/models/web_cloner.rb b/extensions/social_engineering/models/web_cloner.rb
index 28ac1a9dc..54fae9726 100644
--- a/extensions/social_engineering/models/web_cloner.rb
+++ b/extensions/social_engineering/models/web_cloner.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/social_engineering/powershell/bind_powershell.rb b/extensions/social_engineering/powershell/bind_powershell.rb
index a830213d3..87c0e7656 100644
--- a/extensions/social_engineering/powershell/bind_powershell.rb
+++ b/extensions/social_engineering/powershell/bind_powershell.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/social_engineering/rest/socialengineering.rb b/extensions/social_engineering/rest/socialengineering.rb
index 44f5d831e..fad214500 100644
--- a/extensions/social_engineering/rest/socialengineering.rb
+++ b/extensions/social_engineering/rest/socialengineering.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/social_engineering/web_cloner/interceptor.rb b/extensions/social_engineering/web_cloner/interceptor.rb
index 5e5eff747..5a6bc031f 100644
--- a/extensions/social_engineering/web_cloner/interceptor.rb
+++ b/extensions/social_engineering/web_cloner/interceptor.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/social_engineering/web_cloner/web_cloner.rb b/extensions/social_engineering/web_cloner/web_cloner.rb
index 5dd56d268..67fab749d 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/webrtc/api.rb b/extensions/webrtc/api.rb
index 40ef2b1b3..d227734f5 100644
--- a/extensions/webrtc/api.rb
+++ b/extensions/webrtc/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/webrtc/api/hook.rb b/extensions/webrtc/api/hook.rb
index 9fa74ed7f..c7dff3155 100644
--- a/extensions/webrtc/api/hook.rb
+++ b/extensions/webrtc/api/hook.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/webrtc/extension.rb b/extensions/webrtc/extension.rb
index dbda56729..afc1e4788 100644
--- a/extensions/webrtc/extension.rb
+++ b/extensions/webrtc/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/webrtc/handlers.rb b/extensions/webrtc/handlers.rb
index 16a330c49..7c9f97d87 100644
--- a/extensions/webrtc/handlers.rb
+++ b/extensions/webrtc/handlers.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/webrtc/models/rtcmanage.rb b/extensions/webrtc/models/rtcmanage.rb
index 4ed921a64..04e5a55ff 100644
--- a/extensions/webrtc/models/rtcmanage.rb
+++ b/extensions/webrtc/models/rtcmanage.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/webrtc/models/rtcmodulestatus.rb b/extensions/webrtc/models/rtcmodulestatus.rb
index 77da42407..b1f64c26b 100644
--- a/extensions/webrtc/models/rtcmodulestatus.rb
+++ b/extensions/webrtc/models/rtcmodulestatus.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/webrtc/models/rtcsignal.rb b/extensions/webrtc/models/rtcsignal.rb
index a38b09a7e..41cb6513a 100644
--- a/extensions/webrtc/models/rtcsignal.rb
+++ b/extensions/webrtc/models/rtcsignal.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/webrtc/models/rtcstatus.rb b/extensions/webrtc/models/rtcstatus.rb
index 12ac74472..0a0a21ec0 100644
--- a/extensions/webrtc/models/rtcstatus.rb
+++ b/extensions/webrtc/models/rtcstatus.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/webrtc/rest/webrtc.rb b/extensions/webrtc/rest/webrtc.rb
index 6ffcc8bec..752efacd3 100644
--- a/extensions/webrtc/rest/webrtc.rb
+++ b/extensions/webrtc/rest/webrtc.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/xssrays/api.rb b/extensions/xssrays/api.rb
index 895e42cb3..fbdee124c 100644
--- a/extensions/xssrays/api.rb
+++ b/extensions/xssrays/api.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/xssrays/api/scan.rb b/extensions/xssrays/api/scan.rb
index d2a66f1d0..d3c335024 100644
--- a/extensions/xssrays/api/scan.rb
+++ b/extensions/xssrays/api/scan.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
@@ -43,7 +43,7 @@ module BeEF
# If we use WebSockets, just reply wih the component contents
if config.get('beef.http.websocket.enable') && ws.getsocket(hb.session)
content = File.read(find_beefjs_component_path('beef.net.xssrays')).gsub('//
- // Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+ // Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file \'doc/COPYING\' for copying permission
//', '')
diff --git a/extensions/xssrays/extension.rb b/extensions/xssrays/extension.rb
index 7bf16ce89..a21db582f 100644
--- a/extensions/xssrays/extension.rb
+++ b/extensions/xssrays/extension.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/xssrays/handler.rb b/extensions/xssrays/handler.rb
index 9208b3539..b1624ed0d 100644
--- a/extensions/xssrays/handler.rb
+++ b/extensions/xssrays/handler.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/xssrays/models/xssraysdetail.rb b/extensions/xssrays/models/xssraysdetail.rb
index 318484332..e1e95944f 100644
--- a/extensions/xssrays/models/xssraysdetail.rb
+++ b/extensions/xssrays/models/xssraysdetail.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/xssrays/models/xssraysscan.rb b/extensions/xssrays/models/xssraysscan.rb
index eb0ff1840..0aaaa17a0 100644
--- a/extensions/xssrays/models/xssraysscan.rb
+++ b/extensions/xssrays/models/xssraysscan.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/extensions/xssrays/rest/xssrays.rb b/extensions/xssrays/rest/xssrays.rb
index 45e96e0cb..0f10ca545 100644
--- a/extensions/xssrays/rest/xssrays.rb
+++ b/extensions/xssrays/rest/xssrays.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/avant_steal_history/command.js b/modules/browser/avant_steal_history/command.js
index 686371a7b..503b007ac 100644
--- a/modules/browser/avant_steal_history/command.js
+++ b/modules/browser/avant_steal_history/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2025Wade 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 bf2eae44b..24b39ffcc 100644
--- a/modules/browser/avant_steal_history/module.rb
+++ b/modules/browser/avant_steal_history/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2025Wade 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 e1ea3f6cc..0f209e2f1 100644
--- a/modules/browser/browser_fingerprinting/command.js
+++ b/modules/browser/browser_fingerprinting/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/browser_fingerprinting/module.rb b/modules/browser/browser_fingerprinting/module.rb
index d1f4de0e8..ca9ab638d 100644
--- a/modules/browser/browser_fingerprinting/module.rb
+++ b/modules/browser/browser_fingerprinting/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_activex/command.js b/modules/browser/detect_activex/command.js
index 5f13cf85f..4777891c3 100644
--- a/modules/browser/detect_activex/command.js
+++ b/modules/browser/detect_activex/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_activex/module.rb b/modules/browser/detect_activex/module.rb
index b9f52818a..3dcd1c97e 100644
--- a/modules/browser/detect_activex/module.rb
+++ b/modules/browser/detect_activex/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_evernote_clipper/command.js b/modules/browser/detect_evernote_clipper/command.js
index 0c0315576..17dc0c468 100644
--- a/modules/browser/detect_evernote_clipper/command.js
+++ b/modules/browser/detect_evernote_clipper/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_evernote_clipper/module.rb b/modules/browser/detect_evernote_clipper/module.rb
index 41367e2ff..0c7aa4cf1 100644
--- a/modules/browser/detect_evernote_clipper/module.rb
+++ b/modules/browser/detect_evernote_clipper/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_extensions/command.js b/modules/browser/detect_extensions/command.js
index 2b40cf947..a8528fbbc 100644
--- a/modules/browser/detect_extensions/command.js
+++ b/modules/browser/detect_extensions/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_extensions/module.rb b/modules/browser/detect_extensions/module.rb
index e7245e928..2007a87ce 100644
--- a/modules/browser/detect_extensions/module.rb
+++ b/modules/browser/detect_extensions/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_firebug/command.js b/modules/browser/detect_firebug/command.js
index 5eecec5e7..1868c7c66 100644
--- a/modules/browser/detect_firebug/command.js
+++ b/modules/browser/detect_firebug/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_firebug/module.rb b/modules/browser/detect_firebug/module.rb
index 9d5ed4a37..d50c9dddc 100644
--- a/modules/browser/detect_firebug/module.rb
+++ b/modules/browser/detect_firebug/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_foxit/command.js b/modules/browser/detect_foxit/command.js
index 46ab769fa..db0823daa 100644
--- a/modules/browser/detect_foxit/command.js
+++ b/modules/browser/detect_foxit/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_foxit/module.rb b/modules/browser/detect_foxit/module.rb
index ec26459d3..205d19339 100644
--- a/modules/browser/detect_foxit/module.rb
+++ b/modules/browser/detect_foxit/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_lastpass/command.js b/modules/browser/detect_lastpass/command.js
index 407cbe286..278685a9c 100644
--- a/modules/browser/detect_lastpass/command.js
+++ b/modules/browser/detect_lastpass/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_lastpass/module.rb b/modules/browser/detect_lastpass/module.rb
index eac55ec9f..f060a8f32 100644
--- a/modules/browser/detect_lastpass/module.rb
+++ b/modules/browser/detect_lastpass/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_mime_types/command.js b/modules/browser/detect_mime_types/command.js
index 952e18b99..cb188da5a 100644
--- a/modules/browser/detect_mime_types/command.js
+++ b/modules/browser/detect_mime_types/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_mime_types/module.rb b/modules/browser/detect_mime_types/module.rb
index c61daa128..7e043f301 100644
--- a/modules/browser/detect_mime_types/module.rb
+++ b/modules/browser/detect_mime_types/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_office/command.js b/modules/browser/detect_office/command.js
index 70ab7ee92..59713c7e6 100644
--- a/modules/browser/detect_office/command.js
+++ b/modules/browser/detect_office/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_office/module.rb b/modules/browser/detect_office/module.rb
index 78e054cb0..4705402b6 100644
--- a/modules/browser/detect_office/module.rb
+++ b/modules/browser/detect_office/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_popup_blocker/command.js b/modules/browser/detect_popup_blocker/command.js
index a96596d8a..ac232433d 100644
--- a/modules/browser/detect_popup_blocker/command.js
+++ b/modules/browser/detect_popup_blocker/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_popup_blocker/module.rb b/modules/browser/detect_popup_blocker/module.rb
index efcb721ce..3c0602474 100644
--- a/modules/browser/detect_popup_blocker/module.rb
+++ b/modules/browser/detect_popup_blocker/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_quicktime/command.js b/modules/browser/detect_quicktime/command.js
index a0c02fc52..b6c543e0f 100644
--- a/modules/browser/detect_quicktime/command.js
+++ b/modules/browser/detect_quicktime/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_quicktime/module.rb b/modules/browser/detect_quicktime/module.rb
index 7e76b5f76..af8a05be4 100644
--- a/modules/browser/detect_quicktime/module.rb
+++ b/modules/browser/detect_quicktime/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_realplayer/command.js b/modules/browser/detect_realplayer/command.js
index 85d547871..f5513e777 100644
--- a/modules/browser/detect_realplayer/command.js
+++ b/modules/browser/detect_realplayer/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_realplayer/module.rb b/modules/browser/detect_realplayer/module.rb
index 5f48115a3..425c81001 100644
--- a/modules/browser/detect_realplayer/module.rb
+++ b/modules/browser/detect_realplayer/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_silverlight/command.js b/modules/browser/detect_silverlight/command.js
index 1355ead3e..a3c0cfebf 100644
--- a/modules/browser/detect_silverlight/command.js
+++ b/modules/browser/detect_silverlight/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_silverlight/module.rb b/modules/browser/detect_silverlight/module.rb
index 3e38fc759..00accbdb5 100644
--- a/modules/browser/detect_silverlight/module.rb
+++ b/modules/browser/detect_silverlight/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_simple_adblock/command.js b/modules/browser/detect_simple_adblock/command.js
index 20f1a9738..cad8b480b 100644
--- a/modules/browser/detect_simple_adblock/command.js
+++ b/modules/browser/detect_simple_adblock/command.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_simple_adblock/module.rb b/modules/browser/detect_simple_adblock/module.rb
index 24e70b9f5..58c53e6e0 100644
--- a/modules/browser/detect_simple_adblock/module.rb
+++ b/modules/browser/detect_simple_adblock/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_toolbars/command.js b/modules/browser/detect_toolbars/command.js
index c417b3bfe..04433e982 100644
--- a/modules/browser/detect_toolbars/command.js
+++ b/modules/browser/detect_toolbars/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_toolbars/module.rb b/modules/browser/detect_toolbars/module.rb
index a18fee19a..35630377e 100644
--- a/modules/browser/detect_toolbars/module.rb
+++ b/modules/browser/detect_toolbars/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_unity/command.js b/modules/browser/detect_unity/command.js
index 0c6a35c08..da4676bc8 100644
--- a/modules/browser/detect_unity/command.js
+++ b/modules/browser/detect_unity/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_unity/module.rb b/modules/browser/detect_unity/module.rb
index f05b89bdc..8a14f1502 100644
--- a/modules/browser/detect_unity/module.rb
+++ b/modules/browser/detect_unity/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_unsafe_activex/command.js b/modules/browser/detect_unsafe_activex/command.js
index 99bc0da04..b0646b3fa 100644
--- a/modules/browser/detect_unsafe_activex/command.js
+++ b/modules/browser/detect_unsafe_activex/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_unsafe_activex/module.rb b/modules/browser/detect_unsafe_activex/module.rb
index c5d4ba518..c32c7e176 100644
--- a/modules/browser/detect_unsafe_activex/module.rb
+++ b/modules/browser/detect_unsafe_activex/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_vlc/command.js b/modules/browser/detect_vlc/command.js
index c3cb98b76..2e7c4294c 100644
--- a/modules/browser/detect_vlc/command.js
+++ b/modules/browser/detect_vlc/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_vlc/module.rb b/modules/browser/detect_vlc/module.rb
index 62326dd82..3c66cee1c 100644
--- a/modules/browser/detect_vlc/module.rb
+++ b/modules/browser/detect_vlc/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/detect_wmp/command.js b/modules/browser/detect_wmp/command.js
index d82e7dceb..dd5257ec5 100644
--- a/modules/browser/detect_wmp/command.js
+++ b/modules/browser/detect_wmp/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/detect_wmp/module.rb b/modules/browser/detect_wmp/module.rb
index e446f9662..dc712ff0d 100644
--- a/modules/browser/detect_wmp/module.rb
+++ b/modules/browser/detect_wmp/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/fingerprint_browser/command.js b/modules/browser/fingerprint_browser/command.js
index e295751f6..789894f42 100644
--- a/modules/browser/fingerprint_browser/command.js
+++ b/modules/browser/fingerprint_browser/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/fingerprint_browser/module.rb b/modules/browser/fingerprint_browser/module.rb
index a352f030c..f6c1b0603 100644
--- a/modules/browser/fingerprint_browser/module.rb
+++ b/modules/browser/fingerprint_browser/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/get_visited_domains/command.js b/modules/browser/get_visited_domains/command.js
index 1d4389644..97bf550db 100644
--- a/modules/browser/get_visited_domains/command.js
+++ b/modules/browser/get_visited_domains/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/get_visited_domains/module.rb b/modules/browser/get_visited_domains/module.rb
index d8c77b184..d5c1ff407 100644
--- a/modules/browser/get_visited_domains/module.rb
+++ b/modules/browser/get_visited_domains/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/get_visited_urls/command.js b/modules/browser/get_visited_urls/command.js
index 07f86da34..ff9170f22 100644
--- a/modules/browser/get_visited_urls/command.js
+++ b/modules/browser/get_visited_urls/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/get_visited_urls/module.rb b/modules/browser/get_visited_urls/module.rb
index 8f8469a41..d987e9a7c 100644
--- a/modules/browser/get_visited_urls/module.rb
+++ b/modules/browser/get_visited_urls/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/ajax_fingerprint/command.js b/modules/browser/hooked_origin/ajax_fingerprint/command.js
index f2da9523f..6291864b1 100644
--- a/modules/browser/hooked_origin/ajax_fingerprint/command.js
+++ b/modules/browser/hooked_origin/ajax_fingerprint/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/ajax_fingerprint/module.rb b/modules/browser/hooked_origin/ajax_fingerprint/module.rb
index 21f1d5b4a..e30e998bd 100644
--- a/modules/browser/hooked_origin/ajax_fingerprint/module.rb
+++ b/modules/browser/hooked_origin/ajax_fingerprint/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/alert_dialog/command.js b/modules/browser/hooked_origin/alert_dialog/command.js
index 1b3d1374b..6ce31d8f6 100644
--- a/modules/browser/hooked_origin/alert_dialog/command.js
+++ b/modules/browser/hooked_origin/alert_dialog/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/alert_dialog/module.rb b/modules/browser/hooked_origin/alert_dialog/module.rb
index 5623a6bfc..e82078cf9 100644
--- a/modules/browser/hooked_origin/alert_dialog/module.rb
+++ b/modules/browser/hooked_origin/alert_dialog/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js
index 46cc1b21d..ddad1d59f 100644
--- a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js
+++ b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb
index fe38a553a..c7268a93d 100644
--- a/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb
+++ b/modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js b/modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js
index ab2413564..8f365b55d 100644
--- a/modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js
+++ b/modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb b/modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb
index 055380772..40f38af8b 100644
--- a/modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb
+++ b/modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/clear_console/command.js b/modules/browser/hooked_origin/clear_console/command.js
index d06e6d42d..a4e584d69 100644
--- a/modules/browser/hooked_origin/clear_console/command.js
+++ b/modules/browser/hooked_origin/clear_console/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/clear_console/module.rb b/modules/browser/hooked_origin/clear_console/module.rb
index a1b535141..a78957eb5 100644
--- a/modules/browser/hooked_origin/clear_console/module.rb
+++ b/modules/browser/hooked_origin/clear_console/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/deface_web_page/command.js b/modules/browser/hooked_origin/deface_web_page/command.js
index 695db796b..2bd472e77 100644
--- a/modules/browser/hooked_origin/deface_web_page/command.js
+++ b/modules/browser/hooked_origin/deface_web_page/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/deface_web_page/module.rb b/modules/browser/hooked_origin/deface_web_page/module.rb
index 5c3ca2301..1c67c9ee3 100644
--- a/modules/browser/hooked_origin/deface_web_page/module.rb
+++ b/modules/browser/hooked_origin/deface_web_page/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/deface_web_page_component/command.js b/modules/browser/hooked_origin/deface_web_page_component/command.js
index ab7b3b51d..3aa12014f 100644
--- a/modules/browser/hooked_origin/deface_web_page_component/command.js
+++ b/modules/browser/hooked_origin/deface_web_page_component/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/deface_web_page_component/module.rb b/modules/browser/hooked_origin/deface_web_page_component/module.rb
index d1d3dcca1..ce4970ad5 100644
--- a/modules/browser/hooked_origin/deface_web_page_component/module.rb
+++ b/modules/browser/hooked_origin/deface_web_page_component/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/disable_developer_tools/command.js b/modules/browser/hooked_origin/disable_developer_tools/command.js
index edf3c109b..66d02dfdc 100644
--- a/modules/browser/hooked_origin/disable_developer_tools/command.js
+++ b/modules/browser/hooked_origin/disable_developer_tools/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/disable_developer_tools/module.rb b/modules/browser/hooked_origin/disable_developer_tools/module.rb
index 994d8f33c..fbb973b51 100644
--- a/modules/browser/hooked_origin/disable_developer_tools/module.rb
+++ b/modules/browser/hooked_origin/disable_developer_tools/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/get_autocomplete_creds/command.js b/modules/browser/hooked_origin/get_autocomplete_creds/command.js
index 32a4f63da..04407172d 100644
--- a/modules/browser/hooked_origin/get_autocomplete_creds/command.js
+++ b/modules/browser/hooked_origin/get_autocomplete_creds/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/get_autocomplete_creds/module.rb b/modules/browser/hooked_origin/get_autocomplete_creds/module.rb
index 6da0c6a34..7e4258e1b 100644
--- a/modules/browser/hooked_origin/get_autocomplete_creds/module.rb
+++ b/modules/browser/hooked_origin/get_autocomplete_creds/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/get_cookie/command.js b/modules/browser/hooked_origin/get_cookie/command.js
index ae6419dc6..6f13b9b05 100644
--- a/modules/browser/hooked_origin/get_cookie/command.js
+++ b/modules/browser/hooked_origin/get_cookie/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/get_cookie/module.rb b/modules/browser/hooked_origin/get_cookie/module.rb
index 9e39853a5..5c8364002 100644
--- a/modules/browser/hooked_origin/get_cookie/module.rb
+++ b/modules/browser/hooked_origin/get_cookie/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/get_form_values/command.js b/modules/browser/hooked_origin/get_form_values/command.js
index d24b7e0d2..d939dc363 100644
--- a/modules/browser/hooked_origin/get_form_values/command.js
+++ b/modules/browser/hooked_origin/get_form_values/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/get_form_values/module.rb b/modules/browser/hooked_origin/get_form_values/module.rb
index 94888139b..1a6162a1b 100644
--- a/modules/browser/hooked_origin/get_form_values/module.rb
+++ b/modules/browser/hooked_origin/get_form_values/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/get_local_storage/command.js b/modules/browser/hooked_origin/get_local_storage/command.js
index 4373874a5..b011bad2a 100644
--- a/modules/browser/hooked_origin/get_local_storage/command.js
+++ b/modules/browser/hooked_origin/get_local_storage/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/get_local_storage/module.rb b/modules/browser/hooked_origin/get_local_storage/module.rb
index d1d908037..52345cec7 100644
--- a/modules/browser/hooked_origin/get_local_storage/module.rb
+++ b/modules/browser/hooked_origin/get_local_storage/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/get_page_html/command.js b/modules/browser/hooked_origin/get_page_html/command.js
index 26a7ec904..1c0b943db 100644
--- a/modules/browser/hooked_origin/get_page_html/command.js
+++ b/modules/browser/hooked_origin/get_page_html/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/get_page_html/module.rb b/modules/browser/hooked_origin/get_page_html/module.rb
index 441c3bd71..d10f9ddef 100644
--- a/modules/browser/hooked_origin/get_page_html/module.rb
+++ b/modules/browser/hooked_origin/get_page_html/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/get_page_html_iframe/command.js b/modules/browser/hooked_origin/get_page_html_iframe/command.js
index 607f20e37..ffb2b0604 100644
--- a/modules/browser/hooked_origin/get_page_html_iframe/command.js
+++ b/modules/browser/hooked_origin/get_page_html_iframe/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/get_page_html_iframe/module.rb b/modules/browser/hooked_origin/get_page_html_iframe/module.rb
index ad64d1a1a..825dc693b 100644
--- a/modules/browser/hooked_origin/get_page_html_iframe/module.rb
+++ b/modules/browser/hooked_origin/get_page_html_iframe/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/get_page_links/command.js b/modules/browser/hooked_origin/get_page_links/command.js
index 742edca4d..8e4155710 100644
--- a/modules/browser/hooked_origin/get_page_links/command.js
+++ b/modules/browser/hooked_origin/get_page_links/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/get_page_links/module.rb b/modules/browser/hooked_origin/get_page_links/module.rb
index 31331a12f..74b96388c 100644
--- a/modules/browser/hooked_origin/get_page_links/module.rb
+++ b/modules/browser/hooked_origin/get_page_links/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/get_session_storage/command.js b/modules/browser/hooked_origin/get_session_storage/command.js
index fd6523fa1..c51cbd77c 100644
--- a/modules/browser/hooked_origin/get_session_storage/command.js
+++ b/modules/browser/hooked_origin/get_session_storage/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/get_session_storage/module.rb b/modules/browser/hooked_origin/get_session_storage/module.rb
index 44a21b0e7..748d6a8d9 100644
--- a/modules/browser/hooked_origin/get_session_storage/module.rb
+++ b/modules/browser/hooked_origin/get_session_storage/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/get_stored_credentials/command.js b/modules/browser/hooked_origin/get_stored_credentials/command.js
index 8d0c40209..2714da474 100644
--- a/modules/browser/hooked_origin/get_stored_credentials/command.js
+++ b/modules/browser/hooked_origin/get_stored_credentials/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/get_stored_credentials/module.rb b/modules/browser/hooked_origin/get_stored_credentials/module.rb
index 2bdfe9b1c..16ff188f4 100644
--- a/modules/browser/hooked_origin/get_stored_credentials/module.rb
+++ b/modules/browser/hooked_origin/get_stored_credentials/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/link_rewrite/command.js b/modules/browser/hooked_origin/link_rewrite/command.js
index 238d70f7b..05da6a861 100644
--- a/modules/browser/hooked_origin/link_rewrite/command.js
+++ b/modules/browser/hooked_origin/link_rewrite/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/link_rewrite/module.rb b/modules/browser/hooked_origin/link_rewrite/module.rb
index fecb0913c..a9869f38c 100644
--- a/modules/browser/hooked_origin/link_rewrite/module.rb
+++ b/modules/browser/hooked_origin/link_rewrite/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/link_rewrite_click_events/command.js b/modules/browser/hooked_origin/link_rewrite_click_events/command.js
index eb188a56f..fa41f55a8 100644
--- a/modules/browser/hooked_origin/link_rewrite_click_events/command.js
+++ b/modules/browser/hooked_origin/link_rewrite_click_events/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/link_rewrite_click_events/module.rb b/modules/browser/hooked_origin/link_rewrite_click_events/module.rb
index b1099e743..a8696b2d0 100644
--- a/modules/browser/hooked_origin/link_rewrite_click_events/module.rb
+++ b/modules/browser/hooked_origin/link_rewrite_click_events/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/link_rewrite_sslstrip/command.js b/modules/browser/hooked_origin/link_rewrite_sslstrip/command.js
index 148177d4d..af746c5f1 100644
--- a/modules/browser/hooked_origin/link_rewrite_sslstrip/command.js
+++ b/modules/browser/hooked_origin/link_rewrite_sslstrip/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb b/modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb
index 76ea3deaa..348565a17 100644
--- a/modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb
+++ b/modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/link_rewrite_tel/command.js b/modules/browser/hooked_origin/link_rewrite_tel/command.js
index aae0a65bf..f4bee5b21 100644
--- a/modules/browser/hooked_origin/link_rewrite_tel/command.js
+++ b/modules/browser/hooked_origin/link_rewrite_tel/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/link_rewrite_tel/module.rb b/modules/browser/hooked_origin/link_rewrite_tel/module.rb
index fcae1a88b..7bb004165 100644
--- a/modules/browser/hooked_origin/link_rewrite_tel/module.rb
+++ b/modules/browser/hooked_origin/link_rewrite_tel/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js b/modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js
index ecd439c98..6768fc191 100644
--- a/modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js
+++ b/modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb b/modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb
index ee045c149..529322801 100644
--- a/modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb
+++ b/modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/overflow_cookiejar/command.js b/modules/browser/hooked_origin/overflow_cookiejar/command.js
index 62f311abc..1c7ebcbf5 100644
--- a/modules/browser/hooked_origin/overflow_cookiejar/command.js
+++ b/modules/browser/hooked_origin/overflow_cookiejar/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/overflow_cookiejar/module.rb b/modules/browser/hooked_origin/overflow_cookiejar/module.rb
index abe969dbe..c0014c11b 100644
--- a/modules/browser/hooked_origin/overflow_cookiejar/module.rb
+++ b/modules/browser/hooked_origin/overflow_cookiejar/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/prompt_dialog/command.js b/modules/browser/hooked_origin/prompt_dialog/command.js
index e9eb274c2..0531c1f4e 100644
--- a/modules/browser/hooked_origin/prompt_dialog/command.js
+++ b/modules/browser/hooked_origin/prompt_dialog/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/prompt_dialog/module.rb b/modules/browser/hooked_origin/prompt_dialog/module.rb
index b59da3af6..58c456ed7 100644
--- a/modules/browser/hooked_origin/prompt_dialog/module.rb
+++ b/modules/browser/hooked_origin/prompt_dialog/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/remove_stuck_iframes/command.js b/modules/browser/hooked_origin/remove_stuck_iframes/command.js
index d3d30a458..35091707d 100644
--- a/modules/browser/hooked_origin/remove_stuck_iframes/command.js
+++ b/modules/browser/hooked_origin/remove_stuck_iframes/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/remove_stuck_iframes/module.rb b/modules/browser/hooked_origin/remove_stuck_iframes/module.rb
index c1dca4464..9c9dbfedd 100644
--- a/modules/browser/hooked_origin/remove_stuck_iframes/module.rb
+++ b/modules/browser/hooked_origin/remove_stuck_iframes/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/replace_video/command.js b/modules/browser/hooked_origin/replace_video/command.js
index 81b67dec3..9029e3c74 100644
--- a/modules/browser/hooked_origin/replace_video/command.js
+++ b/modules/browser/hooked_origin/replace_video/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/replace_video/module.rb b/modules/browser/hooked_origin/replace_video/module.rb
index 42550aeeb..811adf3f3 100644
--- a/modules/browser/hooked_origin/replace_video/module.rb
+++ b/modules/browser/hooked_origin/replace_video/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/rickroll/command.js b/modules/browser/hooked_origin/rickroll/command.js
index e7843f928..4d1b24d13 100644
--- a/modules/browser/hooked_origin/rickroll/command.js
+++ b/modules/browser/hooked_origin/rickroll/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/rickroll/module.rb b/modules/browser/hooked_origin/rickroll/module.rb
index 57f389fb2..81f9a8bb8 100644
--- a/modules/browser/hooked_origin/rickroll/module.rb
+++ b/modules/browser/hooked_origin/rickroll/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/site_redirect/command.js b/modules/browser/hooked_origin/site_redirect/command.js
index 0014ef8f1..da67699c7 100644
--- a/modules/browser/hooked_origin/site_redirect/command.js
+++ b/modules/browser/hooked_origin/site_redirect/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/site_redirect/module.rb b/modules/browser/hooked_origin/site_redirect/module.rb
index 642c127fe..aa10ae130 100644
--- a/modules/browser/hooked_origin/site_redirect/module.rb
+++ b/modules/browser/hooked_origin/site_redirect/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/hooked_origin/site_redirect_iframe/command.js b/modules/browser/hooked_origin/site_redirect_iframe/command.js
index 288424425..d45cfdeb9 100644
--- a/modules/browser/hooked_origin/site_redirect_iframe/command.js
+++ b/modules/browser/hooked_origin/site_redirect_iframe/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/hooked_origin/site_redirect_iframe/module.rb b/modules/browser/hooked_origin/site_redirect_iframe/module.rb
index 8383ee3ca..d24092a2e 100644
--- a/modules/browser/hooked_origin/site_redirect_iframe/module.rb
+++ b/modules/browser/hooked_origin/site_redirect_iframe/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/play_sound/command.js b/modules/browser/play_sound/command.js
index 06336944b..98ec4bd59 100644
--- a/modules/browser/play_sound/command.js
+++ b/modules/browser/play_sound/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/play_sound/module.rb b/modules/browser/play_sound/module.rb
index 46f1ecf8e..6526c159e 100644
--- a/modules/browser/play_sound/module.rb
+++ b/modules/browser/play_sound/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/remove_hook_element/command.js b/modules/browser/remove_hook_element/command.js
index b90627757..d3a18a6fd 100644
--- a/modules/browser/remove_hook_element/command.js
+++ b/modules/browser/remove_hook_element/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/remove_hook_element/module.rb b/modules/browser/remove_hook_element/module.rb
index ce476630f..5c8b2a22d 100644
--- a/modules/browser/remove_hook_element/module.rb
+++ b/modules/browser/remove_hook_element/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/spyder_eye/command.js b/modules/browser/spyder_eye/command.js
index 1d787c24d..f27c32b4e 100644
--- a/modules/browser/spyder_eye/command.js
+++ b/modules/browser/spyder_eye/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/spyder_eye/module.rb b/modules/browser/spyder_eye/module.rb
index eb2b4fca1..2582c8b52 100644
--- a/modules/browser/spyder_eye/module.rb
+++ b/modules/browser/spyder_eye/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/unhook/command.js b/modules/browser/unhook/command.js
index b9a08f5ae..bd9dd909c 100644
--- a/modules/browser/unhook/command.js
+++ b/modules/browser/unhook/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/unhook/module.rb b/modules/browser/unhook/module.rb
index e4c5223cd..ddbcfdb06 100644
--- a/modules/browser/unhook/module.rb
+++ b/modules/browser/unhook/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/webcam_flash/command.js b/modules/browser/webcam_flash/command.js
index 0d5c31b6a..696ecf63d 100644
--- a/modules/browser/webcam_flash/command.js
+++ b/modules/browser/webcam_flash/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/webcam_flash/module.rb b/modules/browser/webcam_flash/module.rb
index 407bc22a3..5e3260ffc 100644
--- a/modules/browser/webcam_flash/module.rb
+++ b/modules/browser/webcam_flash/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/webcam_html5/command.js b/modules/browser/webcam_html5/command.js
index de20b1833..b6e7d8ab6 100644
--- a/modules/browser/webcam_html5/command.js
+++ b/modules/browser/webcam_html5/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/webcam_html5/module.rb b/modules/browser/webcam_html5/module.rb
index 1f5ede17d..62c755c2a 100644
--- a/modules/browser/webcam_html5/module.rb
+++ b/modules/browser/webcam_html5/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/browser/webcam_permission_check/command.js b/modules/browser/webcam_permission_check/command.js
index 1f8f758be..e759bc5be 100644
--- a/modules/browser/webcam_permission_check/command.js
+++ b/modules/browser/webcam_permission_check/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/browser/webcam_permission_check/module.rb b/modules/browser/webcam_permission_check/module.rb
index 3ce4ca7d1..a6b9c6394 100644
--- a/modules/browser/webcam_permission_check/module.rb
+++ b/modules/browser/webcam_permission_check/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/chrome_extensions/execute_tabs/command.js b/modules/chrome_extensions/execute_tabs/command.js
index 78e82b074..b5757274a 100644
--- a/modules/chrome_extensions/execute_tabs/command.js
+++ b/modules/chrome_extensions/execute_tabs/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/chrome_extensions/execute_tabs/module.rb b/modules/chrome_extensions/execute_tabs/module.rb
index cf6384e91..a4f22e10a 100644
--- a/modules/chrome_extensions/execute_tabs/module.rb
+++ b/modules/chrome_extensions/execute_tabs/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/chrome_extensions/get_all_cookies/command.js b/modules/chrome_extensions/get_all_cookies/command.js
index 3d2f4acab..c2ae757ee 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/chrome_extensions/get_all_cookies/module.rb b/modules/chrome_extensions/get_all_cookies/module.rb
index a707459ca..bf79148f3 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/chrome_extensions/grab_google_contacts/command.js b/modules/chrome_extensions/grab_google_contacts/command.js
index 3209d1084..3389f573f 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/chrome_extensions/grab_google_contacts/module.rb b/modules/chrome_extensions/grab_google_contacts/module.rb
index ae4813c60..4907db583 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/chrome_extensions/inject_beef/command.js b/modules/chrome_extensions/inject_beef/command.js
index 6ba779084..db3393472 100755
--- a/modules/chrome_extensions/inject_beef/command.js
+++ b/modules/chrome_extensions/inject_beef/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/chrome_extensions/inject_beef/module.rb b/modules/chrome_extensions/inject_beef/module.rb
index 7fc4f0a20..2c86466f4 100755
--- a/modules/chrome_extensions/inject_beef/module.rb
+++ b/modules/chrome_extensions/inject_beef/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/chrome_extensions/screenshot/command.js b/modules/chrome_extensions/screenshot/command.js
index effdbd355..693cc1712 100755
--- a/modules/chrome_extensions/screenshot/command.js
+++ b/modules/chrome_extensions/screenshot/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/chrome_extensions/screenshot/module.rb b/modules/chrome_extensions/screenshot/module.rb
index c2ce94972..5f891f56f 100755
--- a/modules/chrome_extensions/screenshot/module.rb
+++ b/modules/chrome_extensions/screenshot/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/chrome_extensions/send_gvoice_sms/command.js b/modules/chrome_extensions/send_gvoice_sms/command.js
index 7ed239b8d..17bd68224 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/chrome_extensions/send_gvoice_sms/module.rb b/modules/chrome_extensions/send_gvoice_sms/module.rb
index 4b637174d..e248fd876 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/debug/test_beef_debug/command.js b/modules/debug/test_beef_debug/command.js
index 4ed561958..211c447f9 100644
--- a/modules/debug/test_beef_debug/command.js
+++ b/modules/debug/test_beef_debug/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/debug/test_beef_debug/module.rb b/modules/debug/test_beef_debug/module.rb
index e0f6dacc1..1e283f244 100644
--- a/modules/debug/test_beef_debug/module.rb
+++ b/modules/debug/test_beef_debug/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/debug/test_cors_request/command.js b/modules/debug/test_cors_request/command.js
index fa013c772..c1046030a 100644
--- a/modules/debug/test_cors_request/command.js
+++ b/modules/debug/test_cors_request/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/debug/test_cors_request/module.rb b/modules/debug/test_cors_request/module.rb
index c7367a4e8..d85e58230 100644
--- a/modules/debug/test_cors_request/module.rb
+++ b/modules/debug/test_cors_request/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/debug/test_dns_tunnel_client/command.js b/modules/debug/test_dns_tunnel_client/command.js
index 1b31fcb69..df56a2a25 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/debug/test_dns_tunnel_client/module.rb b/modules/debug/test_dns_tunnel_client/module.rb
index 9dc46a9e4..e5daff576 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/debug/test_get_variable/command.js b/modules/debug/test_get_variable/command.js
index a2bc3dff3..f86dd66c1 100644
--- a/modules/debug/test_get_variable/command.js
+++ b/modules/debug/test_get_variable/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/debug/test_get_variable/module.rb b/modules/debug/test_get_variable/module.rb
index 7549e2cb3..289daf016 100644
--- a/modules/debug/test_get_variable/module.rb
+++ b/modules/debug/test_get_variable/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/debug/test_http_redirect/command.js b/modules/debug/test_http_redirect/command.js
index 8c7b92e57..f0b7b2f70 100644
--- a/modules/debug/test_http_redirect/command.js
+++ b/modules/debug/test_http_redirect/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/debug/test_http_redirect/module.rb b/modules/debug/test_http_redirect/module.rb
index fb36015de..ae9cc1938 100644
--- a/modules/debug/test_http_redirect/module.rb
+++ b/modules/debug/test_http_redirect/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/debug/test_network_request/command.js b/modules/debug/test_network_request/command.js
index f45b4359b..f23ef7516 100644
--- a/modules/debug/test_network_request/command.js
+++ b/modules/debug/test_network_request/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/debug/test_network_request/module.rb b/modules/debug/test_network_request/module.rb
index 8d375c607..e332cacbe 100644
--- a/modules/debug/test_network_request/module.rb
+++ b/modules/debug/test_network_request/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/debug/test_return_ascii_chars/command.js b/modules/debug/test_return_ascii_chars/command.js
index 148625c45..1b3fb9187 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/debug/test_return_ascii_chars/module.rb b/modules/debug/test_return_ascii_chars/module.rb
index f4ac716f7..b2fef93e0 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/debug/test_return_image/command.js b/modules/debug/test_return_image/command.js
index 29410075f..8cb563222 100644
--- a/modules/debug/test_return_image/command.js
+++ b/modules/debug/test_return_image/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/debug/test_return_image/module.rb b/modules/debug/test_return_image/module.rb
index 4a2b689ac..7a9e1e18f 100644
--- a/modules/debug/test_return_image/module.rb
+++ b/modules/debug/test_return_image/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/debug/test_return_long_string/command.js b/modules/debug/test_return_long_string/command.js
index 7ef3e81d7..1695c9319 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/debug/test_return_long_string/module.rb b/modules/debug/test_return_long_string/module.rb
index 09508d00a..599a318b4 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/apache_cookie_disclosure/command.js b/modules/exploits/apache_cookie_disclosure/command.js
index 98fc8330e..4b938ae22 100644
--- a/modules/exploits/apache_cookie_disclosure/command.js
+++ b/modules/exploits/apache_cookie_disclosure/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/apache_cookie_disclosure/module.rb b/modules/exploits/apache_cookie_disclosure/module.rb
index f582c11ed..eb0f04dbc 100644
--- a/modules/exploits/apache_cookie_disclosure/module.rb
+++ b/modules/exploits/apache_cookie_disclosure/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/apache_felix_remote_shell/command.js b/modules/exploits/apache_felix_remote_shell/command.js
index 65319f294..da881ada8 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/apache_felix_remote_shell/module.rb b/modules/exploits/apache_felix_remote_shell/module.rb
index d9276b66f..5934fd7a7 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/beefbind/beef_bind_shell/command.js b/modules/exploits/beefbind/beef_bind_shell/command.js
index 76960b199..b6d3f1e76 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/beefbind/beef_bind_shell/module.rb b/modules/exploits/beefbind/beef_bind_shell/module.rb
index e70cde13c..67806f8c6 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/boastmachine_3_1_add_user_csrf/command.js b/modules/exploits/boastmachine_3_1_add_user_csrf/command.js
index 973b3d542..5729dbfdc 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/boastmachine_3_1_add_user_csrf/module.rb b/modules/exploits/boastmachine_3_1_add_user_csrf/module.rb
index e69e4aabb..4fefcc694 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/camera/airlive_ip_camera_csrf/command.js b/modules/exploits/camera/airlive_ip_camera_csrf/command.js
index aa6abc35e..811c12248 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/camera/airlive_ip_camera_csrf/module.rb b/modules/exploits/camera/airlive_ip_camera_csrf/module.rb
index 84ada00ab..e9446e738 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/camera/dlink_dcs_series_csrf/command.js b/modules/exploits/camera/dlink_dcs_series_csrf/command.js
index 0a1a57d60..14b1d0961 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/camera/dlink_dcs_series_csrf/module.rb b/modules/exploits/camera/dlink_dcs_series_csrf/module.rb
index 80db2d01d..52e47b7fb 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js
index c50b30f11..37f9c72aa 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb b/modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb
index bd03335ad..53c6ef8d4 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/coldfusion_dir_traversal_exploit/command.js b/modules/exploits/coldfusion_dir_traversal_exploit/command.js
index 02d34c00d..e7c333d68 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/coldfusion_dir_traversal_exploit/module.rb b/modules/exploits/coldfusion_dir_traversal_exploit/module.rb
index f020adea6..80531836a 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/extract_cmd_exec/command.js b/modules/exploits/extract_cmd_exec/command.js
index 33f1d1473..f20ba6763 100644
--- a/modules/exploits/extract_cmd_exec/command.js
+++ b/modules/exploits/extract_cmd_exec/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/extract_cmd_exec/module.rb b/modules/exploits/extract_cmd_exec/module.rb
index 44909b047..1c360ae62 100644
--- a/modules/exploits/extract_cmd_exec/module.rb
+++ b/modules/exploits/extract_cmd_exec/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
###
diff --git a/modules/exploits/firephp/command.js b/modules/exploits/firephp/command.js
index 659574dfa..abfd28ae0 100644
--- a/modules/exploits/firephp/command.js
+++ b/modules/exploits/firephp/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/firephp/module.rb b/modules/exploits/firephp/module.rb
index 1cb0435cb..be470a439 100644
--- a/modules/exploits/firephp/module.rb
+++ b/modules/exploits/firephp/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
###
diff --git a/modules/exploits/glassfish_war_upload_xsrf/command.js b/modules/exploits/glassfish_war_upload_xsrf/command.js
index 2bc4bc6b2..4bb659d3f 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/glassfish_war_upload_xsrf/module.rb b/modules/exploits/glassfish_war_upload_xsrf/module.rb
index 187504fec..8f9534e7d 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/groovyshell_server_cmd_exec/command.js b/modules/exploits/groovyshell_server_cmd_exec/command.js
index de635f84b..4b93d0af1 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/groovyshell_server_cmd_exec/module.rb b/modules/exploits/groovyshell_server_cmd_exec/module.rb
index 51d39273c..8eb9cde13 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/hp_ucmdb_add_user_csrf/command.js b/modules/exploits/hp_ucmdb_add_user_csrf/command.js
index 9190489f0..b4f43581f 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-2024Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/exploits/hp_ucmdb_add_user_csrf/module.rb b/modules/exploits/hp_ucmdb_add_user_csrf/module.rb
index de58a3708..77d15f8e8 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/jboss_jmx_upload_exploit/command.js b/modules/exploits/jboss_jmx_upload_exploit/command.js
index 19f99381a..ed16c3e5c 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/jboss_jmx_upload_exploit/module.rb b/modules/exploits/jboss_jmx_upload_exploit/module.rb
index 39c10e478..2f2250732 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/jenkins_groovy_code_exec/command.js b/modules/exploits/jenkins_groovy_code_exec/command.js
index 3ab3cb64e..3174dc7fc 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/jenkins_groovy_code_exec/module.rb b/modules/exploits/jenkins_groovy_code_exec/module.rb
index 109431476..024279e17 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/kemp_command_execution/command.js b/modules/exploits/kemp_command_execution/command.js
index 5dc1f7f59..154832940 100644
--- a/modules/exploits/kemp_command_execution/command.js
+++ b/modules/exploits/kemp_command_execution/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/kemp_command_execution/module.rb b/modules/exploits/kemp_command_execution/module.rb
index f9bf2d76e..fd45043fa 100644
--- a/modules/exploits/kemp_command_execution/module.rb
+++ b/modules/exploits/kemp_command_execution/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/local_host/activex_command_execution/command.js b/modules/exploits/local_host/activex_command_execution/command.js
index 0654d0274..fc3c42347 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/local_host/activex_command_execution/module.rb b/modules/exploits/local_host/activex_command_execution/module.rb
index 403d9695b..ee31c259a 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/local_host/java_payload/command.js b/modules/exploits/local_host/java_payload/command.js
index 3a66fb9a6..c0552765e 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/local_host/java_payload/module.rb b/modules/exploits/local_host/java_payload/module.rb
index 452fd5744..05d68ee4b 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js b/modules/exploits/local_host/mozilla_nsiprocess_interface/command.js
index 934fd3459..65b611120 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb b/modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb
index 28d649427..5fb331b88 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/local_host/safari_launch_app/command.js b/modules/exploits/local_host/safari_launch_app/command.js
index 83a9576da..186843106 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/local_host/safari_launch_app/module.rb b/modules/exploits/local_host/safari_launch_app/module.rb
index 61ade0d9a..d61496223 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/local_host/signed_applet_dropper/command.js b/modules/exploits/local_host/signed_applet_dropper/command.js
index b291e6ba5..61b7662cb 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/local_host/signed_applet_dropper/module.rb b/modules/exploits/local_host/signed_applet_dropper/module.rb
index 848550bad..feec78c28 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/local_host/window_mail_client_dos/command.js b/modules/exploits/local_host/window_mail_client_dos/command.js
index 0fe317742..fc9b0dea0 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/local_host/window_mail_client_dos/module.rb b/modules/exploits/local_host/window_mail_client_dos/module.rb
index cc9168e2d..959fd2139 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js b/modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js
index 5d5c4aa1a..db882e7c5 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb b/modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb
index f97e8e4d8..cf111bb1e 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
###
diff --git a/modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js b/modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js
index a78636fa4..962821ab6 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb b/modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb
index 42c44c5a5..2168ca64d 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/ntfscommoncreate_dos/command.js b/modules/exploits/ntfscommoncreate_dos/command.js
index 9003e3806..b4de753b5 100644
--- a/modules/exploits/ntfscommoncreate_dos/command.js
+++ b/modules/exploits/ntfscommoncreate_dos/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/ntfscommoncreate_dos/module.rb b/modules/exploits/ntfscommoncreate_dos/module.rb
index 0bc7f195f..3c544e5bc 100644
--- a/modules/exploits/ntfscommoncreate_dos/module.rb
+++ b/modules/exploits/ntfscommoncreate_dos/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/opencart_reset_password/command.js b/modules/exploits/opencart_reset_password/command.js
index 655d5a74f..216330fb5 100644
--- a/modules/exploits/opencart_reset_password/command.js
+++ b/modules/exploits/opencart_reset_password/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/opencart_reset_password/module.rb b/modules/exploits/opencart_reset_password/module.rb
index 3353321c5..567d3d1a9 100644
--- a/modules/exploits/opencart_reset_password/module.rb
+++ b/modules/exploits/opencart_reset_password/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/command.js b/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/command.js
index 682922419..06963f55f 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/module.rb b/modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/module.rb
index ee6c2ac98..76c8c085f 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js
index 3be684b13..492780657 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb b/modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb
index 18aef0b37..caaa4eb0b 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/php-5.3.9-dos/command.js b/modules/exploits/php-5.3.9-dos/command.js
index a0533532f..91dc0fb00 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/php-5.3.9-dos/module.rb b/modules/exploits/php-5.3.9-dos/module.rb
index 9959a598b..0d2a65dc0 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js b/modules/exploits/qemu_monitor_migrate_cmd_exec/command.js
index ddc57b67d..b5b702c11 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb b/modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb
index 927d52f15..57d0f8487 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/qnx_qconn_command_execution/command.js b/modules/exploits/qnx_qconn_command_execution/command.js
index 327a216e8..17aa0cd81 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/qnx_qconn_command_execution/module.rb b/modules/exploits/qnx_qconn_command_execution/module.rb
index a3e0c745e..67c73fb1d 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/resource_exhaustion_dos/command.js b/modules/exploits/resource_exhaustion_dos/command.js
index 16faa1c75..52568f62c 100644
--- a/modules/exploits/resource_exhaustion_dos/command.js
+++ b/modules/exploits/resource_exhaustion_dos/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/resource_exhaustion_dos/module.rb b/modules/exploits/resource_exhaustion_dos/module.rb
index ec66b1884..b5cd8400a 100644
--- a/modules/exploits/resource_exhaustion_dos/module.rb
+++ b/modules/exploits/resource_exhaustion_dos/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/rfi_scanner/command.js b/modules/exploits/rfi_scanner/command.js
index ad7be82a8..030e5e9df 100644
--- a/modules/exploits/rfi_scanner/command.js
+++ b/modules/exploits/rfi_scanner/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/rfi_scanner/module.rb b/modules/exploits/rfi_scanner/module.rb
index 744a2da51..6e329d735 100644
--- a/modules/exploits/rfi_scanner/module.rb
+++ b/modules/exploits/rfi_scanner/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/3com_officeconnect_cmd_exec/command.js b/modules/exploits/router/3com_officeconnect_cmd_exec/command.js
index 98a93dc8a..1faba65d2 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb b/modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
index 2e3cea502..a9c875445 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/actiontec_q1000_csrf/command.js b/modules/exploits/router/actiontec_q1000_csrf/command.js
index 56ffdc9d7..7bd6aa27e 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/actiontec_q1000_csrf/module.rb b/modules/exploits/router/actiontec_q1000_csrf/module.rb
index 85cb98263..03e16592e 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/argw4_adsl_dns_hijack/command.js b/modules/exploits/router/argw4_adsl_dns_hijack/command.js
index 676d64936..2d74ff0ed 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/argw4_adsl_dns_hijack/module.rb b/modules/exploits/router/argw4_adsl_dns_hijack/module.rb
index e2d49536b..adccfa2e4 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js b/modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
index dfe8c94cb..848c597cc 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb b/modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
index c4f1368cb..41b1bd116 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/asus_dslx11_dns_hijack/command.js b/modules/exploits/router/asus_dslx11_dns_hijack/command.js
index 91adb8a20..763e18ca8 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/asus_dslx11_dns_hijack/module.rb b/modules/exploits/router/asus_dslx11_dns_hijack/module.rb
index ae972dcf1..21dd36bb5 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/asus_rt_n12e_get_info/command.js b/modules/exploits/router/asus_rt_n12e_get_info/command.js
index ab365b0a7..84729c889 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/asus_rt_n12e_get_info/module.rb b/modules/exploits/router/asus_rt_n12e_get_info/module.rb
index 352a414a3..7736fb15f 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js b/modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
index 9abb013eb..c42ae1d22 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb b/modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb
index e1df9a22d..0d26f6ba1 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js
index 9568020d3..15f175f20 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb b/modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb
index c75107a6d..5fbd8b81d 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/belkin_dns_csrf/command.js b/modules/exploits/router/belkin_dns_csrf/command.js
index ea44fe151..4e31cb787 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/belkin_dns_csrf/module.rb b/modules/exploits/router/belkin_dns_csrf/module.rb
index 498a6295b..394f00f03 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/bt_home_hub_csrf/command.js b/modules/exploits/router/bt_home_hub_csrf/command.js
index 61e154501..624368277 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/bt_home_hub_csrf/module.rb b/modules/exploits/router/bt_home_hub_csrf/module.rb
index 26351cd11..52dbd7fa6 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/cisco_e2400_csrf/command.js b/modules/exploits/router/cisco_e2400_csrf/command.js
index 0dcab3f33..9ec2b3bf5 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/cisco_e2400_csrf/module.rb b/modules/exploits/router/cisco_e2400_csrf/module.rb
index f85e50682..1c6dcd3b4 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/comtrend_ct5367_csrf/command.js b/modules/exploits/router/comtrend_ct5367_csrf/command.js
index c64bc0627..d1f139326 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/comtrend_ct5367_csrf/module.rb b/modules/exploits/router/comtrend_ct5367_csrf/module.rb
index 88954d6a0..fda716af4 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/comtrend_ct5624_csrf/command.js b/modules/exploits/router/comtrend_ct5624_csrf/command.js
index 6aebbe16d..3bd6f554f 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/comtrend_ct5624_csrf/module.rb b/modules/exploits/router/comtrend_ct5624_csrf/module.rb
index 34119b65a..d19a6bea5 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/comtrend_ct_series_dns_hijack/command.js b/modules/exploits/router/comtrend_ct_series_dns_hijack/command.js
index ad52339fd..7ec6f8b58 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb b/modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb
index 134fd25de..5bb539002 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js
index 06d986412..d3c981356 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb b/modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb
index 59a834421..39c4bdafc 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js b/modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
index 15db5aa0c..8441eed27 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb b/modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
index 50dbb3f1d..067e2bb82 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/dlink_dir_615_csrf/command.js b/modules/exploits/router/dlink_dir_615_csrf/command.js
index 69da03518..5d158c6e5 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/dlink_dir_615_csrf/module.rb b/modules/exploits/router/dlink_dir_615_csrf/module.rb
index 44ac645be..2fa3a5fd6 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
index d6fc477fe..8f562511b 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
index 9b35f9475..0c37c377b 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
index bdc60661e..b766f6a08 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
index b4dfd7751..82bdb3e14 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
index 1becc925d..a339af3a0 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
index 85162afbd..0d003b9b5 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js b/modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
index ddeac2e74..858762d22 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
index 21d17502f..13867014f 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/dlink_dsl500t_csrf/command.js b/modules/exploits/router/dlink_dsl500t_csrf/command.js
index e76af1450..aacbc5baf 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/dlink_dsl500t_csrf/module.rb b/modules/exploits/router/dlink_dsl500t_csrf/module.rb
index bab4b63d1..19bc48a4a 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js b/modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
index 7ff18b193..9438789c9 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb b/modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
index 3adbf11af..d69c38f88 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js
index 3d0acf913..028a2ad7d 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb b/modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb
index 7be20589d..bf06e9a1a 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/huawei_smartax_mt880/command.js b/modules/exploits/router/huawei_smartax_mt880/command.js
index 19524d344..a6c5d8cd0 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/huawei_smartax_mt880/module.rb b/modules/exploits/router/huawei_smartax_mt880/module.rb
index 3d15aa338..faac960b3 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/command.js b/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/command.js
index dca40f52e..c41d90b9c 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/module.rb b/modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/module.rb
index 78d0b0331..f138d497a 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js
index 27ef45990..b4982219a 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb b/modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb
index 1da56f337..da3f47549 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/linksys_befsr41_csrf/command.js b/modules/exploits/router/linksys_befsr41_csrf/command.js
index 1d445cd5f..d7788ead0 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/linksys_befsr41_csrf/module.rb b/modules/exploits/router/linksys_befsr41_csrf/module.rb
index 46fa5fc00..a2fb1f085 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/linksys_e2500_csrf/command.js b/modules/exploits/router/linksys_e2500_csrf/command.js
index 774f98e75..708734e4f 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/linksys_e2500_csrf/module.rb b/modules/exploits/router/linksys_e2500_csrf/module.rb
index 843a455cb..ba669aed9 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/linksys_e2500_dns_hijack/command.js b/modules/exploits/router/linksys_e2500_dns_hijack/command.js
index 075411608..ae8a57c4f 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/linksys_e2500_dns_hijack/module.rb b/modules/exploits/router/linksys_e2500_dns_hijack/module.rb
index abbe98d0c..1a12e2849 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/linksys_e2500_shell/command.js b/modules/exploits/router/linksys_e2500_shell/command.js
index ec878ca5e..8cbb3d3ed 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/linksys_e2500_shell/module.rb b/modules/exploits/router/linksys_e2500_shell/module.rb
index 6eb437c74..82fda497e 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/linksys_wrt54g2_csrf/command.js b/modules/exploits/router/linksys_wrt54g2_csrf/command.js
index 994e1edb5..18694b0b6 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/linksys_wrt54g2_csrf/module.rb b/modules/exploits/router/linksys_wrt54g2_csrf/module.rb
index 0db9498e7..ae9396df8 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/linksys_wrt54g_csrf/command.js b/modules/exploits/router/linksys_wrt54g_csrf/command.js
index febb7cb50..70d296141 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/linksys_wrt54g_csrf/module.rb b/modules/exploits/router/linksys_wrt54g_csrf/module.rb
index eab63e22e..916f9633f 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js
index eaab290d7..942add5a1 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb b/modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb
index 137b9e8f5..1c435e9df 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js b/modules/exploits/router/netgear_dgn2200_cmd_exec/command.js
index 541eb79d5..b36ca8386 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb b/modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb
index 70193311a..89a1e57fd 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/phillips_dns_hijack/command.js b/modules/exploits/router/phillips_dns_hijack/command.js
index ba61d3c90..318c2d18a 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/phillips_dns_hijack/module.rb b/modules/exploits/router/phillips_dns_hijack/module.rb
index 337e163c0..4de62a55a 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
class Philips_dns_hijack < BeEF::Core::Command
diff --git a/modules/exploits/router/pikatel_96338_dns_hijack/command.js b/modules/exploits/router/pikatel_96338_dns_hijack/command.js
index 211f44ac6..f62efbd3b 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/pikatel_96338_dns_hijack/module.rb b/modules/exploits/router/pikatel_96338_dns_hijack/module.rb
index be6237d04..13148aea9 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js
index f3c6243c6..b6f2a095a 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb b/modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb
index 4f7ee09f3..80a99a35e 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js
index eca8553a0..862a8df3b 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb b/modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb
index 563e347a7..41bec7f9c 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/telstra_zte_mf91_change_pw/command.js b/modules/exploits/router/telstra_zte_mf91_change_pw/command.js
index 372b72eb8..2ec071518 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/telstra_zte_mf91_change_pw/module.rb b/modules/exploits/router/telstra_zte_mf91_change_pw/module.rb
index 4513743b7..12ae8056f 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/telstra_zte_mf91_change_ssid/command.js b/modules/exploits/router/telstra_zte_mf91_change_ssid/command.js
index 842e70672..170fafe23 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb b/modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb
index 04a41c5ff..fe38db0e2 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/command.js b/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/command.js
index a754a7c21..8c038d982 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/module.rb b/modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/module.rb
index 4dba67ea4..827671ed0 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/tenda_adsl_dns_hijack/command.js b/modules/exploits/router/tenda_adsl_dns_hijack/command.js
index 046da1353..be20d0ab1 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/tenda_adsl_dns_hijack/module.rb b/modules/exploits/router/tenda_adsl_dns_hijack/module.rb
index 72950a128..fa44714a3 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/tplink_dns_csrf/command.js b/modules/exploits/router/tplink_dns_csrf/command.js
index e3c5a9a4c..14a9af235 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/tplink_dns_csrf/module.rb b/modules/exploits/router/tplink_dns_csrf/module.rb
index d146f6575..130a83555 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js
index 447fe7c4c..ab0480504 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb b/modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb
index d45ae5b72..3e8bfc39c 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/virgin_superhub_csrf/command.js b/modules/exploits/router/virgin_superhub_csrf/command.js
index 0b8cd57fe..8e75f97eb 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/virgin_superhub_csrf/module.rb b/modules/exploits/router/virgin_superhub_csrf/module.rb
index c5586b4e5..9ec62cf64 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/router/wipg1000_cmd_injection/command.js b/modules/exploits/router/wipg1000_cmd_injection/command.js
index 7f5b34891..2e2d153e5 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/router/wipg1000_cmd_injection/module.rb b/modules/exploits/router/wipg1000_cmd_injection/module.rb
index 364850372..531c43e4b 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/ruby_nntpd_cmd_exec/command.js b/modules/exploits/ruby_nntpd_cmd_exec/command.js
index ae83c6b63..30d9348b7 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/ruby_nntpd_cmd_exec/module.rb b/modules/exploits/ruby_nntpd_cmd_exec/module.rb
index c9095dea6..de64c5901 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
###
diff --git a/modules/exploits/shell_shock_scanner/command.js b/modules/exploits/shell_shock_scanner/command.js
index 82ec14f94..0ce745c4a 100644
--- a/modules/exploits/shell_shock_scanner/command.js
+++ b/modules/exploits/shell_shock_scanner/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/shell_shock_scanner/module.rb b/modules/exploits/shell_shock_scanner/module.rb
index 98ad84d54..c8f14ea40 100644
--- a/modules/exploits/shell_shock_scanner/module.rb
+++ b/modules/exploits/shell_shock_scanner/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/shell_shocked/command.js b/modules/exploits/shell_shocked/command.js
index dd680ab61..500b35522 100644
--- a/modules/exploits/shell_shocked/command.js
+++ b/modules/exploits/shell_shocked/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/shell_shocked/module.rb b/modules/exploits/shell_shocked/module.rb
index da6ecf46b..ded7c35a7 100644
--- a/modules/exploits/shell_shocked/module.rb
+++ b/modules/exploits/shell_shocked/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/skype_xss/command.js b/modules/exploits/skype_xss/command.js
index b8e9ab7bf..fa157f685 100644
--- a/modules/exploits/skype_xss/command.js
+++ b/modules/exploits/skype_xss/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/skype_xss/module.rb b/modules/exploits/skype_xss/module.rb
index 08fe13aa4..507534e2e 100644
--- a/modules/exploits/skype_xss/module.rb
+++ b/modules/exploits/skype_xss/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/spring_framework_malicious_jar/command.js b/modules/exploits/spring_framework_malicious_jar/command.js
index 3d4e3f60d..a36e03b69 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/spring_framework_malicious_jar/module.rb b/modules/exploits/spring_framework_malicious_jar/module.rb
index 32ba72915..f12248582 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/switch/dlink_dgs_1100_device_reset/command.js b/modules/exploits/switch/dlink_dgs_1100_device_reset/command.js
index 76bc11d48..b73e712f3 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb b/modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb
index f514eac9d..e5299bf51 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js
index b7de12bf6..44baa969c 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb b/modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb
index 8ae81c528..fd146e219 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js
index d00d07a27..9affbad0b 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb b/modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb
index 7b7549fe6..4e0a4c63f 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/switch/netgear_gs108t_csrf/command.js b/modules/exploits/switch/netgear_gs108t_csrf/command.js
index a259e5ec5..d2004e47c 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/switch/netgear_gs108t_csrf/module.rb b/modules/exploits/switch/netgear_gs108t_csrf/module.rb
index f7dfaee6e..d74b1cf42 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/vtiger_crm_upload_exploit/command.js b/modules/exploits/vtiger_crm_upload_exploit/command.js
index e28ee8672..f812f375c 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/vtiger_crm_upload_exploit/module.rb b/modules/exploits/vtiger_crm_upload_exploit/module.rb
index 291efcdeb..8c0b677e3 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/wanem_command_execution/command.js b/modules/exploits/wanem_command_execution/command.js
index fb9a598d3..e0eae5497 100644
--- a/modules/exploits/wanem_command_execution/command.js
+++ b/modules/exploits/wanem_command_execution/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/wanem_command_execution/module.rb b/modules/exploits/wanem_command_execution/module.rb
index ab46c52a1..d1508871d 100644
--- a/modules/exploits/wanem_command_execution/module.rb
+++ b/modules/exploits/wanem_command_execution/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/wifi_pineapple_csrf/command.js b/modules/exploits/wifi_pineapple_csrf/command.js
index 01aae3c19..4d259b7bb 100644
--- a/modules/exploits/wifi_pineapple_csrf/command.js
+++ b/modules/exploits/wifi_pineapple_csrf/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/wifi_pineapple_csrf/module.rb b/modules/exploits/wifi_pineapple_csrf/module.rb
index 79c4478be..ec25ab6d4 100644
--- a/modules/exploits/wifi_pineapple_csrf/module.rb
+++ b/modules/exploits/wifi_pineapple_csrf/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/xss/alienvault_ossim_3.1_xss/command.js b/modules/exploits/xss/alienvault_ossim_3.1_xss/command.js
index 9414cbd39..a815187cb 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb b/modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb
index e946765c9..6ae33a58f 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/xss/cisco_collaboration_server_5_xss/command.js b/modules/exploits/xss/cisco_collaboration_server_5_xss/command.js
index a3ee71751..c2b3b75f1 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb b/modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb
index 4c58b2448..27cfd3849 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/xss/serendipity_1.6_xss/command.js b/modules/exploits/xss/serendipity_1.6_xss/command.js
index 72665edf9..bbb70c5f2 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/xss/serendipity_1.6_xss/module.rb b/modules/exploits/xss/serendipity_1.6_xss/module.rb
index c5f6c3774..81420e1fa 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/xss/sqlitemanager_xss/command.js b/modules/exploits/xss/sqlitemanager_xss/command.js
index 72665edf9..bbb70c5f2 100644
--- a/modules/exploits/xss/sqlitemanager_xss/command.js
+++ b/modules/exploits/xss/sqlitemanager_xss/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/xss/sqlitemanager_xss/module.rb b/modules/exploits/xss/sqlitemanager_xss/module.rb
index add5fb932..df9982ea3 100644
--- a/modules/exploits/xss/sqlitemanager_xss/module.rb
+++ b/modules/exploits/xss/sqlitemanager_xss/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zenoss_3x_command_execution/command.js b/modules/exploits/zenoss_3x_command_execution/command.js
index d8ff4eb67..5d34d20f0 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zenoss_3x_command_execution/module.rb b/modules/exploits/zenoss_3x_command_execution/module.rb
index 1defa8d7d..d69b496a9 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zenoss_add_user_csrf/command.js b/modules/exploits/zenoss_add_user_csrf/command.js
index b7e6cb06e..4d9e51d20 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zenoss_add_user_csrf/module.rb b/modules/exploits/zenoss_add_user_csrf/module.rb
index 174ff3d26..dede7272b 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/command.js
index 8c2a2c091..e4f11bbbc 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/module.rb
index e17f5854d..bfd33de5a 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js
index fd156db14..42f1a5825 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb
index 894b1e1ff..ecd2991fc 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/command.js
index 08931f2ec..b9bd26430 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/module.rb
index bac6d9031..61c83d94c 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js
index 67f454b65..c327c58bb 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb
index 9d2aaa308..84695d745 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js
index 4feb53dae..979d8ceae 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb
index d046e0990..bd764a831 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/command.js
index 5024fcee6..b2d7bd559 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/module.rb
index 63a3d89ea..ae89a8c36 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/command.js
index c921af373..4f0e939e0 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/module.rb
index 5a09629d4..f31912b14 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js
index b2dd895a0..29cc67cef 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb b/modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb
index e4740d7d0..2faca507c 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/clipboard_theft/command.js b/modules/host/clipboard_theft/command.js
index b0ad9f07c..991b84030 100644
--- a/modules/host/clipboard_theft/command.js
+++ b/modules/host/clipboard_theft/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/clipboard_theft/module.rb b/modules/host/clipboard_theft/module.rb
index 0297d6372..2b1b66f2e 100644
--- a/modules/host/clipboard_theft/module.rb
+++ b/modules/host/clipboard_theft/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_airdroid/command.js b/modules/host/detect_airdroid/command.js
index d922bdfd9..9b92b1823 100644
--- a/modules/host/detect_airdroid/command.js
+++ b/modules/host/detect_airdroid/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_airdroid/module.rb b/modules/host/detect_airdroid/module.rb
index dd8f05a76..c52e59db3 100644
--- a/modules/host/detect_airdroid/module.rb
+++ b/modules/host/detect_airdroid/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_antivirus/command.js b/modules/host/detect_antivirus/command.js
index 78a977a13..23f9d8b31 100644
--- a/modules/host/detect_antivirus/command.js
+++ b/modules/host/detect_antivirus/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_antivirus/module.rb b/modules/host/detect_antivirus/module.rb
index 027b8c156..e2901e7cc 100644
--- a/modules/host/detect_antivirus/module.rb
+++ b/modules/host/detect_antivirus/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_coupon_printer/command.js b/modules/host/detect_coupon_printer/command.js
index 503f3b5f2..6d69f8563 100644
--- a/modules/host/detect_coupon_printer/command.js
+++ b/modules/host/detect_coupon_printer/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_coupon_printer/module.rb b/modules/host/detect_coupon_printer/module.rb
index b6e74db2f..1c16cc4cd 100644
--- a/modules/host/detect_coupon_printer/module.rb
+++ b/modules/host/detect_coupon_printer/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_cups/command.js b/modules/host/detect_cups/command.js
index 2324cf093..7091a3303 100644
--- a/modules/host/detect_cups/command.js
+++ b/modules/host/detect_cups/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_cups/module.rb b/modules/host/detect_cups/module.rb
index 8bf05ef07..32d0e42e9 100644
--- a/modules/host/detect_cups/module.rb
+++ b/modules/host/detect_cups/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_default_browser/command.js b/modules/host/detect_default_browser/command.js
index 84eadbd70..fb5bcf710 100644
--- a/modules/host/detect_default_browser/command.js
+++ b/modules/host/detect_default_browser/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_default_browser/module.rb b/modules/host/detect_default_browser/module.rb
index 13f5dfc56..c149cc4ae 100644
--- a/modules/host/detect_default_browser/module.rb
+++ b/modules/host/detect_default_browser/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_google_desktop/command.js b/modules/host/detect_google_desktop/command.js
index 556578d0b..ffd780544 100644
--- a/modules/host/detect_google_desktop/command.js
+++ b/modules/host/detect_google_desktop/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_google_desktop/module.rb b/modules/host/detect_google_desktop/module.rb
index c2049abb1..eaaa04571 100644
--- a/modules/host/detect_google_desktop/module.rb
+++ b/modules/host/detect_google_desktop/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_hp/command.js b/modules/host/detect_hp/command.js
index 59f149c97..9e0b388e5 100644
--- a/modules/host/detect_hp/command.js
+++ b/modules/host/detect_hp/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_hp/module.rb b/modules/host/detect_hp/module.rb
index 4fd79661b..e590736b5 100644
--- a/modules/host/detect_hp/module.rb
+++ b/modules/host/detect_hp/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_local_drives/command.js b/modules/host/detect_local_drives/command.js
index 28b1801bb..3ccd244c7 100644
--- a/modules/host/detect_local_drives/command.js
+++ b/modules/host/detect_local_drives/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_local_drives/module.rb b/modules/host/detect_local_drives/module.rb
index 7320ee28c..476d51af6 100644
--- a/modules/host/detect_local_drives/module.rb
+++ b/modules/host/detect_local_drives/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_protocol_handlers/command.js b/modules/host/detect_protocol_handlers/command.js
index a34ac8b13..87b60a1b9 100644
--- a/modules/host/detect_protocol_handlers/command.js
+++ b/modules/host/detect_protocol_handlers/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_protocol_handlers/module.rb b/modules/host/detect_protocol_handlers/module.rb
index b71eefeac..871dc1a44 100644
--- a/modules/host/detect_protocol_handlers/module.rb
+++ b/modules/host/detect_protocol_handlers/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_software/command.js b/modules/host/detect_software/command.js
index b58f7e5a4..0343fbc7e 100644
--- a/modules/host/detect_software/command.js
+++ b/modules/host/detect_software/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_software/module.rb b/modules/host/detect_software/module.rb
index 272f38b5e..cfbb67034 100644
--- a/modules/host/detect_software/module.rb
+++ b/modules/host/detect_software/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/detect_users/command.js b/modules/host/detect_users/command.js
index fb6752220..e0f7745f6 100644
--- a/modules/host/detect_users/command.js
+++ b/modules/host/detect_users/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/detect_users/module.rb b/modules/host/detect_users/module.rb
index b74c96426..a3b7fbf21 100644
--- a/modules/host/detect_users/module.rb
+++ b/modules/host/detect_users/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/get_battery_status/command.js b/modules/host/get_battery_status/command.js
index e9bde7bda..84bb0207a 100644
--- a/modules/host/get_battery_status/command.js
+++ b/modules/host/get_battery_status/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/get_battery_status/module.rb b/modules/host/get_battery_status/module.rb
index 6e04880b7..caab4a3fb 100644
--- a/modules/host/get_battery_status/module.rb
+++ b/modules/host/get_battery_status/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/get_connection_type/command.js b/modules/host/get_connection_type/command.js
index 1ddc855d1..1635067b8 100755
--- a/modules/host/get_connection_type/command.js
+++ b/modules/host/get_connection_type/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/get_connection_type/module.rb b/modules/host/get_connection_type/module.rb
index 4d5496ba7..d67ee310c 100755
--- a/modules/host/get_connection_type/module.rb
+++ b/modules/host/get_connection_type/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/get_internal_ip_java/command.js b/modules/host/get_internal_ip_java/command.js
index c6bf0053b..072e5c62c 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/get_internal_ip_java/module.rb b/modules/host/get_internal_ip_java/module.rb
index 9258c8ea8..33e656f58 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/get_internal_ip_webrtc/command.js b/modules/host/get_internal_ip_webrtc/command.js
index 4502006c4..0ac6ef44f 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/get_internal_ip_webrtc/module.rb b/modules/host/get_internal_ip_webrtc/module.rb
index d7f61b8aa..b73273edf 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/get_registry_keys/command.js b/modules/host/get_registry_keys/command.js
index 888dc4e57..10b6338a5 100644
--- a/modules/host/get_registry_keys/command.js
+++ b/modules/host/get_registry_keys/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/get_registry_keys/module.rb b/modules/host/get_registry_keys/module.rb
index 683ba9b04..ca499b3ab 100644
--- a/modules/host/get_registry_keys/module.rb
+++ b/modules/host/get_registry_keys/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/get_system_info_java/command.js b/modules/host/get_system_info_java/command.js
index 767785be9..92361f859 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/get_system_info_java/module.rb b/modules/host/get_system_info_java/module.rb
index b9fcfff29..ce8896bb7 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/get_wireless_keys/command.js b/modules/host/get_wireless_keys/command.js
index 030ffe012..0d2ccaa5c 100644
--- a/modules/host/get_wireless_keys/command.js
+++ b/modules/host/get_wireless_keys/command.js
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/host/get_wireless_keys/module.rb b/modules/host/get_wireless_keys/module.rb
index b64ee25cb..30d415675 100644
--- a/modules/host/get_wireless_keys/module.rb
+++ b/modules/host/get_wireless_keys/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/hook_default_browser/command.js b/modules/host/hook_default_browser/command.js
index fb7e69b2e..34a211641 100644
--- a/modules/host/hook_default_browser/command.js
+++ b/modules/host/hook_default_browser/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/hook_default_browser/module.rb b/modules/host/hook_default_browser/module.rb
index f2a5c0617..e544bbd8f 100644
--- a/modules/host/hook_default_browser/module.rb
+++ b/modules/host/hook_default_browser/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/hook_microsoft_edge/command.js b/modules/host/hook_microsoft_edge/command.js
index 20fca547f..2f6ce9107 100644
--- a/modules/host/hook_microsoft_edge/command.js
+++ b/modules/host/hook_microsoft_edge/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/hook_microsoft_edge/module.rb b/modules/host/hook_microsoft_edge/module.rb
index 94bb1cff2..f4c085da7 100644
--- a/modules/host/hook_microsoft_edge/module.rb
+++ b/modules/host/hook_microsoft_edge/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/insecure_url_skype/command.js b/modules/host/insecure_url_skype/command.js
index 74d6bef3d..039bfbcd3 100644
--- a/modules/host/insecure_url_skype/command.js
+++ b/modules/host/insecure_url_skype/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/insecure_url_skype/module.rb b/modules/host/insecure_url_skype/module.rb
index 7e5dc591e..f1ec0bbf2 100644
--- a/modules/host/insecure_url_skype/module.rb
+++ b/modules/host/insecure_url_skype/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/iphone_tel/command.js b/modules/host/iphone_tel/command.js
index 6a7168526..ad9624ef1 100644
--- a/modules/host/iphone_tel/command.js
+++ b/modules/host/iphone_tel/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/iphone_tel/module.rb b/modules/host/iphone_tel/module.rb
index 27cdecd30..c7c066dcc 100644
--- a/modules/host/iphone_tel/module.rb
+++ b/modules/host/iphone_tel/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/physical_location/command.js b/modules/host/physical_location/command.js
index 5c9319034..f3390a1b7 100644
--- a/modules/host/physical_location/command.js
+++ b/modules/host/physical_location/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/physical_location/module.rb b/modules/host/physical_location/module.rb
index ffa7d0e8e..09cc3b9aa 100644
--- a/modules/host/physical_location/module.rb
+++ b/modules/host/physical_location/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/host/physical_location_thirdparty/command.js b/modules/host/physical_location_thirdparty/command.js
index d19bb970f..14cf296b3 100644
--- a/modules/host/physical_location_thirdparty/command.js
+++ b/modules/host/physical_location_thirdparty/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/host/physical_location_thirdparty/module.rb b/modules/host/physical_location_thirdparty/module.rb
index b6bdcdb1b..5bcfbdaa8 100644
--- a/modules/host/physical_location_thirdparty/module.rb
+++ b/modules/host/physical_location_thirdparty/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/cross_site_faxing/command.js b/modules/ipec/cross_site_faxing/command.js
index 375368799..f80f07316 100644
--- a/modules/ipec/cross_site_faxing/command.js
+++ b/modules/ipec/cross_site_faxing/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/cross_site_faxing/module.rb b/modules/ipec/cross_site_faxing/module.rb
index d29dadd3b..290e33cfb 100644
--- a/modules/ipec/cross_site_faxing/module.rb
+++ b/modules/ipec/cross_site_faxing/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/cross_site_printing/command.js b/modules/ipec/cross_site_printing/command.js
index 69fd29024..0f9296dd9 100644
--- a/modules/ipec/cross_site_printing/command.js
+++ b/modules/ipec/cross_site_printing/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/cross_site_printing/module.rb b/modules/ipec/cross_site_printing/module.rb
index 26770ba43..9fe942a60 100644
--- a/modules/ipec/cross_site_printing/module.rb
+++ b/modules/ipec/cross_site_printing/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/dns_tunnel/command.js b/modules/ipec/dns_tunnel/command.js
index 042aa91ff..917d6a7f2 100644
--- a/modules/ipec/dns_tunnel/command.js
+++ b/modules/ipec/dns_tunnel/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/dns_tunnel/module.rb b/modules/ipec/dns_tunnel/module.rb
index 5dabd7c3f..34b7a2241 100644
--- a/modules/ipec/dns_tunnel/module.rb
+++ b/modules/ipec/dns_tunnel/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/etag_client/command.js b/modules/ipec/etag_client/command.js
index d20a42586..18c576558 100644
--- a/modules/ipec/etag_client/command.js
+++ b/modules/ipec/etag_client/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/etag_client/module.rb b/modules/ipec/etag_client/module.rb
index 921824cef..cf481aa93 100644
--- a/modules/ipec/etag_client/module.rb
+++ b/modules/ipec/etag_client/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/inter_protocol_imap/command.js b/modules/ipec/inter_protocol_imap/command.js
index 0d856264a..7be1471f8 100644
--- a/modules/ipec/inter_protocol_imap/command.js
+++ b/modules/ipec/inter_protocol_imap/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/inter_protocol_imap/module.rb b/modules/ipec/inter_protocol_imap/module.rb
index 5fbb4cd2c..dea1a30ea 100644
--- a/modules/ipec/inter_protocol_imap/module.rb
+++ b/modules/ipec/inter_protocol_imap/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/inter_protocol_irc/command.js b/modules/ipec/inter_protocol_irc/command.js
index d223de548..eb145bf6f 100644
--- a/modules/ipec/inter_protocol_irc/command.js
+++ b/modules/ipec/inter_protocol_irc/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/inter_protocol_irc/module.rb b/modules/ipec/inter_protocol_irc/module.rb
index 99ba5a15c..904b617b4 100644
--- a/modules/ipec/inter_protocol_irc/module.rb
+++ b/modules/ipec/inter_protocol_irc/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/inter_protocol_posix_bindshell/command.js b/modules/ipec/inter_protocol_posix_bindshell/command.js
index 991accadd..9a6c8403c 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/inter_protocol_posix_bindshell/module.rb b/modules/ipec/inter_protocol_posix_bindshell/module.rb
index 545745388..b713835a8 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/inter_protocol_redis/command.js b/modules/ipec/inter_protocol_redis/command.js
index 608cf3333..299d611d5 100644
--- a/modules/ipec/inter_protocol_redis/command.js
+++ b/modules/ipec/inter_protocol_redis/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/inter_protocol_redis/module.rb b/modules/ipec/inter_protocol_redis/module.rb
index 61baaac20..7d026f8de 100644
--- a/modules/ipec/inter_protocol_redis/module.rb
+++ b/modules/ipec/inter_protocol_redis/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/inter_protocol_win_bindshell/command.js b/modules/ipec/inter_protocol_win_bindshell/command.js
index a8b3cdd05..67481c750 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/inter_protocol_win_bindshell/command.old.js b/modules/ipec/inter_protocol_win_bindshell/command.old.js
index 62b99488c..d90236b53 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/inter_protocol_win_bindshell/module.rb b/modules/ipec/inter_protocol_win_bindshell/module.rb
index b3fa13ba0..f57d0cc97 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/ipec/s2c_dns_tunnel/command.js b/modules/ipec/s2c_dns_tunnel/command.js
index 34674eb89..4aa7f3f60 100644
--- a/modules/ipec/s2c_dns_tunnel/command.js
+++ b/modules/ipec/s2c_dns_tunnel/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/ipec/s2c_dns_tunnel/module.rb b/modules/ipec/s2c_dns_tunnel/module.rb
index 6e15cf28d..00b6a48e4 100644
--- a/modules/ipec/s2c_dns_tunnel/module.rb
+++ b/modules/ipec/s2c_dns_tunnel/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/metasploit/browser_autopwn/command.js b/modules/metasploit/browser_autopwn/command.js
index c7cf9715a..08faf98c7 100644
--- a/modules/metasploit/browser_autopwn/command.js
+++ b/modules/metasploit/browser_autopwn/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/metasploit/browser_autopwn/module.rb b/modules/metasploit/browser_autopwn/module.rb
index 9f23b5734..c0b441b4a 100644
--- a/modules/metasploit/browser_autopwn/module.rb
+++ b/modules/metasploit/browser_autopwn/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/blockui/command.js b/modules/misc/blockui/command.js
index b786d4778..65821b461 100644
--- a/modules/misc/blockui/command.js
+++ b/modules/misc/blockui/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/blockui/module.rb b/modules/misc/blockui/module.rb
index d99f2e773..7405df105 100644
--- a/modules/misc/blockui/module.rb
+++ b/modules/misc/blockui/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/ibm_inotes/extract_inotes_list/command.js b/modules/misc/ibm_inotes/extract_inotes_list/command.js
index eea99205f..39cd7756f 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-2024Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2025Wade 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 bcbd11e49..da8abb0f0 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-2024Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2025Wade 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 5bcfb9dcd..f1f02ed13 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-2024Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2025Wade 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 b8eaf7753..218449ea4 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-2024Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2025Wade 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 61bb563c9..5cecee6ec 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-2024Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2025Wade 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 9cae0090b..2d7f12d4c 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-2024Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2025Wade 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 1a3cd4637..bbb0fd72b 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-2024Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2025Wade 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 7a3edaaea..70b682e54 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-2024Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2025Wade 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 f03448e1b..d875e6e97 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-2024Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2025Wade 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 9697934ba..2e35903fd 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-2024Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2025Wade 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 c108912b0..5516a8472 100644
--- a/modules/misc/iframe_keylogger/command.js
+++ b/modules/misc/iframe_keylogger/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/iframe_keylogger/module.rb b/modules/misc/iframe_keylogger/module.rb
index dee1dfb0c..2485c1f45 100644
--- a/modules/misc/iframe_keylogger/module.rb
+++ b/modules/misc/iframe_keylogger/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/iframe_sniffer/command.js b/modules/misc/iframe_sniffer/command.js
index 0f498b9e7..43cc40e67 100644
--- a/modules/misc/iframe_sniffer/command.js
+++ b/modules/misc/iframe_sniffer/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/iframe_sniffer/module.rb b/modules/misc/iframe_sniffer/module.rb
index 54512e667..69a8b9a7d 100644
--- a/modules/misc/iframe_sniffer/module.rb
+++ b/modules/misc/iframe_sniffer/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/invisible_iframe/command.js b/modules/misc/invisible_iframe/command.js
index 007091973..07ad688e7 100644
--- a/modules/misc/invisible_iframe/command.js
+++ b/modules/misc/invisible_iframe/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/invisible_iframe/module.rb b/modules/misc/invisible_iframe/module.rb
index ae0f099f0..5635e9551 100644
--- a/modules/misc/invisible_iframe/module.rb
+++ b/modules/misc/invisible_iframe/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/local_file_theft/command.js b/modules/misc/local_file_theft/command.js
index ecfb1ec18..5f281bd9b 100644
--- a/modules/misc/local_file_theft/command.js
+++ b/modules/misc/local_file_theft/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/local_file_theft/module.rb b/modules/misc/local_file_theft/module.rb
index 0f6cf7836..9719672fb 100644
--- a/modules/misc/local_file_theft/module.rb
+++ b/modules/misc/local_file_theft/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/nosleep/command.js b/modules/misc/nosleep/command.js
index 3ed37402f..5a9a556bb 100644
--- a/modules/misc/nosleep/command.js
+++ b/modules/misc/nosleep/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/nosleep/module.rb b/modules/misc/nosleep/module.rb
index 2cc5ab3b1..0a83a2125 100644
--- a/modules/misc/nosleep/module.rb
+++ b/modules/misc/nosleep/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/raw_javascript/command.js b/modules/misc/raw_javascript/command.js
index d384a2cca..cdff49ae8 100644
--- a/modules/misc/raw_javascript/command.js
+++ b/modules/misc/raw_javascript/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/raw_javascript/module.rb b/modules/misc/raw_javascript/module.rb
index 5d0dc7888..1e3cd1220 100644
--- a/modules/misc/raw_javascript/module.rb
+++ b/modules/misc/raw_javascript/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/read_gmail/command.js b/modules/misc/read_gmail/command.js
index 5a6aad9c7..1d2fb1ba1 100644
--- a/modules/misc/read_gmail/command.js
+++ b/modules/misc/read_gmail/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn wade@bindshell.net
+// Copyright (c) 2006-2025Wade 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 2be443c96..0c822af70 100644
--- a/modules/misc/read_gmail/module.rb
+++ b/modules/misc/read_gmail/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024Wade Alcorn wade@bindshell.net
+# Copyright (c) 2006-2025Wade 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 1a04d8b76..194c1c39f 100644
--- a/modules/misc/track_physical_movement/command.js
+++ b/modules/misc/track_physical_movement/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/track_physical_movement/module.rb b/modules/misc/track_physical_movement/module.rb
index 3b5bdefdb..78adec5b1 100644
--- a/modules/misc/track_physical_movement/module.rb
+++ b/modules/misc/track_physical_movement/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/unblockui/command.js b/modules/misc/unblockui/command.js
index 3c694d16e..18fd3ac82 100644
--- a/modules/misc/unblockui/command.js
+++ b/modules/misc/unblockui/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/unblockui/module.rb b/modules/misc/unblockui/module.rb
index 1b2371766..d1f2bed8e 100644
--- a/modules/misc/unblockui/module.rb
+++ b/modules/misc/unblockui/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/misc/wordpress_post_auth_rce/command.js b/modules/misc/wordpress_post_auth_rce/command.js
index f153c3892..802a8070d 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/misc/wordpress_post_auth_rce/module.rb b/modules/misc/wordpress_post_auth_rce/module.rb
index 6a4bab96d..2549e2fb9 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/ADC/f5_bigip_cookie_disclosure/command.js b/modules/network/ADC/f5_bigip_cookie_disclosure/command.js
index da7f9c00c..0c42766a7 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb b/modules/network/ADC/f5_bigip_cookie_disclosure/module.rb
index 3b46e1f9a..db1121ce5 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/ADC/f5_bigip_cookie_stealing/command.js b/modules/network/ADC/f5_bigip_cookie_stealing/command.js
index 264d8ae9f..b65e7a6cf 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/ADC/f5_bigip_cookie_stealing/module.rb b/modules/network/ADC/f5_bigip_cookie_stealing/module.rb
index 61a78305f..916b1e525 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/DOSer/command.js b/modules/network/DOSer/command.js
index 34af86856..f8432a206 100644
--- a/modules/network/DOSer/command.js
+++ b/modules/network/DOSer/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/DOSer/module.rb b/modules/network/DOSer/module.rb
index 77fbd16bf..4c02214b5 100644
--- a/modules/network/DOSer/module.rb
+++ b/modules/network/DOSer/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/cross_origin_scanner_cors/command.js b/modules/network/cross_origin_scanner_cors/command.js
index 052218b58..6bf67fd4f 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/cross_origin_scanner_cors/module.rb b/modules/network/cross_origin_scanner_cors/module.rb
index 51f5751ab..c4996b187 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/cross_origin_scanner_flash/command.js b/modules/network/cross_origin_scanner_flash/command.js
index cc1af6c93..5d55bfd63 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/cross_origin_scanner_flash/module.rb b/modules/network/cross_origin_scanner_flash/module.rb
index a802399e9..181dfa93b 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/detect_burp/command.js b/modules/network/detect_burp/command.js
index c538cd9c3..72c2a0fdf 100644
--- a/modules/network/detect_burp/command.js
+++ b/modules/network/detect_burp/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/detect_burp/module.rb b/modules/network/detect_burp/module.rb
index 8bb148807..e3090c533 100644
--- a/modules/network/detect_burp/module.rb
+++ b/modules/network/detect_burp/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/detect_ethereum_ens/command.js b/modules/network/detect_ethereum_ens/command.js
index 207ba5870..3c16d9fb0 100644
--- a/modules/network/detect_ethereum_ens/command.js
+++ b/modules/network/detect_ethereum_ens/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/detect_ethereum_ens/module.rb b/modules/network/detect_ethereum_ens/module.rb
index 01645fe51..6246056f7 100644
--- a/modules/network/detect_ethereum_ens/module.rb
+++ b/modules/network/detect_ethereum_ens/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/detect_opennic/command.js b/modules/network/detect_opennic/command.js
index a277948d9..fefa3ba3f 100644
--- a/modules/network/detect_opennic/command.js
+++ b/modules/network/detect_opennic/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/detect_opennic/module.rb b/modules/network/detect_opennic/module.rb
index 520650e60..dfc916de3 100644
--- a/modules/network/detect_opennic/module.rb
+++ b/modules/network/detect_opennic/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/detect_soc_nets/command.js b/modules/network/detect_soc_nets/command.js
index e36584070..004bf8057 100644
--- a/modules/network/detect_soc_nets/command.js
+++ b/modules/network/detect_soc_nets/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/detect_soc_nets/module.rb b/modules/network/detect_soc_nets/module.rb
index dacf36f65..c767526bf 100644
--- a/modules/network/detect_soc_nets/module.rb
+++ b/modules/network/detect_soc_nets/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/detect_tor/command.js b/modules/network/detect_tor/command.js
index 3ef3371d7..727c51c4a 100644
--- a/modules/network/detect_tor/command.js
+++ b/modules/network/detect_tor/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/detect_tor/module.rb b/modules/network/detect_tor/module.rb
index c20a53cba..92aad0903 100644
--- a/modules/network/detect_tor/module.rb
+++ b/modules/network/detect_tor/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/dns_enumeration/command.js b/modules/network/dns_enumeration/command.js
index c7fc38d47..64df30dff 100644
--- a/modules/network/dns_enumeration/command.js
+++ b/modules/network/dns_enumeration/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/dns_enumeration/module.rb b/modules/network/dns_enumeration/module.rb
index db832ea67..1f784eeec 100644
--- a/modules/network/dns_enumeration/module.rb
+++ b/modules/network/dns_enumeration/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/dns_rebinding/command.js b/modules/network/dns_rebinding/command.js
index 6d75a5e1d..0ff037f52 100644
--- a/modules/network/dns_rebinding/command.js
+++ b/modules/network/dns_rebinding/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/dns_rebinding/module.rb b/modules/network/dns_rebinding/module.rb
index 73ca2e8b3..3feea2a20 100644
--- a/modules/network/dns_rebinding/module.rb
+++ b/modules/network/dns_rebinding/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/fetch_port_scanner/command.js b/modules/network/fetch_port_scanner/command.js
index 773d1005f..5e0642c80 100644
--- a/modules/network/fetch_port_scanner/command.js
+++ b/modules/network/fetch_port_scanner/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/fetch_port_scanner/module.rb b/modules/network/fetch_port_scanner/module.rb
index 1bdd27bb7..9eeac586d 100644
--- a/modules/network/fetch_port_scanner/module.rb
+++ b/modules/network/fetch_port_scanner/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/get_http_servers/command.js b/modules/network/get_http_servers/command.js
index 2a2bc5631..3d23bea03 100644
--- a/modules/network/get_http_servers/command.js
+++ b/modules/network/get_http_servers/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/get_http_servers/module.rb b/modules/network/get_http_servers/module.rb
index 99d061e62..ce5eb9e99 100644
--- a/modules/network/get_http_servers/module.rb
+++ b/modules/network/get_http_servers/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/get_ntop_network_hosts/command.js b/modules/network/get_ntop_network_hosts/command.js
index 658ae57ab..093dd16c1 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/get_ntop_network_hosts/module.rb b/modules/network/get_ntop_network_hosts/module.rb
index 0c10e5137..d1a92fa9a 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/get_proxy_servers_wpad/command.js b/modules/network/get_proxy_servers_wpad/command.js
index b2c5593ee..a130d592f 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/get_proxy_servers_wpad/module.rb b/modules/network/get_proxy_servers_wpad/module.rb
index 405d91c30..de084ccc0 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/identify_lan_subnets/command.js b/modules/network/identify_lan_subnets/command.js
index 58fbb90be..350afd271 100644
--- a/modules/network/identify_lan_subnets/command.js
+++ b/modules/network/identify_lan_subnets/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/identify_lan_subnets/module.rb b/modules/network/identify_lan_subnets/module.rb
index a2388fb3c..6f0a37b17 100644
--- a/modules/network/identify_lan_subnets/module.rb
+++ b/modules/network/identify_lan_subnets/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/internal_network_fingerprinting/command.js b/modules/network/internal_network_fingerprinting/command.js
index 8fb5d9ff1..9e95be406 100644
--- a/modules/network/internal_network_fingerprinting/command.js
+++ b/modules/network/internal_network_fingerprinting/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/internal_network_fingerprinting/module.rb b/modules/network/internal_network_fingerprinting/module.rb
index de009eb49..b63e9070a 100644
--- a/modules/network/internal_network_fingerprinting/module.rb
+++ b/modules/network/internal_network_fingerprinting/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/jslanscanner/command.js b/modules/network/jslanscanner/command.js
index 328173e70..4104cd84a 100644
--- a/modules/network/jslanscanner/command.js
+++ b/modules/network/jslanscanner/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/jslanscanner/module.rb b/modules/network/jslanscanner/module.rb
index 91056da9a..e9ea354de 100644
--- a/modules/network/jslanscanner/module.rb
+++ b/modules/network/jslanscanner/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/nat_pinning_irc/command.js b/modules/network/nat_pinning_irc/command.js
index 2e1850180..2adefd616 100644
--- a/modules/network/nat_pinning_irc/command.js
+++ b/modules/network/nat_pinning_irc/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/nat_pinning_irc/module.rb b/modules/network/nat_pinning_irc/module.rb
index efdaf5bdd..62966a8ba 100644
--- a/modules/network/nat_pinning_irc/module.rb
+++ b/modules/network/nat_pinning_irc/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/ping_sweep/command.js b/modules/network/ping_sweep/command.js
index 1a8a64de2..04b27232c 100644
--- a/modules/network/ping_sweep/command.js
+++ b/modules/network/ping_sweep/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/ping_sweep/module.rb b/modules/network/ping_sweep/module.rb
index 2ad3c3867..0e52bbb9b 100644
--- a/modules/network/ping_sweep/module.rb
+++ b/modules/network/ping_sweep/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/ping_sweep_ff/command.js b/modules/network/ping_sweep_ff/command.js
index e2a3407d4..dcd27fa34 100644
--- a/modules/network/ping_sweep_ff/command.js
+++ b/modules/network/ping_sweep_ff/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/ping_sweep_ff/module.rb b/modules/network/ping_sweep_ff/module.rb
index e2e417b27..691fc1805 100644
--- a/modules/network/ping_sweep_ff/module.rb
+++ b/modules/network/ping_sweep_ff/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/ping_sweep_java/command.js b/modules/network/ping_sweep_java/command.js
index d55bf2c08..d5b11021c 100644
--- a/modules/network/ping_sweep_java/command.js
+++ b/modules/network/ping_sweep_java/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/ping_sweep_java/module.rb b/modules/network/ping_sweep_java/module.rb
index 9b06fb616..cd8d0f158 100644
--- a/modules/network/ping_sweep_java/module.rb
+++ b/modules/network/ping_sweep_java/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/network/port_scanner/command.js b/modules/network/port_scanner/command.js
index f19ae2a89..e19b67b6a 100644
--- a/modules/network/port_scanner/command.js
+++ b/modules/network/port_scanner/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/network/port_scanner/module.rb b/modules/network/port_scanner/module.rb
index a20de1cc8..dca4ae339 100644
--- a/modules/network/port_scanner/module.rb
+++ b/modules/network/port_scanner/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/persistence/confirm_close_tab/command.js b/modules/persistence/confirm_close_tab/command.js
index 04c95f8c8..ef9b43f27 100644
--- a/modules/persistence/confirm_close_tab/command.js
+++ b/modules/persistence/confirm_close_tab/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/persistence/confirm_close_tab/module.rb b/modules/persistence/confirm_close_tab/module.rb
index 96ddc55df..e578f1083 100644
--- a/modules/persistence/confirm_close_tab/module.rb
+++ b/modules/persistence/confirm_close_tab/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/persistence/hijack_opener/command.js b/modules/persistence/hijack_opener/command.js
index f5f8cbaeb..eb0efd52a 100644
--- a/modules/persistence/hijack_opener/command.js
+++ b/modules/persistence/hijack_opener/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/persistence/hijack_opener/module.rb b/modules/persistence/hijack_opener/module.rb
index 0f195cc99..597ab0e48 100644
--- a/modules/persistence/hijack_opener/module.rb
+++ b/modules/persistence/hijack_opener/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/persistence/iframe_above/command.js b/modules/persistence/iframe_above/command.js
index 2f8792949..fc0944e2d 100644
--- a/modules/persistence/iframe_above/command.js
+++ b/modules/persistence/iframe_above/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/persistence/iframe_above/module.rb b/modules/persistence/iframe_above/module.rb
index ec5b42d8a..4bdca449d 100644
--- a/modules/persistence/iframe_above/module.rb
+++ b/modules/persistence/iframe_above/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/persistence/invisible_htmlfile_activex/command.js b/modules/persistence/invisible_htmlfile_activex/command.js
index ac1cf214e..ee4242b69 100644
--- a/modules/persistence/invisible_htmlfile_activex/command.js
+++ b/modules/persistence/invisible_htmlfile_activex/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/persistence/invisible_htmlfile_activex/module.rb b/modules/persistence/invisible_htmlfile_activex/module.rb
index a37789d05..4ba1cff9c 100644
--- a/modules/persistence/invisible_htmlfile_activex/module.rb
+++ b/modules/persistence/invisible_htmlfile_activex/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/persistence/jsonp_service_worker/command.js b/modules/persistence/jsonp_service_worker/command.js
index bbc3bef48..9707dfa57 100644
--- a/modules/persistence/jsonp_service_worker/command.js
+++ b/modules/persistence/jsonp_service_worker/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/persistence/man_in_the_browser/command.js b/modules/persistence/man_in_the_browser/command.js
index 05b32f798..3df3e585a 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-2024Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/persistence/man_in_the_browser/module.rb b/modules/persistence/man_in_the_browser/module.rb
index 72a681fc6..bbc9066b6 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/persistence/popunder_window/command.js b/modules/persistence/popunder_window/command.js
index 69bea3c69..1e5add3b9 100644
--- a/modules/persistence/popunder_window/command.js
+++ b/modules/persistence/popunder_window/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/persistence/popunder_window/module.rb b/modules/persistence/popunder_window/module.rb
index ed43fa999..f2abe86ce 100644
--- a/modules/persistence/popunder_window/module.rb
+++ b/modules/persistence/popunder_window/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/persistence/popunder_window_ie/command.js b/modules/persistence/popunder_window_ie/command.js
index a4e0673db..7028b3c6e 100644
--- a/modules/persistence/popunder_window_ie/command.js
+++ b/modules/persistence/popunder_window_ie/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/persistence/popunder_window_ie/module.rb b/modules/persistence/popunder_window_ie/module.rb
index c66250336..e7e5451d8 100644
--- a/modules/persistence/popunder_window_ie/module.rb
+++ b/modules/persistence/popunder_window_ie/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_alert_user/command.js b/modules/phonegap/phonegap_alert_user/command.js
index 742294bfb..b190ffb0c 100644
--- a/modules/phonegap/phonegap_alert_user/command.js
+++ b/modules/phonegap/phonegap_alert_user/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_alert_user/module.rb b/modules/phonegap/phonegap_alert_user/module.rb
index b2a20749e..a0e59aecf 100644
--- a/modules/phonegap/phonegap_alert_user/module.rb
+++ b/modules/phonegap/phonegap_alert_user/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_beep/command.js b/modules/phonegap/phonegap_beep/command.js
index 1219fc5a8..745030317 100644
--- a/modules/phonegap/phonegap_beep/command.js
+++ b/modules/phonegap/phonegap_beep/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_beep/module.rb b/modules/phonegap/phonegap_beep/module.rb
index a482ef906..56254ac43 100644
--- a/modules/phonegap/phonegap_beep/module.rb
+++ b/modules/phonegap/phonegap_beep/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_check_connection/command.js b/modules/phonegap/phonegap_check_connection/command.js
index d57a4323c..6d6c4f2ff 100644
--- a/modules/phonegap/phonegap_check_connection/command.js
+++ b/modules/phonegap/phonegap_check_connection/command.js
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/phonegap/phonegap_check_connection/module.rb b/modules/phonegap/phonegap_check_connection/module.rb
index 739a834f1..95559431c 100644
--- a/modules/phonegap/phonegap_check_connection/module.rb
+++ b/modules/phonegap/phonegap_check_connection/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_detect/command.js b/modules/phonegap/phonegap_detect/command.js
index 467d3d213..793fc5f0a 100644
--- a/modules/phonegap/phonegap_detect/command.js
+++ b/modules/phonegap/phonegap_detect/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_detect/module.rb b/modules/phonegap/phonegap_detect/module.rb
index 19a20d6ec..86744fcc3 100644
--- a/modules/phonegap/phonegap_detect/module.rb
+++ b/modules/phonegap/phonegap_detect/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_file_upload/command.js b/modules/phonegap/phonegap_file_upload/command.js
index a52ab2295..60d612150 100644
--- a/modules/phonegap/phonegap_file_upload/command.js
+++ b/modules/phonegap/phonegap_file_upload/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_file_upload/module.rb b/modules/phonegap/phonegap_file_upload/module.rb
index 0fd7fe127..5e6fd44e8 100644
--- a/modules/phonegap/phonegap_file_upload/module.rb
+++ b/modules/phonegap/phonegap_file_upload/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_geo_locate/command.js b/modules/phonegap/phonegap_geo_locate/command.js
index 3a6d5e63a..4aec7a96f 100644
--- a/modules/phonegap/phonegap_geo_locate/command.js
+++ b/modules/phonegap/phonegap_geo_locate/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_geo_locate/module.rb b/modules/phonegap/phonegap_geo_locate/module.rb
index 995d51586..594713cd2 100644
--- a/modules/phonegap/phonegap_geo_locate/module.rb
+++ b/modules/phonegap/phonegap_geo_locate/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_globalization_status/command.js b/modules/phonegap/phonegap_globalization_status/command.js
index 3a345b25e..b2c5604b8 100644
--- a/modules/phonegap/phonegap_globalization_status/command.js
+++ b/modules/phonegap/phonegap_globalization_status/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_globalization_status/module.rb b/modules/phonegap/phonegap_globalization_status/module.rb
index a862ddeb7..7cf512e80 100644
--- a/modules/phonegap/phonegap_globalization_status/module.rb
+++ b/modules/phonegap/phonegap_globalization_status/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_keychain/command.js b/modules/phonegap/phonegap_keychain/command.js
index 7a7168809..7520c031d 100644
--- a/modules/phonegap/phonegap_keychain/command.js
+++ b/modules/phonegap/phonegap_keychain/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_keychain/module.rb b/modules/phonegap/phonegap_keychain/module.rb
index ed033371e..01e8edae5 100644
--- a/modules/phonegap/phonegap_keychain/module.rb
+++ b/modules/phonegap/phonegap_keychain/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_list_contacts/command.js b/modules/phonegap/phonegap_list_contacts/command.js
index d60326852..a52dfa8d3 100644
--- a/modules/phonegap/phonegap_list_contacts/command.js
+++ b/modules/phonegap/phonegap_list_contacts/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_list_contacts/module.rb b/modules/phonegap/phonegap_list_contacts/module.rb
index ce1c2161a..81adc9a2c 100644
--- a/modules/phonegap/phonegap_list_contacts/module.rb
+++ b/modules/phonegap/phonegap_list_contacts/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_list_files/command.js b/modules/phonegap/phonegap_list_files/command.js
index c260a8012..a1efcabd1 100644
--- a/modules/phonegap/phonegap_list_files/command.js
+++ b/modules/phonegap/phonegap_list_files/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_list_files/module.rb b/modules/phonegap/phonegap_list_files/module.rb
index 67ec38e80..d7d5324bb 100644
--- a/modules/phonegap/phonegap_list_files/module.rb
+++ b/modules/phonegap/phonegap_list_files/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_persist_resume/command.js b/modules/phonegap/phonegap_persist_resume/command.js
index ff7063951..c76f82ef9 100644
--- a/modules/phonegap/phonegap_persist_resume/command.js
+++ b/modules/phonegap/phonegap_persist_resume/command.js
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/phonegap/phonegap_persist_resume/module.rb b/modules/phonegap/phonegap_persist_resume/module.rb
index d95c2b4df..7f052c8e3 100644
--- a/modules/phonegap/phonegap_persist_resume/module.rb
+++ b/modules/phonegap/phonegap_persist_resume/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_persistence/command.js b/modules/phonegap/phonegap_persistence/command.js
index ffc8e786f..8bef63e7b 100644
--- a/modules/phonegap/phonegap_persistence/command.js
+++ b/modules/phonegap/phonegap_persistence/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_persistence/module.rb b/modules/phonegap/phonegap_persistence/module.rb
index 0933757da..6fe087df9 100644
--- a/modules/phonegap/phonegap_persistence/module.rb
+++ b/modules/phonegap/phonegap_persistence/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_plugin_detection/command.js b/modules/phonegap/phonegap_plugin_detection/command.js
index 28ebbc1c1..62f766fe5 100644
--- a/modules/phonegap/phonegap_plugin_detection/command.js
+++ b/modules/phonegap/phonegap_plugin_detection/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_plugin_detection/module.rb b/modules/phonegap/phonegap_plugin_detection/module.rb
index 1914e46a4..dfbf049bf 100644
--- a/modules/phonegap/phonegap_plugin_detection/module.rb
+++ b/modules/phonegap/phonegap_plugin_detection/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_prompt_user/command.js b/modules/phonegap/phonegap_prompt_user/command.js
index ae57101a5..e4f8c405c 100644
--- a/modules/phonegap/phonegap_prompt_user/command.js
+++ b/modules/phonegap/phonegap_prompt_user/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_prompt_user/module.rb b/modules/phonegap/phonegap_prompt_user/module.rb
index 66ae433a8..90c57f581 100644
--- a/modules/phonegap/phonegap_prompt_user/module.rb
+++ b/modules/phonegap/phonegap_prompt_user/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_start_record_audio/command.js b/modules/phonegap/phonegap_start_record_audio/command.js
index 1c2222489..8336bf24c 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_start_record_audio/module.rb b/modules/phonegap/phonegap_start_record_audio/module.rb
index e6882d3c0..8832cf344 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/phonegap/phonegap_stop_record_audio/command.js b/modules/phonegap/phonegap_stop_record_audio/command.js
index e0a53deef..5341c1c0a 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-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/phonegap/phonegap_stop_record_audio/module.rb b/modules/phonegap/phonegap_stop_record_audio/module.rb
index ed98f1dc0..f565144b2 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/clickjacking/command.js b/modules/social_engineering/clickjacking/command.js
index d109edb96..a78bdaff2 100644
--- a/modules/social_engineering/clickjacking/command.js
+++ b/modules/social_engineering/clickjacking/command.js
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/social_engineering/clickjacking/module.rb b/modules/social_engineering/clickjacking/module.rb
index a0698e6d2..3dbd70410 100644
--- a/modules/social_engineering/clickjacking/module.rb
+++ b/modules/social_engineering/clickjacking/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/clippy/command.js b/modules/social_engineering/clippy/command.js
index b41bb0c5c..f6deec270 100755
--- a/modules/social_engineering/clippy/command.js
+++ b/modules/social_engineering/clippy/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/clippy/module.rb b/modules/social_engineering/clippy/module.rb
index 06569a16c..343157ea1 100755
--- a/modules/social_engineering/clippy/module.rb
+++ b/modules/social_engineering/clippy/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/edge_wscript_wsh_injection/command.js b/modules/social_engineering/edge_wscript_wsh_injection/command.js
index 62da54671..432d8c8b0 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/edge_wscript_wsh_injection/module.rb b/modules/social_engineering/edge_wscript_wsh_injection/module.rb
index 66e32974b..6a17d32d5 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/fake_evernote_clipper/command.js b/modules/social_engineering/fake_evernote_clipper/command.js
index 9691d06bf..d399305b8 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/fake_evernote_clipper/module.rb b/modules/social_engineering/fake_evernote_clipper/module.rb
index 03bed5f52..c5e5c9a27 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/fake_flash_update/command.js b/modules/social_engineering/fake_flash_update/command.js
index 8e4375233..f95834aef 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/fake_flash_update/module.rb b/modules/social_engineering/fake_flash_update/module.rb
index 6a76b94af..b6c0b3bef 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/fake_lastpass/command.js b/modules/social_engineering/fake_lastpass/command.js
index f6f4054b0..ce86e05c8 100755
--- a/modules/social_engineering/fake_lastpass/command.js
+++ b/modules/social_engineering/fake_lastpass/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/fake_lastpass/module.rb b/modules/social_engineering/fake_lastpass/module.rb
index a6e806b35..5b890117c 100755
--- a/modules/social_engineering/fake_lastpass/module.rb
+++ b/modules/social_engineering/fake_lastpass/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/fake_notification/command.js b/modules/social_engineering/fake_notification/command.js
index 31153da25..005cd3033 100644
--- a/modules/social_engineering/fake_notification/command.js
+++ b/modules/social_engineering/fake_notification/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/fake_notification/module.rb b/modules/social_engineering/fake_notification/module.rb
index a0bdec379..ad835f085 100644
--- a/modules/social_engineering/fake_notification/module.rb
+++ b/modules/social_engineering/fake_notification/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/fake_notification_c/command.js b/modules/social_engineering/fake_notification_c/command.js
index 0fea10293..274ea6004 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/fake_notification_c/module.rb b/modules/social_engineering/fake_notification_c/module.rb
index 05a38a7b2..747c8fb3a 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/fake_notification_ff/command.js b/modules/social_engineering/fake_notification_ff/command.js
index c801a941a..8b102fb4c 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/fake_notification_ff/module.rb b/modules/social_engineering/fake_notification_ff/module.rb
index fed7efdc4..3b456c9c9 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/fake_notification_ie/command.js b/modules/social_engineering/fake_notification_ie/command.js
index 7b72f76b0..56a73b0d3 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/fake_notification_ie/module.rb b/modules/social_engineering/fake_notification_ie/module.rb
index 81cb85aec..5cb9a5068 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/firefox_extension_bindshell/command.js b/modules/social_engineering/firefox_extension_bindshell/command.js
index 0aac061c6..eb6b9d1e2 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/firefox_extension_bindshell/module.rb b/modules/social_engineering/firefox_extension_bindshell/module.rb
index de4f7d12b..ccc515d1e 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/firefox_extension_dropper/command.js b/modules/social_engineering/firefox_extension_dropper/command.js
index 939ed2b48..009cc5cde 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/firefox_extension_dropper/module.rb b/modules/social_engineering/firefox_extension_dropper/module.rb
index 0edcd8a07..812826a93 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/firefox_extension_reverse_shell/command.js b/modules/social_engineering/firefox_extension_reverse_shell/command.js
index 0aac061c6..eb6b9d1e2 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/firefox_extension_reverse_shell/module.rb b/modules/social_engineering/firefox_extension_reverse_shell/module.rb
index 98ebd3001..e656b89e5 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/gmail_phishing/command.js b/modules/social_engineering/gmail_phishing/command.js
index f2790cb99..81747d293 100644
--- a/modules/social_engineering/gmail_phishing/command.js
+++ b/modules/social_engineering/gmail_phishing/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/gmail_phishing/module.rb b/modules/social_engineering/gmail_phishing/module.rb
index ce133216b..e0c603d52 100644
--- a/modules/social_engineering/gmail_phishing/module.rb
+++ b/modules/social_engineering/gmail_phishing/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/hta_powershell/command.js b/modules/social_engineering/hta_powershell/command.js
index 119ae1dd7..faa0ac576 100755
--- a/modules/social_engineering/hta_powershell/command.js
+++ b/modules/social_engineering/hta_powershell/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/hta_powershell/module.rb b/modules/social_engineering/hta_powershell/module.rb
index 9bea5e3f8..d6bbea4f0 100755
--- a/modules/social_engineering/hta_powershell/module.rb
+++ b/modules/social_engineering/hta_powershell/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/lcamtuf_download/command.js b/modules/social_engineering/lcamtuf_download/command.js
index c81a803b9..4f35530b0 100644
--- a/modules/social_engineering/lcamtuf_download/command.js
+++ b/modules/social_engineering/lcamtuf_download/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/lcamtuf_download/module.rb b/modules/social_engineering/lcamtuf_download/module.rb
index 23058c6e3..c6d560ab1 100755
--- a/modules/social_engineering/lcamtuf_download/module.rb
+++ b/modules/social_engineering/lcamtuf_download/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/pretty_theft/command.js b/modules/social_engineering/pretty_theft/command.js
index 817d04a8c..a2f1de50b 100644
--- a/modules/social_engineering/pretty_theft/command.js
+++ b/modules/social_engineering/pretty_theft/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/pretty_theft/module.rb b/modules/social_engineering/pretty_theft/module.rb
index 1274673e5..e89d52752 100644
--- a/modules/social_engineering/pretty_theft/module.rb
+++ b/modules/social_engineering/pretty_theft/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/replace_video_fake_plugin/command.js b/modules/social_engineering/replace_video_fake_plugin/command.js
index 5c785f004..b6b3f63c9 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/replace_video_fake_plugin/module.rb b/modules/social_engineering/replace_video_fake_plugin/module.rb
index b9eb655ba..5915cbb1d 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/simple_hijacker/command.js b/modules/social_engineering/simple_hijacker/command.js
index 2734a3001..6ed83afcd 100644
--- a/modules/social_engineering/simple_hijacker/command.js
+++ b/modules/social_engineering/simple_hijacker/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/simple_hijacker/module.rb b/modules/social_engineering/simple_hijacker/module.rb
index 646d22cb4..ed7aa405f 100644
--- a/modules/social_engineering/simple_hijacker/module.rb
+++ b/modules/social_engineering/simple_hijacker/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/simple_hijacker/templates/amazon.js b/modules/social_engineering/simple_hijacker/templates/amazon.js
index 8946598f2..6c1ca7ae7 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-2024Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js b/modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js
index b47495084..86e60ecfc 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-2024Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js b/modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js
index 534fab1d1..f2670b894 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-2024Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/social_engineering/simple_hijacker/templates/confirmbox.js b/modules/social_engineering/simple_hijacker/templates/confirmbox.js
index 108ed7d33..d0345cde8 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-2024 Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/social_engineering/simple_hijacker/templates/credential.js b/modules/social_engineering/simple_hijacker/templates/credential.js
index 66336edbe..eb94843ff 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-2024Wade Alcorn - wade@bindshell.net
+ * Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - https://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
diff --git a/modules/social_engineering/sitekiosk_breakout/command.js b/modules/social_engineering/sitekiosk_breakout/command.js
index 2088b9cdf..945504929 100644
--- a/modules/social_engineering/sitekiosk_breakout/command.js
+++ b/modules/social_engineering/sitekiosk_breakout/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/sitekiosk_breakout/module.rb b/modules/social_engineering/sitekiosk_breakout/module.rb
index 43be320f5..9c96b7ce9 100644
--- a/modules/social_engineering/sitekiosk_breakout/module.rb
+++ b/modules/social_engineering/sitekiosk_breakout/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/spoof_addressbar_data/command.js b/modules/social_engineering/spoof_addressbar_data/command.js
index 30088d798..f059975f2 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/spoof_addressbar_data/module.rb b/modules/social_engineering/spoof_addressbar_data/module.rb
index bf1028ecf..2194d2827 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/tabnabbing/command.js b/modules/social_engineering/tabnabbing/command.js
index a721f78f2..af5fcfb6e 100644
--- a/modules/social_engineering/tabnabbing/command.js
+++ b/modules/social_engineering/tabnabbing/command.js
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2006-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/tabnabbing/module.rb b/modules/social_engineering/tabnabbing/module.rb
index 592cd54ee..c0366010e 100644
--- a/modules/social_engineering/tabnabbing/module.rb
+++ b/modules/social_engineering/tabnabbing/module.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/text_to_voice/command.js b/modules/social_engineering/text_to_voice/command.js
index e1ba8fe48..bd853ea97 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/text_to_voice/module.rb b/modules/social_engineering/text_to_voice/module.rb
index fafa2865e..01f2248c4 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/modules/social_engineering/ui_abuse_ie/command.js b/modules/social_engineering/ui_abuse_ie/command.js
index dfde3f900..e9a63db1e 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-2024Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/modules/social_engineering/ui_abuse_ie/module.rb b/modules/social_engineering/ui_abuse_ie/module.rb
index e2fcdc259..0bc894b90 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/api/auth_rate_spec.rb b/spec/beef/api/auth_rate_spec.rb
index e1b3d34e3..77ff65a60 100644
--- a/spec/beef/api/auth_rate_spec.rb
+++ b/spec/beef/api/auth_rate_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/core/main/autorun_engine/autorun_engine_spec.rb b/spec/beef/core/main/autorun_engine/autorun_engine_spec.rb
index 38ba96a62..aef99a958 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/core/main/handlers/browser_details_handler_spec.rb b/spec/beef/core/main/handlers/browser_details_handler_spec.rb
index 943f53f06..4c54f2d37 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/adminui_spec.rb b/spec/beef/extensions/adminui_spec.rb
index bddbc8c09..64891c0a8 100644
--- a/spec/beef/extensions/adminui_spec.rb
+++ b/spec/beef/extensions/adminui_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/dns_spec.rb b/spec/beef/extensions/dns_spec.rb
index ffec46bb7..a1aed66e1 100644
--- a/spec/beef/extensions/dns_spec.rb
+++ b/spec/beef/extensions/dns_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/network_spec.rb b/spec/beef/extensions/network_spec.rb
index a85d0c57b..be759ab9d 100644
--- a/spec/beef/extensions/network_spec.rb
+++ b/spec/beef/extensions/network_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/proxy_spec.rb b/spec/beef/extensions/proxy_spec.rb
index 4f2cae338..ff25ac141 100644
--- a/spec/beef/extensions/proxy_spec.rb
+++ b/spec/beef/extensions/proxy_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/qrcode_spec.rb b/spec/beef/extensions/qrcode_spec.rb
index c1086d4c6..43e990dea 100644
--- a/spec/beef/extensions/qrcode_spec.rb
+++ b/spec/beef/extensions/qrcode_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/requester_spec.rb b/spec/beef/extensions/requester_spec.rb
index 652224774..8aabfbd23 100644
--- a/spec/beef/extensions/requester_spec.rb
+++ b/spec/beef/extensions/requester_spec.rb
@@ -1,7 +1,7 @@
require 'extensions/requester/extension'
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/social_engineering_spec.rb b/spec/beef/extensions/social_engineering_spec.rb
index 8ccc50026..7543b2f26 100644
--- a/spec/beef/extensions/social_engineering_spec.rb
+++ b/spec/beef/extensions/social_engineering_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/webrtc_spec.rb b/spec/beef/extensions/webrtc_spec.rb
index f42f2d09e..24f2509d3 100644
--- a/spec/beef/extensions/webrtc_spec.rb
+++ b/spec/beef/extensions/webrtc_spec.rb
@@ -1,7 +1,7 @@
require 'rest-client'
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/websocket_hooked_browser_spec.rb b/spec/beef/extensions/websocket_hooked_browser_spec.rb
index 59354befc..6acf55641 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/websocket_spec.rb b/spec/beef/extensions/websocket_spec.rb
index ffab4bfa8..8f3d71b1e 100644
--- a/spec/beef/extensions/websocket_spec.rb
+++ b/spec/beef/extensions/websocket_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/extensions/xssrays_spec.rb b/spec/beef/extensions/xssrays_spec.rb
index b9d3673b6..e0ae9eaf4 100644
--- a/spec/beef/extensions/xssrays_spec.rb
+++ b/spec/beef/extensions/xssrays_spec.rb
@@ -1,6 +1,6 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb
index c67ffc583..1bc89d813 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/features/all_modules_spec.rb b/spec/features/all_modules_spec.rb
index 87a12055a..8112d46c9 100644
--- a/spec/features/all_modules_spec.rb
+++ b/spec/features/all_modules_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/features/debug_modules_spec.rb b/spec/features/debug_modules_spec.rb
index 659947f91..e3eae3e0e 100644
--- a/spec/features/debug_modules_spec.rb
+++ b/spec/features/debug_modules_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/requests/beef_test_spec.rb b/spec/requests/beef_test_spec.rb
index d6b760f65..9ab0bdaf3 100644
--- a/spec/requests/beef_test_spec.rb
+++ b/spec/requests/beef_test_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/requests/login_spec.rb b/spec/requests/login_spec.rb
index da2ffe63d..22be46cd4 100644
--- a/spec/requests/login_spec.rb
+++ b/spec/requests/login_spec.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 56e3edf46..4eb5c992d 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/support/beef_test.rb b/spec/support/beef_test.rb
index 37a00017e..f54033704 100644
--- a/spec/support/beef_test.rb
+++ b/spec/support/beef_test.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/support/constants.rb b/spec/support/constants.rb
index cc22fcfb6..d4bfa5464 100644
--- a/spec/support/constants.rb
+++ b/spec/support/constants.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/support/simple_rest_client.rb b/spec/support/simple_rest_client.rb
index d09b3b6f8..0abdb41dc 100644
--- a/spec/support/simple_rest_client.rb
+++ b/spec/support/simple_rest_client.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/spec/support/ui_support.rb b/spec/support/ui_support.rb
index 477d711a5..e350d9bfa 100644
--- a/spec/support/ui_support.rb
+++ b/spec/support/ui_support.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/test/integration/tc_debug_modules.rb b/test/integration/tc_debug_modules.rb
index def28995e..eda7f642e 100644
--- a/test/integration/tc_debug_modules.rb
+++ b/test/integration/tc_debug_modules.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/test/integration/tc_dns_rest.rb b/test/integration/tc_dns_rest.rb
index 05ed4d4f9..6ce656ca9 100644
--- a/test/integration/tc_dns_rest.rb
+++ b/test/integration/tc_dns_rest.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/test/integration/tc_network_rest.rb b/test/integration/tc_network_rest.rb
index 23c7ed15b..799b2b157 100644
--- a/test/integration/tc_network_rest.rb
+++ b/test/integration/tc_network_rest.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/test/integration/tc_proxy.rb b/test/integration/tc_proxy.rb
index 87ca8b7ed..bbeaabb2e 100644
--- a/test/integration/tc_proxy.rb
+++ b/test/integration/tc_proxy.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/test/integration/tc_social_engineering_rest.rb b/test/integration/tc_social_engineering_rest.rb
index 670acdf1c..9bf75ea93 100644
--- a/test/integration/tc_social_engineering_rest.rb
+++ b/test/integration/tc_social_engineering_rest.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/test/integration/tc_webrtc_rest.rb b/test/integration/tc_webrtc_rest.rb
index 920e742c5..1c5f9bac0 100644
--- a/test/integration/tc_webrtc_rest.rb
+++ b/test/integration/tc_webrtc_rest.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/test/integration/ts_integration.rb b/test/integration/ts_integration.rb
index 6a2911877..bc415b46b 100644
--- a/test/integration/ts_integration.rb
+++ b/test/integration/ts_integration.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/test/thirdparty/msf/unit/tc_metasploit.rb b/test/thirdparty/msf/unit/tc_metasploit.rb
index 0a83289c1..0bd2bd029 100644
--- a/test/thirdparty/msf/unit/tc_metasploit.rb
+++ b/test/thirdparty/msf/unit/tc_metasploit.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/test/thirdparty/msf/unit/ts_metasploit.rb b/test/thirdparty/msf/unit/ts_metasploit.rb
index 003ea70d4..52f4d2db8 100644
--- a/test/thirdparty/msf/unit/ts_metasploit.rb
+++ b/test/thirdparty/msf/unit/ts_metasploit.rb
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
diff --git a/tools/csrf_to_beef/lib/module.rb b/tools/csrf_to_beef/lib/module.rb
index 2f634ecb2..9481226ac 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-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
@@ -34,7 +34,7 @@ class ModuleFile
end
return <<-EOF
#
-# Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
@@ -67,7 +67,7 @@ class CommandFile
end
return <<-EOF
//
-// Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net
+// Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
diff --git a/tools/maintenance/copyright_update.rb b/tools/maintenance/copyright_update.rb
new file mode 100644
index 000000000..4dd8e0f5a
--- /dev/null
+++ b/tools/maintenance/copyright_update.rb
@@ -0,0 +1,64 @@
+require 'yaml'
+require 'logger'
+
+# Set up logging
+@log = Logger.new(STDOUT)
+@log.level = Logger::INFO
+log_file = File.open('copyright_update.log', 'w')
+@log_file_logger = Logger.new(log_file)
+@log_file_logger.level = Logger::INFO
+
+def update_copyright(file_path, old_copyright, new_copyright)
+ @log.info("Processing file: #{file_path}")
+ @log_file_logger.info("Processing file: #{file_path}")
+
+ case File.extname(file_path)
+ when '.rb', '.js'
+ content = File.read(file_path)
+ if content.include?(old_copyright)
+ updated_content = content.gsub(old_copyright, new_copyright)
+ File.write(file_path, updated_content)
+ @log.info("Updated copyright in #{file_path}")
+ @log_file_logger.info("Updated copyright in #{file_path}")
+ else
+ @log.warn("Copyright string not found in #{file_path}")
+ @log_file_logger.warn("Copyright string not found in #{file_path}")
+ end
+ when '.yaml'
+ yaml_content = YAML.load_file(file_path)
+ if yaml_content && yaml_content['copyright'] == old_copyright
+ yaml_content['copyright'] = new_copyright
+ File.write(file_path, yaml_content.to_yaml)
+ @log.info("Updated copyright in YAML file: #{file_path}")
+ @log_file_logger.info("Updated copyright in YAML file: #{file_path}")
+ else
+ @log.warn("Copyright string not found or incorrect in YAML file: #{file_path}")
+ @log_file_logger.warn("Copyright string not found or incorrect in YAML file: #{file_path}")
+ end
+when '.html'
+ content = File.read(file_path)
+ if content.include?(old_copyright)
+ updated_content = content.gsub(old_copyright, new_copyright)
+ File.write(file_path, updated_content)
+ @log.info("Updated copyright in HTML file: #{file_path}")
+ @log_file_logger.info("Updated copyright in HTML file: #{file_path}")
+ else
+ @log.warn("Copyright string not found in HTML file: #{file_path}")
+ @log_file_logger.warn("Copyright string not found in HTML file: #{file_path}")
+ end
+ end
+rescue => e
+ @log.error("Error processing file #{file_path}: #{e.message}")
+ @log_file_logger.error("Error processing file #{file_path}: #{e.message}")
+end
+
+old_copyright = 'Copyright (c) 2006-2024'
+new_copyright = 'Copyright (c) 2006-2025'
+
+Dir.glob("../../**/*.{rb,js,yaml,html}").each do |file|
+ update_copyright(file, old_copyright, new_copyright)
+end
+
+@log.info("Copyright update process completed.")
+@log_file_logger.info("Copyright update process completed.")
+log_file.close
\ No newline at end of file
diff --git a/tools/maintenance/copyright_update_1.log b/tools/maintenance/copyright_update_1.log
new file mode 100644
index 000000000..fd17a491e
--- /dev/null
+++ b/tools/maintenance/copyright_update_1.log
@@ -0,0 +1,7171 @@
+I, [2024-12-25T11:18:23.143021 #36268] INFO -- : Processing file: ../../config.yaml
+W, [2024-12-25T11:18:23.143948 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../config.yaml
+I, [2024-12-25T11:18:23.143967 #36268] INFO -- : Processing file: ../../core/api/extension.rb
+I, [2024-12-25T11:18:23.144209 #36268] INFO -- : Updated copyright in ../../core/api/extension.rb
+I, [2024-12-25T11:18:23.144226 #36268] INFO -- : Processing file: ../../core/api/extensions.rb
+I, [2024-12-25T11:18:23.144545 #36268] INFO -- : Updated copyright in ../../core/api/extensions.rb
+I, [2024-12-25T11:18:23.144562 #36268] INFO -- : Processing file: ../../core/api/main/configuration.rb
+I, [2024-12-25T11:18:23.144837 #36268] INFO -- : Updated copyright in ../../core/api/main/configuration.rb
+I, [2024-12-25T11:18:23.144971 #36268] INFO -- : Processing file: ../../core/api/main/migration.rb
+I, [2024-12-25T11:18:23.145182 #36268] INFO -- : Updated copyright in ../../core/api/main/migration.rb
+I, [2024-12-25T11:18:23.145214 #36268] INFO -- : Processing file: ../../core/api/main/network_stack/assethandler.rb
+I, [2024-12-25T11:18:23.145646 #36268] INFO -- : Updated copyright in ../../core/api/main/network_stack/assethandler.rb
+I, [2024-12-25T11:18:23.145739 #36268] INFO -- : Processing file: ../../core/api/main/server/hook.rb
+I, [2024-12-25T11:18:23.145938 #36268] INFO -- : Updated copyright in ../../core/api/main/server/hook.rb
+I, [2024-12-25T11:18:23.145960 #36268] INFO -- : Processing file: ../../core/api/main/server.rb
+I, [2024-12-25T11:18:23.146270 #36268] INFO -- : Updated copyright in ../../core/api/main/server.rb
+I, [2024-12-25T11:18:23.146533 #36268] INFO -- : Processing file: ../../core/api/module.rb
+I, [2024-12-25T11:18:23.146705 #36268] INFO -- : Updated copyright in ../../core/api/module.rb
+I, [2024-12-25T11:18:23.146793 #36268] INFO -- : Processing file: ../../core/api/modules.rb
+I, [2024-12-25T11:18:23.147075 #36268] INFO -- : Updated copyright in ../../core/api/modules.rb
+I, [2024-12-25T11:18:23.147100 #36268] INFO -- : Processing file: ../../core/api.rb
+I, [2024-12-25T11:18:23.147351 #36268] INFO -- : Updated copyright in ../../core/api.rb
+I, [2024-12-25T11:18:23.147557 #36268] INFO -- : Processing file: ../../core/bootstrap.rb
+I, [2024-12-25T11:18:23.147775 #36268] INFO -- : Updated copyright in ../../core/bootstrap.rb
+I, [2024-12-25T11:18:23.147958 #36268] INFO -- : Processing file: ../../core/core.rb
+I, [2024-12-25T11:18:23.148147 #36268] INFO -- : Updated copyright in ../../core/core.rb
+I, [2024-12-25T11:18:23.148164 #36268] INFO -- : Processing file: ../../core/extension.rb
+I, [2024-12-25T11:18:23.148402 #36268] INFO -- : Updated copyright in ../../core/extension.rb
+I, [2024-12-25T11:18:23.148587 #36268] INFO -- : Processing file: ../../core/extensions.rb
+I, [2024-12-25T11:18:23.148827 #36268] INFO -- : Updated copyright in ../../core/extensions.rb
+I, [2024-12-25T11:18:23.148862 #36268] INFO -- : Processing file: ../../core/filters/base.rb
+I, [2024-12-25T11:18:23.149095 #36268] INFO -- : Updated copyright in ../../core/filters/base.rb
+I, [2024-12-25T11:18:23.149180 #36268] INFO -- : Processing file: ../../core/filters/browser.rb
+I, [2024-12-25T11:18:23.149365 #36268] INFO -- : Updated copyright in ../../core/filters/browser.rb
+I, [2024-12-25T11:18:23.149497 #36268] INFO -- : Processing file: ../../core/filters/command.rb
+I, [2024-12-25T11:18:23.149709 #36268] INFO -- : Updated copyright in ../../core/filters/command.rb
+I, [2024-12-25T11:18:23.149737 #36268] INFO -- : Processing file: ../../core/filters/http.rb
+I, [2024-12-25T11:18:23.149881 #36268] INFO -- : Updated copyright in ../../core/filters/http.rb
+I, [2024-12-25T11:18:23.149968 #36268] INFO -- : Processing file: ../../core/filters/page.rb
+I, [2024-12-25T11:18:23.150526 #36268] INFO -- : Updated copyright in ../../core/filters/page.rb
+I, [2024-12-25T11:18:23.150559 #36268] INFO -- : Processing file: ../../core/filters.rb
+I, [2024-12-25T11:18:23.150726 #36268] INFO -- : Updated copyright in ../../core/filters.rb
+I, [2024-12-25T11:18:23.150787 #36268] INFO -- : Processing file: ../../core/hbmanager.rb
+I, [2024-12-25T11:18:23.151059 #36268] INFO -- : Updated copyright in ../../core/hbmanager.rb
+I, [2024-12-25T11:18:23.151085 #36268] INFO -- : Processing file: ../../core/loader.rb
+I, [2024-12-25T11:18:23.151453 #36268] INFO -- : Updated copyright in ../../core/loader.rb
+I, [2024-12-25T11:18:23.151490 #36268] INFO -- : Processing file: ../../core/logger.rb
+I, [2024-12-25T11:18:23.151771 #36268] INFO -- : Updated copyright in ../../core/logger.rb
+I, [2024-12-25T11:18:23.151836 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/001_create_command_modules.rb
+W, [2024-12-25T11:18:23.151905 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/001_create_command_modules.rb
+I, [2024-12-25T11:18:23.151930 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/002_create_hooked_browsers.rb
+W, [2024-12-25T11:18:23.151973 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/002_create_hooked_browsers.rb
+I, [2024-12-25T11:18:23.151995 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/003_create_logs.rb
+W, [2024-12-25T11:18:23.152051 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/003_create_logs.rb
+I, [2024-12-25T11:18:23.152082 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/004_create_commands.rb
+W, [2024-12-25T11:18:23.152128 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/004_create_commands.rb
+I, [2024-12-25T11:18:23.152151 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/005_create_results.rb
+W, [2024-12-25T11:18:23.152208 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/005_create_results.rb
+I, [2024-12-25T11:18:23.152239 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/006_create_option_caches.rb
+W, [2024-12-25T11:18:23.152306 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/006_create_option_caches.rb
+I, [2024-12-25T11:18:23.152338 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/007_create_browser_details.rb
+W, [2024-12-25T11:18:23.152401 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/007_create_browser_details.rb
+I, [2024-12-25T11:18:23.152424 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/008_create_executions.rb
+W, [2024-12-25T11:18:23.152504 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/008_create_executions.rb
+I, [2024-12-25T11:18:23.152671 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/009_create_rules.rb
+W, [2024-12-25T11:18:23.152757 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/009_create_rules.rb
+I, [2024-12-25T11:18:23.152788 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/010_create_interceptor.rb
+W, [2024-12-25T11:18:23.152840 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/010_create_interceptor.rb
+I, [2024-12-25T11:18:23.152862 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/011_create_web_cloner.rb
+W, [2024-12-25T11:18:23.152917 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/011_create_web_cloner.rb
+I, [2024-12-25T11:18:23.152948 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/013_create_network_host.rb
+W, [2024-12-25T11:18:23.153041 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/013_create_network_host.rb
+I, [2024-12-25T11:18:23.153091 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/014_create_network_service.rb
+W, [2024-12-25T11:18:23.153136 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/014_create_network_service.rb
+I, [2024-12-25T11:18:23.153158 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/015_create_http.rb
+W, [2024-12-25T11:18:23.153221 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/015_create_http.rb
+I, [2024-12-25T11:18:23.153322 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/016_create_rtc_status.rb
+W, [2024-12-25T11:18:23.153377 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/016_create_rtc_status.rb
+I, [2024-12-25T11:18:23.153400 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/017_create_rtc_manage.rb
+W, [2024-12-25T11:18:23.153505 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/017_create_rtc_manage.rb
+I, [2024-12-25T11:18:23.153529 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/018_create_rtc_signal.rb
+W, [2024-12-25T11:18:23.153574 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/018_create_rtc_signal.rb
+I, [2024-12-25T11:18:23.153597 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/019_create_rtc_module_status.rb
+W, [2024-12-25T11:18:23.153644 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/019_create_rtc_module_status.rb
+I, [2024-12-25T11:18:23.153667 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/020_create_xssrays_detail.rb
+W, [2024-12-25T11:18:23.153706 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/020_create_xssrays_detail.rb
+I, [2024-12-25T11:18:23.153722 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/021_create_dns_rule.rb
+W, [2024-12-25T11:18:23.153752 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/021_create_dns_rule.rb
+I, [2024-12-25T11:18:23.153766 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/024_create_autoloader.rb
+W, [2024-12-25T11:18:23.153796 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/024_create_autoloader.rb
+I, [2024-12-25T11:18:23.153809 #36268] INFO -- : Processing file: ../../core/main/ar-migrations/025_create_xssrays_scan.rb
+W, [2024-12-25T11:18:23.153844 #36268] WARN -- : Copyright string not found in ../../core/main/ar-migrations/025_create_xssrays_scan.rb
+I, [2024-12-25T11:18:23.153858 #36268] INFO -- : Processing file: ../../core/main/autorun_engine/engine.rb
+I, [2024-12-25T11:18:23.154231 #36268] INFO -- : Updated copyright in ../../core/main/autorun_engine/engine.rb
+I, [2024-12-25T11:18:23.154249 #36268] INFO -- : Processing file: ../../core/main/autorun_engine/parser.rb
+I, [2024-12-25T11:18:23.154549 #36268] INFO -- : Updated copyright in ../../core/main/autorun_engine/parser.rb
+I, [2024-12-25T11:18:23.154637 #36268] INFO -- : Processing file: ../../core/main/autorun_engine/rule_loader.rb
+I, [2024-12-25T11:18:23.154821 #36268] INFO -- : Updated copyright in ../../core/main/autorun_engine/rule_loader.rb
+I, [2024-12-25T11:18:23.154899 #36268] INFO -- : Processing file: ../../core/main/client/are.js
+I, [2024-12-25T11:18:23.155035 #36268] INFO -- : Updated copyright in ../../core/main/client/are.js
+I, [2024-12-25T11:18:23.155052 #36268] INFO -- : Processing file: ../../core/main/client/beef.js
+I, [2024-12-25T11:18:23.155288 #36268] INFO -- : Updated copyright in ../../core/main/client/beef.js
+I, [2024-12-25T11:18:23.155374 #36268] INFO -- : Processing file: ../../core/main/client/browser/cookie.js
+I, [2024-12-25T11:18:23.155681 #36268] INFO -- : Updated copyright in ../../core/main/client/browser/cookie.js
+I, [2024-12-25T11:18:23.155758 #36268] INFO -- : Processing file: ../../core/main/client/browser/popup.js
+I, [2024-12-25T11:18:23.155915 #36268] INFO -- : Updated copyright in ../../core/main/client/browser/popup.js
+I, [2024-12-25T11:18:23.155992 #36268] INFO -- : Processing file: ../../core/main/client/browser.js
+I, [2024-12-25T11:18:23.156782 #36268] INFO -- : Updated copyright in ../../core/main/client/browser.js
+I, [2024-12-25T11:18:23.156804 #36268] INFO -- : Processing file: ../../core/main/client/dom.js
+I, [2024-12-25T11:18:23.157054 #36268] INFO -- : Updated copyright in ../../core/main/client/dom.js
+I, [2024-12-25T11:18:23.157214 #36268] INFO -- : Processing file: ../../core/main/client/encode/base64.js
+I, [2024-12-25T11:18:23.157442 #36268] INFO -- : Updated copyright in ../../core/main/client/encode/base64.js
+I, [2024-12-25T11:18:23.157622 #36268] INFO -- : Processing file: ../../core/main/client/encode/json.js
+I, [2024-12-25T11:18:23.157797 #36268] INFO -- : Updated copyright in ../../core/main/client/encode/json.js
+I, [2024-12-25T11:18:23.157824 #36268] INFO -- : Processing file: ../../core/main/client/geolocation.js
+I, [2024-12-25T11:18:23.158197 #36268] INFO -- : Updated copyright in ../../core/main/client/geolocation.js
+I, [2024-12-25T11:18:23.158219 #36268] INFO -- : Processing file: ../../core/main/client/hardware.js
+I, [2024-12-25T11:18:23.158626 #36268] INFO -- : Updated copyright in ../../core/main/client/hardware.js
+I, [2024-12-25T11:18:23.158767 #36268] INFO -- : Processing file: ../../core/main/client/init.js
+I, [2024-12-25T11:18:23.159057 #36268] INFO -- : Updated copyright in ../../core/main/client/init.js
+I, [2024-12-25T11:18:23.159234 #36268] INFO -- : Processing file: ../../core/main/client/lib/bowser-2.11.0.min.js
+W, [2024-12-25T11:18:23.159406 #36268] WARN -- : Copyright string not found in ../../core/main/client/lib/bowser-2.11.0.min.js
+I, [2024-12-25T11:18:23.159518 #36268] INFO -- : Processing file: ../../core/main/client/lib/evercookie.js
+I, [2024-12-25T11:18:23.159856 #36268] INFO -- : Updated copyright in ../../core/main/client/lib/evercookie.js
+I, [2024-12-25T11:18:23.159966 #36268] INFO -- : Processing file: ../../core/main/client/lib/jquery-1.12.4.min.js
+W, [2024-12-25T11:18:23.160223 #36268] WARN -- : Copyright string not found in ../../core/main/client/lib/jquery-1.12.4.min.js
+I, [2024-12-25T11:18:23.160249 #36268] INFO -- : Processing file: ../../core/main/client/lib/jquery-migrate-1.4.1.js
+W, [2024-12-25T11:18:23.160376 #36268] WARN -- : Copyright string not found in ../../core/main/client/lib/jquery-migrate-1.4.1.js
+I, [2024-12-25T11:18:23.160401 #36268] INFO -- : Processing file: ../../core/main/client/lib/jquery.blockUI.js
+W, [2024-12-25T11:18:23.160692 #36268] WARN -- : Copyright string not found in ../../core/main/client/lib/jquery.blockUI.js
+I, [2024-12-25T11:18:23.160729 #36268] INFO -- : Processing file: ../../core/main/client/lib/json2.js
+W, [2024-12-25T11:18:23.160824 #36268] WARN -- : Copyright string not found in ../../core/main/client/lib/json2.js
+I, [2024-12-25T11:18:23.160849 #36268] INFO -- : Processing file: ../../core/main/client/lib/mdetect.js
+W, [2024-12-25T11:18:23.160923 #36268] WARN -- : Copyright string not found in ../../core/main/client/lib/mdetect.js
+I, [2024-12-25T11:18:23.160946 #36268] INFO -- : Processing file: ../../core/main/client/lib/platform.js
+W, [2024-12-25T11:18:23.161027 #36268] WARN -- : Copyright string not found in ../../core/main/client/lib/platform.js
+I, [2024-12-25T11:18:23.161050 #36268] INFO -- : Processing file: ../../core/main/client/lib/webrtcadapter.js
+W, [2024-12-25T11:18:23.161150 #36268] WARN -- : Copyright string not found in ../../core/main/client/lib/webrtcadapter.js
+I, [2024-12-25T11:18:23.161225 #36268] INFO -- : Processing file: ../../core/main/client/logger.js
+I, [2024-12-25T11:18:23.161467 #36268] INFO -- : Updated copyright in ../../core/main/client/logger.js
+I, [2024-12-25T11:18:23.161653 #36268] INFO -- : Processing file: ../../core/main/client/mitb.js
+I, [2024-12-25T11:18:23.161914 #36268] INFO -- : Updated copyright in ../../core/main/client/mitb.js
+I, [2024-12-25T11:18:23.162009 #36268] INFO -- : Processing file: ../../core/main/client/net/connection.js
+I, [2024-12-25T11:18:23.162325 #36268] INFO -- : Updated copyright in ../../core/main/client/net/connection.js
+I, [2024-12-25T11:18:23.162377 #36268] INFO -- : Processing file: ../../core/main/client/net/cors.js
+W, [2024-12-25T11:18:23.162532 #36268] WARN -- : Copyright string not found in ../../core/main/client/net/cors.js
+I, [2024-12-25T11:18:23.162559 #36268] INFO -- : Processing file: ../../core/main/client/net/dns.js
+I, [2024-12-25T11:18:23.162860 #36268] INFO -- : Updated copyright in ../../core/main/client/net/dns.js
+I, [2024-12-25T11:18:23.162894 #36268] INFO -- : Processing file: ../../core/main/client/net/local.js
+I, [2024-12-25T11:18:23.163063 #36268] INFO -- : Updated copyright in ../../core/main/client/net/local.js
+I, [2024-12-25T11:18:23.163148 #36268] INFO -- : Processing file: ../../core/main/client/net/portscanner.js
+I, [2024-12-25T11:18:23.163286 #36268] INFO -- : Updated copyright in ../../core/main/client/net/portscanner.js
+I, [2024-12-25T11:18:23.163377 #36268] INFO -- : Processing file: ../../core/main/client/net/requester.js
+I, [2024-12-25T11:18:23.163653 #36268] INFO -- : Updated copyright in ../../core/main/client/net/requester.js
+I, [2024-12-25T11:18:23.163686 #36268] INFO -- : Processing file: ../../core/main/client/net/xssrays.js
+W, [2024-12-25T11:18:23.163803 #36268] WARN -- : Copyright string not found in ../../core/main/client/net/xssrays.js
+I, [2024-12-25T11:18:23.163833 #36268] INFO -- : Processing file: ../../core/main/client/net.js
+I, [2024-12-25T11:18:23.164041 #36268] INFO -- : Updated copyright in ../../core/main/client/net.js
+I, [2024-12-25T11:18:23.164138 #36268] INFO -- : Processing file: ../../core/main/client/os.js
+I, [2024-12-25T11:18:23.164373 #36268] INFO -- : Updated copyright in ../../core/main/client/os.js
+I, [2024-12-25T11:18:23.164456 #36268] INFO -- : Processing file: ../../core/main/client/session.js
+I, [2024-12-25T11:18:23.164720 #36268] INFO -- : Updated copyright in ../../core/main/client/session.js
+I, [2024-12-25T11:18:23.164753 #36268] INFO -- : Processing file: ../../core/main/client/timeout.js
+I, [2024-12-25T11:18:23.164962 #36268] INFO -- : Updated copyright in ../../core/main/client/timeout.js
+I, [2024-12-25T11:18:23.165007 #36268] INFO -- : Processing file: ../../core/main/client/updater.js
+I, [2024-12-25T11:18:23.165218 #36268] INFO -- : Updated copyright in ../../core/main/client/updater.js
+I, [2024-12-25T11:18:23.165250 #36268] INFO -- : Processing file: ../../core/main/client/webrtc.js
+I, [2024-12-25T11:18:23.165534 #36268] INFO -- : Updated copyright in ../../core/main/client/webrtc.js
+I, [2024-12-25T11:18:23.165627 #36268] INFO -- : Processing file: ../../core/main/client/websocket.js
+I, [2024-12-25T11:18:23.165799 #36268] INFO -- : Updated copyright in ../../core/main/client/websocket.js
+I, [2024-12-25T11:18:23.165891 #36268] INFO -- : Processing file: ../../core/main/command.rb
+I, [2024-12-25T11:18:23.166048 #36268] INFO -- : Updated copyright in ../../core/main/command.rb
+I, [2024-12-25T11:18:23.166137 #36268] INFO -- : Processing file: ../../core/main/configuration.rb
+I, [2024-12-25T11:18:23.166304 #36268] INFO -- : Updated copyright in ../../core/main/configuration.rb
+I, [2024-12-25T11:18:23.166387 #36268] INFO -- : Processing file: ../../core/main/console/banners.rb
+I, [2024-12-25T11:18:23.166813 #36268] INFO -- : Updated copyright in ../../core/main/console/banners.rb
+I, [2024-12-25T11:18:23.166848 #36268] INFO -- : Processing file: ../../core/main/console/commandline.rb
+I, [2024-12-25T11:18:23.167081 #36268] INFO -- : Updated copyright in ../../core/main/console/commandline.rb
+I, [2024-12-25T11:18:23.167119 #36268] INFO -- : Processing file: ../../core/main/constants/browsers.rb
+I, [2024-12-25T11:18:23.167384 #36268] INFO -- : Updated copyright in ../../core/main/constants/browsers.rb
+I, [2024-12-25T11:18:23.167565 #36268] INFO -- : Processing file: ../../core/main/constants/commandmodule.rb
+I, [2024-12-25T11:18:23.167952 #36268] INFO -- : Updated copyright in ../../core/main/constants/commandmodule.rb
+I, [2024-12-25T11:18:23.168091 #36268] INFO -- : Processing file: ../../core/main/constants/hardware.rb
+I, [2024-12-25T11:18:23.168510 #36268] INFO -- : Updated copyright in ../../core/main/constants/hardware.rb
+I, [2024-12-25T11:18:23.168573 #36268] INFO -- : Processing file: ../../core/main/constants/os.rb
+I, [2024-12-25T11:18:23.168902 #36268] INFO -- : Updated copyright in ../../core/main/constants/os.rb
+I, [2024-12-25T11:18:23.168952 #36268] INFO -- : Processing file: ../../core/main/crypto.rb
+I, [2024-12-25T11:18:23.169219 #36268] INFO -- : Updated copyright in ../../core/main/crypto.rb
+I, [2024-12-25T11:18:23.169253 #36268] INFO -- : Processing file: ../../core/main/geoip.rb
+I, [2024-12-25T11:18:23.169629 #36268] INFO -- : Updated copyright in ../../core/main/geoip.rb
+I, [2024-12-25T11:18:23.169673 #36268] INFO -- : Processing file: ../../core/main/handlers/browserdetails.rb
+I, [2024-12-25T11:18:23.170112 #36268] INFO -- : Updated copyright in ../../core/main/handlers/browserdetails.rb
+I, [2024-12-25T11:18:23.170152 #36268] INFO -- : Processing file: ../../core/main/handlers/commands.rb
+I, [2024-12-25T11:18:23.170515 #36268] INFO -- : Updated copyright in ../../core/main/handlers/commands.rb
+I, [2024-12-25T11:18:23.170553 #36268] INFO -- : Processing file: ../../core/main/handlers/hookedbrowsers.rb
+I, [2024-12-25T11:18:23.170952 #36268] INFO -- : Updated copyright in ../../core/main/handlers/hookedbrowsers.rb
+I, [2024-12-25T11:18:23.171004 #36268] INFO -- : Processing file: ../../core/main/handlers/modules/beefjs.rb
+I, [2024-12-25T11:18:23.171939 #36268] INFO -- : Updated copyright in ../../core/main/handlers/modules/beefjs.rb
+I, [2024-12-25T11:18:23.171981 #36268] INFO -- : Processing file: ../../core/main/handlers/modules/command.rb
+I, [2024-12-25T11:18:23.172521 #36268] INFO -- : Updated copyright in ../../core/main/handlers/modules/command.rb
+I, [2024-12-25T11:18:23.172586 #36268] INFO -- : Processing file: ../../core/main/handlers/modules/legacybeefjs.rb
+I, [2024-12-25T11:18:23.173262 #36268] INFO -- : Updated copyright in ../../core/main/handlers/modules/legacybeefjs.rb
+I, [2024-12-25T11:18:23.173359 #36268] INFO -- : Processing file: ../../core/main/handlers/modules/multistagebeefjs.rb
+I, [2024-12-25T11:18:23.174078 #36268] INFO -- : Updated copyright in ../../core/main/handlers/modules/multistagebeefjs.rb
+I, [2024-12-25T11:18:23.174158 #36268] INFO -- : Processing file: ../../core/main/logger.rb
+I, [2024-12-25T11:18:23.174581 #36268] INFO -- : Updated copyright in ../../core/main/logger.rb
+I, [2024-12-25T11:18:23.174644 #36268] INFO -- : Processing file: ../../core/main/migration.rb
+I, [2024-12-25T11:18:23.174988 #36268] INFO -- : Updated copyright in ../../core/main/migration.rb
+I, [2024-12-25T11:18:23.175021 #36268] INFO -- : Processing file: ../../core/main/model.rb
+I, [2024-12-25T11:18:23.175287 #36268] INFO -- : Updated copyright in ../../core/main/model.rb
+I, [2024-12-25T11:18:23.175353 #36268] INFO -- : Processing file: ../../core/main/models/browserdetails.rb
+I, [2024-12-25T11:18:23.175778 #36268] INFO -- : Updated copyright in ../../core/main/models/browserdetails.rb
+I, [2024-12-25T11:18:23.175819 #36268] INFO -- : Processing file: ../../core/main/models/command.rb
+I, [2024-12-25T11:18:23.176323 #36268] INFO -- : Updated copyright in ../../core/main/models/command.rb
+I, [2024-12-25T11:18:23.176385 #36268] INFO -- : Processing file: ../../core/main/models/commandmodule.rb
+I, [2024-12-25T11:18:23.176791 #36268] INFO -- : Updated copyright in ../../core/main/models/commandmodule.rb
+I, [2024-12-25T11:18:23.176858 #36268] INFO -- : Processing file: ../../core/main/models/execution.rb
+I, [2024-12-25T11:18:23.177020 #36268] INFO -- : Updated copyright in ../../core/main/models/execution.rb
+I, [2024-12-25T11:18:23.177117 #36268] INFO -- : Processing file: ../../core/main/models/hookedbrowser.rb
+I, [2024-12-25T11:18:23.177453 #36268] INFO -- : Updated copyright in ../../core/main/models/hookedbrowser.rb
+I, [2024-12-25T11:18:23.177489 #36268] INFO -- : Processing file: ../../core/main/models/legacybrowseruseragents.rb
+I, [2024-12-25T11:18:23.177835 #36268] INFO -- : Updated copyright in ../../core/main/models/legacybrowseruseragents.rb
+I, [2024-12-25T11:18:23.177889 #36268] INFO -- : Processing file: ../../core/main/models/log.rb
+I, [2024-12-25T11:18:23.178088 #36268] INFO -- : Updated copyright in ../../core/main/models/log.rb
+I, [2024-12-25T11:18:23.178181 #36268] INFO -- : Processing file: ../../core/main/models/optioncache.rb
+I, [2024-12-25T11:18:23.178393 #36268] INFO -- : Updated copyright in ../../core/main/models/optioncache.rb
+I, [2024-12-25T11:18:23.178534 #36268] INFO -- : Processing file: ../../core/main/models/result.rb
+I, [2024-12-25T11:18:23.178863 #36268] INFO -- : Updated copyright in ../../core/main/models/result.rb
+I, [2024-12-25T11:18:23.178897 #36268] INFO -- : Processing file: ../../core/main/models/rule.rb
+I, [2024-12-25T11:18:23.179050 #36268] INFO -- : Updated copyright in ../../core/main/models/rule.rb
+I, [2024-12-25T11:18:23.179156 #36268] INFO -- : Processing file: ../../core/main/network_stack/api.rb
+I, [2024-12-25T11:18:23.179385 #36268] INFO -- : Updated copyright in ../../core/main/network_stack/api.rb
+I, [2024-12-25T11:18:23.179466 #36268] INFO -- : Processing file: ../../core/main/network_stack/assethandler.rb
+I, [2024-12-25T11:18:23.179745 #36268] INFO -- : Updated copyright in ../../core/main/network_stack/assethandler.rb
+I, [2024-12-25T11:18:23.179781 #36268] INFO -- : Processing file: ../../core/main/network_stack/handlers/dynamicreconstruction.rb
+I, [2024-12-25T11:18:23.180016 #36268] INFO -- : Updated copyright in ../../core/main/network_stack/handlers/dynamicreconstruction.rb
+I, [2024-12-25T11:18:23.180051 #36268] INFO -- : Processing file: ../../core/main/network_stack/handlers/raw.rb
+I, [2024-12-25T11:18:23.180262 #36268] INFO -- : Updated copyright in ../../core/main/network_stack/handlers/raw.rb
+I, [2024-12-25T11:18:23.180295 #36268] INFO -- : Processing file: ../../core/main/network_stack/handlers/redirector.rb
+I, [2024-12-25T11:18:23.180611 #36268] INFO -- : Updated copyright in ../../core/main/network_stack/handlers/redirector.rb
+I, [2024-12-25T11:18:23.180655 #36268] INFO -- : Processing file: ../../core/main/network_stack/websocket/websocket.rb
+I, [2024-12-25T11:18:23.180918 #36268] INFO -- : Updated copyright in ../../core/main/network_stack/websocket/websocket.rb
+I, [2024-12-25T11:18:23.181037 #36268] INFO -- : Processing file: ../../core/main/rest/api.rb
+I, [2024-12-25T11:18:23.181774 #36268] INFO -- : Updated copyright in ../../core/main/rest/api.rb
+I, [2024-12-25T11:18:23.181850 #36268] INFO -- : Processing file: ../../core/main/rest/handlers/admin.rb
+I, [2024-12-25T11:18:23.182324 #36268] INFO -- : Updated copyright in ../../core/main/rest/handlers/admin.rb
+I, [2024-12-25T11:18:23.182509 #36268] INFO -- : Processing file: ../../core/main/rest/handlers/autorun_engine.rb
+I, [2024-12-25T11:18:23.183106 #36268] INFO -- : Updated copyright in ../../core/main/rest/handlers/autorun_engine.rb
+I, [2024-12-25T11:18:23.183196 #36268] INFO -- : Processing file: ../../core/main/rest/handlers/browserdetails.rb
+I, [2024-12-25T11:18:23.183934 #36268] INFO -- : Updated copyright in ../../core/main/rest/handlers/browserdetails.rb
+I, [2024-12-25T11:18:23.183981 #36268] INFO -- : Processing file: ../../core/main/rest/handlers/categories.rb
+I, [2024-12-25T11:18:23.184252 #36268] INFO -- : Updated copyright in ../../core/main/rest/handlers/categories.rb
+I, [2024-12-25T11:18:23.184287 #36268] INFO -- : Processing file: ../../core/main/rest/handlers/hookedbrowsers.rb
+I, [2024-12-25T11:18:23.184624 #36268] INFO -- : Updated copyright in ../../core/main/rest/handlers/hookedbrowsers.rb
+I, [2024-12-25T11:18:23.184659 #36268] INFO -- : Processing file: ../../core/main/rest/handlers/logs.rb
+I, [2024-12-25T11:18:23.184929 #36268] INFO -- : Updated copyright in ../../core/main/rest/handlers/logs.rb
+I, [2024-12-25T11:18:23.185044 #36268] INFO -- : Processing file: ../../core/main/rest/handlers/modules.rb
+I, [2024-12-25T11:18:23.185314 #36268] INFO -- : Updated copyright in ../../core/main/rest/handlers/modules.rb
+I, [2024-12-25T11:18:23.185454 #36268] INFO -- : Processing file: ../../core/main/rest/handlers/server.rb
+I, [2024-12-25T11:18:23.185749 #36268] INFO -- : Updated copyright in ../../core/main/rest/handlers/server.rb
+I, [2024-12-25T11:18:23.185821 #36268] INFO -- : Processing file: ../../core/main/router/api.rb
+I, [2024-12-25T11:18:23.186119 #36268] INFO -- : Updated copyright in ../../core/main/router/api.rb
+I, [2024-12-25T11:18:23.186191 #36268] INFO -- : Processing file: ../../core/main/router/router.rb
+I, [2024-12-25T11:18:23.186606 #36268] INFO -- : Updated copyright in ../../core/main/router/router.rb
+I, [2024-12-25T11:18:23.186642 #36268] INFO -- : Processing file: ../../core/main/server.rb
+I, [2024-12-25T11:18:23.186930 #36268] INFO -- : Updated copyright in ../../core/main/server.rb
+I, [2024-12-25T11:18:23.186965 #36268] INFO -- : Processing file: ../../core/module.rb
+I, [2024-12-25T11:18:23.187351 #36268] INFO -- : Updated copyright in ../../core/module.rb
+I, [2024-12-25T11:18:23.187567 #36268] INFO -- : Processing file: ../../core/modules.rb
+I, [2024-12-25T11:18:23.187907 #36268] INFO -- : Updated copyright in ../../core/modules.rb
+I, [2024-12-25T11:18:23.187945 #36268] INFO -- : Processing file: ../../core/ruby/hash.rb
+I, [2024-12-25T11:18:23.188168 #36268] INFO -- : Updated copyright in ../../core/ruby/hash.rb
+I, [2024-12-25T11:18:23.188203 #36268] INFO -- : Processing file: ../../core/ruby/module.rb
+I, [2024-12-25T11:18:23.188355 #36268] INFO -- : Updated copyright in ../../core/ruby/module.rb
+I, [2024-12-25T11:18:23.188487 #36268] INFO -- : Processing file: ../../core/ruby/print.rb
+I, [2024-12-25T11:18:23.188622 #36268] INFO -- : Updated copyright in ../../core/ruby/print.rb
+I, [2024-12-25T11:18:23.188712 #36268] INFO -- : Processing file: ../../core/ruby/security.rb
+I, [2024-12-25T11:18:23.188847 #36268] INFO -- : Updated copyright in ../../core/ruby/security.rb
+I, [2024-12-25T11:18:23.188952 #36268] INFO -- : Processing file: ../../core/ruby/string.rb
+I, [2024-12-25T11:18:23.189181 #36268] INFO -- : Updated copyright in ../../core/ruby/string.rb
+I, [2024-12-25T11:18:23.189214 #36268] INFO -- : Processing file: ../../core/ruby.rb
+I, [2024-12-25T11:18:23.189343 #36268] INFO -- : Updated copyright in ../../core/ruby.rb
+I, [2024-12-25T11:18:23.189478 #36268] INFO -- : Processing file: ../../core/settings.rb
+I, [2024-12-25T11:18:23.189629 #36268] INFO -- : Updated copyright in ../../core/settings.rb
+I, [2024-12-25T11:18:23.189716 #36268] INFO -- : Processing file: ../../docs/scripts/linenumber.js
+W, [2024-12-25T11:18:23.189793 #36268] WARN -- : Copyright string not found in ../../docs/scripts/linenumber.js
+I, [2024-12-25T11:18:23.189817 #36268] INFO -- : Processing file: ../../docs/scripts/prettify/lang-css.js
+W, [2024-12-25T11:18:23.189864 #36268] WARN -- : Copyright string not found in ../../docs/scripts/prettify/lang-css.js
+I, [2024-12-25T11:18:23.189887 #36268] INFO -- : Processing file: ../../docs/scripts/prettify/prettify.js
+W, [2024-12-25T11:18:23.189998 #36268] WARN -- : Copyright string not found in ../../docs/scripts/prettify/prettify.js
+I, [2024-12-25T11:18:23.190023 #36268] INFO -- : Processing file: ../../extensions/admin_ui/api/handler.rb
+I, [2024-12-25T11:18:23.190205 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/api/handler.rb
+I, [2024-12-25T11:18:23.190292 #36268] INFO -- : Processing file: ../../extensions/admin_ui/classes/httpcontroller.rb
+I, [2024-12-25T11:18:23.190545 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/classes/httpcontroller.rb
+I, [2024-12-25T11:18:23.190571 #36268] INFO -- : Processing file: ../../extensions/admin_ui/classes/session.rb
+I, [2024-12-25T11:18:23.190826 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/classes/session.rb
+I, [2024-12-25T11:18:23.190864 #36268] INFO -- : Processing file: ../../extensions/admin_ui/config.yaml
+W, [2024-12-25T11:18:23.191227 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/admin_ui/config.yaml
+I, [2024-12-25T11:18:23.191248 #36268] INFO -- : Processing file: ../../extensions/admin_ui/constants/icons.rb
+I, [2024-12-25T11:18:23.191610 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/constants/icons.rb
+I, [2024-12-25T11:18:23.191639 #36268] INFO -- : Processing file: ../../extensions/admin_ui/controllers/authentication/authentication.rb
+I, [2024-12-25T11:18:23.191824 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/controllers/authentication/authentication.rb
+I, [2024-12-25T11:18:23.191843 #36268] INFO -- : Processing file: ../../extensions/admin_ui/controllers/modules/modules.rb
+I, [2024-12-25T11:18:23.192225 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/controllers/modules/modules.rb
+I, [2024-12-25T11:18:23.192325 #36268] INFO -- : Processing file: ../../extensions/admin_ui/controllers/panel/panel.rb
+I, [2024-12-25T11:18:23.192654 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/controllers/panel/panel.rb
+I, [2024-12-25T11:18:23.192683 #36268] INFO -- : Processing file: ../../extensions/admin_ui/extension.rb
+I, [2024-12-25T11:18:23.192865 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/extension.rb
+I, [2024-12-25T11:18:23.192966 #36268] INFO -- : Processing file: ../../extensions/admin_ui/handlers/ui.rb
+I, [2024-12-25T11:18:23.193130 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/handlers/ui.rb
+I, [2024-12-25T11:18:23.193247 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/esapi/Class.create.js
+I, [2024-12-25T11:18:23.193541 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/esapi/Class.create.js
+I, [2024-12-25T11:18:23.193560 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/esapi/jquery-3.3.1.min.js
+W, [2024-12-25T11:18:23.193789 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript/esapi/jquery-3.3.1.min.js
+I, [2024-12-25T11:18:23.193806 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/esapi/jquery-encoder-0.1.0.js
+W, [2024-12-25T11:18:23.193884 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript/esapi/jquery-encoder-0.1.0.js
+I, [2024-12-25T11:18:23.193900 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ext-all.js
+W, [2024-12-25T11:18:23.196478 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript/ext-all.js
+I, [2024-12-25T11:18:23.196508 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ext-base.js
+W, [2024-12-25T11:18:23.196626 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript/ext-base.js
+I, [2024-12-25T11:18:23.196643 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/authentication.js
+I, [2024-12-25T11:18:23.196892 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/authentication.js
+I, [2024-12-25T11:18:23.196910 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/common/beef_common.js
+I, [2024-12-25T11:18:23.197128 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/common/beef_common.js
+I, [2024-12-25T11:18:23.197224 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/AutoRunModuleForm.js
+W, [2024-12-25T11:18:23.197291 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript/ui/panel/AutoRunModuleForm.js
+I, [2024-12-25T11:18:23.197309 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/AutoRunRuleForm.js
+W, [2024-12-25T11:18:23.197373 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript/ui/panel/AutoRunRuleForm.js
+I, [2024-12-25T11:18:23.197390 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/AutoRunTab.js
+W, [2024-12-25T11:18:23.197576 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript/ui/panel/AutoRunTab.js
+I, [2024-12-25T11:18:23.197617 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js
+I, [2024-12-25T11:18:23.197843 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/BrowserDetailsDataGrid.js
+I, [2024-12-25T11:18:23.197942 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/HooksTab.js
+I, [2024-12-25T11:18:23.198141 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/HooksTab.js
+I, [2024-12-25T11:18:23.198228 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/Logout.js
+I, [2024-12-25T11:18:23.198373 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/Logout.js
+I, [2024-12-25T11:18:23.198400 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js
+I, [2024-12-25T11:18:23.198830 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.js
+I, [2024-12-25T11:18:23.198878 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/MainPanel.js
+I, [2024-12-25T11:18:23.199129 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/MainPanel.js
+I, [2024-12-25T11:18:23.199179 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/ModuleSearching.js
+W, [2024-12-25T11:18:23.199338 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript/ui/panel/ModuleSearching.js
+I, [2024-12-25T11:18:23.199394 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js
+I, [2024-12-25T11:18:23.199942 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.js
+I, [2024-12-25T11:18:23.200041 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js
+I, [2024-12-25T11:18:23.202374 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/PanelViewer.js
+I, [2024-12-25T11:18:23.202467 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
+I, [2024-12-25T11:18:23.202841 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.js
+I, [2024-12-25T11:18:23.202893 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js
+I, [2024-12-25T11:18:23.203163 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.js
+I, [2024-12-25T11:18:23.203270 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js
+I, [2024-12-25T11:18:23.203683 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/ZombieTab.js
+I, [2024-12-25T11:18:23.203753 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js
+I, [2024-12-25T11:18:23.204060 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.js
+I, [2024-12-25T11:18:23.204174 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js
+I, [2024-12-25T11:18:23.204359 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.js
+I, [2024-12-25T11:18:23.204507 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/common.js
+I, [2024-12-25T11:18:23.204690 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/common.js
+I, [2024-12-25T11:18:23.204723 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js
+I, [2024-12-25T11:18:23.204933 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.js
+I, [2024-12-25T11:18:23.205054 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js
+I, [2024-12-25T11:18:23.205271 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.js
+I, [2024-12-25T11:18:23.205306 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js
+I, [2024-12-25T11:18:23.205574 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.js
+I, [2024-12-25T11:18:23.205706 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js
+I, [2024-12-25T11:18:23.206157 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.js
+I, [2024-12-25T11:18:23.206197 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js
+I, [2024-12-25T11:18:23.206617 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.js
+I, [2024-12-25T11:18:23.206653 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js
+I, [2024-12-25T11:18:23.206880 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.js
+I, [2024-12-25T11:18:23.206982 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js
+I, [2024-12-25T11:18:23.207209 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.js
+I, [2024-12-25T11:18:23.207245 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js
+I, [2024-12-25T11:18:23.207583 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.js
+I, [2024-12-25T11:18:23.207621 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ux/PagingStore.js
+I, [2024-12-25T11:18:23.207822 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ux/PagingStore.js
+I, [2024-12-25T11:18:23.207916 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ux/StatusBar.js
+I, [2024-12-25T11:18:23.208099 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ux/StatusBar.js
+I, [2024-12-25T11:18:23.208204 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/ux/TabCloseMenu.js
+I, [2024-12-25T11:18:23.208383 #36268] INFO -- : Updated copyright in ../../extensions/admin_ui/media/javascript/ux/TabCloseMenu.js
+I, [2024-12-25T11:18:23.208529 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/vis.js
+E, [2024-12-25T11:18:23.208631 #36268] ERROR -- : Error processing file ../../extensions/admin_ui/media/javascript/vis.js: Is a directory @ io_fread - ../../extensions/admin_ui/media/javascript/vis.js
+I, [2024-12-25T11:18:23.208656 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript/vis.js/vis.min.js
+W, [2024-12-25T11:18:23.210110 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript/vis.js/vis.min.js
+I, [2024-12-25T11:18:23.210147 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript-min/web_ui_all.js
+W, [2024-12-25T11:18:23.210622 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript-min/web_ui_all.js
+I, [2024-12-25T11:18:23.210650 #36268] INFO -- : Processing file: ../../extensions/admin_ui/media/javascript-min/web_ui_auth.js
+W, [2024-12-25T11:18:23.210758 #36268] WARN -- : Copyright string not found in ../../extensions/admin_ui/media/javascript-min/web_ui_auth.js
+I, [2024-12-25T11:18:23.210791 #36268] INFO -- : Processing file: ../../extensions/autoloader/config.yaml
+W, [2024-12-25T11:18:23.210999 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/autoloader/config.yaml
+I, [2024-12-25T11:18:23.211025 #36268] INFO -- : Processing file: ../../extensions/autoloader/extension.rb
+I, [2024-12-25T11:18:23.211275 #36268] INFO -- : Updated copyright in ../../extensions/autoloader/extension.rb
+I, [2024-12-25T11:18:23.211381 #36268] INFO -- : Processing file: ../../extensions/autoloader/model.rb
+I, [2024-12-25T11:18:23.211704 #36268] INFO -- : Updated copyright in ../../extensions/autoloader/model.rb
+I, [2024-12-25T11:18:23.211750 #36268] INFO -- : Processing file: ../../extensions/customhook/api.rb
+I, [2024-12-25T11:18:23.211918 #36268] INFO -- : Updated copyright in ../../extensions/customhook/api.rb
+I, [2024-12-25T11:18:23.212014 #36268] INFO -- : Processing file: ../../extensions/customhook/config.yaml
+W, [2024-12-25T11:18:23.212275 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/customhook/config.yaml
+I, [2024-12-25T11:18:23.212301 #36268] INFO -- : Processing file: ../../extensions/customhook/extension.rb
+I, [2024-12-25T11:18:23.212647 #36268] INFO -- : Updated copyright in ../../extensions/customhook/extension.rb
+I, [2024-12-25T11:18:23.212686 #36268] INFO -- : Processing file: ../../extensions/customhook/handler.rb
+I, [2024-12-25T11:18:23.212871 #36268] INFO -- : Updated copyright in ../../extensions/customhook/handler.rb
+I, [2024-12-25T11:18:23.212969 #36268] INFO -- : Processing file: ../../extensions/demos/api.rb
+I, [2024-12-25T11:18:23.213140 #36268] INFO -- : Updated copyright in ../../extensions/demos/api.rb
+I, [2024-12-25T11:18:23.213234 #36268] INFO -- : Processing file: ../../extensions/demos/config.yaml
+W, [2024-12-25T11:18:23.213482 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/demos/config.yaml
+I, [2024-12-25T11:18:23.213519 #36268] INFO -- : Processing file: ../../extensions/demos/extension.rb
+I, [2024-12-25T11:18:23.213722 #36268] INFO -- : Updated copyright in ../../extensions/demos/extension.rb
+I, [2024-12-25T11:18:23.213819 #36268] INFO -- : Processing file: ../../extensions/demos/handler.rb
+I, [2024-12-25T11:18:23.214003 #36268] INFO -- : Updated copyright in ../../extensions/demos/handler.rb
+I, [2024-12-25T11:18:23.214127 #36268] INFO -- : Processing file: ../../extensions/demos/html/butcher/jquery-1.12.4.min.js
+W, [2024-12-25T11:18:23.214337 #36268] WARN -- : Copyright string not found in ../../extensions/demos/html/butcher/jquery-1.12.4.min.js
+I, [2024-12-25T11:18:23.214363 #36268] INFO -- : Processing file: ../../extensions/dns/api.rb
+I, [2024-12-25T11:18:23.214589 #36268] INFO -- : Updated copyright in ../../extensions/dns/api.rb
+I, [2024-12-25T11:18:23.214621 #36268] INFO -- : Processing file: ../../extensions/dns/config.yaml
+W, [2024-12-25T11:18:23.215015 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/dns/config.yaml
+I, [2024-12-25T11:18:23.215041 #36268] INFO -- : Processing file: ../../extensions/dns/dns.rb
+I, [2024-12-25T11:18:23.215263 #36268] INFO -- : Updated copyright in ../../extensions/dns/dns.rb
+I, [2024-12-25T11:18:23.215281 #36268] INFO -- : Processing file: ../../extensions/dns/extension.rb
+I, [2024-12-25T11:18:23.215621 #36268] INFO -- : Updated copyright in ../../extensions/dns/extension.rb
+I, [2024-12-25T11:18:23.215656 #36268] INFO -- : Processing file: ../../extensions/dns/logger.rb
+I, [2024-12-25T11:18:23.215888 #36268] INFO -- : Updated copyright in ../../extensions/dns/logger.rb
+I, [2024-12-25T11:18:23.216083 #36268] INFO -- : Processing file: ../../extensions/dns/model.rb
+I, [2024-12-25T11:18:23.216986 #36268] INFO -- : Updated copyright in ../../extensions/dns/model.rb
+I, [2024-12-25T11:18:23.217058 #36268] INFO -- : Processing file: ../../extensions/dns/rest/dns.rb
+I, [2024-12-25T11:18:23.217566 #36268] INFO -- : Updated copyright in ../../extensions/dns/rest/dns.rb
+I, [2024-12-25T11:18:23.217633 #36268] INFO -- : Processing file: ../../extensions/dns_rebinding/api.rb
+I, [2024-12-25T11:18:23.217906 #36268] INFO -- : Updated copyright in ../../extensions/dns_rebinding/api.rb
+I, [2024-12-25T11:18:23.218020 #36268] INFO -- : Processing file: ../../extensions/dns_rebinding/config.yaml
+W, [2024-12-25T11:18:23.218409 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/dns_rebinding/config.yaml
+I, [2024-12-25T11:18:23.218562 #36268] INFO -- : Processing file: ../../extensions/dns_rebinding/dns_rebinding.rb
+W, [2024-12-25T11:18:23.218667 #36268] WARN -- : Copyright string not found in ../../extensions/dns_rebinding/dns_rebinding.rb
+I, [2024-12-25T11:18:23.218693 #36268] INFO -- : Processing file: ../../extensions/dns_rebinding/extension.rb
+I, [2024-12-25T11:18:23.219675 #36268] INFO -- : Updated copyright in ../../extensions/dns_rebinding/extension.rb
+I, [2024-12-25T11:18:23.219712 #36268] INFO -- : Processing file: ../../extensions/etag/api.rb
+I, [2024-12-25T11:18:23.219913 #36268] INFO -- : Updated copyright in ../../extensions/etag/api.rb
+I, [2024-12-25T11:18:23.220014 #36268] INFO -- : Processing file: ../../extensions/etag/config.yaml
+W, [2024-12-25T11:18:23.220230 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/etag/config.yaml
+I, [2024-12-25T11:18:23.220263 #36268] INFO -- : Processing file: ../../extensions/etag/etag.rb
+I, [2024-12-25T11:18:23.220575 #36268] INFO -- : Updated copyright in ../../extensions/etag/etag.rb
+I, [2024-12-25T11:18:23.220631 #36268] INFO -- : Processing file: ../../extensions/etag/extension.rb
+I, [2024-12-25T11:18:23.220807 #36268] INFO -- : Updated copyright in ../../extensions/etag/extension.rb
+I, [2024-12-25T11:18:23.220901 #36268] INFO -- : Processing file: ../../extensions/evasion/config.yaml
+W, [2024-12-25T11:18:23.221253 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/evasion/config.yaml
+I, [2024-12-25T11:18:23.221357 #36268] INFO -- : Processing file: ../../extensions/evasion/evasion.rb
+I, [2024-12-25T11:18:23.221696 #36268] INFO -- : Updated copyright in ../../extensions/evasion/evasion.rb
+I, [2024-12-25T11:18:23.221823 #36268] INFO -- : Processing file: ../../extensions/evasion/extension.rb
+I, [2024-12-25T11:18:23.222034 #36268] INFO -- : Updated copyright in ../../extensions/evasion/extension.rb
+I, [2024-12-25T11:18:23.222146 #36268] INFO -- : Processing file: ../../extensions/evasion/obfuscation/base_64.rb
+I, [2024-12-25T11:18:23.222351 #36268] INFO -- : Updated copyright in ../../extensions/evasion/obfuscation/base_64.rb
+I, [2024-12-25T11:18:23.222568 #36268] INFO -- : Processing file: ../../extensions/evasion/obfuscation/minify.rb
+I, [2024-12-25T11:18:23.222774 #36268] INFO -- : Updated copyright in ../../extensions/evasion/obfuscation/minify.rb
+I, [2024-12-25T11:18:23.222882 #36268] INFO -- : Processing file: ../../extensions/evasion/obfuscation/scramble.rb
+I, [2024-12-25T11:18:23.223080 #36268] INFO -- : Updated copyright in ../../extensions/evasion/obfuscation/scramble.rb
+I, [2024-12-25T11:18:23.223183 #36268] INFO -- : Processing file: ../../extensions/evasion/obfuscation/whitespace.rb
+I, [2024-12-25T11:18:23.223499 #36268] INFO -- : Updated copyright in ../../extensions/evasion/obfuscation/whitespace.rb
+I, [2024-12-25T11:18:23.223551 #36268] INFO -- : Processing file: ../../extensions/events/api.rb
+I, [2024-12-25T11:18:23.223735 #36268] INFO -- : Updated copyright in ../../extensions/events/api.rb
+I, [2024-12-25T11:18:23.223847 #36268] INFO -- : Processing file: ../../extensions/events/config.yaml
+W, [2024-12-25T11:18:23.224243 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/events/config.yaml
+I, [2024-12-25T11:18:23.224289 #36268] INFO -- : Processing file: ../../extensions/events/extension.rb
+I, [2024-12-25T11:18:23.224736 #36268] INFO -- : Updated copyright in ../../extensions/events/extension.rb
+I, [2024-12-25T11:18:23.224806 #36268] INFO -- : Processing file: ../../extensions/events/handler.rb
+I, [2024-12-25T11:18:23.225013 #36268] INFO -- : Updated copyright in ../../extensions/events/handler.rb
+I, [2024-12-25T11:18:23.225100 #36268] INFO -- : Processing file: ../../extensions/metasploit/api.rb
+I, [2024-12-25T11:18:23.225326 #36268] INFO -- : Updated copyright in ../../extensions/metasploit/api.rb
+I, [2024-12-25T11:18:23.225522 #36268] INFO -- : Processing file: ../../extensions/metasploit/config.yaml
+W, [2024-12-25T11:18:23.225890 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/metasploit/config.yaml
+I, [2024-12-25T11:18:23.225924 #36268] INFO -- : Processing file: ../../extensions/metasploit/extension.rb
+I, [2024-12-25T11:18:23.226119 #36268] INFO -- : Updated copyright in ../../extensions/metasploit/extension.rb
+I, [2024-12-25T11:18:23.226240 #36268] INFO -- : Processing file: ../../extensions/metasploit/module.rb
+I, [2024-12-25T11:18:23.226537 #36268] INFO -- : Updated copyright in ../../extensions/metasploit/module.rb
+I, [2024-12-25T11:18:23.226570 #36268] INFO -- : Processing file: ../../extensions/metasploit/rest/msf.rb
+I, [2024-12-25T11:18:23.226753 #36268] INFO -- : Updated copyright in ../../extensions/metasploit/rest/msf.rb
+I, [2024-12-25T11:18:23.226784 #36268] INFO -- : Processing file: ../../extensions/metasploit/rpcclient.rb
+I, [2024-12-25T11:18:23.227042 #36268] INFO -- : Updated copyright in ../../extensions/metasploit/rpcclient.rb
+I, [2024-12-25T11:18:23.227133 #36268] INFO -- : Processing file: ../../extensions/network/api.rb
+I, [2024-12-25T11:18:23.227335 #36268] INFO -- : Updated copyright in ../../extensions/network/api.rb
+I, [2024-12-25T11:18:23.227368 #36268] INFO -- : Processing file: ../../extensions/network/config.yaml
+W, [2024-12-25T11:18:23.227626 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/network/config.yaml
+I, [2024-12-25T11:18:23.227652 #36268] INFO -- : Processing file: ../../extensions/network/extension.rb
+I, [2024-12-25T11:18:23.227851 #36268] INFO -- : Updated copyright in ../../extensions/network/extension.rb
+I, [2024-12-25T11:18:23.227944 #36268] INFO -- : Processing file: ../../extensions/network/models/network_host.rb
+I, [2024-12-25T11:18:23.228150 #36268] INFO -- : Updated copyright in ../../extensions/network/models/network_host.rb
+I, [2024-12-25T11:18:23.228254 #36268] INFO -- : Processing file: ../../extensions/network/models/network_service.rb
+I, [2024-12-25T11:18:23.228519 #36268] INFO -- : Updated copyright in ../../extensions/network/models/network_service.rb
+I, [2024-12-25T11:18:23.228554 #36268] INFO -- : Processing file: ../../extensions/network/rest/network.rb
+I, [2024-12-25T11:18:23.228739 #36268] INFO -- : Updated copyright in ../../extensions/network/rest/network.rb
+I, [2024-12-25T11:18:23.228770 #36268] INFO -- : Processing file: ../../extensions/notifications/channels/email.rb
+I, [2024-12-25T11:18:23.228975 #36268] INFO -- : Updated copyright in ../../extensions/notifications/channels/email.rb
+I, [2024-12-25T11:18:23.229068 #36268] INFO -- : Processing file: ../../extensions/notifications/channels/ntfy.rb
+W, [2024-12-25T11:18:23.229120 #36268] WARN -- : Copyright string not found in ../../extensions/notifications/channels/ntfy.rb
+I, [2024-12-25T11:18:23.229143 #36268] INFO -- : Processing file: ../../extensions/notifications/channels/pushover.rb
+W, [2024-12-25T11:18:23.229229 #36268] WARN -- : Copyright string not found in ../../extensions/notifications/channels/pushover.rb
+I, [2024-12-25T11:18:23.229261 #36268] INFO -- : Processing file: ../../extensions/notifications/channels/slack_workspace.rb
+I, [2024-12-25T11:18:23.229593 #36268] INFO -- : Updated copyright in ../../extensions/notifications/channels/slack_workspace.rb
+I, [2024-12-25T11:18:23.229629 #36268] INFO -- : Processing file: ../../extensions/notifications/config.yaml
+W, [2024-12-25T11:18:23.229941 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/notifications/config.yaml
+I, [2024-12-25T11:18:23.229968 #36268] INFO -- : Processing file: ../../extensions/notifications/extension.rb
+I, [2024-12-25T11:18:23.230181 #36268] INFO -- : Updated copyright in ../../extensions/notifications/extension.rb
+I, [2024-12-25T11:18:23.230294 #36268] INFO -- : Processing file: ../../extensions/notifications/notifications.rb
+I, [2024-12-25T11:18:23.230652 #36268] INFO -- : Updated copyright in ../../extensions/notifications/notifications.rb
+I, [2024-12-25T11:18:23.230681 #36268] INFO -- : Processing file: ../../extensions/proxy/api.rb
+I, [2024-12-25T11:18:23.230915 #36268] INFO -- : Updated copyright in ../../extensions/proxy/api.rb
+I, [2024-12-25T11:18:23.230948 #36268] INFO -- : Processing file: ../../extensions/proxy/config.yaml
+W, [2024-12-25T11:18:23.231199 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/proxy/config.yaml
+I, [2024-12-25T11:18:23.231251 #36268] INFO -- : Processing file: ../../extensions/proxy/extension.rb
+I, [2024-12-25T11:18:23.231453 #36268] INFO -- : Updated copyright in ../../extensions/proxy/extension.rb
+I, [2024-12-25T11:18:23.231597 #36268] INFO -- : Processing file: ../../extensions/proxy/proxy.rb
+I, [2024-12-25T11:18:23.231800 #36268] INFO -- : Updated copyright in ../../extensions/proxy/proxy.rb
+I, [2024-12-25T11:18:23.231893 #36268] INFO -- : Processing file: ../../extensions/proxy/rest/proxy.rb
+I, [2024-12-25T11:18:23.232148 #36268] INFO -- : Updated copyright in ../../extensions/proxy/rest/proxy.rb
+I, [2024-12-25T11:18:23.232182 #36268] INFO -- : Processing file: ../../extensions/qrcode/config.yaml
+W, [2024-12-25T11:18:23.232432 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/qrcode/config.yaml
+I, [2024-12-25T11:18:23.232570 #36268] INFO -- : Processing file: ../../extensions/qrcode/extension.rb
+I, [2024-12-25T11:18:23.232959 #36268] INFO -- : Updated copyright in ../../extensions/qrcode/extension.rb
+I, [2024-12-25T11:18:23.233022 #36268] INFO -- : Processing file: ../../extensions/qrcode/qrcode.rb
+I, [2024-12-25T11:18:23.233543 #36268] INFO -- : Updated copyright in ../../extensions/qrcode/qrcode.rb
+I, [2024-12-25T11:18:23.233589 #36268] INFO -- : Processing file: ../../extensions/requester/api/hook.rb
+I, [2024-12-25T11:18:23.233831 #36268] INFO -- : Updated copyright in ../../extensions/requester/api/hook.rb
+I, [2024-12-25T11:18:23.233928 #36268] INFO -- : Processing file: ../../extensions/requester/api.rb
+I, [2024-12-25T11:18:23.234173 #36268] INFO -- : Updated copyright in ../../extensions/requester/api.rb
+I, [2024-12-25T11:18:23.234210 #36268] INFO -- : Processing file: ../../extensions/requester/config.yaml
+W, [2024-12-25T11:18:23.234434 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/requester/config.yaml
+I, [2024-12-25T11:18:23.234527 #36268] INFO -- : Processing file: ../../extensions/requester/extension.rb
+I, [2024-12-25T11:18:23.234932 #36268] INFO -- : Updated copyright in ../../extensions/requester/extension.rb
+I, [2024-12-25T11:18:23.234977 #36268] INFO -- : Processing file: ../../extensions/requester/handler.rb
+I, [2024-12-25T11:18:23.235163 #36268] INFO -- : Updated copyright in ../../extensions/requester/handler.rb
+I, [2024-12-25T11:18:23.235257 #36268] INFO -- : Processing file: ../../extensions/requester/models/http.rb
+I, [2024-12-25T11:18:23.235576 #36268] INFO -- : Updated copyright in ../../extensions/requester/models/http.rb
+I, [2024-12-25T11:18:23.235604 #36268] INFO -- : Processing file: ../../extensions/requester/rest/requester.rb
+I, [2024-12-25T11:18:23.235812 #36268] INFO -- : Updated copyright in ../../extensions/requester/rest/requester.rb
+I, [2024-12-25T11:18:23.235907 #36268] INFO -- : Processing file: ../../extensions/s2c_dns_tunnel/api.rb
+I, [2024-12-25T11:18:23.236169 #36268] INFO -- : Updated copyright in ../../extensions/s2c_dns_tunnel/api.rb
+I, [2024-12-25T11:18:23.236205 #36268] INFO -- : Processing file: ../../extensions/s2c_dns_tunnel/config.yaml
+W, [2024-12-25T11:18:23.236490 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/s2c_dns_tunnel/config.yaml
+I, [2024-12-25T11:18:23.236523 #36268] INFO -- : Processing file: ../../extensions/s2c_dns_tunnel/dnsd.rb
+I, [2024-12-25T11:18:23.236732 #36268] INFO -- : Updated copyright in ../../extensions/s2c_dns_tunnel/dnsd.rb
+I, [2024-12-25T11:18:23.236913 #36268] INFO -- : Processing file: ../../extensions/s2c_dns_tunnel/extension.rb
+I, [2024-12-25T11:18:23.237062 #36268] INFO -- : Updated copyright in ../../extensions/s2c_dns_tunnel/extension.rb
+I, [2024-12-25T11:18:23.237100 #36268] INFO -- : Processing file: ../../extensions/s2c_dns_tunnel/httpd.rb
+W, [2024-12-25T11:18:23.237260 #36268] WARN -- : Copyright string not found in ../../extensions/s2c_dns_tunnel/httpd.rb
+I, [2024-12-25T11:18:23.237287 #36268] INFO -- : Processing file: ../../extensions/social_engineering/config.yaml
+W, [2024-12-25T11:18:23.237712 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/social_engineering/config.yaml
+I, [2024-12-25T11:18:23.237739 #36268] INFO -- : Processing file: ../../extensions/social_engineering/extension.rb
+I, [2024-12-25T11:18:23.237943 #36268] INFO -- : Updated copyright in ../../extensions/social_engineering/extension.rb
+I, [2024-12-25T11:18:23.237966 #36268] INFO -- : Processing file: ../../extensions/social_engineering/models/interceptor.rb
+I, [2024-12-25T11:18:23.238370 #36268] INFO -- : Updated copyright in ../../extensions/social_engineering/models/interceptor.rb
+I, [2024-12-25T11:18:23.238399 #36268] INFO -- : Processing file: ../../extensions/social_engineering/models/web_cloner.rb
+I, [2024-12-25T11:18:23.238900 #36268] INFO -- : Updated copyright in ../../extensions/social_engineering/models/web_cloner.rb
+I, [2024-12-25T11:18:23.238924 #36268] INFO -- : Processing file: ../../extensions/social_engineering/powershell/bind_powershell.rb
+I, [2024-12-25T11:18:23.239175 #36268] INFO -- : Updated copyright in ../../extensions/social_engineering/powershell/bind_powershell.rb
+I, [2024-12-25T11:18:23.239201 #36268] INFO -- : Processing file: ../../extensions/social_engineering/rest/socialengineering.rb
+I, [2024-12-25T11:18:23.239587 #36268] INFO -- : Updated copyright in ../../extensions/social_engineering/rest/socialengineering.rb
+I, [2024-12-25T11:18:23.239614 #36268] INFO -- : Processing file: ../../extensions/social_engineering/web_cloner/interceptor.rb
+I, [2024-12-25T11:18:23.239886 #36268] INFO -- : Updated copyright in ../../extensions/social_engineering/web_cloner/interceptor.rb
+I, [2024-12-25T11:18:23.239911 #36268] INFO -- : Processing file: ../../extensions/social_engineering/web_cloner/web_cloner.rb
+I, [2024-12-25T11:18:23.240484 #36268] INFO -- : Updated copyright in ../../extensions/social_engineering/web_cloner/web_cloner.rb
+I, [2024-12-25T11:18:23.240574 #36268] INFO -- : Processing file: ../../extensions/webrtc/api/hook.rb
+I, [2024-12-25T11:18:23.240959 #36268] INFO -- : Updated copyright in ../../extensions/webrtc/api/hook.rb
+I, [2024-12-25T11:18:23.241049 #36268] INFO -- : Processing file: ../../extensions/webrtc/api.rb
+I, [2024-12-25T11:18:23.241191 #36268] INFO -- : Updated copyright in ../../extensions/webrtc/api.rb
+I, [2024-12-25T11:18:23.241209 #36268] INFO -- : Processing file: ../../extensions/webrtc/config.yaml
+W, [2024-12-25T11:18:23.241746 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/webrtc/config.yaml
+I, [2024-12-25T11:18:23.241786 #36268] INFO -- : Processing file: ../../extensions/webrtc/extension.rb
+I, [2024-12-25T11:18:23.242096 #36268] INFO -- : Updated copyright in ../../extensions/webrtc/extension.rb
+I, [2024-12-25T11:18:23.242219 #36268] INFO -- : Processing file: ../../extensions/webrtc/handlers.rb
+I, [2024-12-25T11:18:23.242864 #36268] INFO -- : Updated copyright in ../../extensions/webrtc/handlers.rb
+I, [2024-12-25T11:18:23.242915 #36268] INFO -- : Processing file: ../../extensions/webrtc/models/rtcmanage.rb
+I, [2024-12-25T11:18:23.243282 #36268] INFO -- : Updated copyright in ../../extensions/webrtc/models/rtcmanage.rb
+I, [2024-12-25T11:18:23.243327 #36268] INFO -- : Processing file: ../../extensions/webrtc/models/rtcmodulestatus.rb
+I, [2024-12-25T11:18:23.243550 #36268] INFO -- : Updated copyright in ../../extensions/webrtc/models/rtcmodulestatus.rb
+I, [2024-12-25T11:18:23.243644 #36268] INFO -- : Processing file: ../../extensions/webrtc/models/rtcsignal.rb
+I, [2024-12-25T11:18:23.243826 #36268] INFO -- : Updated copyright in ../../extensions/webrtc/models/rtcsignal.rb
+I, [2024-12-25T11:18:23.243844 #36268] INFO -- : Processing file: ../../extensions/webrtc/models/rtcstatus.rb
+I, [2024-12-25T11:18:23.244131 #36268] INFO -- : Updated copyright in ../../extensions/webrtc/models/rtcstatus.rb
+I, [2024-12-25T11:18:23.244157 #36268] INFO -- : Processing file: ../../extensions/webrtc/rest/webrtc.rb
+I, [2024-12-25T11:18:23.244689 #36268] INFO -- : Updated copyright in ../../extensions/webrtc/rest/webrtc.rb
+I, [2024-12-25T11:18:23.244880 #36268] INFO -- : Processing file: ../../extensions/xssrays/api/scan.rb
+I, [2024-12-25T11:18:23.245106 #36268] INFO -- : Updated copyright in ../../extensions/xssrays/api/scan.rb
+I, [2024-12-25T11:18:23.245133 #36268] INFO -- : Processing file: ../../extensions/xssrays/api.rb
+I, [2024-12-25T11:18:23.245426 #36268] INFO -- : Updated copyright in ../../extensions/xssrays/api.rb
+I, [2024-12-25T11:18:23.245497 #36268] INFO -- : Processing file: ../../extensions/xssrays/config.yaml
+W, [2024-12-25T11:18:23.245741 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../extensions/xssrays/config.yaml
+I, [2024-12-25T11:18:23.245767 #36268] INFO -- : Processing file: ../../extensions/xssrays/extension.rb
+I, [2024-12-25T11:18:23.245934 #36268] INFO -- : Updated copyright in ../../extensions/xssrays/extension.rb
+I, [2024-12-25T11:18:23.246022 #36268] INFO -- : Processing file: ../../extensions/xssrays/handler.rb
+I, [2024-12-25T11:18:23.246182 #36268] INFO -- : Updated copyright in ../../extensions/xssrays/handler.rb
+I, [2024-12-25T11:18:23.246207 #36268] INFO -- : Processing file: ../../extensions/xssrays/models/xssraysdetail.rb
+I, [2024-12-25T11:18:23.246457 #36268] INFO -- : Updated copyright in ../../extensions/xssrays/models/xssraysdetail.rb
+I, [2024-12-25T11:18:23.246487 #36268] INFO -- : Processing file: ../../extensions/xssrays/models/xssraysscan.rb
+I, [2024-12-25T11:18:23.246701 #36268] INFO -- : Updated copyright in ../../extensions/xssrays/models/xssraysscan.rb
+I, [2024-12-25T11:18:23.246727 #36268] INFO -- : Processing file: ../../extensions/xssrays/rest/xssrays.rb
+I, [2024-12-25T11:18:23.246934 #36268] INFO -- : Updated copyright in ../../extensions/xssrays/rest/xssrays.rb
+I, [2024-12-25T11:18:23.247025 #36268] INFO -- : Processing file: ../../modules/browser/avant_steal_history/command.js
+I, [2024-12-25T11:18:23.247183 #36268] INFO -- : Updated copyright in ../../modules/browser/avant_steal_history/command.js
+I, [2024-12-25T11:18:23.247208 #36268] INFO -- : Processing file: ../../modules/browser/avant_steal_history/config.yaml
+W, [2024-12-25T11:18:23.247526 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/avant_steal_history/config.yaml
+I, [2024-12-25T11:18:23.247553 #36268] INFO -- : Processing file: ../../modules/browser/avant_steal_history/module.rb
+I, [2024-12-25T11:18:23.247773 #36268] INFO -- : Updated copyright in ../../modules/browser/avant_steal_history/module.rb
+I, [2024-12-25T11:18:23.247909 #36268] INFO -- : Processing file: ../../modules/browser/browser_fingerprinting/command.js
+I, [2024-12-25T11:18:23.248116 #36268] INFO -- : Updated copyright in ../../modules/browser/browser_fingerprinting/command.js
+I, [2024-12-25T11:18:23.248270 #36268] INFO -- : Processing file: ../../modules/browser/browser_fingerprinting/config.yaml
+W, [2024-12-25T11:18:23.248940 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/browser_fingerprinting/config.yaml
+I, [2024-12-25T11:18:23.248985 #36268] INFO -- : Processing file: ../../modules/browser/browser_fingerprinting/module.rb
+I, [2024-12-25T11:18:23.249479 #36268] INFO -- : Updated copyright in ../../modules/browser/browser_fingerprinting/module.rb
+I, [2024-12-25T11:18:23.249529 #36268] INFO -- : Processing file: ../../modules/browser/detect_activex/command.js
+I, [2024-12-25T11:18:23.249886 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_activex/command.js
+I, [2024-12-25T11:18:23.249933 #36268] INFO -- : Processing file: ../../modules/browser/detect_activex/config.yaml
+W, [2024-12-25T11:18:23.250259 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_activex/config.yaml
+I, [2024-12-25T11:18:23.250300 #36268] INFO -- : Processing file: ../../modules/browser/detect_activex/module.rb
+I, [2024-12-25T11:18:23.250807 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_activex/module.rb
+I, [2024-12-25T11:18:23.250846 #36268] INFO -- : Processing file: ../../modules/browser/detect_evernote_clipper/command.js
+I, [2024-12-25T11:18:23.251133 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_evernote_clipper/command.js
+I, [2024-12-25T11:18:23.251166 #36268] INFO -- : Processing file: ../../modules/browser/detect_evernote_clipper/config.yaml
+W, [2024-12-25T11:18:23.251419 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_evernote_clipper/config.yaml
+I, [2024-12-25T11:18:23.251585 #36268] INFO -- : Processing file: ../../modules/browser/detect_evernote_clipper/module.rb
+I, [2024-12-25T11:18:23.251933 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_evernote_clipper/module.rb
+I, [2024-12-25T11:18:23.251987 #36268] INFO -- : Processing file: ../../modules/browser/detect_extensions/command.js
+I, [2024-12-25T11:18:23.252587 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_extensions/command.js
+I, [2024-12-25T11:18:23.252724 #36268] INFO -- : Processing file: ../../modules/browser/detect_extensions/config.yaml
+W, [2024-12-25T11:18:23.253661 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_extensions/config.yaml
+I, [2024-12-25T11:18:23.253709 #36268] INFO -- : Processing file: ../../modules/browser/detect_extensions/module.rb
+I, [2024-12-25T11:18:23.253974 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_extensions/module.rb
+I, [2024-12-25T11:18:23.254081 #36268] INFO -- : Processing file: ../../modules/browser/detect_firebug/command.js
+I, [2024-12-25T11:18:23.254342 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_firebug/command.js
+I, [2024-12-25T11:18:23.254377 #36268] INFO -- : Processing file: ../../modules/browser/detect_firebug/config.yaml
+W, [2024-12-25T11:18:23.254862 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_firebug/config.yaml
+I, [2024-12-25T11:18:23.254891 #36268] INFO -- : Processing file: ../../modules/browser/detect_firebug/module.rb
+I, [2024-12-25T11:18:23.255201 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_firebug/module.rb
+I, [2024-12-25T11:18:23.255239 #36268] INFO -- : Processing file: ../../modules/browser/detect_foxit/command.js
+I, [2024-12-25T11:18:23.255585 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_foxit/command.js
+I, [2024-12-25T11:18:23.255658 #36268] INFO -- : Processing file: ../../modules/browser/detect_foxit/config.yaml
+W, [2024-12-25T11:18:23.255983 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_foxit/config.yaml
+I, [2024-12-25T11:18:23.256013 #36268] INFO -- : Processing file: ../../modules/browser/detect_foxit/module.rb
+I, [2024-12-25T11:18:23.256246 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_foxit/module.rb
+I, [2024-12-25T11:18:23.256517 #36268] INFO -- : Processing file: ../../modules/browser/detect_lastpass/command.js
+I, [2024-12-25T11:18:23.256923 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_lastpass/command.js
+I, [2024-12-25T11:18:23.256960 #36268] INFO -- : Processing file: ../../modules/browser/detect_lastpass/config.yaml
+W, [2024-12-25T11:18:23.257220 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_lastpass/config.yaml
+I, [2024-12-25T11:18:23.257257 #36268] INFO -- : Processing file: ../../modules/browser/detect_lastpass/module.rb
+I, [2024-12-25T11:18:23.257761 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_lastpass/module.rb
+I, [2024-12-25T11:18:23.257841 #36268] INFO -- : Processing file: ../../modules/browser/detect_mime_types/command.js
+I, [2024-12-25T11:18:23.258285 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_mime_types/command.js
+I, [2024-12-25T11:18:23.258348 #36268] INFO -- : Processing file: ../../modules/browser/detect_mime_types/config.yaml
+W, [2024-12-25T11:18:23.258803 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_mime_types/config.yaml
+I, [2024-12-25T11:18:23.258867 #36268] INFO -- : Processing file: ../../modules/browser/detect_mime_types/module.rb
+I, [2024-12-25T11:18:23.259283 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_mime_types/module.rb
+I, [2024-12-25T11:18:23.259324 #36268] INFO -- : Processing file: ../../modules/browser/detect_office/command.js
+I, [2024-12-25T11:18:23.259625 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_office/command.js
+I, [2024-12-25T11:18:23.259663 #36268] INFO -- : Processing file: ../../modules/browser/detect_office/config.yaml
+W, [2024-12-25T11:18:23.259872 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_office/config.yaml
+I, [2024-12-25T11:18:23.259898 #36268] INFO -- : Processing file: ../../modules/browser/detect_office/module.rb
+I, [2024-12-25T11:18:23.260050 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_office/module.rb
+I, [2024-12-25T11:18:23.260076 #36268] INFO -- : Processing file: ../../modules/browser/detect_popup_blocker/command.js
+I, [2024-12-25T11:18:23.260265 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_popup_blocker/command.js
+I, [2024-12-25T11:18:23.260355 #36268] INFO -- : Processing file: ../../modules/browser/detect_popup_blocker/config.yaml
+W, [2024-12-25T11:18:23.260599 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_popup_blocker/config.yaml
+I, [2024-12-25T11:18:23.260625 #36268] INFO -- : Processing file: ../../modules/browser/detect_popup_blocker/module.rb
+I, [2024-12-25T11:18:23.260896 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_popup_blocker/module.rb
+I, [2024-12-25T11:18:23.260934 #36268] INFO -- : Processing file: ../../modules/browser/detect_quicktime/command.js
+I, [2024-12-25T11:18:23.261245 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_quicktime/command.js
+I, [2024-12-25T11:18:23.261279 #36268] INFO -- : Processing file: ../../modules/browser/detect_quicktime/config.yaml
+W, [2024-12-25T11:18:23.261540 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_quicktime/config.yaml
+I, [2024-12-25T11:18:23.261566 #36268] INFO -- : Processing file: ../../modules/browser/detect_quicktime/module.rb
+I, [2024-12-25T11:18:23.261771 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_quicktime/module.rb
+I, [2024-12-25T11:18:23.261887 #36268] INFO -- : Processing file: ../../modules/browser/detect_realplayer/command.js
+I, [2024-12-25T11:18:23.262111 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_realplayer/command.js
+I, [2024-12-25T11:18:23.262138 #36268] INFO -- : Processing file: ../../modules/browser/detect_realplayer/config.yaml
+W, [2024-12-25T11:18:23.262397 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_realplayer/config.yaml
+I, [2024-12-25T11:18:23.262470 #36268] INFO -- : Processing file: ../../modules/browser/detect_realplayer/module.rb
+I, [2024-12-25T11:18:23.262624 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_realplayer/module.rb
+I, [2024-12-25T11:18:23.262718 #36268] INFO -- : Processing file: ../../modules/browser/detect_silverlight/command.js
+I, [2024-12-25T11:18:23.262871 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_silverlight/command.js
+I, [2024-12-25T11:18:23.262897 #36268] INFO -- : Processing file: ../../modules/browser/detect_silverlight/config.yaml
+W, [2024-12-25T11:18:23.263128 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_silverlight/config.yaml
+I, [2024-12-25T11:18:23.263154 #36268] INFO -- : Processing file: ../../modules/browser/detect_silverlight/module.rb
+I, [2024-12-25T11:18:23.263311 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_silverlight/module.rb
+I, [2024-12-25T11:18:23.263337 #36268] INFO -- : Processing file: ../../modules/browser/detect_simple_adblock/command.js
+I, [2024-12-25T11:18:23.263585 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_simple_adblock/command.js
+I, [2024-12-25T11:18:23.263663 #36268] INFO -- : Processing file: ../../modules/browser/detect_simple_adblock/config.yaml
+W, [2024-12-25T11:18:23.263848 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_simple_adblock/config.yaml
+I, [2024-12-25T11:18:23.263873 #36268] INFO -- : Processing file: ../../modules/browser/detect_simple_adblock/module.rb
+I, [2024-12-25T11:18:23.264029 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_simple_adblock/module.rb
+I, [2024-12-25T11:18:23.264054 #36268] INFO -- : Processing file: ../../modules/browser/detect_toolbars/command.js
+I, [2024-12-25T11:18:23.264279 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_toolbars/command.js
+I, [2024-12-25T11:18:23.264365 #36268] INFO -- : Processing file: ../../modules/browser/detect_toolbars/config.yaml
+W, [2024-12-25T11:18:23.264599 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_toolbars/config.yaml
+I, [2024-12-25T11:18:23.264625 #36268] INFO -- : Processing file: ../../modules/browser/detect_toolbars/module.rb
+I, [2024-12-25T11:18:23.264808 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_toolbars/module.rb
+I, [2024-12-25T11:18:23.264901 #36268] INFO -- : Processing file: ../../modules/browser/detect_unity/command.js
+I, [2024-12-25T11:18:23.265064 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_unity/command.js
+I, [2024-12-25T11:18:23.265154 #36268] INFO -- : Processing file: ../../modules/browser/detect_unity/config.yaml
+W, [2024-12-25T11:18:23.265358 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_unity/config.yaml
+I, [2024-12-25T11:18:23.265383 #36268] INFO -- : Processing file: ../../modules/browser/detect_unity/module.rb
+I, [2024-12-25T11:18:23.265848 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_unity/module.rb
+I, [2024-12-25T11:18:23.265899 #36268] INFO -- : Processing file: ../../modules/browser/detect_unsafe_activex/command.js
+I, [2024-12-25T11:18:23.266101 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_unsafe_activex/command.js
+I, [2024-12-25T11:18:23.266289 #36268] INFO -- : Processing file: ../../modules/browser/detect_unsafe_activex/config.yaml
+W, [2024-12-25T11:18:23.266587 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_unsafe_activex/config.yaml
+I, [2024-12-25T11:18:23.266614 #36268] INFO -- : Processing file: ../../modules/browser/detect_unsafe_activex/module.rb
+I, [2024-12-25T11:18:23.266915 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_unsafe_activex/module.rb
+I, [2024-12-25T11:18:23.266955 #36268] INFO -- : Processing file: ../../modules/browser/detect_vlc/command.js
+I, [2024-12-25T11:18:23.267249 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_vlc/command.js
+I, [2024-12-25T11:18:23.267331 #36268] INFO -- : Processing file: ../../modules/browser/detect_vlc/config.yaml
+W, [2024-12-25T11:18:23.268074 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_vlc/config.yaml
+I, [2024-12-25T11:18:23.268129 #36268] INFO -- : Processing file: ../../modules/browser/detect_vlc/module.rb
+I, [2024-12-25T11:18:23.268581 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_vlc/module.rb
+I, [2024-12-25T11:18:23.268628 #36268] INFO -- : Processing file: ../../modules/browser/detect_wmp/command.js
+I, [2024-12-25T11:18:23.269058 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_wmp/command.js
+I, [2024-12-25T11:18:23.269103 #36268] INFO -- : Processing file: ../../modules/browser/detect_wmp/config.yaml
+W, [2024-12-25T11:18:23.269417 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/detect_wmp/config.yaml
+I, [2024-12-25T11:18:23.269679 #36268] INFO -- : Processing file: ../../modules/browser/detect_wmp/module.rb
+I, [2024-12-25T11:18:23.270022 #36268] INFO -- : Updated copyright in ../../modules/browser/detect_wmp/module.rb
+I, [2024-12-25T11:18:23.270163 #36268] INFO -- : Processing file: ../../modules/browser/fingerprint_browser/command.js
+I, [2024-12-25T11:18:23.270633 #36268] INFO -- : Updated copyright in ../../modules/browser/fingerprint_browser/command.js
+I, [2024-12-25T11:18:23.270669 #36268] INFO -- : Processing file: ../../modules/browser/fingerprint_browser/config.yaml
+W, [2024-12-25T11:18:23.270993 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/fingerprint_browser/config.yaml
+I, [2024-12-25T11:18:23.271056 #36268] INFO -- : Processing file: ../../modules/browser/fingerprint_browser/fingerprint2.js
+W, [2024-12-25T11:18:23.271386 #36268] WARN -- : Copyright string not found in ../../modules/browser/fingerprint_browser/fingerprint2.js
+I, [2024-12-25T11:18:23.271467 #36268] INFO -- : Processing file: ../../modules/browser/fingerprint_browser/module.rb
+I, [2024-12-25T11:18:23.271849 #36268] INFO -- : Updated copyright in ../../modules/browser/fingerprint_browser/module.rb
+I, [2024-12-25T11:18:23.271888 #36268] INFO -- : Processing file: ../../modules/browser/get_visited_domains/command.js
+I, [2024-12-25T11:18:23.272580 #36268] INFO -- : Updated copyright in ../../modules/browser/get_visited_domains/command.js
+I, [2024-12-25T11:18:23.272660 #36268] INFO -- : Processing file: ../../modules/browser/get_visited_domains/config.yaml
+W, [2024-12-25T11:18:23.273015 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/get_visited_domains/config.yaml
+I, [2024-12-25T11:18:23.273042 #36268] INFO -- : Processing file: ../../modules/browser/get_visited_domains/module.rb
+I, [2024-12-25T11:18:23.273360 #36268] INFO -- : Updated copyright in ../../modules/browser/get_visited_domains/module.rb
+I, [2024-12-25T11:18:23.273489 #36268] INFO -- : Processing file: ../../modules/browser/get_visited_urls/command.js
+I, [2024-12-25T11:18:23.273761 #36268] INFO -- : Updated copyright in ../../modules/browser/get_visited_urls/command.js
+I, [2024-12-25T11:18:23.273797 #36268] INFO -- : Processing file: ../../modules/browser/get_visited_urls/config.yaml
+W, [2024-12-25T11:18:23.274337 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/get_visited_urls/config.yaml
+I, [2024-12-25T11:18:23.274370 #36268] INFO -- : Processing file: ../../modules/browser/get_visited_urls/module.rb
+I, [2024-12-25T11:18:23.274748 #36268] INFO -- : Updated copyright in ../../modules/browser/get_visited_urls/module.rb
+I, [2024-12-25T11:18:23.274778 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/ajax_fingerprint/command.js
+I, [2024-12-25T11:18:23.275119 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/ajax_fingerprint/command.js
+I, [2024-12-25T11:18:23.275221 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/ajax_fingerprint/config.yaml
+W, [2024-12-25T11:18:23.275537 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/ajax_fingerprint/config.yaml
+I, [2024-12-25T11:18:23.275570 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/ajax_fingerprint/module.rb
+I, [2024-12-25T11:18:23.275789 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/ajax_fingerprint/module.rb
+I, [2024-12-25T11:18:23.275888 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/alert_dialog/command.js
+I, [2024-12-25T11:18:23.276120 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/alert_dialog/command.js
+I, [2024-12-25T11:18:23.276156 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/alert_dialog/config.yaml
+W, [2024-12-25T11:18:23.276431 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/alert_dialog/config.yaml
+I, [2024-12-25T11:18:23.276546 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/alert_dialog/module.rb
+I, [2024-12-25T11:18:23.276747 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/alert_dialog/module.rb
+I, [2024-12-25T11:18:23.276848 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js
+I, [2024-12-25T11:18:23.277085 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/command.js
+I, [2024-12-25T11:18:23.277120 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/config.yaml
+W, [2024-12-25T11:18:23.277328 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/config.yaml
+I, [2024-12-25T11:18:23.277352 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb
+I, [2024-12-25T11:18:23.277733 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/apache_tomcat_examples_cookie_disclosure/module.rb
+I, [2024-12-25T11:18:23.277781 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js
+I, [2024-12-25T11:18:23.278028 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/cisco_asa_password_disclosure/command.js
+I, [2024-12-25T11:18:23.278065 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/cisco_asa_password_disclosure/config.yaml
+W, [2024-12-25T11:18:23.278307 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/cisco_asa_password_disclosure/config.yaml
+I, [2024-12-25T11:18:23.278332 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb
+I, [2024-12-25T11:18:23.278800 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/cisco_asa_password_disclosure/module.rb
+I, [2024-12-25T11:18:23.278851 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/clear_console/command.js
+I, [2024-12-25T11:18:23.279049 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/clear_console/command.js
+I, [2024-12-25T11:18:23.279150 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/clear_console/config.yaml
+W, [2024-12-25T11:18:23.279410 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/clear_console/config.yaml
+I, [2024-12-25T11:18:23.279671 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/clear_console/module.rb
+I, [2024-12-25T11:18:23.280142 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/clear_console/module.rb
+I, [2024-12-25T11:18:23.280183 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/deface_web_page/command.js
+I, [2024-12-25T11:18:23.280537 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/deface_web_page/command.js
+I, [2024-12-25T11:18:23.280586 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/deface_web_page/config.yaml
+W, [2024-12-25T11:18:23.280827 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/deface_web_page/config.yaml
+I, [2024-12-25T11:18:23.280862 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/deface_web_page/module.rb
+I, [2024-12-25T11:18:23.281084 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/deface_web_page/module.rb
+I, [2024-12-25T11:18:23.281232 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/deface_web_page_component/command.js
+I, [2024-12-25T11:18:23.281483 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/deface_web_page_component/command.js
+I, [2024-12-25T11:18:23.281538 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/deface_web_page_component/config.yaml
+W, [2024-12-25T11:18:23.281763 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/deface_web_page_component/config.yaml
+I, [2024-12-25T11:18:23.281789 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/deface_web_page_component/module.rb
+I, [2024-12-25T11:18:23.281945 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/deface_web_page_component/module.rb
+I, [2024-12-25T11:18:23.282042 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/disable_developer_tools/command.js
+I, [2024-12-25T11:18:23.282310 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/disable_developer_tools/command.js
+I, [2024-12-25T11:18:23.282357 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/disable_developer_tools/config.yaml
+W, [2024-12-25T11:18:23.282973 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/disable_developer_tools/config.yaml
+I, [2024-12-25T11:18:23.283013 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/disable_developer_tools/module.rb
+I, [2024-12-25T11:18:23.283684 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/disable_developer_tools/module.rb
+I, [2024-12-25T11:18:23.283849 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_autocomplete_creds/command.js
+I, [2024-12-25T11:18:23.284213 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_autocomplete_creds/command.js
+I, [2024-12-25T11:18:23.284245 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_autocomplete_creds/config.yaml
+W, [2024-12-25T11:18:23.284754 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/get_autocomplete_creds/config.yaml
+I, [2024-12-25T11:18:23.284966 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_autocomplete_creds/module.rb
+I, [2024-12-25T11:18:23.285406 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_autocomplete_creds/module.rb
+I, [2024-12-25T11:18:23.285456 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_cookie/command.js
+I, [2024-12-25T11:18:23.286047 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_cookie/command.js
+I, [2024-12-25T11:18:23.286108 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_cookie/config.yaml
+W, [2024-12-25T11:18:23.286651 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/get_cookie/config.yaml
+I, [2024-12-25T11:18:23.286716 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_cookie/module.rb
+I, [2024-12-25T11:18:23.287112 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_cookie/module.rb
+I, [2024-12-25T11:18:23.287201 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_form_values/command.js
+I, [2024-12-25T11:18:23.287683 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_form_values/command.js
+I, [2024-12-25T11:18:23.287747 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_form_values/config.yaml
+W, [2024-12-25T11:18:23.288073 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/get_form_values/config.yaml
+I, [2024-12-25T11:18:23.288144 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_form_values/module.rb
+I, [2024-12-25T11:18:23.288486 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_form_values/module.rb
+I, [2024-12-25T11:18:23.288558 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_local_storage/command.js
+I, [2024-12-25T11:18:23.288963 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_local_storage/command.js
+I, [2024-12-25T11:18:23.289008 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_local_storage/config.yaml
+W, [2024-12-25T11:18:23.289343 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/get_local_storage/config.yaml
+I, [2024-12-25T11:18:23.289380 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_local_storage/module.rb
+I, [2024-12-25T11:18:23.289676 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_local_storage/module.rb
+I, [2024-12-25T11:18:23.289792 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_page_html/command.js
+I, [2024-12-25T11:18:23.290270 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_page_html/command.js
+I, [2024-12-25T11:18:23.290310 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_page_html/config.yaml
+W, [2024-12-25T11:18:23.290731 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/get_page_html/config.yaml
+I, [2024-12-25T11:18:23.290771 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_page_html/module.rb
+I, [2024-12-25T11:18:23.291115 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_page_html/module.rb
+I, [2024-12-25T11:18:23.291228 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_page_html_iframe/command.js
+I, [2024-12-25T11:18:23.291569 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_page_html_iframe/command.js
+I, [2024-12-25T11:18:23.291622 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_page_html_iframe/config.yaml
+W, [2024-12-25T11:18:23.292092 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/get_page_html_iframe/config.yaml
+I, [2024-12-25T11:18:23.292123 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_page_html_iframe/module.rb
+I, [2024-12-25T11:18:23.292335 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_page_html_iframe/module.rb
+I, [2024-12-25T11:18:23.292579 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_page_links/command.js
+I, [2024-12-25T11:18:23.292982 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_page_links/command.js
+I, [2024-12-25T11:18:23.293039 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_page_links/config.yaml
+W, [2024-12-25T11:18:23.293403 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/get_page_links/config.yaml
+I, [2024-12-25T11:18:23.293479 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_page_links/module.rb
+I, [2024-12-25T11:18:23.293719 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_page_links/module.rb
+I, [2024-12-25T11:18:23.293821 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_session_storage/command.js
+I, [2024-12-25T11:18:23.293974 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_session_storage/command.js
+I, [2024-12-25T11:18:23.294065 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_session_storage/config.yaml
+W, [2024-12-25T11:18:23.294373 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/get_session_storage/config.yaml
+I, [2024-12-25T11:18:23.294405 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_session_storage/module.rb
+I, [2024-12-25T11:18:23.294733 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_session_storage/module.rb
+I, [2024-12-25T11:18:23.294767 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_stored_credentials/command.js
+I, [2024-12-25T11:18:23.295019 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_stored_credentials/command.js
+I, [2024-12-25T11:18:23.295053 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_stored_credentials/config.yaml
+W, [2024-12-25T11:18:23.295274 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/get_stored_credentials/config.yaml
+I, [2024-12-25T11:18:23.295299 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/get_stored_credentials/module.rb
+I, [2024-12-25T11:18:23.295712 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/get_stored_credentials/module.rb
+I, [2024-12-25T11:18:23.295750 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite/command.js
+I, [2024-12-25T11:18:23.295919 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/link_rewrite/command.js
+I, [2024-12-25T11:18:23.296015 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite/config.yaml
+W, [2024-12-25T11:18:23.296250 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/link_rewrite/config.yaml
+I, [2024-12-25T11:18:23.296275 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite/module.rb
+I, [2024-12-25T11:18:23.296647 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/link_rewrite/module.rb
+I, [2024-12-25T11:18:23.296676 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite_click_events/command.js
+I, [2024-12-25T11:18:23.296864 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/link_rewrite_click_events/command.js
+I, [2024-12-25T11:18:23.296960 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite_click_events/config.yaml
+W, [2024-12-25T11:18:23.297199 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/link_rewrite_click_events/config.yaml
+I, [2024-12-25T11:18:23.297231 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite_click_events/module.rb
+I, [2024-12-25T11:18:23.297566 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/link_rewrite_click_events/module.rb
+I, [2024-12-25T11:18:23.297605 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite_sslstrip/command.js
+I, [2024-12-25T11:18:23.297782 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/link_rewrite_sslstrip/command.js
+I, [2024-12-25T11:18:23.297887 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite_sslstrip/config.yaml
+W, [2024-12-25T11:18:23.298173 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/link_rewrite_sslstrip/config.yaml
+I, [2024-12-25T11:18:23.298205 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb
+I, [2024-12-25T11:18:23.298535 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/link_rewrite_sslstrip/module.rb
+I, [2024-12-25T11:18:23.298574 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite_tel/command.js
+I, [2024-12-25T11:18:23.298815 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/link_rewrite_tel/command.js
+I, [2024-12-25T11:18:23.298851 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite_tel/config.yaml
+W, [2024-12-25T11:18:23.299067 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/link_rewrite_tel/config.yaml
+I, [2024-12-25T11:18:23.299091 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/link_rewrite_tel/module.rb
+I, [2024-12-25T11:18:23.299271 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/link_rewrite_tel/module.rb
+I, [2024-12-25T11:18:23.299383 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js
+I, [2024-12-25T11:18:23.299723 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/mobilesafari_address_spoofing/command.js
+I, [2024-12-25T11:18:23.299757 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/mobilesafari_address_spoofing/config.yaml
+W, [2024-12-25T11:18:23.300055 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/mobilesafari_address_spoofing/config.yaml
+I, [2024-12-25T11:18:23.300082 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb
+I, [2024-12-25T11:18:23.300304 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/mobilesafari_address_spoofing/module.rb
+I, [2024-12-25T11:18:23.300452 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/overflow_cookiejar/command.js
+I, [2024-12-25T11:18:23.300692 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/overflow_cookiejar/command.js
+I, [2024-12-25T11:18:23.300730 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/overflow_cookiejar/config.yaml
+W, [2024-12-25T11:18:23.300981 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/overflow_cookiejar/config.yaml
+I, [2024-12-25T11:18:23.301008 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/overflow_cookiejar/module.rb
+I, [2024-12-25T11:18:23.301180 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/overflow_cookiejar/module.rb
+I, [2024-12-25T11:18:23.301273 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/prompt_dialog/command.js
+I, [2024-12-25T11:18:23.301729 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/prompt_dialog/command.js
+I, [2024-12-25T11:18:23.301761 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/prompt_dialog/config.yaml
+W, [2024-12-25T11:18:23.302030 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/prompt_dialog/config.yaml
+I, [2024-12-25T11:18:23.302064 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/prompt_dialog/module.rb
+I, [2024-12-25T11:18:23.302277 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/prompt_dialog/module.rb
+I, [2024-12-25T11:18:23.302383 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/remove_stuck_iframes/command.js
+I, [2024-12-25T11:18:23.302674 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/remove_stuck_iframes/command.js
+I, [2024-12-25T11:18:23.302711 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/remove_stuck_iframes/config.yaml
+W, [2024-12-25T11:18:23.303034 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/remove_stuck_iframes/config.yaml
+I, [2024-12-25T11:18:23.303066 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/remove_stuck_iframes/module.rb
+I, [2024-12-25T11:18:23.303257 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/remove_stuck_iframes/module.rb
+I, [2024-12-25T11:18:23.303298 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/replace_video/command.js
+I, [2024-12-25T11:18:23.303778 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/replace_video/command.js
+I, [2024-12-25T11:18:23.303863 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/replace_video/config.yaml
+W, [2024-12-25T11:18:23.304734 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/replace_video/config.yaml
+I, [2024-12-25T11:18:23.304776 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/replace_video/module.rb
+I, [2024-12-25T11:18:23.305217 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/replace_video/module.rb
+I, [2024-12-25T11:18:23.305261 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/rickroll/command.js
+I, [2024-12-25T11:18:23.305572 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/rickroll/command.js
+I, [2024-12-25T11:18:23.305604 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/rickroll/config.yaml
+W, [2024-12-25T11:18:23.307204 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/rickroll/config.yaml
+I, [2024-12-25T11:18:23.307249 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/rickroll/module.rb
+I, [2024-12-25T11:18:23.307746 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/rickroll/module.rb
+I, [2024-12-25T11:18:23.307881 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/site_redirect/command.js
+I, [2024-12-25T11:18:23.308237 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/site_redirect/command.js
+I, [2024-12-25T11:18:23.308313 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/site_redirect/config.yaml
+W, [2024-12-25T11:18:23.308708 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/site_redirect/config.yaml
+I, [2024-12-25T11:18:23.308744 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/site_redirect/module.rb
+I, [2024-12-25T11:18:23.309146 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/site_redirect/module.rb
+I, [2024-12-25T11:18:23.309196 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/site_redirect_iframe/command.js
+I, [2024-12-25T11:18:23.309592 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/site_redirect_iframe/command.js
+I, [2024-12-25T11:18:23.309632 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/site_redirect_iframe/config.yaml
+W, [2024-12-25T11:18:23.309891 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/hooked_origin/site_redirect_iframe/config.yaml
+I, [2024-12-25T11:18:23.309923 #36268] INFO -- : Processing file: ../../modules/browser/hooked_origin/site_redirect_iframe/module.rb
+I, [2024-12-25T11:18:23.310202 #36268] INFO -- : Updated copyright in ../../modules/browser/hooked_origin/site_redirect_iframe/module.rb
+I, [2024-12-25T11:18:23.310238 #36268] INFO -- : Processing file: ../../modules/browser/play_sound/command.js
+I, [2024-12-25T11:18:23.310540 #36268] INFO -- : Updated copyright in ../../modules/browser/play_sound/command.js
+I, [2024-12-25T11:18:23.310583 #36268] INFO -- : Processing file: ../../modules/browser/play_sound/config.yaml
+W, [2024-12-25T11:18:23.310860 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/play_sound/config.yaml
+I, [2024-12-25T11:18:23.310887 #36268] INFO -- : Processing file: ../../modules/browser/play_sound/module.rb
+I, [2024-12-25T11:18:23.311060 #36268] INFO -- : Updated copyright in ../../modules/browser/play_sound/module.rb
+I, [2024-12-25T11:18:23.311156 #36268] INFO -- : Processing file: ../../modules/browser/remove_hook_element/command.js
+I, [2024-12-25T11:18:23.311363 #36268] INFO -- : Updated copyright in ../../modules/browser/remove_hook_element/command.js
+I, [2024-12-25T11:18:23.311610 #36268] INFO -- : Processing file: ../../modules/browser/remove_hook_element/config.yaml
+W, [2024-12-25T11:18:23.311967 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/remove_hook_element/config.yaml
+I, [2024-12-25T11:18:23.312014 #36268] INFO -- : Processing file: ../../modules/browser/remove_hook_element/module.rb
+I, [2024-12-25T11:18:23.312322 #36268] INFO -- : Updated copyright in ../../modules/browser/remove_hook_element/module.rb
+I, [2024-12-25T11:18:23.312535 #36268] INFO -- : Processing file: ../../modules/browser/spyder_eye/command.js
+I, [2024-12-25T11:18:23.313061 #36268] INFO -- : Updated copyright in ../../modules/browser/spyder_eye/command.js
+I, [2024-12-25T11:18:23.313105 #36268] INFO -- : Processing file: ../../modules/browser/spyder_eye/config.yaml
+W, [2024-12-25T11:18:23.313433 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/spyder_eye/config.yaml
+I, [2024-12-25T11:18:23.313555 #36268] INFO -- : Processing file: ../../modules/browser/spyder_eye/html2canvas.min.js
+W, [2024-12-25T11:18:23.314249 #36268] WARN -- : Copyright string not found in ../../modules/browser/spyder_eye/html2canvas.min.js
+I, [2024-12-25T11:18:23.314296 #36268] INFO -- : Processing file: ../../modules/browser/spyder_eye/module.rb
+I, [2024-12-25T11:18:23.314988 #36268] INFO -- : Updated copyright in ../../modules/browser/spyder_eye/module.rb
+I, [2024-12-25T11:18:23.315030 #36268] INFO -- : Processing file: ../../modules/browser/unhook/command.js
+I, [2024-12-25T11:18:23.315273 #36268] INFO -- : Updated copyright in ../../modules/browser/unhook/command.js
+I, [2024-12-25T11:18:23.315385 #36268] INFO -- : Processing file: ../../modules/browser/unhook/config.yaml
+W, [2024-12-25T11:18:23.315682 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/unhook/config.yaml
+I, [2024-12-25T11:18:23.315716 #36268] INFO -- : Processing file: ../../modules/browser/unhook/module.rb
+I, [2024-12-25T11:18:23.315953 #36268] INFO -- : Updated copyright in ../../modules/browser/unhook/module.rb
+I, [2024-12-25T11:18:23.315984 #36268] INFO -- : Processing file: ../../modules/browser/webcam_flash/command.js
+I, [2024-12-25T11:18:23.316440 #36268] INFO -- : Updated copyright in ../../modules/browser/webcam_flash/command.js
+I, [2024-12-25T11:18:23.316489 #36268] INFO -- : Processing file: ../../modules/browser/webcam_flash/config.yaml
+W, [2024-12-25T11:18:23.316804 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/webcam_flash/config.yaml
+I, [2024-12-25T11:18:23.316834 #36268] INFO -- : Processing file: ../../modules/browser/webcam_flash/module.rb
+I, [2024-12-25T11:18:23.317081 #36268] INFO -- : Updated copyright in ../../modules/browser/webcam_flash/module.rb
+I, [2024-12-25T11:18:23.317107 #36268] INFO -- : Processing file: ../../modules/browser/webcam_flash/swfobject.js
+W, [2024-12-25T11:18:23.317316 #36268] WARN -- : Copyright string not found in ../../modules/browser/webcam_flash/swfobject.js
+I, [2024-12-25T11:18:23.317348 #36268] INFO -- : Processing file: ../../modules/browser/webcam_html5/command.js
+I, [2024-12-25T11:18:23.317588 #36268] INFO -- : Updated copyright in ../../modules/browser/webcam_html5/command.js
+I, [2024-12-25T11:18:23.317614 #36268] INFO -- : Processing file: ../../modules/browser/webcam_html5/config.yaml
+W, [2024-12-25T11:18:23.317909 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/webcam_html5/config.yaml
+I, [2024-12-25T11:18:23.317935 #36268] INFO -- : Processing file: ../../modules/browser/webcam_html5/module.rb
+I, [2024-12-25T11:18:23.318107 #36268] INFO -- : Updated copyright in ../../modules/browser/webcam_html5/module.rb
+I, [2024-12-25T11:18:23.318125 #36268] INFO -- : Processing file: ../../modules/browser/webcam_permission_check/command.js
+I, [2024-12-25T11:18:23.318345 #36268] INFO -- : Updated copyright in ../../modules/browser/webcam_permission_check/command.js
+I, [2024-12-25T11:18:23.318595 #36268] INFO -- : Processing file: ../../modules/browser/webcam_permission_check/config.yaml
+W, [2024-12-25T11:18:23.318922 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/browser/webcam_permission_check/config.yaml
+I, [2024-12-25T11:18:23.318955 #36268] INFO -- : Processing file: ../../modules/browser/webcam_permission_check/module.rb
+I, [2024-12-25T11:18:23.319111 #36268] INFO -- : Updated copyright in ../../modules/browser/webcam_permission_check/module.rb
+I, [2024-12-25T11:18:23.319231 #36268] INFO -- : Processing file: ../../modules/browser/webcam_permission_check/swfobject.js
+W, [2024-12-25T11:18:23.319361 #36268] WARN -- : Copyright string not found in ../../modules/browser/webcam_permission_check/swfobject.js
+I, [2024-12-25T11:18:23.319387 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/execute_tabs/command.js
+I, [2024-12-25T11:18:23.319627 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/execute_tabs/command.js
+I, [2024-12-25T11:18:23.319727 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/execute_tabs/config.yaml
+W, [2024-12-25T11:18:23.319904 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/chrome_extensions/execute_tabs/config.yaml
+I, [2024-12-25T11:18:23.319930 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/execute_tabs/module.rb
+I, [2024-12-25T11:18:23.320066 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/execute_tabs/module.rb
+I, [2024-12-25T11:18:23.320158 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/get_all_cookies/command.js
+I, [2024-12-25T11:18:23.320316 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/get_all_cookies/command.js
+I, [2024-12-25T11:18:23.320342 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/get_all_cookies/config.yaml
+W, [2024-12-25T11:18:23.320658 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/chrome_extensions/get_all_cookies/config.yaml
+I, [2024-12-25T11:18:23.320688 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/get_all_cookies/module.rb
+I, [2024-12-25T11:18:23.320926 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/get_all_cookies/module.rb
+I, [2024-12-25T11:18:23.321039 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/grab_google_contacts/command.js
+I, [2024-12-25T11:18:23.321242 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/grab_google_contacts/command.js
+I, [2024-12-25T11:18:23.321279 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/grab_google_contacts/config.yaml
+W, [2024-12-25T11:18:23.321581 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/chrome_extensions/grab_google_contacts/config.yaml
+I, [2024-12-25T11:18:23.321607 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/grab_google_contacts/module.rb
+I, [2024-12-25T11:18:23.321793 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/grab_google_contacts/module.rb
+I, [2024-12-25T11:18:23.321877 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/inject_beef/command.js
+I, [2024-12-25T11:18:23.322114 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/inject_beef/command.js
+I, [2024-12-25T11:18:23.322168 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/inject_beef/config.yaml
+W, [2024-12-25T11:18:23.322394 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/chrome_extensions/inject_beef/config.yaml
+I, [2024-12-25T11:18:23.322420 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/inject_beef/module.rb
+I, [2024-12-25T11:18:23.322671 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/inject_beef/module.rb
+I, [2024-12-25T11:18:23.322769 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/screenshot/command.js
+I, [2024-12-25T11:18:23.322934 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/screenshot/command.js
+I, [2024-12-25T11:18:23.322960 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/screenshot/config.yaml
+W, [2024-12-25T11:18:23.323211 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/chrome_extensions/screenshot/config.yaml
+I, [2024-12-25T11:18:23.323238 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/screenshot/module.rb
+I, [2024-12-25T11:18:23.323380 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/screenshot/module.rb
+I, [2024-12-25T11:18:23.323559 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/send_gvoice_sms/command.js
+I, [2024-12-25T11:18:23.323752 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/send_gvoice_sms/command.js
+I, [2024-12-25T11:18:23.323847 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/send_gvoice_sms/config.yaml
+W, [2024-12-25T11:18:23.324136 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/chrome_extensions/send_gvoice_sms/config.yaml
+I, [2024-12-25T11:18:23.324207 #36268] INFO -- : Processing file: ../../modules/chrome_extensions/send_gvoice_sms/module.rb
+I, [2024-12-25T11:18:23.324411 #36268] INFO -- : Updated copyright in ../../modules/chrome_extensions/send_gvoice_sms/module.rb
+I, [2024-12-25T11:18:23.324622 #36268] INFO -- : Processing file: ../../modules/debug/test_beef_debug/command.js
+I, [2024-12-25T11:18:23.324986 #36268] INFO -- : Updated copyright in ../../modules/debug/test_beef_debug/command.js
+I, [2024-12-25T11:18:23.325426 #36268] INFO -- : Processing file: ../../modules/debug/test_beef_debug/config.yaml
+W, [2024-12-25T11:18:23.325768 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/debug/test_beef_debug/config.yaml
+I, [2024-12-25T11:18:23.325801 #36268] INFO -- : Processing file: ../../modules/debug/test_beef_debug/module.rb
+I, [2024-12-25T11:18:23.326017 #36268] INFO -- : Updated copyright in ../../modules/debug/test_beef_debug/module.rb
+I, [2024-12-25T11:18:23.326129 #36268] INFO -- : Processing file: ../../modules/debug/test_cors_request/command.js
+I, [2024-12-25T11:18:23.326487 #36268] INFO -- : Updated copyright in ../../modules/debug/test_cors_request/command.js
+I, [2024-12-25T11:18:23.326528 #36268] INFO -- : Processing file: ../../modules/debug/test_cors_request/config.yaml
+W, [2024-12-25T11:18:23.326821 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/debug/test_cors_request/config.yaml
+I, [2024-12-25T11:18:23.326847 #36268] INFO -- : Processing file: ../../modules/debug/test_cors_request/module.rb
+I, [2024-12-25T11:18:23.327093 #36268] INFO -- : Updated copyright in ../../modules/debug/test_cors_request/module.rb
+I, [2024-12-25T11:18:23.327129 #36268] INFO -- : Processing file: ../../modules/debug/test_dns_tunnel_client/command.js
+I, [2024-12-25T11:18:23.327345 #36268] INFO -- : Updated copyright in ../../modules/debug/test_dns_tunnel_client/command.js
+I, [2024-12-25T11:18:23.327378 #36268] INFO -- : Processing file: ../../modules/debug/test_dns_tunnel_client/config.yaml
+W, [2024-12-25T11:18:23.327626 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/debug/test_dns_tunnel_client/config.yaml
+I, [2024-12-25T11:18:23.327652 #36268] INFO -- : Processing file: ../../modules/debug/test_dns_tunnel_client/module.rb
+I, [2024-12-25T11:18:23.327909 #36268] INFO -- : Updated copyright in ../../modules/debug/test_dns_tunnel_client/module.rb
+I, [2024-12-25T11:18:23.327942 #36268] INFO -- : Processing file: ../../modules/debug/test_get_variable/command.js
+I, [2024-12-25T11:18:23.328114 #36268] INFO -- : Updated copyright in ../../modules/debug/test_get_variable/command.js
+I, [2024-12-25T11:18:23.328207 #36268] INFO -- : Processing file: ../../modules/debug/test_get_variable/config.yaml
+W, [2024-12-25T11:18:23.328409 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/debug/test_get_variable/config.yaml
+I, [2024-12-25T11:18:23.328438 #36268] INFO -- : Processing file: ../../modules/debug/test_get_variable/module.rb
+I, [2024-12-25T11:18:23.328822 #36268] INFO -- : Updated copyright in ../../modules/debug/test_get_variable/module.rb
+I, [2024-12-25T11:18:23.328858 #36268] INFO -- : Processing file: ../../modules/debug/test_http_redirect/command.js
+I, [2024-12-25T11:18:23.329133 #36268] INFO -- : Updated copyright in ../../modules/debug/test_http_redirect/command.js
+I, [2024-12-25T11:18:23.329168 #36268] INFO -- : Processing file: ../../modules/debug/test_http_redirect/config.yaml
+W, [2024-12-25T11:18:23.329418 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/debug/test_http_redirect/config.yaml
+I, [2024-12-25T11:18:23.329508 #36268] INFO -- : Processing file: ../../modules/debug/test_http_redirect/module.rb
+I, [2024-12-25T11:18:23.329726 #36268] INFO -- : Updated copyright in ../../modules/debug/test_http_redirect/module.rb
+I, [2024-12-25T11:18:23.329838 #36268] INFO -- : Processing file: ../../modules/debug/test_network_request/command.js
+I, [2024-12-25T11:18:23.330056 #36268] INFO -- : Updated copyright in ../../modules/debug/test_network_request/command.js
+I, [2024-12-25T11:18:23.330089 #36268] INFO -- : Processing file: ../../modules/debug/test_network_request/config.yaml
+W, [2024-12-25T11:18:23.330357 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/debug/test_network_request/config.yaml
+I, [2024-12-25T11:18:23.330382 #36268] INFO -- : Processing file: ../../modules/debug/test_network_request/module.rb
+I, [2024-12-25T11:18:23.330575 #36268] INFO -- : Updated copyright in ../../modules/debug/test_network_request/module.rb
+I, [2024-12-25T11:18:23.330602 #36268] INFO -- : Processing file: ../../modules/debug/test_return_ascii_chars/command.js
+I, [2024-12-25T11:18:23.330819 #36268] INFO -- : Updated copyright in ../../modules/debug/test_return_ascii_chars/command.js
+I, [2024-12-25T11:18:23.330914 #36268] INFO -- : Processing file: ../../modules/debug/test_return_ascii_chars/config.yaml
+W, [2024-12-25T11:18:23.331077 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/debug/test_return_ascii_chars/config.yaml
+I, [2024-12-25T11:18:23.331103 #36268] INFO -- : Processing file: ../../modules/debug/test_return_ascii_chars/module.rb
+I, [2024-12-25T11:18:23.331246 #36268] INFO -- : Updated copyright in ../../modules/debug/test_return_ascii_chars/module.rb
+I, [2024-12-25T11:18:23.331272 #36268] INFO -- : Processing file: ../../modules/debug/test_return_image/command.js
+I, [2024-12-25T11:18:23.331693 #36268] INFO -- : Updated copyright in ../../modules/debug/test_return_image/command.js
+I, [2024-12-25T11:18:23.331791 #36268] INFO -- : Processing file: ../../modules/debug/test_return_image/config.yaml
+W, [2024-12-25T11:18:23.331975 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/debug/test_return_image/config.yaml
+I, [2024-12-25T11:18:23.332003 #36268] INFO -- : Processing file: ../../modules/debug/test_return_image/module.rb
+I, [2024-12-25T11:18:23.332189 #36268] INFO -- : Updated copyright in ../../modules/debug/test_return_image/module.rb
+I, [2024-12-25T11:18:23.332299 #36268] INFO -- : Processing file: ../../modules/debug/test_return_long_string/command.js
+I, [2024-12-25T11:18:23.332582 #36268] INFO -- : Updated copyright in ../../modules/debug/test_return_long_string/command.js
+I, [2024-12-25T11:18:23.332614 #36268] INFO -- : Processing file: ../../modules/debug/test_return_long_string/config.yaml
+W, [2024-12-25T11:18:23.332860 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/debug/test_return_long_string/config.yaml
+I, [2024-12-25T11:18:23.332891 #36268] INFO -- : Processing file: ../../modules/debug/test_return_long_string/module.rb
+I, [2024-12-25T11:18:23.333082 #36268] INFO -- : Updated copyright in ../../modules/debug/test_return_long_string/module.rb
+I, [2024-12-25T11:18:23.333247 #36268] INFO -- : Processing file: ../../modules/exploits/apache_cookie_disclosure/command.js
+I, [2024-12-25T11:18:23.333587 #36268] INFO -- : Updated copyright in ../../modules/exploits/apache_cookie_disclosure/command.js
+I, [2024-12-25T11:18:23.333633 #36268] INFO -- : Processing file: ../../modules/exploits/apache_cookie_disclosure/config.yaml
+W, [2024-12-25T11:18:23.333872 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/apache_cookie_disclosure/config.yaml
+I, [2024-12-25T11:18:23.333905 #36268] INFO -- : Processing file: ../../modules/exploits/apache_cookie_disclosure/module.rb
+I, [2024-12-25T11:18:23.334081 #36268] INFO -- : Updated copyright in ../../modules/exploits/apache_cookie_disclosure/module.rb
+I, [2024-12-25T11:18:23.334196 #36268] INFO -- : Processing file: ../../modules/exploits/apache_felix_remote_shell/command.js
+I, [2024-12-25T11:18:23.334510 #36268] INFO -- : Updated copyright in ../../modules/exploits/apache_felix_remote_shell/command.js
+I, [2024-12-25T11:18:23.334545 #36268] INFO -- : Processing file: ../../modules/exploits/apache_felix_remote_shell/config.yaml
+W, [2024-12-25T11:18:23.334826 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/apache_felix_remote_shell/config.yaml
+I, [2024-12-25T11:18:23.334860 #36268] INFO -- : Processing file: ../../modules/exploits/apache_felix_remote_shell/module.rb
+I, [2024-12-25T11:18:23.335130 #36268] INFO -- : Updated copyright in ../../modules/exploits/apache_felix_remote_shell/module.rb
+I, [2024-12-25T11:18:23.335166 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/beef_bind_shell/command.js
+I, [2024-12-25T11:18:23.335365 #36268] INFO -- : Updated copyright in ../../modules/exploits/beefbind/beef_bind_shell/command.js
+I, [2024-12-25T11:18:23.335589 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/beef_bind_shell/config.yaml
+W, [2024-12-25T11:18:23.335992 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/beefbind/beef_bind_shell/config.yaml
+I, [2024-12-25T11:18:23.336045 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/beef_bind_shell/module.rb
+I, [2024-12-25T11:18:23.336731 #36268] INFO -- : Updated copyright in ../../modules/exploits/beefbind/beef_bind_shell/module.rb
+I, [2024-12-25T11:18:23.336794 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-handler.rb
+W, [2024-12-25T11:18:23.336870 #36268] WARN -- : Copyright string not found in ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-handler.rb
+I, [2024-12-25T11:18:23.336894 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stage-linux-x64.rb
+W, [2024-12-25T11:18:23.336951 #36268] WARN -- : Copyright string not found in ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stage-linux-x64.rb
+I, [2024-12-25T11:18:23.336975 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stage-linux-x86.rb
+W, [2024-12-25T11:18:23.337049 #36268] WARN -- : Copyright string not found in ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stage-linux-x86.rb
+I, [2024-12-25T11:18:23.337075 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stage-windows-x86.rb
+W, [2024-12-25T11:18:23.337162 #36268] WARN -- : Copyright string not found in ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stage-windows-x86.rb
+I, [2024-12-25T11:18:23.337191 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stager-linux-x64.rb
+W, [2024-12-25T11:18:23.337268 #36268] WARN -- : Copyright string not found in ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stager-linux-x64.rb
+I, [2024-12-25T11:18:23.337295 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stager-linux-x86.rb
+W, [2024-12-25T11:18:23.337369 #36268] WARN -- : Copyright string not found in ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stager-linux-x86.rb
+I, [2024-12-25T11:18:23.337405 #36268] INFO -- : Processing file: ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stager-windows-x86.rb
+W, [2024-12-25T11:18:23.337458 #36268] WARN -- : Copyright string not found in ../../modules/exploits/beefbind/shellcode_sources/msf/beef_bind-stager-windows-x86.rb
+I, [2024-12-25T11:18:23.337483 #36268] INFO -- : Processing file: ../../modules/exploits/boastmachine_3_1_add_user_csrf/command.js
+I, [2024-12-25T11:18:23.337920 #36268] INFO -- : Updated copyright in ../../modules/exploits/boastmachine_3_1_add_user_csrf/command.js
+I, [2024-12-25T11:18:23.338005 #36268] INFO -- : Processing file: ../../modules/exploits/boastmachine_3_1_add_user_csrf/config.yaml
+W, [2024-12-25T11:18:23.338548 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/boastmachine_3_1_add_user_csrf/config.yaml
+I, [2024-12-25T11:18:23.338593 #36268] INFO -- : Processing file: ../../modules/exploits/boastmachine_3_1_add_user_csrf/module.rb
+I, [2024-12-25T11:18:23.338802 #36268] INFO -- : Updated copyright in ../../modules/exploits/boastmachine_3_1_add_user_csrf/module.rb
+I, [2024-12-25T11:18:23.338909 #36268] INFO -- : Processing file: ../../modules/exploits/camera/airlive_ip_camera_csrf/command.js
+I, [2024-12-25T11:18:23.339192 #36268] INFO -- : Updated copyright in ../../modules/exploits/camera/airlive_ip_camera_csrf/command.js
+I, [2024-12-25T11:18:23.339238 #36268] INFO -- : Processing file: ../../modules/exploits/camera/airlive_ip_camera_csrf/config.yaml
+W, [2024-12-25T11:18:23.339588 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/camera/airlive_ip_camera_csrf/config.yaml
+I, [2024-12-25T11:18:23.339616 #36268] INFO -- : Processing file: ../../modules/exploits/camera/airlive_ip_camera_csrf/module.rb
+I, [2024-12-25T11:18:23.339872 #36268] INFO -- : Updated copyright in ../../modules/exploits/camera/airlive_ip_camera_csrf/module.rb
+I, [2024-12-25T11:18:23.339981 #36268] INFO -- : Processing file: ../../modules/exploits/camera/dlink_dcs_series_csrf/command.js
+I, [2024-12-25T11:18:23.340243 #36268] INFO -- : Updated copyright in ../../modules/exploits/camera/dlink_dcs_series_csrf/command.js
+I, [2024-12-25T11:18:23.340282 #36268] INFO -- : Processing file: ../../modules/exploits/camera/dlink_dcs_series_csrf/config.yaml
+W, [2024-12-25T11:18:23.340809 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/camera/dlink_dcs_series_csrf/config.yaml
+I, [2024-12-25T11:18:23.340842 #36268] INFO -- : Processing file: ../../modules/exploits/camera/dlink_dcs_series_csrf/module.rb
+I, [2024-12-25T11:18:23.341080 #36268] INFO -- : Updated copyright in ../../modules/exploits/camera/dlink_dcs_series_csrf/module.rb
+I, [2024-12-25T11:18:23.341179 #36268] INFO -- : Processing file: ../../modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js
+I, [2024-12-25T11:18:23.341482 #36268] INFO -- : Updated copyright in ../../modules/exploits/camera/linksys_wvc_wireless_camera_csrf/command.js
+I, [2024-12-25T11:18:23.341547 #36268] INFO -- : Processing file: ../../modules/exploits/camera/linksys_wvc_wireless_camera_csrf/config.yaml
+W, [2024-12-25T11:18:23.341759 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/camera/linksys_wvc_wireless_camera_csrf/config.yaml
+I, [2024-12-25T11:18:23.341786 #36268] INFO -- : Processing file: ../../modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb
+I, [2024-12-25T11:18:23.341974 #36268] INFO -- : Updated copyright in ../../modules/exploits/camera/linksys_wvc_wireless_camera_csrf/module.rb
+I, [2024-12-25T11:18:23.342073 #36268] INFO -- : Processing file: ../../modules/exploits/coldfusion_dir_traversal_exploit/command.js
+I, [2024-12-25T11:18:23.342345 #36268] INFO -- : Updated copyright in ../../modules/exploits/coldfusion_dir_traversal_exploit/command.js
+I, [2024-12-25T11:18:23.342384 #36268] INFO -- : Processing file: ../../modules/exploits/coldfusion_dir_traversal_exploit/config.yaml
+W, [2024-12-25T11:18:23.343277 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/coldfusion_dir_traversal_exploit/config.yaml
+I, [2024-12-25T11:18:23.343325 #36268] INFO -- : Processing file: ../../modules/exploits/coldfusion_dir_traversal_exploit/module.rb
+I, [2024-12-25T11:18:23.343804 #36268] INFO -- : Updated copyright in ../../modules/exploits/coldfusion_dir_traversal_exploit/module.rb
+I, [2024-12-25T11:18:23.343906 #36268] INFO -- : Processing file: ../../modules/exploits/extract_cmd_exec/command.js
+I, [2024-12-25T11:18:23.344185 #36268] INFO -- : Updated copyright in ../../modules/exploits/extract_cmd_exec/command.js
+I, [2024-12-25T11:18:23.344226 #36268] INFO -- : Processing file: ../../modules/exploits/extract_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.344579 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/extract_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.344608 #36268] INFO -- : Processing file: ../../modules/exploits/extract_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.344822 #36268] INFO -- : Updated copyright in ../../modules/exploits/extract_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.344921 #36268] INFO -- : Processing file: ../../modules/exploits/farsite_x25_remote_shell/command.js
+W, [2024-12-25T11:18:23.344995 #36268] WARN -- : Copyright string not found in ../../modules/exploits/farsite_x25_remote_shell/command.js
+I, [2024-12-25T11:18:23.345020 #36268] INFO -- : Processing file: ../../modules/exploits/farsite_x25_remote_shell/config.yaml
+W, [2024-12-25T11:18:23.345263 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/farsite_x25_remote_shell/config.yaml
+I, [2024-12-25T11:18:23.345296 #36268] INFO -- : Processing file: ../../modules/exploits/farsite_x25_remote_shell/module.rb
+W, [2024-12-25T11:18:23.345385 #36268] WARN -- : Copyright string not found in ../../modules/exploits/farsite_x25_remote_shell/module.rb
+I, [2024-12-25T11:18:23.345474 #36268] INFO -- : Processing file: ../../modules/exploits/firephp/command.js
+I, [2024-12-25T11:18:23.345685 #36268] INFO -- : Updated copyright in ../../modules/exploits/firephp/command.js
+I, [2024-12-25T11:18:23.345773 #36268] INFO -- : Processing file: ../../modules/exploits/firephp/config.yaml
+W, [2024-12-25T11:18:23.345994 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/firephp/config.yaml
+I, [2024-12-25T11:18:23.346025 #36268] INFO -- : Processing file: ../../modules/exploits/firephp/module.rb
+I, [2024-12-25T11:18:23.346214 #36268] INFO -- : Updated copyright in ../../modules/exploits/firephp/module.rb
+I, [2024-12-25T11:18:23.346307 #36268] INFO -- : Processing file: ../../modules/exploits/firephp/payload.js
+W, [2024-12-25T11:18:23.346398 #36268] WARN -- : Copyright string not found in ../../modules/exploits/firephp/payload.js
+I, [2024-12-25T11:18:23.346477 #36268] INFO -- : Processing file: ../../modules/exploits/glassfish_war_upload_xsrf/command.js
+I, [2024-12-25T11:18:23.346662 #36268] INFO -- : Updated copyright in ../../modules/exploits/glassfish_war_upload_xsrf/command.js
+I, [2024-12-25T11:18:23.346749 #36268] INFO -- : Processing file: ../../modules/exploits/glassfish_war_upload_xsrf/config.yaml
+W, [2024-12-25T11:18:23.346977 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/glassfish_war_upload_xsrf/config.yaml
+I, [2024-12-25T11:18:23.347020 #36268] INFO -- : Processing file: ../../modules/exploits/glassfish_war_upload_xsrf/module.rb
+I, [2024-12-25T11:18:23.347320 #36268] INFO -- : Updated copyright in ../../modules/exploits/glassfish_war_upload_xsrf/module.rb
+I, [2024-12-25T11:18:23.347376 #36268] INFO -- : Processing file: ../../modules/exploits/groovyshell_server_cmd_exec/command.js
+I, [2024-12-25T11:18:23.348126 #36268] INFO -- : Updated copyright in ../../modules/exploits/groovyshell_server_cmd_exec/command.js
+I, [2024-12-25T11:18:23.348175 #36268] INFO -- : Processing file: ../../modules/exploits/groovyshell_server_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.348451 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/groovyshell_server_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.348565 #36268] INFO -- : Processing file: ../../modules/exploits/groovyshell_server_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.349155 #36268] INFO -- : Updated copyright in ../../modules/exploits/groovyshell_server_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.349253 #36268] INFO -- : Processing file: ../../modules/exploits/hp_ucmdb_add_user_csrf/command.js
+I, [2024-12-25T11:18:23.350158 #36268] INFO -- : Updated copyright in ../../modules/exploits/hp_ucmdb_add_user_csrf/command.js
+I, [2024-12-25T11:18:23.350234 #36268] INFO -- : Processing file: ../../modules/exploits/hp_ucmdb_add_user_csrf/config.yaml
+W, [2024-12-25T11:18:23.350608 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/hp_ucmdb_add_user_csrf/config.yaml
+I, [2024-12-25T11:18:23.350648 #36268] INFO -- : Processing file: ../../modules/exploits/hp_ucmdb_add_user_csrf/module.rb
+I, [2024-12-25T11:18:23.350960 #36268] INFO -- : Updated copyright in ../../modules/exploits/hp_ucmdb_add_user_csrf/module.rb
+I, [2024-12-25T11:18:23.351088 #36268] INFO -- : Processing file: ../../modules/exploits/jboss_jmx_upload_exploit/command.js
+I, [2024-12-25T11:18:23.351632 #36268] INFO -- : Updated copyright in ../../modules/exploits/jboss_jmx_upload_exploit/command.js
+I, [2024-12-25T11:18:23.351692 #36268] INFO -- : Processing file: ../../modules/exploits/jboss_jmx_upload_exploit/config.yaml
+W, [2024-12-25T11:18:23.351958 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/jboss_jmx_upload_exploit/config.yaml
+I, [2024-12-25T11:18:23.351977 #36268] INFO -- : Processing file: ../../modules/exploits/jboss_jmx_upload_exploit/module.rb
+I, [2024-12-25T11:18:23.352157 #36268] INFO -- : Updated copyright in ../../modules/exploits/jboss_jmx_upload_exploit/module.rb
+I, [2024-12-25T11:18:23.352176 #36268] INFO -- : Processing file: ../../modules/exploits/jenkins_groovy_code_exec/command.js
+I, [2024-12-25T11:18:23.352531 #36268] INFO -- : Updated copyright in ../../modules/exploits/jenkins_groovy_code_exec/command.js
+I, [2024-12-25T11:18:23.352560 #36268] INFO -- : Processing file: ../../modules/exploits/jenkins_groovy_code_exec/config.yaml
+W, [2024-12-25T11:18:23.352736 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/jenkins_groovy_code_exec/config.yaml
+I, [2024-12-25T11:18:23.352755 #36268] INFO -- : Processing file: ../../modules/exploits/jenkins_groovy_code_exec/module.rb
+I, [2024-12-25T11:18:23.352911 #36268] INFO -- : Updated copyright in ../../modules/exploits/jenkins_groovy_code_exec/module.rb
+I, [2024-12-25T11:18:23.353002 #36268] INFO -- : Processing file: ../../modules/exploits/kemp_command_execution/command.js
+I, [2024-12-25T11:18:23.353242 #36268] INFO -- : Updated copyright in ../../modules/exploits/kemp_command_execution/command.js
+I, [2024-12-25T11:18:23.353271 #36268] INFO -- : Processing file: ../../modules/exploits/kemp_command_execution/config.yaml
+W, [2024-12-25T11:18:23.353610 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/kemp_command_execution/config.yaml
+I, [2024-12-25T11:18:23.353630 #36268] INFO -- : Processing file: ../../modules/exploits/kemp_command_execution/module.rb
+I, [2024-12-25T11:18:23.353854 #36268] INFO -- : Updated copyright in ../../modules/exploits/kemp_command_execution/module.rb
+I, [2024-12-25T11:18:23.353938 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/activex_command_execution/command.js
+I, [2024-12-25T11:18:23.354118 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/activex_command_execution/command.js
+I, [2024-12-25T11:18:23.354196 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/activex_command_execution/config.yaml
+W, [2024-12-25T11:18:23.354422 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/local_host/activex_command_execution/config.yaml
+I, [2024-12-25T11:18:23.354541 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/activex_command_execution/module.rb
+I, [2024-12-25T11:18:23.354808 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/activex_command_execution/module.rb
+I, [2024-12-25T11:18:23.354843 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/java_payload/command.js
+I, [2024-12-25T11:18:23.355060 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/java_payload/command.js
+I, [2024-12-25T11:18:23.355095 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/java_payload/config.yaml
+W, [2024-12-25T11:18:23.355301 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/local_host/java_payload/config.yaml
+I, [2024-12-25T11:18:23.355334 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/java_payload/module.rb
+I, [2024-12-25T11:18:23.355586 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/java_payload/module.rb
+I, [2024-12-25T11:18:23.355632 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/mozilla_nsiprocess_interface/command.js
+I, [2024-12-25T11:18:23.355898 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/mozilla_nsiprocess_interface/command.js
+I, [2024-12-25T11:18:23.355939 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/mozilla_nsiprocess_interface/config.yaml
+W, [2024-12-25T11:18:23.356264 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/local_host/mozilla_nsiprocess_interface/config.yaml
+I, [2024-12-25T11:18:23.356297 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb
+I, [2024-12-25T11:18:23.356612 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/mozilla_nsiprocess_interface/module.rb
+I, [2024-12-25T11:18:23.356646 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/safari_launch_app/command.js
+I, [2024-12-25T11:18:23.356891 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/safari_launch_app/command.js
+I, [2024-12-25T11:18:23.356926 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/safari_launch_app/config.yaml
+W, [2024-12-25T11:18:23.357136 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/local_host/safari_launch_app/config.yaml
+I, [2024-12-25T11:18:23.357161 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/safari_launch_app/module.rb
+I, [2024-12-25T11:18:23.357592 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/safari_launch_app/module.rb
+I, [2024-12-25T11:18:23.357627 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/signed_applet_dropper/command.js
+I, [2024-12-25T11:18:23.357897 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/signed_applet_dropper/command.js
+I, [2024-12-25T11:18:23.357959 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/signed_applet_dropper/config.yaml
+W, [2024-12-25T11:18:23.358373 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/local_host/signed_applet_dropper/config.yaml
+I, [2024-12-25T11:18:23.358410 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/signed_applet_dropper/module.rb
+I, [2024-12-25T11:18:23.358743 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/signed_applet_dropper/module.rb
+I, [2024-12-25T11:18:23.358781 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/window_mail_client_dos/command.js
+I, [2024-12-25T11:18:23.359022 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/window_mail_client_dos/command.js
+I, [2024-12-25T11:18:23.359056 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/window_mail_client_dos/config.yaml
+W, [2024-12-25T11:18:23.359503 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/local_host/window_mail_client_dos/config.yaml
+I, [2024-12-25T11:18:23.359543 #36268] INFO -- : Processing file: ../../modules/exploits/local_host/window_mail_client_dos/module.rb
+I, [2024-12-25T11:18:23.359852 #36268] INFO -- : Updated copyright in ../../modules/exploits/local_host/window_mail_client_dos/module.rb
+I, [2024-12-25T11:18:23.359887 #36268] INFO -- : Processing file: ../../modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js
+I, [2024-12-25T11:18:23.360115 #36268] INFO -- : Updated copyright in ../../modules/exploits/nas/dlink_sharecenter_cmd_exec/command.js
+I, [2024-12-25T11:18:23.360148 #36268] INFO -- : Processing file: ../../modules/exploits/nas/dlink_sharecenter_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.360356 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/nas/dlink_sharecenter_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.360383 #36268] INFO -- : Processing file: ../../modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.360659 #36268] INFO -- : Updated copyright in ../../modules/exploits/nas/dlink_sharecenter_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.360756 #36268] INFO -- : Processing file: ../../modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js
+I, [2024-12-25T11:18:23.360914 #36268] INFO -- : Updated copyright in ../../modules/exploits/nas/freenas_reverse_root_shell_csrf/command.js
+I, [2024-12-25T11:18:23.360941 #36268] INFO -- : Processing file: ../../modules/exploits/nas/freenas_reverse_root_shell_csrf/config.yaml
+W, [2024-12-25T11:18:23.361217 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/nas/freenas_reverse_root_shell_csrf/config.yaml
+I, [2024-12-25T11:18:23.361242 #36268] INFO -- : Processing file: ../../modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb
+I, [2024-12-25T11:18:23.361530 #36268] INFO -- : Updated copyright in ../../modules/exploits/nas/freenas_reverse_root_shell_csrf/module.rb
+I, [2024-12-25T11:18:23.361567 #36268] INFO -- : Processing file: ../../modules/exploits/ntfscommoncreate_dos/command.js
+I, [2024-12-25T11:18:23.361915 #36268] INFO -- : Updated copyright in ../../modules/exploits/ntfscommoncreate_dos/command.js
+I, [2024-12-25T11:18:23.361968 #36268] INFO -- : Processing file: ../../modules/exploits/ntfscommoncreate_dos/config.yaml
+W, [2024-12-25T11:18:23.362203 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/ntfscommoncreate_dos/config.yaml
+I, [2024-12-25T11:18:23.362229 #36268] INFO -- : Processing file: ../../modules/exploits/ntfscommoncreate_dos/module.rb
+I, [2024-12-25T11:18:23.362620 #36268] INFO -- : Updated copyright in ../../modules/exploits/ntfscommoncreate_dos/module.rb
+I, [2024-12-25T11:18:23.362672 #36268] INFO -- : Processing file: ../../modules/exploits/opencart_reset_password/command.js
+I, [2024-12-25T11:18:23.362934 #36268] INFO -- : Updated copyright in ../../modules/exploits/opencart_reset_password/command.js
+I, [2024-12-25T11:18:23.362969 #36268] INFO -- : Processing file: ../../modules/exploits/opencart_reset_password/config.yaml
+W, [2024-12-25T11:18:23.363200 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/opencart_reset_password/config.yaml
+I, [2024-12-25T11:18:23.363227 #36268] INFO -- : Processing file: ../../modules/exploits/opencart_reset_password/module.rb
+I, [2024-12-25T11:18:23.363729 #36268] INFO -- : Updated copyright in ../../modules/exploits/opencart_reset_password/module.rb
+I, [2024-12-25T11:18:23.363759 #36268] INFO -- : Processing file: ../../modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/command.js
+I, [2024-12-25T11:18:23.364045 #36268] INFO -- : Updated copyright in ../../modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/command.js
+I, [2024-12-25T11:18:23.364090 #36268] INFO -- : Processing file: ../../modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/config.yaml
+W, [2024-12-25T11:18:23.364349 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/config.yaml
+I, [2024-12-25T11:18:23.364400 #36268] INFO -- : Processing file: ../../modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/module.rb
+I, [2024-12-25T11:18:23.364823 #36268] INFO -- : Updated copyright in ../../modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/module.rb
+I, [2024-12-25T11:18:23.364956 #36268] INFO -- : Processing file: ../../modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/x.js
+W, [2024-12-25T11:18:23.365103 #36268] WARN -- : Copyright string not found in ../../modules/exploits/pfsense/pfsense_2.3.2_reverse_root_shell_csrf/x.js
+I, [2024-12-25T11:18:23.365138 #36268] INFO -- : Processing file: ../../modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js
+I, [2024-12-25T11:18:23.365915 #36268] INFO -- : Updated copyright in ../../modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/command.js
+I, [2024-12-25T11:18:23.365955 #36268] INFO -- : Processing file: ../../modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/config.yaml
+W, [2024-12-25T11:18:23.366345 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/config.yaml
+I, [2024-12-25T11:18:23.366381 #36268] INFO -- : Processing file: ../../modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb
+I, [2024-12-25T11:18:23.366889 #36268] INFO -- : Updated copyright in ../../modules/exploits/pfsense/pfsense_reverse_root_shell_csrf/module.rb
+I, [2024-12-25T11:18:23.366932 #36268] INFO -- : Processing file: ../../modules/exploits/php-5.3.9-dos/command.js
+I, [2024-12-25T11:18:23.367270 #36268] INFO -- : Updated copyright in ../../modules/exploits/php-5.3.9-dos/command.js
+I, [2024-12-25T11:18:23.367329 #36268] INFO -- : Processing file: ../../modules/exploits/php-5.3.9-dos/config.yaml
+W, [2024-12-25T11:18:23.367858 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/php-5.3.9-dos/config.yaml
+I, [2024-12-25T11:18:23.367898 #36268] INFO -- : Processing file: ../../modules/exploits/php-5.3.9-dos/module.rb
+I, [2024-12-25T11:18:23.368294 #36268] INFO -- : Updated copyright in ../../modules/exploits/php-5.3.9-dos/module.rb
+I, [2024-12-25T11:18:23.368341 #36268] INFO -- : Processing file: ../../modules/exploits/qemu_monitor_migrate_cmd_exec/command.js
+I, [2024-12-25T11:18:23.368634 #36268] INFO -- : Updated copyright in ../../modules/exploits/qemu_monitor_migrate_cmd_exec/command.js
+I, [2024-12-25T11:18:23.368738 #36268] INFO -- : Processing file: ../../modules/exploits/qemu_monitor_migrate_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.368944 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/qemu_monitor_migrate_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.368970 #36268] INFO -- : Processing file: ../../modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.369158 #36268] INFO -- : Updated copyright in ../../modules/exploits/qemu_monitor_migrate_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.369267 #36268] INFO -- : Processing file: ../../modules/exploits/qnx_qconn_command_execution/command.js
+I, [2024-12-25T11:18:23.369588 #36268] INFO -- : Updated copyright in ../../modules/exploits/qnx_qconn_command_execution/command.js
+I, [2024-12-25T11:18:23.369622 #36268] INFO -- : Processing file: ../../modules/exploits/qnx_qconn_command_execution/config.yaml
+W, [2024-12-25T11:18:23.369838 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/qnx_qconn_command_execution/config.yaml
+I, [2024-12-25T11:18:23.369864 #36268] INFO -- : Processing file: ../../modules/exploits/qnx_qconn_command_execution/module.rb
+I, [2024-12-25T11:18:23.370076 #36268] INFO -- : Updated copyright in ../../modules/exploits/qnx_qconn_command_execution/module.rb
+I, [2024-12-25T11:18:23.370173 #36268] INFO -- : Processing file: ../../modules/exploits/resource_exhaustion_dos/command.js
+I, [2024-12-25T11:18:23.370362 #36268] INFO -- : Updated copyright in ../../modules/exploits/resource_exhaustion_dos/command.js
+I, [2024-12-25T11:18:23.370592 #36268] INFO -- : Processing file: ../../modules/exploits/resource_exhaustion_dos/config.yaml
+W, [2024-12-25T11:18:23.370818 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/resource_exhaustion_dos/config.yaml
+I, [2024-12-25T11:18:23.370851 #36268] INFO -- : Processing file: ../../modules/exploits/resource_exhaustion_dos/module.rb
+I, [2024-12-25T11:18:23.371121 #36268] INFO -- : Updated copyright in ../../modules/exploits/resource_exhaustion_dos/module.rb
+I, [2024-12-25T11:18:23.371157 #36268] INFO -- : Processing file: ../../modules/exploits/rfi_scanner/command.js
+I, [2024-12-25T11:18:23.371346 #36268] INFO -- : Updated copyright in ../../modules/exploits/rfi_scanner/command.js
+I, [2024-12-25T11:18:23.371478 #36268] INFO -- : Processing file: ../../modules/exploits/rfi_scanner/config.yaml
+W, [2024-12-25T11:18:23.371703 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/rfi_scanner/config.yaml
+I, [2024-12-25T11:18:23.371736 #36268] INFO -- : Processing file: ../../modules/exploits/rfi_scanner/module.rb
+I, [2024-12-25T11:18:23.371923 #36268] INFO -- : Updated copyright in ../../modules/exploits/rfi_scanner/module.rb
+I, [2024-12-25T11:18:23.372008 #36268] INFO -- : Processing file: ../../modules/exploits/router/3com_officeconnect_cmd_exec/command.js
+I, [2024-12-25T11:18:23.372239 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/3com_officeconnect_cmd_exec/command.js
+I, [2024-12-25T11:18:23.372275 #36268] INFO -- : Processing file: ../../modules/exploits/router/3com_officeconnect_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.372575 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/3com_officeconnect_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.372602 #36268] INFO -- : Processing file: ../../modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.372896 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/3com_officeconnect_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.372945 #36268] INFO -- : Processing file: ../../modules/exploits/router/actiontec_q1000_csrf/command.js
+I, [2024-12-25T11:18:23.373212 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/actiontec_q1000_csrf/command.js
+I, [2024-12-25T11:18:23.373245 #36268] INFO -- : Processing file: ../../modules/exploits/router/actiontec_q1000_csrf/config.yaml
+W, [2024-12-25T11:18:23.373540 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/actiontec_q1000_csrf/config.yaml
+I, [2024-12-25T11:18:23.373587 #36268] INFO -- : Processing file: ../../modules/exploits/router/actiontec_q1000_csrf/module.rb
+I, [2024-12-25T11:18:23.373800 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/actiontec_q1000_csrf/module.rb
+I, [2024-12-25T11:18:23.373899 #36268] INFO -- : Processing file: ../../modules/exploits/router/argw4_adsl_dns_hijack/command.js
+I, [2024-12-25T11:18:23.374261 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/argw4_adsl_dns_hijack/command.js
+I, [2024-12-25T11:18:23.374296 #36268] INFO -- : Processing file: ../../modules/exploits/router/argw4_adsl_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.374715 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/argw4_adsl_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.374758 #36268] INFO -- : Processing file: ../../modules/exploits/router/argw4_adsl_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.375076 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/argw4_adsl_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.375197 #36268] INFO -- : Processing file: ../../modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
+I, [2024-12-25T11:18:23.375636 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/asmax_ar804gu_cmd_exec/command.js
+I, [2024-12-25T11:18:23.375683 #36268] INFO -- : Processing file: ../../modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.375911 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/asmax_ar804gu_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.375937 #36268] INFO -- : Processing file: ../../modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.376200 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/asmax_ar804gu_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.376233 #36268] INFO -- : Processing file: ../../modules/exploits/router/asus_dslx11_dns_hijack/command.js
+I, [2024-12-25T11:18:23.376373 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/asus_dslx11_dns_hijack/command.js
+I, [2024-12-25T11:18:23.376501 #36268] INFO -- : Processing file: ../../modules/exploits/router/asus_dslx11_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.376696 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/asus_dslx11_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.376722 #36268] INFO -- : Processing file: ../../modules/exploits/router/asus_dslx11_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.376890 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/asus_dslx11_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.376984 #36268] INFO -- : Processing file: ../../modules/exploits/router/asus_rt_n12e_get_info/command.js
+I, [2024-12-25T11:18:23.377170 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/asus_rt_n12e_get_info/command.js
+I, [2024-12-25T11:18:23.377195 #36268] INFO -- : Processing file: ../../modules/exploits/router/asus_rt_n12e_get_info/config.yaml
+W, [2024-12-25T11:18:23.377538 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/asus_rt_n12e_get_info/config.yaml
+I, [2024-12-25T11:18:23.377570 #36268] INFO -- : Processing file: ../../modules/exploits/router/asus_rt_n12e_get_info/module.rb
+I, [2024-12-25T11:18:23.377847 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/asus_rt_n12e_get_info/module.rb
+I, [2024-12-25T11:18:23.377885 #36268] INFO -- : Processing file: ../../modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
+I, [2024-12-25T11:18:23.378187 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/asus_rt_n66u_cmd_exec/command.js
+I, [2024-12-25T11:18:23.378224 #36268] INFO -- : Processing file: ../../modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.378617 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/asus_rt_n66u_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.378643 #36268] INFO -- : Processing file: ../../modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.378874 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/asus_rt_n66u_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.379025 #36268] INFO -- : Processing file: ../../modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js
+I, [2024-12-25T11:18:23.379255 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/beetel_bcm96338_router_dns_hijack/command.js
+I, [2024-12-25T11:18:23.379365 #36268] INFO -- : Processing file: ../../modules/exploits/router/beetel_bcm96338_router_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.379652 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/beetel_bcm96338_router_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.379679 #36268] INFO -- : Processing file: ../../modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.380150 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/beetel_bcm96338_router_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.380201 #36268] INFO -- : Processing file: ../../modules/exploits/router/belkin_dns_csrf/command.js
+I, [2024-12-25T11:18:23.380416 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/belkin_dns_csrf/command.js
+I, [2024-12-25T11:18:23.380577 #36268] INFO -- : Processing file: ../../modules/exploits/router/belkin_dns_csrf/config.yaml
+W, [2024-12-25T11:18:23.380810 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/belkin_dns_csrf/config.yaml
+I, [2024-12-25T11:18:23.380836 #36268] INFO -- : Processing file: ../../modules/exploits/router/belkin_dns_csrf/module.rb
+I, [2024-12-25T11:18:23.381175 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/belkin_dns_csrf/module.rb
+I, [2024-12-25T11:18:23.381255 #36268] INFO -- : Processing file: ../../modules/exploits/router/bt_home_hub_csrf/command.js
+I, [2024-12-25T11:18:23.381857 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/bt_home_hub_csrf/command.js
+I, [2024-12-25T11:18:23.381919 #36268] INFO -- : Processing file: ../../modules/exploits/router/bt_home_hub_csrf/config.yaml
+W, [2024-12-25T11:18:23.382284 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/bt_home_hub_csrf/config.yaml
+I, [2024-12-25T11:18:23.382312 #36268] INFO -- : Processing file: ../../modules/exploits/router/bt_home_hub_csrf/module.rb
+I, [2024-12-25T11:18:23.382614 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/bt_home_hub_csrf/module.rb
+I, [2024-12-25T11:18:23.382706 #36268] INFO -- : Processing file: ../../modules/exploits/router/cisco_e2400_csrf/command.js
+I, [2024-12-25T11:18:23.383040 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/cisco_e2400_csrf/command.js
+I, [2024-12-25T11:18:23.383083 #36268] INFO -- : Processing file: ../../modules/exploits/router/cisco_e2400_csrf/config.yaml
+W, [2024-12-25T11:18:23.383379 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/cisco_e2400_csrf/config.yaml
+I, [2024-12-25T11:18:23.383409 #36268] INFO -- : Processing file: ../../modules/exploits/router/cisco_e2400_csrf/module.rb
+I, [2024-12-25T11:18:23.383750 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/cisco_e2400_csrf/module.rb
+I, [2024-12-25T11:18:23.383873 #36268] INFO -- : Processing file: ../../modules/exploits/router/comtrend_ct5367_csrf/command.js
+I, [2024-12-25T11:18:23.384196 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/comtrend_ct5367_csrf/command.js
+I, [2024-12-25T11:18:23.384337 #36268] INFO -- : Processing file: ../../modules/exploits/router/comtrend_ct5367_csrf/config.yaml
+W, [2024-12-25T11:18:23.384710 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/comtrend_ct5367_csrf/config.yaml
+I, [2024-12-25T11:18:23.384738 #36268] INFO -- : Processing file: ../../modules/exploits/router/comtrend_ct5367_csrf/module.rb
+I, [2024-12-25T11:18:23.384967 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/comtrend_ct5367_csrf/module.rb
+I, [2024-12-25T11:18:23.385079 #36268] INFO -- : Processing file: ../../modules/exploits/router/comtrend_ct5624_csrf/command.js
+I, [2024-12-25T11:18:23.385339 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/comtrend_ct5624_csrf/command.js
+I, [2024-12-25T11:18:23.385381 #36268] INFO -- : Processing file: ../../modules/exploits/router/comtrend_ct5624_csrf/config.yaml
+W, [2024-12-25T11:18:23.385614 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/comtrend_ct5624_csrf/config.yaml
+I, [2024-12-25T11:18:23.385640 #36268] INFO -- : Processing file: ../../modules/exploits/router/comtrend_ct5624_csrf/module.rb
+I, [2024-12-25T11:18:23.385826 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/comtrend_ct5624_csrf/module.rb
+I, [2024-12-25T11:18:23.385937 #36268] INFO -- : Processing file: ../../modules/exploits/router/comtrend_ct_series_dns_hijack/command.js
+I, [2024-12-25T11:18:23.386176 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/comtrend_ct_series_dns_hijack/command.js
+I, [2024-12-25T11:18:23.386268 #36268] INFO -- : Processing file: ../../modules/exploits/router/comtrend_ct_series_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.386620 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/comtrend_ct_series_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.386649 #36268] INFO -- : Processing file: ../../modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.386850 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/comtrend_ct_series_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.386938 #36268] INFO -- : Processing file: ../../modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js
+I, [2024-12-25T11:18:23.387160 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/ddwrt_v24_sp1_cmd_exec/command.js
+I, [2024-12-25T11:18:23.387197 #36268] INFO -- : Processing file: ../../modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.387392 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/ddwrt_v24_sp1_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.387417 #36268] INFO -- : Processing file: ../../modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.387612 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/ddwrt_v24_sp1_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.387638 #36268] INFO -- : Processing file: ../../modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
+I, [2024-12-25T11:18:23.387857 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/ddwrt_v24_sp1_csrf/command.js
+I, [2024-12-25T11:18:23.387883 #36268] INFO -- : Processing file: ../../modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml
+W, [2024-12-25T11:18:23.388112 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/ddwrt_v24_sp1_csrf/config.yaml
+I, [2024-12-25T11:18:23.388139 #36268] INFO -- : Processing file: ../../modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
+I, [2024-12-25T11:18:23.388293 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/ddwrt_v24_sp1_csrf/module.rb
+I, [2024-12-25T11:18:23.388319 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dir_615_csrf/command.js
+I, [2024-12-25T11:18:23.388571 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dir_615_csrf/command.js
+I, [2024-12-25T11:18:23.388664 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dir_615_csrf/config.yaml
+W, [2024-12-25T11:18:23.388837 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/dlink_dir_615_csrf/config.yaml
+I, [2024-12-25T11:18:23.388862 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dir_615_csrf/module.rb
+I, [2024-12-25T11:18:23.389010 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dir_615_csrf/module.rb
+I, [2024-12-25T11:18:23.389095 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
+I, [2024-12-25T11:18:23.389228 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl2640b_dns_hijack/command.js
+I, [2024-12-25T11:18:23.389306 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2640b_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.389514 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/dlink_dsl2640b_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.389532 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.389682 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl2640b_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.389701 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
+I, [2024-12-25T11:18:23.389921 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl2640u_dns_hijack/command.js
+I, [2024-12-25T11:18:23.390001 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2640u_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.390186 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/dlink_dsl2640u_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.390203 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.390352 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl2640u_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.390472 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
+I, [2024-12-25T11:18:23.390614 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl2740r_dns_hijack/command.js
+I, [2024-12-25T11:18:23.390806 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2740r_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.391974 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/dlink_dsl2740r_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.391994 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.392219 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl2740r_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.392237 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
+I, [2024-12-25T11:18:23.392633 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl2780b_dns_hijack/command.js
+I, [2024-12-25T11:18:23.392661 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2780b_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.392858 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/dlink_dsl2780b_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.392876 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.393021 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl2780b_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.393038 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl500t_csrf/command.js
+I, [2024-12-25T11:18:23.393255 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl500t_csrf/command.js
+I, [2024-12-25T11:18:23.393342 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl500t_csrf/config.yaml
+W, [2024-12-25T11:18:23.393606 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/dlink_dsl500t_csrf/config.yaml
+I, [2024-12-25T11:18:23.393624 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl500t_csrf/module.rb
+I, [2024-12-25T11:18:23.393782 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl500t_csrf/module.rb
+I, [2024-12-25T11:18:23.393799 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
+I, [2024-12-25T11:18:23.393986 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl526b_dns_hijack/command.js
+I, [2024-12-25T11:18:23.394004 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl526b_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.394197 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/dlink_dsl526b_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.394216 #36268] INFO -- : Processing file: ../../modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.394419 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/dlink_dsl526b_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.394583 #36268] INFO -- : Processing file: ../../modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js
+I, [2024-12-25T11:18:23.394790 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/exper_ewm01_adsl_dns_hijack/command.js
+I, [2024-12-25T11:18:23.394807 #36268] INFO -- : Processing file: ../../modules/exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.395153 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/exper_ewm01_adsl_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.395176 #36268] INFO -- : Processing file: ../../modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.395708 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/exper_ewm01_adsl_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.395770 #36268] INFO -- : Processing file: ../../modules/exploits/router/huawei_smartax_mt880/command.js
+I, [2024-12-25T11:18:23.396021 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/huawei_smartax_mt880/command.js
+I, [2024-12-25T11:18:23.396058 #36268] INFO -- : Processing file: ../../modules/exploits/router/huawei_smartax_mt880/config.yaml
+W, [2024-12-25T11:18:23.396308 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/huawei_smartax_mt880/config.yaml
+I, [2024-12-25T11:18:23.396335 #36268] INFO -- : Processing file: ../../modules/exploits/router/huawei_smartax_mt880/module.rb
+I, [2024-12-25T11:18:23.396664 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/huawei_smartax_mt880/module.rb
+I, [2024-12-25T11:18:23.396778 #36268] INFO -- : Processing file: ../../modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/command.js
+I, [2024-12-25T11:18:23.397016 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/command.js
+I, [2024-12-25T11:18:23.397157 #36268] INFO -- : Processing file: ../../modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.397764 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.397803 #36268] INFO -- : Processing file: ../../modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.398177 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/iball_baton_ib_wra150n_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.398286 #36268] INFO -- : Processing file: ../../modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js
+I, [2024-12-25T11:18:23.398686 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/inteno_eg101r1_voip_dns_hijack/command.js
+I, [2024-12-25T11:18:23.398728 #36268] INFO -- : Processing file: ../../modules/exploits/router/inteno_eg101r1_voip_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.399024 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/inteno_eg101r1_voip_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.399062 #36268] INFO -- : Processing file: ../../modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.399462 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/inteno_eg101r1_voip_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.399524 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_befsr41_csrf/command.js
+I, [2024-12-25T11:18:23.399920 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_befsr41_csrf/command.js
+I, [2024-12-25T11:18:23.399992 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_befsr41_csrf/config.yaml
+W, [2024-12-25T11:18:23.400321 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/linksys_befsr41_csrf/config.yaml
+I, [2024-12-25T11:18:23.400354 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_befsr41_csrf/module.rb
+I, [2024-12-25T11:18:23.400676 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_befsr41_csrf/module.rb
+I, [2024-12-25T11:18:23.400712 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_e2500_csrf/command.js
+I, [2024-12-25T11:18:23.400934 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_e2500_csrf/command.js
+I, [2024-12-25T11:18:23.400967 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_e2500_csrf/config.yaml
+W, [2024-12-25T11:18:23.401171 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/linksys_e2500_csrf/config.yaml
+I, [2024-12-25T11:18:23.401243 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_e2500_csrf/module.rb
+I, [2024-12-25T11:18:23.401487 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_e2500_csrf/module.rb
+I, [2024-12-25T11:18:23.401521 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_e2500_dns_hijack/command.js
+I, [2024-12-25T11:18:23.401685 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_e2500_dns_hijack/command.js
+I, [2024-12-25T11:18:23.401726 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_e2500_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.402016 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/linksys_e2500_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.402049 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_e2500_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.402310 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_e2500_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.402362 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_e2500_shell/command.js
+I, [2024-12-25T11:18:23.402677 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_e2500_shell/command.js
+I, [2024-12-25T11:18:23.402711 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_e2500_shell/config.yaml
+W, [2024-12-25T11:18:23.402912 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/linksys_e2500_shell/config.yaml
+I, [2024-12-25T11:18:23.402940 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_e2500_shell/module.rb
+I, [2024-12-25T11:18:23.403163 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_e2500_shell/module.rb
+I, [2024-12-25T11:18:23.403200 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_wrt54g2_csrf/command.js
+I, [2024-12-25T11:18:23.403479 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_wrt54g2_csrf/command.js
+I, [2024-12-25T11:18:23.403532 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_wrt54g2_csrf/config.yaml
+W, [2024-12-25T11:18:23.403750 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/linksys_wrt54g2_csrf/config.yaml
+I, [2024-12-25T11:18:23.403778 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_wrt54g2_csrf/module.rb
+I, [2024-12-25T11:18:23.403949 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_wrt54g2_csrf/module.rb
+I, [2024-12-25T11:18:23.403977 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_wrt54g_csrf/command.js
+I, [2024-12-25T11:18:23.404210 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_wrt54g_csrf/command.js
+I, [2024-12-25T11:18:23.404321 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_wrt54g_csrf/config.yaml
+W, [2024-12-25T11:18:23.404652 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/linksys_wrt54g_csrf/config.yaml
+I, [2024-12-25T11:18:23.404687 #36268] INFO -- : Processing file: ../../modules/exploits/router/linksys_wrt54g_csrf/module.rb
+I, [2024-12-25T11:18:23.404895 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/linksys_wrt54g_csrf/module.rb
+I, [2024-12-25T11:18:23.404928 #36268] INFO -- : Processing file: ../../modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js
+I, [2024-12-25T11:18:23.405198 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/command.js
+I, [2024-12-25T11:18:23.405230 #36268] INFO -- : Processing file: ../../modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/config.yaml
+W, [2024-12-25T11:18:23.405515 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/config.yaml
+I, [2024-12-25T11:18:23.405548 #36268] INFO -- : Processing file: ../../modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb
+I, [2024-12-25T11:18:23.405745 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/netgear_dgn2000_wan_remote_mgmt/module.rb
+I, [2024-12-25T11:18:23.405844 #36268] INFO -- : Processing file: ../../modules/exploits/router/netgear_dgn2200_cmd_exec/command.js
+I, [2024-12-25T11:18:23.406052 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/netgear_dgn2200_cmd_exec/command.js
+I, [2024-12-25T11:18:23.406149 #36268] INFO -- : Processing file: ../../modules/exploits/router/netgear_dgn2200_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.406369 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/netgear_dgn2200_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.406401 #36268] INFO -- : Processing file: ../../modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.406732 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/netgear_dgn2200_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.406771 #36268] INFO -- : Processing file: ../../modules/exploits/router/phillips_dns_hijack/command.js
+I, [2024-12-25T11:18:23.406976 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/phillips_dns_hijack/command.js
+I, [2024-12-25T11:18:23.407075 #36268] INFO -- : Processing file: ../../modules/exploits/router/phillips_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.407295 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/phillips_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.407381 #36268] INFO -- : Processing file: ../../modules/exploits/router/phillips_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.407781 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/phillips_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.407819 #36268] INFO -- : Processing file: ../../modules/exploits/router/pikatel_96338_dns_hijack/command.js
+I, [2024-12-25T11:18:23.408266 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/pikatel_96338_dns_hijack/command.js
+I, [2024-12-25T11:18:23.408336 #36268] INFO -- : Processing file: ../../modules/exploits/router/pikatel_96338_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.408636 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/pikatel_96338_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.408663 #36268] INFO -- : Processing file: ../../modules/exploits/router/pikatel_96338_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.408965 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/pikatel_96338_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.409012 #36268] INFO -- : Processing file: ../../modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js
+I, [2024-12-25T11:18:23.409279 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/command.js
+I, [2024-12-25T11:18:23.409315 #36268] INFO -- : Processing file: ../../modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.410043 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.410079 #36268] INFO -- : Processing file: ../../modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.410369 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/planet_vdr300nu_adsl_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.410408 #36268] INFO -- : Processing file: ../../modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js
+I, [2024-12-25T11:18:23.410631 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/shuttle_tech_915wm_dns_hijack/command.js
+I, [2024-12-25T11:18:23.410725 #36268] INFO -- : Processing file: ../../modules/exploits/router/shuttle_tech_915wm_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.411011 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/shuttle_tech_915wm_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.411037 #36268] INFO -- : Processing file: ../../modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.411338 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/shuttle_tech_915wm_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.411377 #36268] INFO -- : Processing file: ../../modules/exploits/router/telstra_zte_mf91_change_pw/command.js
+I, [2024-12-25T11:18:23.411634 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/telstra_zte_mf91_change_pw/command.js
+I, [2024-12-25T11:18:23.411713 #36268] INFO -- : Processing file: ../../modules/exploits/router/telstra_zte_mf91_change_pw/config.yaml
+W, [2024-12-25T11:18:23.411908 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/telstra_zte_mf91_change_pw/config.yaml
+I, [2024-12-25T11:18:23.411926 #36268] INFO -- : Processing file: ../../modules/exploits/router/telstra_zte_mf91_change_pw/module.rb
+I, [2024-12-25T11:18:23.412075 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/telstra_zte_mf91_change_pw/module.rb
+I, [2024-12-25T11:18:23.412093 #36268] INFO -- : Processing file: ../../modules/exploits/router/telstra_zte_mf91_change_ssid/command.js
+I, [2024-12-25T11:18:23.412281 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/telstra_zte_mf91_change_ssid/command.js
+I, [2024-12-25T11:18:23.412299 #36268] INFO -- : Processing file: ../../modules/exploits/router/telstra_zte_mf91_change_ssid/config.yaml
+W, [2024-12-25T11:18:23.412571 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/telstra_zte_mf91_change_ssid/config.yaml
+I, [2024-12-25T11:18:23.412591 #36268] INFO -- : Processing file: ../../modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb
+I, [2024-12-25T11:18:23.412758 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/telstra_zte_mf91_change_ssid/module.rb
+I, [2024-12-25T11:18:23.412776 #36268] INFO -- : Processing file: ../../modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/command.js
+I, [2024-12-25T11:18:23.412985 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/command.js
+I, [2024-12-25T11:18:23.413002 #36268] INFO -- : Processing file: ../../modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/config.yaml
+W, [2024-12-25T11:18:23.413217 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/config.yaml
+I, [2024-12-25T11:18:23.413237 #36268] INFO -- : Processing file: ../../modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/module.rb
+I, [2024-12-25T11:18:23.413398 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/telstra_zte_mf91_disable_ap_isolation/module.rb
+I, [2024-12-25T11:18:23.413417 #36268] INFO -- : Processing file: ../../modules/exploits/router/tenda_adsl_dns_hijack/command.js
+I, [2024-12-25T11:18:23.413705 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/tenda_adsl_dns_hijack/command.js
+I, [2024-12-25T11:18:23.413798 #36268] INFO -- : Processing file: ../../modules/exploits/router/tenda_adsl_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.413960 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/tenda_adsl_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.413988 #36268] INFO -- : Processing file: ../../modules/exploits/router/tenda_adsl_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.414153 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/tenda_adsl_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.414171 #36268] INFO -- : Processing file: ../../modules/exploits/router/tplink_dns_csrf/command.js
+I, [2024-12-25T11:18:23.414366 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/tplink_dns_csrf/command.js
+I, [2024-12-25T11:18:23.414384 #36268] INFO -- : Processing file: ../../modules/exploits/router/tplink_dns_csrf/config.yaml
+W, [2024-12-25T11:18:23.414667 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/tplink_dns_csrf/config.yaml
+I, [2024-12-25T11:18:23.414686 #36268] INFO -- : Processing file: ../../modules/exploits/router/tplink_dns_csrf/module.rb
+I, [2024-12-25T11:18:23.414850 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/tplink_dns_csrf/module.rb
+I, [2024-12-25T11:18:23.414867 #36268] INFO -- : Processing file: ../../modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js
+I, [2024-12-25T11:18:23.415068 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/utstarcom_wa3002g4_dns_hijack/command.js
+I, [2024-12-25T11:18:23.415085 #36268] INFO -- : Processing file: ../../modules/exploits/router/utstarcom_wa3002g4_dns_hijack/config.yaml
+W, [2024-12-25T11:18:23.415329 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/utstarcom_wa3002g4_dns_hijack/config.yaml
+I, [2024-12-25T11:18:23.415356 #36268] INFO -- : Processing file: ../../modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.415572 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/utstarcom_wa3002g4_dns_hijack/module.rb
+I, [2024-12-25T11:18:23.415669 #36268] INFO -- : Processing file: ../../modules/exploits/router/virgin_superhub_csrf/command.js
+I, [2024-12-25T11:18:23.415818 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/virgin_superhub_csrf/command.js
+I, [2024-12-25T11:18:23.415914 #36268] INFO -- : Processing file: ../../modules/exploits/router/virgin_superhub_csrf/config.yaml
+W, [2024-12-25T11:18:23.416093 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/virgin_superhub_csrf/config.yaml
+I, [2024-12-25T11:18:23.416126 #36268] INFO -- : Processing file: ../../modules/exploits/router/virgin_superhub_csrf/module.rb
+I, [2024-12-25T11:18:23.416469 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/virgin_superhub_csrf/module.rb
+I, [2024-12-25T11:18:23.416522 #36268] INFO -- : Processing file: ../../modules/exploits/router/wipg1000_cmd_injection/command.js
+I, [2024-12-25T11:18:23.416710 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/wipg1000_cmd_injection/command.js
+I, [2024-12-25T11:18:23.416736 #36268] INFO -- : Processing file: ../../modules/exploits/router/wipg1000_cmd_injection/config.yaml
+W, [2024-12-25T11:18:23.417010 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/router/wipg1000_cmd_injection/config.yaml
+I, [2024-12-25T11:18:23.417043 #36268] INFO -- : Processing file: ../../modules/exploits/router/wipg1000_cmd_injection/module.rb
+I, [2024-12-25T11:18:23.417215 #36268] INFO -- : Updated copyright in ../../modules/exploits/router/wipg1000_cmd_injection/module.rb
+I, [2024-12-25T11:18:23.417241 #36268] INFO -- : Processing file: ../../modules/exploits/ruby_nntpd_cmd_exec/command.js
+I, [2024-12-25T11:18:23.417602 #36268] INFO -- : Updated copyright in ../../modules/exploits/ruby_nntpd_cmd_exec/command.js
+I, [2024-12-25T11:18:23.417632 #36268] INFO -- : Processing file: ../../modules/exploits/ruby_nntpd_cmd_exec/config.yaml
+W, [2024-12-25T11:18:23.417854 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/ruby_nntpd_cmd_exec/config.yaml
+I, [2024-12-25T11:18:23.417888 #36268] INFO -- : Processing file: ../../modules/exploits/ruby_nntpd_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.418256 #36268] INFO -- : Updated copyright in ../../modules/exploits/ruby_nntpd_cmd_exec/module.rb
+I, [2024-12-25T11:18:23.418305 #36268] INFO -- : Processing file: ../../modules/exploits/shell_shock_scanner/command.js
+I, [2024-12-25T11:18:23.418583 #36268] INFO -- : Updated copyright in ../../modules/exploits/shell_shock_scanner/command.js
+I, [2024-12-25T11:18:23.418637 #36268] INFO -- : Processing file: ../../modules/exploits/shell_shock_scanner/config.yaml
+W, [2024-12-25T11:18:23.418820 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/shell_shock_scanner/config.yaml
+I, [2024-12-25T11:18:23.418846 #36268] INFO -- : Processing file: ../../modules/exploits/shell_shock_scanner/module.rb
+I, [2024-12-25T11:18:23.419020 #36268] INFO -- : Updated copyright in ../../modules/exploits/shell_shock_scanner/module.rb
+I, [2024-12-25T11:18:23.419129 #36268] INFO -- : Processing file: ../../modules/exploits/shell_shocked/command.js
+I, [2024-12-25T11:18:23.419268 #36268] INFO -- : Updated copyright in ../../modules/exploits/shell_shocked/command.js
+I, [2024-12-25T11:18:23.419366 #36268] INFO -- : Processing file: ../../modules/exploits/shell_shocked/config.yaml
+W, [2024-12-25T11:18:23.419794 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/shell_shocked/config.yaml
+I, [2024-12-25T11:18:23.419838 #36268] INFO -- : Processing file: ../../modules/exploits/shell_shocked/module.rb
+I, [2024-12-25T11:18:23.420511 #36268] INFO -- : Updated copyright in ../../modules/exploits/shell_shocked/module.rb
+I, [2024-12-25T11:18:23.420570 #36268] INFO -- : Processing file: ../../modules/exploits/skype_xss/command.js
+I, [2024-12-25T11:18:23.420806 #36268] INFO -- : Updated copyright in ../../modules/exploits/skype_xss/command.js
+I, [2024-12-25T11:18:23.420942 #36268] INFO -- : Processing file: ../../modules/exploits/skype_xss/config.yaml
+W, [2024-12-25T11:18:23.421217 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/skype_xss/config.yaml
+I, [2024-12-25T11:18:23.421255 #36268] INFO -- : Processing file: ../../modules/exploits/skype_xss/module.rb
+I, [2024-12-25T11:18:23.421690 #36268] INFO -- : Updated copyright in ../../modules/exploits/skype_xss/module.rb
+I, [2024-12-25T11:18:23.421732 #36268] INFO -- : Processing file: ../../modules/exploits/spring_framework_malicious_jar/command.js
+I, [2024-12-25T11:18:23.421987 #36268] INFO -- : Updated copyright in ../../modules/exploits/spring_framework_malicious_jar/command.js
+I, [2024-12-25T11:18:23.422109 #36268] INFO -- : Processing file: ../../modules/exploits/spring_framework_malicious_jar/config.yaml
+W, [2024-12-25T11:18:23.422731 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/spring_framework_malicious_jar/config.yaml
+I, [2024-12-25T11:18:23.422768 #36268] INFO -- : Processing file: ../../modules/exploits/spring_framework_malicious_jar/module.rb
+I, [2024-12-25T11:18:23.423046 #36268] INFO -- : Updated copyright in ../../modules/exploits/spring_framework_malicious_jar/module.rb
+I, [2024-12-25T11:18:23.423159 #36268] INFO -- : Processing file: ../../modules/exploits/switch/dlink_dgs_1100_device_reset/command.js
+I, [2024-12-25T11:18:23.423530 #36268] INFO -- : Updated copyright in ../../modules/exploits/switch/dlink_dgs_1100_device_reset/command.js
+I, [2024-12-25T11:18:23.423657 #36268] INFO -- : Processing file: ../../modules/exploits/switch/dlink_dgs_1100_device_reset/config.yaml
+W, [2024-12-25T11:18:23.423884 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/switch/dlink_dgs_1100_device_reset/config.yaml
+I, [2024-12-25T11:18:23.423903 #36268] INFO -- : Processing file: ../../modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb
+I, [2024-12-25T11:18:23.424186 #36268] INFO -- : Updated copyright in ../../modules/exploits/switch/dlink_dgs_1100_device_reset/module.rb
+I, [2024-12-25T11:18:23.424334 #36268] INFO -- : Processing file: ../../modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js
+I, [2024-12-25T11:18:23.424761 #36268] INFO -- : Updated copyright in ../../modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/command.js
+I, [2024-12-25T11:18:23.424794 #36268] INFO -- : Processing file: ../../modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/config.yaml
+W, [2024-12-25T11:18:23.425082 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/config.yaml
+I, [2024-12-25T11:18:23.425115 #36268] INFO -- : Processing file: ../../modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb
+I, [2024-12-25T11:18:23.425353 #36268] INFO -- : Updated copyright in ../../modules/exploits/switch/dlink_dgs_1100_fdb_whitelist/module.rb
+I, [2024-12-25T11:18:23.425575 #36268] INFO -- : Processing file: ../../modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js
+I, [2024-12-25T11:18:23.425756 #36268] INFO -- : Updated copyright in ../../modules/exploits/switch/dlink_dgs_1100_port_mirroring/command.js
+I, [2024-12-25T11:18:23.425853 #36268] INFO -- : Processing file: ../../modules/exploits/switch/dlink_dgs_1100_port_mirroring/config.yaml
+W, [2024-12-25T11:18:23.426058 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/switch/dlink_dgs_1100_port_mirroring/config.yaml
+I, [2024-12-25T11:18:23.426078 #36268] INFO -- : Processing file: ../../modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb
+I, [2024-12-25T11:18:23.426710 #36268] INFO -- : Updated copyright in ../../modules/exploits/switch/dlink_dgs_1100_port_mirroring/module.rb
+I, [2024-12-25T11:18:23.426746 #36268] INFO -- : Processing file: ../../modules/exploits/switch/netgear_gs108t_csrf/command.js
+I, [2024-12-25T11:18:23.426988 #36268] INFO -- : Updated copyright in ../../modules/exploits/switch/netgear_gs108t_csrf/command.js
+I, [2024-12-25T11:18:23.427020 #36268] INFO -- : Processing file: ../../modules/exploits/switch/netgear_gs108t_csrf/config.yaml
+W, [2024-12-25T11:18:23.427235 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/switch/netgear_gs108t_csrf/config.yaml
+I, [2024-12-25T11:18:23.427267 #36268] INFO -- : Processing file: ../../modules/exploits/switch/netgear_gs108t_csrf/module.rb
+I, [2024-12-25T11:18:23.427538 #36268] INFO -- : Updated copyright in ../../modules/exploits/switch/netgear_gs108t_csrf/module.rb
+I, [2024-12-25T11:18:23.427572 #36268] INFO -- : Processing file: ../../modules/exploits/vtiger_crm_upload_exploit/command.js
+I, [2024-12-25T11:18:23.427769 #36268] INFO -- : Updated copyright in ../../modules/exploits/vtiger_crm_upload_exploit/command.js
+I, [2024-12-25T11:18:23.427878 #36268] INFO -- : Processing file: ../../modules/exploits/vtiger_crm_upload_exploit/config.yaml
+W, [2024-12-25T11:18:23.428128 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/vtiger_crm_upload_exploit/config.yaml
+I, [2024-12-25T11:18:23.428155 #36268] INFO -- : Processing file: ../../modules/exploits/vtiger_crm_upload_exploit/module.rb
+I, [2024-12-25T11:18:23.428352 #36268] INFO -- : Updated copyright in ../../modules/exploits/vtiger_crm_upload_exploit/module.rb
+I, [2024-12-25T11:18:23.428529 #36268] INFO -- : Processing file: ../../modules/exploits/wanem_command_execution/command.js
+I, [2024-12-25T11:18:23.428691 #36268] INFO -- : Updated copyright in ../../modules/exploits/wanem_command_execution/command.js
+I, [2024-12-25T11:18:23.428817 #36268] INFO -- : Processing file: ../../modules/exploits/wanem_command_execution/config.yaml
+W, [2024-12-25T11:18:23.429159 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/wanem_command_execution/config.yaml
+I, [2024-12-25T11:18:23.429188 #36268] INFO -- : Processing file: ../../modules/exploits/wanem_command_execution/module.rb
+I, [2024-12-25T11:18:23.429636 #36268] INFO -- : Updated copyright in ../../modules/exploits/wanem_command_execution/module.rb
+I, [2024-12-25T11:18:23.429690 #36268] INFO -- : Processing file: ../../modules/exploits/wifi_pineapple_csrf/command.js
+I, [2024-12-25T11:18:23.429890 #36268] INFO -- : Updated copyright in ../../modules/exploits/wifi_pineapple_csrf/command.js
+I, [2024-12-25T11:18:23.429985 #36268] INFO -- : Processing file: ../../modules/exploits/wifi_pineapple_csrf/config.yaml
+W, [2024-12-25T11:18:23.430254 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/wifi_pineapple_csrf/config.yaml
+I, [2024-12-25T11:18:23.430288 #36268] INFO -- : Processing file: ../../modules/exploits/wifi_pineapple_csrf/module.rb
+I, [2024-12-25T11:18:23.430672 #36268] INFO -- : Updated copyright in ../../modules/exploits/wifi_pineapple_csrf/module.rb
+I, [2024-12-25T11:18:23.430716 #36268] INFO -- : Processing file: ../../modules/exploits/wordpress_add_admin/command.js
+W, [2024-12-25T11:18:23.430782 #36268] WARN -- : Copyright string not found in ../../modules/exploits/wordpress_add_admin/command.js
+I, [2024-12-25T11:18:23.430807 #36268] INFO -- : Processing file: ../../modules/exploits/wordpress_add_admin/config.yaml
+W, [2024-12-25T11:18:23.431099 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/wordpress_add_admin/config.yaml
+I, [2024-12-25T11:18:23.431138 #36268] INFO -- : Processing file: ../../modules/exploits/wordpress_add_admin/module.rb
+W, [2024-12-25T11:18:23.431286 #36268] WARN -- : Copyright string not found in ../../modules/exploits/wordpress_add_admin/module.rb
+I, [2024-12-25T11:18:23.431323 #36268] INFO -- : Processing file: ../../modules/exploits/xss/alienvault_ossim_3.1_xss/command.js
+I, [2024-12-25T11:18:23.431900 #36268] INFO -- : Updated copyright in ../../modules/exploits/xss/alienvault_ossim_3.1_xss/command.js
+I, [2024-12-25T11:18:23.431943 #36268] INFO -- : Processing file: ../../modules/exploits/xss/alienvault_ossim_3.1_xss/config.yaml
+W, [2024-12-25T11:18:23.432217 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/xss/alienvault_ossim_3.1_xss/config.yaml
+I, [2024-12-25T11:18:23.432254 #36268] INFO -- : Processing file: ../../modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb
+I, [2024-12-25T11:18:23.432670 #36268] INFO -- : Updated copyright in ../../modules/exploits/xss/alienvault_ossim_3.1_xss/module.rb
+I, [2024-12-25T11:18:23.432703 #36268] INFO -- : Processing file: ../../modules/exploits/xss/cisco_collaboration_server_5_xss/command.js
+I, [2024-12-25T11:18:23.432988 #36268] INFO -- : Updated copyright in ../../modules/exploits/xss/cisco_collaboration_server_5_xss/command.js
+I, [2024-12-25T11:18:23.433113 #36268] INFO -- : Processing file: ../../modules/exploits/xss/cisco_collaboration_server_5_xss/config.yaml
+W, [2024-12-25T11:18:23.433491 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/xss/cisco_collaboration_server_5_xss/config.yaml
+I, [2024-12-25T11:18:23.433589 #36268] INFO -- : Processing file: ../../modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb
+I, [2024-12-25T11:18:23.434051 #36268] INFO -- : Updated copyright in ../../modules/exploits/xss/cisco_collaboration_server_5_xss/module.rb
+I, [2024-12-25T11:18:23.434091 #36268] INFO -- : Processing file: ../../modules/exploits/xss/serendipity_1.6_xss/command.js
+I, [2024-12-25T11:18:23.434295 #36268] INFO -- : Updated copyright in ../../modules/exploits/xss/serendipity_1.6_xss/command.js
+I, [2024-12-25T11:18:23.434505 #36268] INFO -- : Processing file: ../../modules/exploits/xss/serendipity_1.6_xss/config.yaml
+W, [2024-12-25T11:18:23.434732 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/xss/serendipity_1.6_xss/config.yaml
+I, [2024-12-25T11:18:23.434759 #36268] INFO -- : Processing file: ../../modules/exploits/xss/serendipity_1.6_xss/module.rb
+I, [2024-12-25T11:18:23.434969 #36268] INFO -- : Updated copyright in ../../modules/exploits/xss/serendipity_1.6_xss/module.rb
+I, [2024-12-25T11:18:23.435002 #36268] INFO -- : Processing file: ../../modules/exploits/xss/sqlitemanager_xss/command.js
+I, [2024-12-25T11:18:23.435240 #36268] INFO -- : Updated copyright in ../../modules/exploits/xss/sqlitemanager_xss/command.js
+I, [2024-12-25T11:18:23.435273 #36268] INFO -- : Processing file: ../../modules/exploits/xss/sqlitemanager_xss/config.yaml
+W, [2024-12-25T11:18:23.435696 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/xss/sqlitemanager_xss/config.yaml
+I, [2024-12-25T11:18:23.435730 #36268] INFO -- : Processing file: ../../modules/exploits/xss/sqlitemanager_xss/module.rb
+I, [2024-12-25T11:18:23.435899 #36268] INFO -- : Updated copyright in ../../modules/exploits/xss/sqlitemanager_xss/module.rb
+I, [2024-12-25T11:18:23.436063 #36268] INFO -- : Processing file: ../../modules/exploits/zenoss_3x_command_execution/command.js
+I, [2024-12-25T11:18:23.436279 #36268] INFO -- : Updated copyright in ../../modules/exploits/zenoss_3x_command_execution/command.js
+I, [2024-12-25T11:18:23.436381 #36268] INFO -- : Processing file: ../../modules/exploits/zenoss_3x_command_execution/config.yaml
+W, [2024-12-25T11:18:23.436643 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zenoss_3x_command_execution/config.yaml
+I, [2024-12-25T11:18:23.436676 #36268] INFO -- : Processing file: ../../modules/exploits/zenoss_3x_command_execution/module.rb
+I, [2024-12-25T11:18:23.436934 #36268] INFO -- : Updated copyright in ../../modules/exploits/zenoss_3x_command_execution/module.rb
+I, [2024-12-25T11:18:23.436985 #36268] INFO -- : Processing file: ../../modules/exploits/zenoss_add_user_csrf/command.js
+I, [2024-12-25T11:18:23.437165 #36268] INFO -- : Updated copyright in ../../modules/exploits/zenoss_add_user_csrf/command.js
+I, [2024-12-25T11:18:23.437263 #36268] INFO -- : Processing file: ../../modules/exploits/zenoss_add_user_csrf/config.yaml
+W, [2024-12-25T11:18:23.437525 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zenoss_add_user_csrf/config.yaml
+I, [2024-12-25T11:18:23.437562 #36268] INFO -- : Processing file: ../../modules/exploits/zenoss_add_user_csrf/module.rb
+I, [2024-12-25T11:18:23.437745 #36268] INFO -- : Updated copyright in ../../modules/exploits/zenoss_add_user_csrf/module.rb
+I, [2024-12-25T11:18:23.437845 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/command.js
+I, [2024-12-25T11:18:23.438059 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/command.js
+I, [2024-12-25T11:18:23.438154 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/config.yaml
+W, [2024-12-25T11:18:23.438357 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/config.yaml
+I, [2024-12-25T11:18:23.438389 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/module.rb
+I, [2024-12-25T11:18:23.438650 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_dynamic_token/module.rb
+I, [2024-12-25T11:18:23.438686 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js
+I, [2024-12-25T11:18:23.438914 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/command.js
+I, [2024-12-25T11:18:23.438948 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/config.yaml
+W, [2024-12-25T11:18:23.439147 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/config.yaml
+I, [2024-12-25T11:18:23.439179 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb
+I, [2024-12-25T11:18:23.439457 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_password/module.rb
+I, [2024-12-25T11:18:23.439497 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/command.js
+I, [2024-12-25T11:18:23.439683 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/command.js
+I, [2024-12-25T11:18:23.439796 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/config.yaml
+W, [2024-12-25T11:18:23.440024 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/config.yaml
+I, [2024-12-25T11:18:23.440057 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/module.rb
+I, [2024-12-25T11:18:23.440351 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_admin_static_token/module.rb
+I, [2024-12-25T11:18:23.440387 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js
+I, [2024-12-25T11:18:23.440709 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/command.js
+I, [2024-12-25T11:18:23.440805 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/config.yaml
+W, [2024-12-25T11:18:23.441063 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/config.yaml
+I, [2024-12-25T11:18:23.441097 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb
+I, [2024-12-25T11:18:23.441286 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_file_disclosure/module.rb
+I, [2024-12-25T11:18:23.441396 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js
+I, [2024-12-25T11:18:23.441815 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/command.js
+I, [2024-12-25T11:18:23.441880 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/config.yaml
+W, [2024-12-25T11:18:23.442169 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/config.yaml
+I, [2024-12-25T11:18:23.442203 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb
+I, [2024-12-25T11:18:23.442501 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb
+I, [2024-12-25T11:18:23.442540 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/command.js
+I, [2024-12-25T11:18:23.442823 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/command.js
+I, [2024-12-25T11:18:23.442870 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/config.yaml
+W, [2024-12-25T11:18:23.443287 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/config.yaml
+I, [2024-12-25T11:18:23.443330 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/module.rb
+I, [2024-12-25T11:18:23.443658 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop/module.rb
+I, [2024-12-25T11:18:23.443702 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/command.js
+I, [2024-12-25T11:18:23.444081 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/command.js
+I, [2024-12-25T11:18:23.444119 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/config.yaml
+W, [2024-12-25T11:18:23.444495 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/config.yaml
+I, [2024-12-25T11:18:23.444536 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/module.rb
+I, [2024-12-25T11:18:23.444983 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/module.rb
+I, [2024-12-25T11:18:23.445028 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/x.js
+W, [2024-12-25T11:18:23.445115 #36268] WARN -- : Copyright string not found in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass/x.js
+I, [2024-12-25T11:18:23.445132 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js
+I, [2024-12-25T11:18:23.445335 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/command.js
+I, [2024-12-25T11:18:23.445632 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/config.yaml
+W, [2024-12-25T11:18:23.445914 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/config.yaml
+I, [2024-12-25T11:18:23.445947 #36268] INFO -- : Processing file: ../../modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb
+I, [2024-12-25T11:18:23.446176 #36268] INFO -- : Updated copyright in ../../modules/exploits/zeroshell/zeroshell_2_0rc2_scanner/module.rb
+I, [2024-12-25T11:18:23.446286 #36268] INFO -- : Processing file: ../../modules/host/clipboard_theft/command.js
+I, [2024-12-25T11:18:23.446661 #36268] INFO -- : Updated copyright in ../../modules/host/clipboard_theft/command.js
+I, [2024-12-25T11:18:23.446771 #36268] INFO -- : Processing file: ../../modules/host/clipboard_theft/config.yaml
+W, [2024-12-25T11:18:23.447035 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/clipboard_theft/config.yaml
+I, [2024-12-25T11:18:23.447263 #36268] INFO -- : Processing file: ../../modules/host/clipboard_theft/module.rb
+I, [2024-12-25T11:18:23.447593 #36268] INFO -- : Updated copyright in ../../modules/host/clipboard_theft/module.rb
+I, [2024-12-25T11:18:23.447710 #36268] INFO -- : Processing file: ../../modules/host/detect_airdroid/command.js
+I, [2024-12-25T11:18:23.448022 #36268] INFO -- : Updated copyright in ../../modules/host/detect_airdroid/command.js
+I, [2024-12-25T11:18:23.448163 #36268] INFO -- : Processing file: ../../modules/host/detect_airdroid/config.yaml
+W, [2024-12-25T11:18:23.448696 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_airdroid/config.yaml
+I, [2024-12-25T11:18:23.448732 #36268] INFO -- : Processing file: ../../modules/host/detect_airdroid/module.rb
+I, [2024-12-25T11:18:23.449031 #36268] INFO -- : Updated copyright in ../../modules/host/detect_airdroid/module.rb
+I, [2024-12-25T11:18:23.449138 #36268] INFO -- : Processing file: ../../modules/host/detect_antivirus/command.js
+I, [2024-12-25T11:18:23.449384 #36268] INFO -- : Updated copyright in ../../modules/host/detect_antivirus/command.js
+I, [2024-12-25T11:18:23.449556 #36268] INFO -- : Processing file: ../../modules/host/detect_antivirus/config.yaml
+W, [2024-12-25T11:18:23.449846 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_antivirus/config.yaml
+I, [2024-12-25T11:18:23.449886 #36268] INFO -- : Processing file: ../../modules/host/detect_antivirus/module.rb
+I, [2024-12-25T11:18:23.450538 #36268] INFO -- : Updated copyright in ../../modules/host/detect_antivirus/module.rb
+I, [2024-12-25T11:18:23.450599 #36268] INFO -- : Processing file: ../../modules/host/detect_coupon_printer/command.js
+I, [2024-12-25T11:18:23.451647 #36268] INFO -- : Updated copyright in ../../modules/host/detect_coupon_printer/command.js
+I, [2024-12-25T11:18:23.451683 #36268] INFO -- : Processing file: ../../modules/host/detect_coupon_printer/config.yaml
+W, [2024-12-25T11:18:23.451918 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_coupon_printer/config.yaml
+I, [2024-12-25T11:18:23.452034 #36268] INFO -- : Processing file: ../../modules/host/detect_coupon_printer/module.rb
+I, [2024-12-25T11:18:23.452322 #36268] INFO -- : Updated copyright in ../../modules/host/detect_coupon_printer/module.rb
+I, [2024-12-25T11:18:23.452361 #36268] INFO -- : Processing file: ../../modules/host/detect_cups/command.js
+I, [2024-12-25T11:18:23.452704 #36268] INFO -- : Updated copyright in ../../modules/host/detect_cups/command.js
+I, [2024-12-25T11:18:23.452737 #36268] INFO -- : Processing file: ../../modules/host/detect_cups/config.yaml
+W, [2024-12-25T11:18:23.452956 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_cups/config.yaml
+I, [2024-12-25T11:18:23.452987 #36268] INFO -- : Processing file: ../../modules/host/detect_cups/module.rb
+I, [2024-12-25T11:18:23.453157 #36268] INFO -- : Updated copyright in ../../modules/host/detect_cups/module.rb
+I, [2024-12-25T11:18:23.453260 #36268] INFO -- : Processing file: ../../modules/host/detect_default_browser/command.js
+I, [2024-12-25T11:18:23.453554 #36268] INFO -- : Updated copyright in ../../modules/host/detect_default_browser/command.js
+I, [2024-12-25T11:18:23.453591 #36268] INFO -- : Processing file: ../../modules/host/detect_default_browser/config.yaml
+W, [2024-12-25T11:18:23.453990 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_default_browser/config.yaml
+I, [2024-12-25T11:18:23.454023 #36268] INFO -- : Processing file: ../../modules/host/detect_default_browser/module.rb
+I, [2024-12-25T11:18:23.454551 #36268] INFO -- : Updated copyright in ../../modules/host/detect_default_browser/module.rb
+I, [2024-12-25T11:18:23.454585 #36268] INFO -- : Processing file: ../../modules/host/detect_google_desktop/command.js
+I, [2024-12-25T11:18:23.454756 #36268] INFO -- : Updated copyright in ../../modules/host/detect_google_desktop/command.js
+I, [2024-12-25T11:18:23.454853 #36268] INFO -- : Processing file: ../../modules/host/detect_google_desktop/config.yaml
+W, [2024-12-25T11:18:23.455050 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_google_desktop/config.yaml
+I, [2024-12-25T11:18:23.455083 #36268] INFO -- : Processing file: ../../modules/host/detect_google_desktop/module.rb
+I, [2024-12-25T11:18:23.455285 #36268] INFO -- : Updated copyright in ../../modules/host/detect_google_desktop/module.rb
+I, [2024-12-25T11:18:23.455321 #36268] INFO -- : Processing file: ../../modules/host/detect_hp/command.js
+I, [2024-12-25T11:18:23.455533 #36268] INFO -- : Updated copyright in ../../modules/host/detect_hp/command.js
+I, [2024-12-25T11:18:23.455654 #36268] INFO -- : Processing file: ../../modules/host/detect_hp/config.yaml
+W, [2024-12-25T11:18:23.455848 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_hp/config.yaml
+I, [2024-12-25T11:18:23.455880 #36268] INFO -- : Processing file: ../../modules/host/detect_hp/module.rb
+I, [2024-12-25T11:18:23.456154 #36268] INFO -- : Updated copyright in ../../modules/host/detect_hp/module.rb
+I, [2024-12-25T11:18:23.456188 #36268] INFO -- : Processing file: ../../modules/host/detect_local_drives/command.js
+I, [2024-12-25T11:18:23.456810 #36268] INFO -- : Updated copyright in ../../modules/host/detect_local_drives/command.js
+I, [2024-12-25T11:18:23.456863 #36268] INFO -- : Processing file: ../../modules/host/detect_local_drives/config.yaml
+W, [2024-12-25T11:18:23.457256 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_local_drives/config.yaml
+I, [2024-12-25T11:18:23.457290 #36268] INFO -- : Processing file: ../../modules/host/detect_local_drives/module.rb
+I, [2024-12-25T11:18:23.457699 #36268] INFO -- : Updated copyright in ../../modules/host/detect_local_drives/module.rb
+I, [2024-12-25T11:18:23.457728 #36268] INFO -- : Processing file: ../../modules/host/detect_protocol_handlers/command.js
+I, [2024-12-25T11:18:23.458111 #36268] INFO -- : Updated copyright in ../../modules/host/detect_protocol_handlers/command.js
+I, [2024-12-25T11:18:23.458152 #36268] INFO -- : Processing file: ../../modules/host/detect_protocol_handlers/config.yaml
+W, [2024-12-25T11:18:23.458571 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_protocol_handlers/config.yaml
+I, [2024-12-25T11:18:23.458607 #36268] INFO -- : Processing file: ../../modules/host/detect_protocol_handlers/module.rb
+I, [2024-12-25T11:18:23.458846 #36268] INFO -- : Updated copyright in ../../modules/host/detect_protocol_handlers/module.rb
+I, [2024-12-25T11:18:23.458944 #36268] INFO -- : Processing file: ../../modules/host/detect_software/command.js
+I, [2024-12-25T11:18:23.459221 #36268] INFO -- : Updated copyright in ../../modules/host/detect_software/command.js
+I, [2024-12-25T11:18:23.459319 #36268] INFO -- : Processing file: ../../modules/host/detect_software/config.yaml
+W, [2024-12-25T11:18:23.459690 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_software/config.yaml
+I, [2024-12-25T11:18:23.461365 #36268] INFO -- : Processing file: ../../modules/host/detect_software/module.rb
+I, [2024-12-25T11:18:23.461859 #36268] INFO -- : Updated copyright in ../../modules/host/detect_software/module.rb
+I, [2024-12-25T11:18:23.461965 #36268] INFO -- : Processing file: ../../modules/host/detect_users/command.js
+I, [2024-12-25T11:18:23.462239 #36268] INFO -- : Updated copyright in ../../modules/host/detect_users/command.js
+I, [2024-12-25T11:18:23.462352 #36268] INFO -- : Processing file: ../../modules/host/detect_users/config.yaml
+W, [2024-12-25T11:18:23.462705 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/detect_users/config.yaml
+I, [2024-12-25T11:18:23.462737 #36268] INFO -- : Processing file: ../../modules/host/detect_users/module.rb
+I, [2024-12-25T11:18:23.462992 #36268] INFO -- : Updated copyright in ../../modules/host/detect_users/module.rb
+I, [2024-12-25T11:18:23.463019 #36268] INFO -- : Processing file: ../../modules/host/get_battery_status/command.js
+I, [2024-12-25T11:18:23.463245 #36268] INFO -- : Updated copyright in ../../modules/host/get_battery_status/command.js
+I, [2024-12-25T11:18:23.463513 #36268] INFO -- : Processing file: ../../modules/host/get_battery_status/config.yaml
+W, [2024-12-25T11:18:23.463727 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/get_battery_status/config.yaml
+I, [2024-12-25T11:18:23.463752 #36268] INFO -- : Processing file: ../../modules/host/get_battery_status/module.rb
+I, [2024-12-25T11:18:23.463959 #36268] INFO -- : Updated copyright in ../../modules/host/get_battery_status/module.rb
+I, [2024-12-25T11:18:23.463987 #36268] INFO -- : Processing file: ../../modules/host/get_connection_type/command.js
+I, [2024-12-25T11:18:23.464220 #36268] INFO -- : Updated copyright in ../../modules/host/get_connection_type/command.js
+I, [2024-12-25T11:18:23.464316 #36268] INFO -- : Processing file: ../../modules/host/get_connection_type/config.yaml
+W, [2024-12-25T11:18:23.464844 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/get_connection_type/config.yaml
+I, [2024-12-25T11:18:23.464896 #36268] INFO -- : Processing file: ../../modules/host/get_connection_type/module.rb
+I, [2024-12-25T11:18:23.465329 #36268] INFO -- : Updated copyright in ../../modules/host/get_connection_type/module.rb
+I, [2024-12-25T11:18:23.465483 #36268] INFO -- : Processing file: ../../modules/host/get_internal_ip_java/command.js
+I, [2024-12-25T11:18:23.465803 #36268] INFO -- : Updated copyright in ../../modules/host/get_internal_ip_java/command.js
+I, [2024-12-25T11:18:23.465841 #36268] INFO -- : Processing file: ../../modules/host/get_internal_ip_java/config.yaml
+W, [2024-12-25T11:18:23.466139 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/get_internal_ip_java/config.yaml
+I, [2024-12-25T11:18:23.466180 #36268] INFO -- : Processing file: ../../modules/host/get_internal_ip_java/module.rb
+I, [2024-12-25T11:18:23.466773 #36268] INFO -- : Updated copyright in ../../modules/host/get_internal_ip_java/module.rb
+I, [2024-12-25T11:18:23.466836 #36268] INFO -- : Processing file: ../../modules/host/get_internal_ip_webrtc/command.js
+I, [2024-12-25T11:18:23.467457 #36268] INFO -- : Updated copyright in ../../modules/host/get_internal_ip_webrtc/command.js
+I, [2024-12-25T11:18:23.467498 #36268] INFO -- : Processing file: ../../modules/host/get_internal_ip_webrtc/config.yaml
+W, [2024-12-25T11:18:23.467726 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/get_internal_ip_webrtc/config.yaml
+I, [2024-12-25T11:18:23.467751 #36268] INFO -- : Processing file: ../../modules/host/get_internal_ip_webrtc/module.rb
+I, [2024-12-25T11:18:23.467918 #36268] INFO -- : Updated copyright in ../../modules/host/get_internal_ip_webrtc/module.rb
+I, [2024-12-25T11:18:23.468020 #36268] INFO -- : Processing file: ../../modules/host/get_registry_keys/command.js
+I, [2024-12-25T11:18:23.468229 #36268] INFO -- : Updated copyright in ../../modules/host/get_registry_keys/command.js
+I, [2024-12-25T11:18:23.468262 #36268] INFO -- : Processing file: ../../modules/host/get_registry_keys/config.yaml
+W, [2024-12-25T11:18:23.468500 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/get_registry_keys/config.yaml
+I, [2024-12-25T11:18:23.468526 #36268] INFO -- : Processing file: ../../modules/host/get_registry_keys/module.rb
+I, [2024-12-25T11:18:23.468694 #36268] INFO -- : Updated copyright in ../../modules/host/get_registry_keys/module.rb
+I, [2024-12-25T11:18:23.468712 #36268] INFO -- : Processing file: ../../modules/host/get_system_info_java/command.js
+I, [2024-12-25T11:18:23.468911 #36268] INFO -- : Updated copyright in ../../modules/host/get_system_info_java/command.js
+I, [2024-12-25T11:18:23.468994 #36268] INFO -- : Processing file: ../../modules/host/get_system_info_java/config.yaml
+W, [2024-12-25T11:18:23.469210 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/get_system_info_java/config.yaml
+I, [2024-12-25T11:18:23.469227 #36268] INFO -- : Processing file: ../../modules/host/get_system_info_java/module.rb
+I, [2024-12-25T11:18:23.469402 #36268] INFO -- : Updated copyright in ../../modules/host/get_system_info_java/module.rb
+I, [2024-12-25T11:18:23.469478 #36268] INFO -- : Processing file: ../../modules/host/get_wireless_keys/command.js
+I, [2024-12-25T11:18:23.469688 #36268] INFO -- : Updated copyright in ../../modules/host/get_wireless_keys/command.js
+I, [2024-12-25T11:18:23.469705 #36268] INFO -- : Processing file: ../../modules/host/get_wireless_keys/config.yaml
+W, [2024-12-25T11:18:23.469939 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/get_wireless_keys/config.yaml
+I, [2024-12-25T11:18:23.469957 #36268] INFO -- : Processing file: ../../modules/host/get_wireless_keys/module.rb
+I, [2024-12-25T11:18:23.470103 #36268] INFO -- : Updated copyright in ../../modules/host/get_wireless_keys/module.rb
+I, [2024-12-25T11:18:23.470187 #36268] INFO -- : Processing file: ../../modules/host/hook_default_browser/command.js
+I, [2024-12-25T11:18:23.470374 #36268] INFO -- : Updated copyright in ../../modules/host/hook_default_browser/command.js
+I, [2024-12-25T11:18:23.470501 #36268] INFO -- : Processing file: ../../modules/host/hook_default_browser/config.yaml
+W, [2024-12-25T11:18:23.470760 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/hook_default_browser/config.yaml
+I, [2024-12-25T11:18:23.470881 #36268] INFO -- : Processing file: ../../modules/host/hook_default_browser/module.rb
+I, [2024-12-25T11:18:23.471090 #36268] INFO -- : Updated copyright in ../../modules/host/hook_default_browser/module.rb
+I, [2024-12-25T11:18:23.471186 #36268] INFO -- : Processing file: ../../modules/host/hook_microsoft_edge/command.js
+I, [2024-12-25T11:18:23.471363 #36268] INFO -- : Updated copyright in ../../modules/host/hook_microsoft_edge/command.js
+I, [2024-12-25T11:18:23.471492 #36268] INFO -- : Processing file: ../../modules/host/hook_microsoft_edge/config.yaml
+W, [2024-12-25T11:18:23.471667 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/hook_microsoft_edge/config.yaml
+I, [2024-12-25T11:18:23.471699 #36268] INFO -- : Processing file: ../../modules/host/hook_microsoft_edge/module.rb
+I, [2024-12-25T11:18:23.471863 #36268] INFO -- : Updated copyright in ../../modules/host/hook_microsoft_edge/module.rb
+I, [2024-12-25T11:18:23.471889 #36268] INFO -- : Processing file: ../../modules/host/insecure_url_skype/command.js
+I, [2024-12-25T11:18:23.472182 #36268] INFO -- : Updated copyright in ../../modules/host/insecure_url_skype/command.js
+I, [2024-12-25T11:18:23.472215 #36268] INFO -- : Processing file: ../../modules/host/insecure_url_skype/config.yaml
+W, [2024-12-25T11:18:23.472389 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/insecure_url_skype/config.yaml
+I, [2024-12-25T11:18:23.472414 #36268] INFO -- : Processing file: ../../modules/host/insecure_url_skype/module.rb
+I, [2024-12-25T11:18:23.472639 #36268] INFO -- : Updated copyright in ../../modules/host/insecure_url_skype/module.rb
+I, [2024-12-25T11:18:23.472740 #36268] INFO -- : Processing file: ../../modules/host/iphone_tel/command.js
+I, [2024-12-25T11:18:23.472907 #36268] INFO -- : Updated copyright in ../../modules/host/iphone_tel/command.js
+I, [2024-12-25T11:18:23.472999 #36268] INFO -- : Processing file: ../../modules/host/iphone_tel/config.yaml
+W, [2024-12-25T11:18:23.473244 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/iphone_tel/config.yaml
+I, [2024-12-25T11:18:23.473272 #36268] INFO -- : Processing file: ../../modules/host/iphone_tel/module.rb
+I, [2024-12-25T11:18:23.473446 #36268] INFO -- : Updated copyright in ../../modules/host/iphone_tel/module.rb
+I, [2024-12-25T11:18:23.473606 #36268] INFO -- : Processing file: ../../modules/host/physical_location/command.js
+I, [2024-12-25T11:18:23.473782 #36268] INFO -- : Updated copyright in ../../modules/host/physical_location/command.js
+I, [2024-12-25T11:18:23.473869 #36268] INFO -- : Processing file: ../../modules/host/physical_location/config.yaml
+W, [2024-12-25T11:18:23.474316 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/physical_location/config.yaml
+I, [2024-12-25T11:18:23.474335 #36268] INFO -- : Processing file: ../../modules/host/physical_location/module.rb
+I, [2024-12-25T11:18:23.474664 #36268] INFO -- : Updated copyright in ../../modules/host/physical_location/module.rb
+I, [2024-12-25T11:18:23.474689 #36268] INFO -- : Processing file: ../../modules/host/physical_location_thirdparty/command.js
+I, [2024-12-25T11:18:23.474979 #36268] INFO -- : Updated copyright in ../../modules/host/physical_location_thirdparty/command.js
+I, [2024-12-25T11:18:23.475013 #36268] INFO -- : Processing file: ../../modules/host/physical_location_thirdparty/config.yaml
+W, [2024-12-25T11:18:23.475221 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/host/physical_location_thirdparty/config.yaml
+I, [2024-12-25T11:18:23.475239 #36268] INFO -- : Processing file: ../../modules/host/physical_location_thirdparty/module.rb
+I, [2024-12-25T11:18:23.475444 #36268] INFO -- : Updated copyright in ../../modules/host/physical_location_thirdparty/module.rb
+I, [2024-12-25T11:18:23.475616 #36268] INFO -- : Processing file: ../../modules/ipec/cross_site_faxing/command.js
+I, [2024-12-25T11:18:23.475926 #36268] INFO -- : Updated copyright in ../../modules/ipec/cross_site_faxing/command.js
+I, [2024-12-25T11:18:23.475955 #36268] INFO -- : Processing file: ../../modules/ipec/cross_site_faxing/config.yaml
+W, [2024-12-25T11:18:23.476158 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/cross_site_faxing/config.yaml
+I, [2024-12-25T11:18:23.476176 #36268] INFO -- : Processing file: ../../modules/ipec/cross_site_faxing/module.rb
+I, [2024-12-25T11:18:23.476367 #36268] INFO -- : Updated copyright in ../../modules/ipec/cross_site_faxing/module.rb
+I, [2024-12-25T11:18:23.476548 #36268] INFO -- : Processing file: ../../modules/ipec/cross_site_printing/command.js
+I, [2024-12-25T11:18:23.476701 #36268] INFO -- : Updated copyright in ../../modules/ipec/cross_site_printing/command.js
+I, [2024-12-25T11:18:23.476799 #36268] INFO -- : Processing file: ../../modules/ipec/cross_site_printing/config.yaml
+W, [2024-12-25T11:18:23.477010 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/cross_site_printing/config.yaml
+I, [2024-12-25T11:18:23.477030 #36268] INFO -- : Processing file: ../../modules/ipec/cross_site_printing/module.rb
+I, [2024-12-25T11:18:23.477195 #36268] INFO -- : Updated copyright in ../../modules/ipec/cross_site_printing/module.rb
+I, [2024-12-25T11:18:23.477471 #36268] INFO -- : Processing file: ../../modules/ipec/dns_tunnel/command.js
+I, [2024-12-25T11:18:23.477700 #36268] INFO -- : Updated copyright in ../../modules/ipec/dns_tunnel/command.js
+I, [2024-12-25T11:18:23.477719 #36268] INFO -- : Processing file: ../../modules/ipec/dns_tunnel/config.yaml
+W, [2024-12-25T11:18:23.478376 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/dns_tunnel/config.yaml
+I, [2024-12-25T11:18:23.478397 #36268] INFO -- : Processing file: ../../modules/ipec/dns_tunnel/module.rb
+I, [2024-12-25T11:18:23.478791 #36268] INFO -- : Updated copyright in ../../modules/ipec/dns_tunnel/module.rb
+I, [2024-12-25T11:18:23.478820 #36268] INFO -- : Processing file: ../../modules/ipec/etag_client/command.js
+I, [2024-12-25T11:18:23.479307 #36268] INFO -- : Updated copyright in ../../modules/ipec/etag_client/command.js
+I, [2024-12-25T11:18:23.479330 #36268] INFO -- : Processing file: ../../modules/ipec/etag_client/config.yaml
+W, [2024-12-25T11:18:23.479646 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/etag_client/config.yaml
+I, [2024-12-25T11:18:23.479666 #36268] INFO -- : Processing file: ../../modules/ipec/etag_client/module.rb
+I, [2024-12-25T11:18:23.479946 #36268] INFO -- : Updated copyright in ../../modules/ipec/etag_client/module.rb
+I, [2024-12-25T11:18:23.479990 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_imap/command.js
+I, [2024-12-25T11:18:23.480211 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_imap/command.js
+I, [2024-12-25T11:18:23.480306 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_imap/config.yaml
+W, [2024-12-25T11:18:23.480771 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/inter_protocol_imap/config.yaml
+I, [2024-12-25T11:18:23.480805 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_imap/module.rb
+I, [2024-12-25T11:18:23.481235 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_imap/module.rb
+I, [2024-12-25T11:18:23.481262 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_irc/command.js
+I, [2024-12-25T11:18:23.481744 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_irc/command.js
+I, [2024-12-25T11:18:23.481834 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_irc/config.yaml
+W, [2024-12-25T11:18:23.482083 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/inter_protocol_irc/config.yaml
+I, [2024-12-25T11:18:23.482103 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_irc/module.rb
+I, [2024-12-25T11:18:23.482332 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_irc/module.rb
+I, [2024-12-25T11:18:23.482354 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_posix_bindshell/command.js
+I, [2024-12-25T11:18:23.482725 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_posix_bindshell/command.js
+I, [2024-12-25T11:18:23.482863 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_posix_bindshell/config.yaml
+W, [2024-12-25T11:18:23.483393 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/inter_protocol_posix_bindshell/config.yaml
+I, [2024-12-25T11:18:23.483414 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_posix_bindshell/module.rb
+I, [2024-12-25T11:18:23.483703 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_posix_bindshell/module.rb
+I, [2024-12-25T11:18:23.483722 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_redis/command.js
+I, [2024-12-25T11:18:23.483984 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_redis/command.js
+I, [2024-12-25T11:18:23.484095 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_redis/config.yaml
+W, [2024-12-25T11:18:23.484347 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/inter_protocol_redis/config.yaml
+I, [2024-12-25T11:18:23.484367 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_redis/module.rb
+I, [2024-12-25T11:18:23.484736 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_redis/module.rb
+I, [2024-12-25T11:18:23.484765 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_win_bindshell/command.js
+I, [2024-12-25T11:18:23.485076 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_win_bindshell/command.js
+I, [2024-12-25T11:18:23.485106 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_win_bindshell/command.old.js
+I, [2024-12-25T11:18:23.485273 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_win_bindshell/command.old.js
+I, [2024-12-25T11:18:23.485291 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_win_bindshell/config.yaml
+W, [2024-12-25T11:18:23.485599 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/inter_protocol_win_bindshell/config.yaml
+I, [2024-12-25T11:18:23.485618 #36268] INFO -- : Processing file: ../../modules/ipec/inter_protocol_win_bindshell/module.rb
+I, [2024-12-25T11:18:23.485797 #36268] INFO -- : Updated copyright in ../../modules/ipec/inter_protocol_win_bindshell/module.rb
+I, [2024-12-25T11:18:23.485815 #36268] INFO -- : Processing file: ../../modules/ipec/s2c_dns_tunnel/command.js
+I, [2024-12-25T11:18:23.486053 #36268] INFO -- : Updated copyright in ../../modules/ipec/s2c_dns_tunnel/command.js
+I, [2024-12-25T11:18:23.486071 #36268] INFO -- : Processing file: ../../modules/ipec/s2c_dns_tunnel/config.yaml
+W, [2024-12-25T11:18:23.486294 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/ipec/s2c_dns_tunnel/config.yaml
+I, [2024-12-25T11:18:23.486314 #36268] INFO -- : Processing file: ../../modules/ipec/s2c_dns_tunnel/module.rb
+I, [2024-12-25T11:18:23.486597 #36268] INFO -- : Updated copyright in ../../modules/ipec/s2c_dns_tunnel/module.rb
+I, [2024-12-25T11:18:23.486624 #36268] INFO -- : Processing file: ../../modules/metasploit/browser_autopwn/command.js
+I, [2024-12-25T11:18:23.486788 #36268] INFO -- : Updated copyright in ../../modules/metasploit/browser_autopwn/command.js
+I, [2024-12-25T11:18:23.486806 #36268] INFO -- : Processing file: ../../modules/metasploit/browser_autopwn/config.yaml
+W, [2024-12-25T11:18:23.487006 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/metasploit/browser_autopwn/config.yaml
+I, [2024-12-25T11:18:23.487024 #36268] INFO -- : Processing file: ../../modules/metasploit/browser_autopwn/module.rb
+I, [2024-12-25T11:18:23.487181 #36268] INFO -- : Updated copyright in ../../modules/metasploit/browser_autopwn/module.rb
+I, [2024-12-25T11:18:23.487199 #36268] INFO -- : Processing file: ../../modules/misc/blockui/command.js
+I, [2024-12-25T11:18:23.487537 #36268] INFO -- : Updated copyright in ../../modules/misc/blockui/command.js
+I, [2024-12-25T11:18:23.487574 #36268] INFO -- : Processing file: ../../modules/misc/blockui/config.yaml
+W, [2024-12-25T11:18:23.487841 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/blockui/config.yaml
+I, [2024-12-25T11:18:23.487917 #36268] INFO -- : Processing file: ../../modules/misc/blockui/module.rb
+I, [2024-12-25T11:18:23.488188 #36268] INFO -- : Updated copyright in ../../modules/misc/blockui/module.rb
+I, [2024-12-25T11:18:23.488223 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/extract_inotes_list/command.js
+I, [2024-12-25T11:18:23.488379 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/extract_inotes_list/command.js
+I, [2024-12-25T11:18:23.488583 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/extract_inotes_list/config.yaml
+W, [2024-12-25T11:18:23.488748 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/ibm_inotes/extract_inotes_list/config.yaml
+I, [2024-12-25T11:18:23.488805 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/extract_inotes_list/module.rb
+I, [2024-12-25T11:18:23.488949 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/extract_inotes_list/module.rb
+I, [2024-12-25T11:18:23.488966 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/inotes_flooder/command.js
+I, [2024-12-25T11:18:23.489163 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/inotes_flooder/command.js
+I, [2024-12-25T11:18:23.489180 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/inotes_flooder/config.yaml
+W, [2024-12-25T11:18:23.489414 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/ibm_inotes/inotes_flooder/config.yaml
+I, [2024-12-25T11:18:23.489478 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/inotes_flooder/module.rb
+I, [2024-12-25T11:18:23.489698 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/inotes_flooder/module.rb
+I, [2024-12-25T11:18:23.489742 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/read_inotes/command.js
+I, [2024-12-25T11:18:23.489943 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/read_inotes/command.js
+I, [2024-12-25T11:18:23.489962 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/read_inotes/config.yaml
+W, [2024-12-25T11:18:23.490212 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/ibm_inotes/read_inotes/config.yaml
+I, [2024-12-25T11:18:23.490239 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/read_inotes/module.rb
+I, [2024-12-25T11:18:23.490522 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/read_inotes/module.rb
+I, [2024-12-25T11:18:23.490551 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/send_inotes/command.js
+I, [2024-12-25T11:18:23.490860 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/send_inotes/command.js
+I, [2024-12-25T11:18:23.490905 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/send_inotes/config.yaml
+W, [2024-12-25T11:18:23.491104 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/ibm_inotes/send_inotes/config.yaml
+I, [2024-12-25T11:18:23.491121 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/send_inotes/module.rb
+I, [2024-12-25T11:18:23.491317 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/send_inotes/module.rb
+I, [2024-12-25T11:18:23.491550 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/send_inotes_with_attachment/command.js
+I, [2024-12-25T11:18:23.492009 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/send_inotes_with_attachment/command.js
+I, [2024-12-25T11:18:23.492051 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/send_inotes_with_attachment/config.yaml
+W, [2024-12-25T11:18:23.492312 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/ibm_inotes/send_inotes_with_attachment/config.yaml
+I, [2024-12-25T11:18:23.492345 #36268] INFO -- : Processing file: ../../modules/misc/ibm_inotes/send_inotes_with_attachment/module.rb
+I, [2024-12-25T11:18:23.492882 #36268] INFO -- : Updated copyright in ../../modules/misc/ibm_inotes/send_inotes_with_attachment/module.rb
+I, [2024-12-25T11:18:23.493079 #36268] INFO -- : Processing file: ../../modules/misc/iframe_keylogger/command.js
+I, [2024-12-25T11:18:23.493284 #36268] INFO -- : Updated copyright in ../../modules/misc/iframe_keylogger/command.js
+I, [2024-12-25T11:18:23.493393 #36268] INFO -- : Processing file: ../../modules/misc/iframe_keylogger/config.yaml
+W, [2024-12-25T11:18:23.493647 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/iframe_keylogger/config.yaml
+I, [2024-12-25T11:18:23.493674 #36268] INFO -- : Processing file: ../../modules/misc/iframe_keylogger/module.rb
+I, [2024-12-25T11:18:23.493956 #36268] INFO -- : Updated copyright in ../../modules/misc/iframe_keylogger/module.rb
+I, [2024-12-25T11:18:23.494002 #36268] INFO -- : Processing file: ../../modules/misc/iframe_sniffer/command.js
+I, [2024-12-25T11:18:23.494376 #36268] INFO -- : Updated copyright in ../../modules/misc/iframe_sniffer/command.js
+I, [2024-12-25T11:18:23.494493 #36268] INFO -- : Processing file: ../../modules/misc/iframe_sniffer/config.yaml
+W, [2024-12-25T11:18:23.494796 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/iframe_sniffer/config.yaml
+I, [2024-12-25T11:18:23.494843 #36268] INFO -- : Processing file: ../../modules/misc/iframe_sniffer/leakyframe.js
+W, [2024-12-25T11:18:23.494942 #36268] WARN -- : Copyright string not found in ../../modules/misc/iframe_sniffer/leakyframe.js
+I, [2024-12-25T11:18:23.494968 #36268] INFO -- : Processing file: ../../modules/misc/iframe_sniffer/module.rb
+I, [2024-12-25T11:18:23.495359 #36268] INFO -- : Updated copyright in ../../modules/misc/iframe_sniffer/module.rb
+I, [2024-12-25T11:18:23.495525 #36268] INFO -- : Processing file: ../../modules/misc/invisible_iframe/command.js
+I, [2024-12-25T11:18:23.495760 #36268] INFO -- : Updated copyright in ../../modules/misc/invisible_iframe/command.js
+I, [2024-12-25T11:18:23.495795 #36268] INFO -- : Processing file: ../../modules/misc/invisible_iframe/config.yaml
+W, [2024-12-25T11:18:23.496322 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/invisible_iframe/config.yaml
+I, [2024-12-25T11:18:23.496355 #36268] INFO -- : Processing file: ../../modules/misc/invisible_iframe/module.rb
+I, [2024-12-25T11:18:23.496745 #36268] INFO -- : Updated copyright in ../../modules/misc/invisible_iframe/module.rb
+I, [2024-12-25T11:18:23.496789 #36268] INFO -- : Processing file: ../../modules/misc/local_file_theft/command.js
+I, [2024-12-25T11:18:23.497035 #36268] INFO -- : Updated copyright in ../../modules/misc/local_file_theft/command.js
+I, [2024-12-25T11:18:23.497061 #36268] INFO -- : Processing file: ../../modules/misc/local_file_theft/config.yaml
+W, [2024-12-25T11:18:23.497319 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/local_file_theft/config.yaml
+I, [2024-12-25T11:18:23.497345 #36268] INFO -- : Processing file: ../../modules/misc/local_file_theft/module.rb
+I, [2024-12-25T11:18:23.497641 #36268] INFO -- : Updated copyright in ../../modules/misc/local_file_theft/module.rb
+I, [2024-12-25T11:18:23.497676 #36268] INFO -- : Processing file: ../../modules/misc/nosleep/NoSleep.min.js
+W, [2024-12-25T11:18:23.497747 #36268] WARN -- : Copyright string not found in ../../modules/misc/nosleep/NoSleep.min.js
+I, [2024-12-25T11:18:23.497772 #36268] INFO -- : Processing file: ../../modules/misc/nosleep/command.js
+I, [2024-12-25T11:18:23.497973 #36268] INFO -- : Updated copyright in ../../modules/misc/nosleep/command.js
+I, [2024-12-25T11:18:23.498007 #36268] INFO -- : Processing file: ../../modules/misc/nosleep/config.yaml
+W, [2024-12-25T11:18:23.498181 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/nosleep/config.yaml
+I, [2024-12-25T11:18:23.498206 #36268] INFO -- : Processing file: ../../modules/misc/nosleep/module.rb
+I, [2024-12-25T11:18:23.498476 #36268] INFO -- : Updated copyright in ../../modules/misc/nosleep/module.rb
+I, [2024-12-25T11:18:23.498530 #36268] INFO -- : Processing file: ../../modules/misc/raw_javascript/command.js
+I, [2024-12-25T11:18:23.498848 #36268] INFO -- : Updated copyright in ../../modules/misc/raw_javascript/command.js
+I, [2024-12-25T11:18:23.498884 #36268] INFO -- : Processing file: ../../modules/misc/raw_javascript/config.yaml
+W, [2024-12-25T11:18:23.499076 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/raw_javascript/config.yaml
+I, [2024-12-25T11:18:23.499102 #36268] INFO -- : Processing file: ../../modules/misc/raw_javascript/module.rb
+I, [2024-12-25T11:18:23.499354 #36268] INFO -- : Updated copyright in ../../modules/misc/raw_javascript/module.rb
+I, [2024-12-25T11:18:23.499387 #36268] INFO -- : Processing file: ../../modules/misc/read_gmail/command.js
+I, [2024-12-25T11:18:23.499778 #36268] INFO -- : Updated copyright in ../../modules/misc/read_gmail/command.js
+I, [2024-12-25T11:18:23.499813 #36268] INFO -- : Processing file: ../../modules/misc/read_gmail/config.yaml
+W, [2024-12-25T11:18:23.499997 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/read_gmail/config.yaml
+I, [2024-12-25T11:18:23.500023 #36268] INFO -- : Processing file: ../../modules/misc/read_gmail/module.rb
+I, [2024-12-25T11:18:23.500182 #36268] INFO -- : Updated copyright in ../../modules/misc/read_gmail/module.rb
+I, [2024-12-25T11:18:23.500207 #36268] INFO -- : Processing file: ../../modules/misc/track_physical_movement/command.js
+I, [2024-12-25T11:18:23.500556 #36268] INFO -- : Updated copyright in ../../modules/misc/track_physical_movement/command.js
+I, [2024-12-25T11:18:23.500585 #36268] INFO -- : Processing file: ../../modules/misc/track_physical_movement/config.yaml
+W, [2024-12-25T11:18:23.500764 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/track_physical_movement/config.yaml
+I, [2024-12-25T11:18:23.500790 #36268] INFO -- : Processing file: ../../modules/misc/track_physical_movement/module.rb
+I, [2024-12-25T11:18:23.500948 #36268] INFO -- : Updated copyright in ../../modules/misc/track_physical_movement/module.rb
+I, [2024-12-25T11:18:23.501038 #36268] INFO -- : Processing file: ../../modules/misc/unblockui/command.js
+I, [2024-12-25T11:18:23.501296 #36268] INFO -- : Updated copyright in ../../modules/misc/unblockui/command.js
+I, [2024-12-25T11:18:23.501332 #36268] INFO -- : Processing file: ../../modules/misc/unblockui/config.yaml
+W, [2024-12-25T11:18:23.501612 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/unblockui/config.yaml
+I, [2024-12-25T11:18:23.501655 #36268] INFO -- : Processing file: ../../modules/misc/unblockui/module.rb
+I, [2024-12-25T11:18:23.501950 #36268] INFO -- : Updated copyright in ../../modules/misc/unblockui/module.rb
+I, [2024-12-25T11:18:23.502041 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/add_user/command.js
+W, [2024-12-25T11:18:23.502130 #36268] WARN -- : Copyright string not found in ../../modules/misc/wordpress/add_user/command.js
+I, [2024-12-25T11:18:23.502156 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/add_user/config.yaml
+W, [2024-12-25T11:18:23.502345 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/wordpress/add_user/config.yaml
+I, [2024-12-25T11:18:23.502378 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/add_user/module.rb
+W, [2024-12-25T11:18:23.502496 #36268] WARN -- : Copyright string not found in ../../modules/misc/wordpress/add_user/module.rb
+I, [2024-12-25T11:18:23.502538 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/current_user_info/command.js
+W, [2024-12-25T11:18:23.502590 #36268] WARN -- : Copyright string not found in ../../modules/misc/wordpress/current_user_info/command.js
+I, [2024-12-25T11:18:23.502616 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/current_user_info/config.yaml
+W, [2024-12-25T11:18:23.502879 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/wordpress/current_user_info/config.yaml
+I, [2024-12-25T11:18:23.502917 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/current_user_info/module.rb
+W, [2024-12-25T11:18:23.502999 #36268] WARN -- : Copyright string not found in ../../modules/misc/wordpress/current_user_info/module.rb
+I, [2024-12-25T11:18:23.503033 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/upload_rce_plugin/command.js
+W, [2024-12-25T11:18:23.503106 #36268] WARN -- : Copyright string not found in ../../modules/misc/wordpress/upload_rce_plugin/command.js
+I, [2024-12-25T11:18:23.503140 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/upload_rce_plugin/config.yaml
+W, [2024-12-25T11:18:23.503661 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/wordpress/upload_rce_plugin/config.yaml
+I, [2024-12-25T11:18:23.503697 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/upload_rce_plugin/module.rb
+W, [2024-12-25T11:18:23.503793 #36268] WARN -- : Copyright string not found in ../../modules/misc/wordpress/upload_rce_plugin/module.rb
+I, [2024-12-25T11:18:23.503825 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/wordpress_command.rb
+W, [2024-12-25T11:18:23.503873 #36268] WARN -- : Copyright string not found in ../../modules/misc/wordpress/wordpress_command.rb
+I, [2024-12-25T11:18:23.503897 #36268] INFO -- : Processing file: ../../modules/misc/wordpress/wp.js
+W, [2024-12-25T11:18:23.503940 #36268] WARN -- : Copyright string not found in ../../modules/misc/wordpress/wp.js
+I, [2024-12-25T11:18:23.503963 #36268] INFO -- : Processing file: ../../modules/misc/wordpress_post_auth_rce/command.js
+I, [2024-12-25T11:18:23.504250 #36268] INFO -- : Updated copyright in ../../modules/misc/wordpress_post_auth_rce/command.js
+I, [2024-12-25T11:18:23.504403 #36268] INFO -- : Processing file: ../../modules/misc/wordpress_post_auth_rce/config.yaml
+W, [2024-12-25T11:18:23.504800 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/misc/wordpress_post_auth_rce/config.yaml
+I, [2024-12-25T11:18:23.504843 #36268] INFO -- : Processing file: ../../modules/misc/wordpress_post_auth_rce/module.rb
+I, [2024-12-25T11:18:23.505135 #36268] INFO -- : Updated copyright in ../../modules/misc/wordpress_post_auth_rce/module.rb
+I, [2024-12-25T11:18:23.505266 #36268] INFO -- : Processing file: ../../modules/network/ADC/f5_bigip_cookie_disclosure/command.js
+I, [2024-12-25T11:18:23.505754 #36268] INFO -- : Updated copyright in ../../modules/network/ADC/f5_bigip_cookie_disclosure/command.js
+I, [2024-12-25T11:18:23.505911 #36268] INFO -- : Processing file: ../../modules/network/ADC/f5_bigip_cookie_disclosure/config.yaml
+W, [2024-12-25T11:18:23.506360 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/ADC/f5_bigip_cookie_disclosure/config.yaml
+I, [2024-12-25T11:18:23.506421 #36268] INFO -- : Processing file: ../../modules/network/ADC/f5_bigip_cookie_disclosure/module.rb
+I, [2024-12-25T11:18:23.506828 #36268] INFO -- : Updated copyright in ../../modules/network/ADC/f5_bigip_cookie_disclosure/module.rb
+I, [2024-12-25T11:18:23.506868 #36268] INFO -- : Processing file: ../../modules/network/ADC/f5_bigip_cookie_stealing/command.js
+I, [2024-12-25T11:18:23.507159 #36268] INFO -- : Updated copyright in ../../modules/network/ADC/f5_bigip_cookie_stealing/command.js
+I, [2024-12-25T11:18:23.507211 #36268] INFO -- : Processing file: ../../modules/network/ADC/f5_bigip_cookie_stealing/config.yaml
+W, [2024-12-25T11:18:23.507704 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/ADC/f5_bigip_cookie_stealing/config.yaml
+I, [2024-12-25T11:18:23.507771 #36268] INFO -- : Processing file: ../../modules/network/ADC/f5_bigip_cookie_stealing/module.rb
+I, [2024-12-25T11:18:23.508191 #36268] INFO -- : Updated copyright in ../../modules/network/ADC/f5_bigip_cookie_stealing/module.rb
+I, [2024-12-25T11:18:23.508241 #36268] INFO -- : Processing file: ../../modules/network/DOSer/command.js
+I, [2024-12-25T11:18:23.508754 #36268] INFO -- : Updated copyright in ../../modules/network/DOSer/command.js
+I, [2024-12-25T11:18:23.508791 #36268] INFO -- : Processing file: ../../modules/network/DOSer/config.yaml
+W, [2024-12-25T11:18:23.509025 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/DOSer/config.yaml
+I, [2024-12-25T11:18:23.509058 #36268] INFO -- : Processing file: ../../modules/network/DOSer/module.rb
+I, [2024-12-25T11:18:23.509394 #36268] INFO -- : Updated copyright in ../../modules/network/DOSer/module.rb
+I, [2024-12-25T11:18:23.509486 #36268] INFO -- : Processing file: ../../modules/network/DOSer/worker.js
+W, [2024-12-25T11:18:23.509556 #36268] WARN -- : Copyright string not found in ../../modules/network/DOSer/worker.js
+I, [2024-12-25T11:18:23.509588 #36268] INFO -- : Processing file: ../../modules/network/cross_origin_scanner_cors/command.js
+I, [2024-12-25T11:18:23.509880 #36268] INFO -- : Updated copyright in ../../modules/network/cross_origin_scanner_cors/command.js
+I, [2024-12-25T11:18:23.509917 #36268] INFO -- : Processing file: ../../modules/network/cross_origin_scanner_cors/config.yaml
+W, [2024-12-25T11:18:23.510230 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/cross_origin_scanner_cors/config.yaml
+I, [2024-12-25T11:18:23.510263 #36268] INFO -- : Processing file: ../../modules/network/cross_origin_scanner_cors/module.rb
+I, [2024-12-25T11:18:23.510429 #36268] INFO -- : Updated copyright in ../../modules/network/cross_origin_scanner_cors/module.rb
+I, [2024-12-25T11:18:23.510597 #36268] INFO -- : Processing file: ../../modules/network/cross_origin_scanner_flash/command.js
+I, [2024-12-25T11:18:23.510809 #36268] INFO -- : Updated copyright in ../../modules/network/cross_origin_scanner_flash/command.js
+I, [2024-12-25T11:18:23.510905 #36268] INFO -- : Processing file: ../../modules/network/cross_origin_scanner_flash/config.yaml
+W, [2024-12-25T11:18:23.511132 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/cross_origin_scanner_flash/config.yaml
+I, [2024-12-25T11:18:23.511158 #36268] INFO -- : Processing file: ../../modules/network/cross_origin_scanner_flash/module.rb
+I, [2024-12-25T11:18:23.511326 #36268] INFO -- : Updated copyright in ../../modules/network/cross_origin_scanner_flash/module.rb
+I, [2024-12-25T11:18:23.511455 #36268] INFO -- : Processing file: ../../modules/network/cross_origin_scanner_flash/swfobject.js
+W, [2024-12-25T11:18:23.511559 #36268] WARN -- : Copyright string not found in ../../modules/network/cross_origin_scanner_flash/swfobject.js
+I, [2024-12-25T11:18:23.511585 #36268] INFO -- : Processing file: ../../modules/network/detect_burp/command.js
+I, [2024-12-25T11:18:23.511762 #36268] INFO -- : Updated copyright in ../../modules/network/detect_burp/command.js
+I, [2024-12-25T11:18:23.511787 #36268] INFO -- : Processing file: ../../modules/network/detect_burp/config.yaml
+W, [2024-12-25T11:18:23.512067 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/detect_burp/config.yaml
+I, [2024-12-25T11:18:23.512093 #36268] INFO -- : Processing file: ../../modules/network/detect_burp/module.rb
+I, [2024-12-25T11:18:23.512251 #36268] INFO -- : Updated copyright in ../../modules/network/detect_burp/module.rb
+I, [2024-12-25T11:18:23.512349 #36268] INFO -- : Processing file: ../../modules/network/detect_ethereum_ens/command.js
+I, [2024-12-25T11:18:23.512633 #36268] INFO -- : Updated copyright in ../../modules/network/detect_ethereum_ens/command.js
+I, [2024-12-25T11:18:23.512728 #36268] INFO -- : Processing file: ../../modules/network/detect_ethereum_ens/config.yaml
+W, [2024-12-25T11:18:23.513036 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/detect_ethereum_ens/config.yaml
+I, [2024-12-25T11:18:23.513088 #36268] INFO -- : Processing file: ../../modules/network/detect_ethereum_ens/module.rb
+I, [2024-12-25T11:18:23.513325 #36268] INFO -- : Updated copyright in ../../modules/network/detect_ethereum_ens/module.rb
+I, [2024-12-25T11:18:23.513505 #36268] INFO -- : Processing file: ../../modules/network/detect_opennic/command.js
+I, [2024-12-25T11:18:23.513686 #36268] INFO -- : Updated copyright in ../../modules/network/detect_opennic/command.js
+I, [2024-12-25T11:18:23.513774 #36268] INFO -- : Processing file: ../../modules/network/detect_opennic/config.yaml
+W, [2024-12-25T11:18:23.514014 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/detect_opennic/config.yaml
+I, [2024-12-25T11:18:23.514045 #36268] INFO -- : Processing file: ../../modules/network/detect_opennic/module.rb
+I, [2024-12-25T11:18:23.514338 #36268] INFO -- : Updated copyright in ../../modules/network/detect_opennic/module.rb
+I, [2024-12-25T11:18:23.514370 #36268] INFO -- : Processing file: ../../modules/network/detect_soc_nets/command.js
+I, [2024-12-25T11:18:23.514658 #36268] INFO -- : Updated copyright in ../../modules/network/detect_soc_nets/command.js
+I, [2024-12-25T11:18:23.514756 #36268] INFO -- : Processing file: ../../modules/network/detect_soc_nets/config.yaml
+W, [2024-12-25T11:18:23.514974 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/detect_soc_nets/config.yaml
+I, [2024-12-25T11:18:23.515008 #36268] INFO -- : Processing file: ../../modules/network/detect_soc_nets/module.rb
+I, [2024-12-25T11:18:23.515229 #36268] INFO -- : Updated copyright in ../../modules/network/detect_soc_nets/module.rb
+I, [2024-12-25T11:18:23.515349 #36268] INFO -- : Processing file: ../../modules/network/detect_tor/command.js
+I, [2024-12-25T11:18:23.516277 #36268] INFO -- : Updated copyright in ../../modules/network/detect_tor/command.js
+I, [2024-12-25T11:18:23.516321 #36268] INFO -- : Processing file: ../../modules/network/detect_tor/config.yaml
+W, [2024-12-25T11:18:23.516649 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/detect_tor/config.yaml
+I, [2024-12-25T11:18:23.516684 #36268] INFO -- : Processing file: ../../modules/network/detect_tor/module.rb
+I, [2024-12-25T11:18:23.517064 #36268] INFO -- : Updated copyright in ../../modules/network/detect_tor/module.rb
+I, [2024-12-25T11:18:23.517111 #36268] INFO -- : Processing file: ../../modules/network/dns_enumeration/command.js
+I, [2024-12-25T11:18:23.517518 #36268] INFO -- : Updated copyright in ../../modules/network/dns_enumeration/command.js
+I, [2024-12-25T11:18:23.517571 #36268] INFO -- : Processing file: ../../modules/network/dns_enumeration/config.yaml
+W, [2024-12-25T11:18:23.518052 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/dns_enumeration/config.yaml
+I, [2024-12-25T11:18:23.518089 #36268] INFO -- : Processing file: ../../modules/network/dns_enumeration/module.rb
+I, [2024-12-25T11:18:23.518567 #36268] INFO -- : Updated copyright in ../../modules/network/dns_enumeration/module.rb
+I, [2024-12-25T11:18:23.518618 #36268] INFO -- : Processing file: ../../modules/network/dns_rebinding/command.js
+I, [2024-12-25T11:18:23.518939 #36268] INFO -- : Updated copyright in ../../modules/network/dns_rebinding/command.js
+I, [2024-12-25T11:18:23.518974 #36268] INFO -- : Processing file: ../../modules/network/dns_rebinding/config.yaml
+W, [2024-12-25T11:18:23.519274 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/dns_rebinding/config.yaml
+I, [2024-12-25T11:18:23.519309 #36268] INFO -- : Processing file: ../../modules/network/dns_rebinding/module.rb
+I, [2024-12-25T11:18:23.519602 #36268] INFO -- : Updated copyright in ../../modules/network/dns_rebinding/module.rb
+I, [2024-12-25T11:18:23.519637 #36268] INFO -- : Processing file: ../../modules/network/fetch_port_scanner/command.js
+I, [2024-12-25T11:18:23.519880 #36268] INFO -- : Updated copyright in ../../modules/network/fetch_port_scanner/command.js
+I, [2024-12-25T11:18:23.519976 #36268] INFO -- : Processing file: ../../modules/network/fetch_port_scanner/config.yaml
+W, [2024-12-25T11:18:23.520280 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/fetch_port_scanner/config.yaml
+I, [2024-12-25T11:18:23.520366 #36268] INFO -- : Processing file: ../../modules/network/fetch_port_scanner/module.rb
+I, [2024-12-25T11:18:23.520666 #36268] INFO -- : Updated copyright in ../../modules/network/fetch_port_scanner/module.rb
+I, [2024-12-25T11:18:23.520700 #36268] INFO -- : Processing file: ../../modules/network/get_http_servers/command.js
+I, [2024-12-25T11:18:23.520981 #36268] INFO -- : Updated copyright in ../../modules/network/get_http_servers/command.js
+I, [2024-12-25T11:18:23.521017 #36268] INFO -- : Processing file: ../../modules/network/get_http_servers/config.yaml
+W, [2024-12-25T11:18:23.521232 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/get_http_servers/config.yaml
+I, [2024-12-25T11:18:23.521265 #36268] INFO -- : Processing file: ../../modules/network/get_http_servers/module.rb
+I, [2024-12-25T11:18:23.521609 #36268] INFO -- : Updated copyright in ../../modules/network/get_http_servers/module.rb
+I, [2024-12-25T11:18:23.521646 #36268] INFO -- : Processing file: ../../modules/network/get_ntop_network_hosts/command.js
+I, [2024-12-25T11:18:23.521889 #36268] INFO -- : Updated copyright in ../../modules/network/get_ntop_network_hosts/command.js
+I, [2024-12-25T11:18:23.521923 #36268] INFO -- : Processing file: ../../modules/network/get_ntop_network_hosts/config.yaml
+W, [2024-12-25T11:18:23.522117 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/get_ntop_network_hosts/config.yaml
+I, [2024-12-25T11:18:23.522150 #36268] INFO -- : Processing file: ../../modules/network/get_ntop_network_hosts/module.rb
+I, [2024-12-25T11:18:23.522394 #36268] INFO -- : Updated copyright in ../../modules/network/get_ntop_network_hosts/module.rb
+I, [2024-12-25T11:18:23.522520 #36268] INFO -- : Processing file: ../../modules/network/get_proxy_servers_wpad/command.js
+I, [2024-12-25T11:18:23.522710 #36268] INFO -- : Updated copyright in ../../modules/network/get_proxy_servers_wpad/command.js
+I, [2024-12-25T11:18:23.522806 #36268] INFO -- : Processing file: ../../modules/network/get_proxy_servers_wpad/config.yaml
+W, [2024-12-25T11:18:23.523014 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/get_proxy_servers_wpad/config.yaml
+I, [2024-12-25T11:18:23.523047 #36268] INFO -- : Processing file: ../../modules/network/get_proxy_servers_wpad/module.rb
+I, [2024-12-25T11:18:23.523293 #36268] INFO -- : Updated copyright in ../../modules/network/get_proxy_servers_wpad/module.rb
+I, [2024-12-25T11:18:23.523341 #36268] INFO -- : Processing file: ../../modules/network/identify_lan_subnets/command.js
+I, [2024-12-25T11:18:23.523674 #36268] INFO -- : Updated copyright in ../../modules/network/identify_lan_subnets/command.js
+I, [2024-12-25T11:18:23.523708 #36268] INFO -- : Processing file: ../../modules/network/identify_lan_subnets/config.yaml
+W, [2024-12-25T11:18:23.523929 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/identify_lan_subnets/config.yaml
+I, [2024-12-25T11:18:23.523962 #36268] INFO -- : Processing file: ../../modules/network/identify_lan_subnets/module.rb
+I, [2024-12-25T11:18:23.524265 #36268] INFO -- : Updated copyright in ../../modules/network/identify_lan_subnets/module.rb
+I, [2024-12-25T11:18:23.524302 #36268] INFO -- : Processing file: ../../modules/network/internal_network_fingerprinting/command.js
+I, [2024-12-25T11:18:23.524612 #36268] INFO -- : Updated copyright in ../../modules/network/internal_network_fingerprinting/command.js
+I, [2024-12-25T11:18:23.524771 #36268] INFO -- : Processing file: ../../modules/network/internal_network_fingerprinting/config.yaml
+W, [2024-12-25T11:18:23.525101 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/internal_network_fingerprinting/config.yaml
+I, [2024-12-25T11:18:23.525136 #36268] INFO -- : Processing file: ../../modules/network/internal_network_fingerprinting/module.rb
+I, [2024-12-25T11:18:23.525506 #36268] INFO -- : Updated copyright in ../../modules/network/internal_network_fingerprinting/module.rb
+I, [2024-12-25T11:18:23.525535 #36268] INFO -- : Processing file: ../../modules/network/jslanscanner/command.js
+I, [2024-12-25T11:18:23.525761 #36268] INFO -- : Updated copyright in ../../modules/network/jslanscanner/command.js
+I, [2024-12-25T11:18:23.525790 #36268] INFO -- : Processing file: ../../modules/network/jslanscanner/config.yaml
+W, [2024-12-25T11:18:23.526098 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/jslanscanner/config.yaml
+I, [2024-12-25T11:18:23.526116 #36268] INFO -- : Processing file: ../../modules/network/jslanscanner/module.rb
+I, [2024-12-25T11:18:23.526307 #36268] INFO -- : Updated copyright in ../../modules/network/jslanscanner/module.rb
+I, [2024-12-25T11:18:23.526481 #36268] INFO -- : Processing file: ../../modules/network/nat_pinning_irc/command.js
+I, [2024-12-25T11:18:23.526646 #36268] INFO -- : Updated copyright in ../../modules/network/nat_pinning_irc/command.js
+I, [2024-12-25T11:18:23.526734 #36268] INFO -- : Processing file: ../../modules/network/nat_pinning_irc/config.yaml
+W, [2024-12-25T11:18:23.526923 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/nat_pinning_irc/config.yaml
+I, [2024-12-25T11:18:23.526941 #36268] INFO -- : Processing file: ../../modules/network/nat_pinning_irc/module.rb
+I, [2024-12-25T11:18:23.527117 #36268] INFO -- : Updated copyright in ../../modules/network/nat_pinning_irc/module.rb
+I, [2024-12-25T11:18:23.527134 #36268] INFO -- : Processing file: ../../modules/network/ping_sweep/command.js
+I, [2024-12-25T11:18:23.527352 #36268] INFO -- : Updated copyright in ../../modules/network/ping_sweep/command.js
+I, [2024-12-25T11:18:23.527481 #36268] INFO -- : Processing file: ../../modules/network/ping_sweep/config.yaml
+W, [2024-12-25T11:18:23.527690 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/ping_sweep/config.yaml
+I, [2024-12-25T11:18:23.527707 #36268] INFO -- : Processing file: ../../modules/network/ping_sweep/module.rb
+I, [2024-12-25T11:18:23.527851 #36268] INFO -- : Updated copyright in ../../modules/network/ping_sweep/module.rb
+I, [2024-12-25T11:18:23.527868 #36268] INFO -- : Processing file: ../../modules/network/ping_sweep_ff/command.js
+I, [2024-12-25T11:18:23.528109 #36268] INFO -- : Updated copyright in ../../modules/network/ping_sweep_ff/command.js
+I, [2024-12-25T11:18:23.528128 #36268] INFO -- : Processing file: ../../modules/network/ping_sweep_ff/config.yaml
+W, [2024-12-25T11:18:23.528314 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/ping_sweep_ff/config.yaml
+I, [2024-12-25T11:18:23.528333 #36268] INFO -- : Processing file: ../../modules/network/ping_sweep_ff/module.rb
+I, [2024-12-25T11:18:23.528657 #36268] INFO -- : Updated copyright in ../../modules/network/ping_sweep_ff/module.rb
+I, [2024-12-25T11:18:23.528685 #36268] INFO -- : Processing file: ../../modules/network/ping_sweep_java/command.js
+I, [2024-12-25T11:18:23.528955 #36268] INFO -- : Updated copyright in ../../modules/network/ping_sweep_java/command.js
+I, [2024-12-25T11:18:23.529055 #36268] INFO -- : Processing file: ../../modules/network/ping_sweep_java/config.yaml
+W, [2024-12-25T11:18:23.529310 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/ping_sweep_java/config.yaml
+I, [2024-12-25T11:18:23.529414 #36268] INFO -- : Processing file: ../../modules/network/ping_sweep_java/module.rb
+I, [2024-12-25T11:18:23.529896 #36268] INFO -- : Updated copyright in ../../modules/network/ping_sweep_java/module.rb
+I, [2024-12-25T11:18:23.529966 #36268] INFO -- : Processing file: ../../modules/network/port_scanner/command.js
+I, [2024-12-25T11:18:23.530220 #36268] INFO -- : Updated copyright in ../../modules/network/port_scanner/command.js
+I, [2024-12-25T11:18:23.530238 #36268] INFO -- : Processing file: ../../modules/network/port_scanner/config.yaml
+W, [2024-12-25T11:18:23.530712 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/network/port_scanner/config.yaml
+I, [2024-12-25T11:18:23.530787 #36268] INFO -- : Processing file: ../../modules/network/port_scanner/module.rb
+I, [2024-12-25T11:18:23.530959 #36268] INFO -- : Updated copyright in ../../modules/network/port_scanner/module.rb
+I, [2024-12-25T11:18:23.531038 #36268] INFO -- : Processing file: ../../modules/persistence/confirm_close_tab/command.js
+I, [2024-12-25T11:18:23.531200 #36268] INFO -- : Updated copyright in ../../modules/persistence/confirm_close_tab/command.js
+I, [2024-12-25T11:18:23.531217 #36268] INFO -- : Processing file: ../../modules/persistence/confirm_close_tab/config.yaml
+W, [2024-12-25T11:18:23.531539 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/persistence/confirm_close_tab/config.yaml
+I, [2024-12-25T11:18:23.531563 #36268] INFO -- : Processing file: ../../modules/persistence/confirm_close_tab/module.rb
+I, [2024-12-25T11:18:23.531967 #36268] INFO -- : Updated copyright in ../../modules/persistence/confirm_close_tab/module.rb
+I, [2024-12-25T11:18:23.532015 #36268] INFO -- : Processing file: ../../modules/persistence/hijack_opener/command.js
+I, [2024-12-25T11:18:23.532537 #36268] INFO -- : Updated copyright in ../../modules/persistence/hijack_opener/command.js
+I, [2024-12-25T11:18:23.532570 #36268] INFO -- : Processing file: ../../modules/persistence/hijack_opener/config.yaml
+W, [2024-12-25T11:18:23.532810 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/persistence/hijack_opener/config.yaml
+I, [2024-12-25T11:18:23.532827 #36268] INFO -- : Processing file: ../../modules/persistence/hijack_opener/module.rb
+I, [2024-12-25T11:18:23.533092 #36268] INFO -- : Updated copyright in ../../modules/persistence/hijack_opener/module.rb
+I, [2024-12-25T11:18:23.533198 #36268] INFO -- : Processing file: ../../modules/persistence/iframe_above/command.js
+I, [2024-12-25T11:18:23.533681 #36268] INFO -- : Updated copyright in ../../modules/persistence/iframe_above/command.js
+I, [2024-12-25T11:18:23.533715 #36268] INFO -- : Processing file: ../../modules/persistence/iframe_above/config.yaml
+W, [2024-12-25T11:18:23.534009 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/persistence/iframe_above/config.yaml
+I, [2024-12-25T11:18:23.534033 #36268] INFO -- : Processing file: ../../modules/persistence/iframe_above/module.rb
+I, [2024-12-25T11:18:23.534365 #36268] INFO -- : Updated copyright in ../../modules/persistence/iframe_above/module.rb
+I, [2024-12-25T11:18:23.534403 #36268] INFO -- : Processing file: ../../modules/persistence/invisible_htmlfile_activex/command.js
+I, [2024-12-25T11:18:23.534783 #36268] INFO -- : Updated copyright in ../../modules/persistence/invisible_htmlfile_activex/command.js
+I, [2024-12-25T11:18:23.534897 #36268] INFO -- : Processing file: ../../modules/persistence/invisible_htmlfile_activex/config.yaml
+W, [2024-12-25T11:18:23.535174 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/persistence/invisible_htmlfile_activex/config.yaml
+I, [2024-12-25T11:18:23.535201 #36268] INFO -- : Processing file: ../../modules/persistence/invisible_htmlfile_activex/module.rb
+I, [2024-12-25T11:18:23.535384 #36268] INFO -- : Updated copyright in ../../modules/persistence/invisible_htmlfile_activex/module.rb
+I, [2024-12-25T11:18:23.535564 #36268] INFO -- : Processing file: ../../modules/persistence/jsonp_service_worker/command.js
+I, [2024-12-25T11:18:23.535722 #36268] INFO -- : Updated copyright in ../../modules/persistence/jsonp_service_worker/command.js
+I, [2024-12-25T11:18:23.535851 #36268] INFO -- : Processing file: ../../modules/persistence/jsonp_service_worker/config.yaml
+W, [2024-12-25T11:18:23.536058 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/persistence/jsonp_service_worker/config.yaml
+I, [2024-12-25T11:18:23.536077 #36268] INFO -- : Processing file: ../../modules/persistence/jsonp_service_worker/module.rb
+W, [2024-12-25T11:18:23.536139 #36268] WARN -- : Copyright string not found in ../../modules/persistence/jsonp_service_worker/module.rb
+I, [2024-12-25T11:18:23.536158 #36268] INFO -- : Processing file: ../../modules/persistence/man_in_the_browser/command.js
+I, [2024-12-25T11:18:23.536379 #36268] INFO -- : Updated copyright in ../../modules/persistence/man_in_the_browser/command.js
+I, [2024-12-25T11:18:23.536514 #36268] INFO -- : Processing file: ../../modules/persistence/man_in_the_browser/config.yaml
+W, [2024-12-25T11:18:23.536691 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/persistence/man_in_the_browser/config.yaml
+I, [2024-12-25T11:18:23.536708 #36268] INFO -- : Processing file: ../../modules/persistence/man_in_the_browser/module.rb
+I, [2024-12-25T11:18:23.536856 #36268] INFO -- : Updated copyright in ../../modules/persistence/man_in_the_browser/module.rb
+I, [2024-12-25T11:18:23.536934 #36268] INFO -- : Processing file: ../../modules/persistence/popunder_window/command.js
+I, [2024-12-25T11:18:23.537078 #36268] INFO -- : Updated copyright in ../../modules/persistence/popunder_window/command.js
+I, [2024-12-25T11:18:23.537155 #36268] INFO -- : Processing file: ../../modules/persistence/popunder_window/config.yaml
+W, [2024-12-25T11:18:23.537323 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/persistence/popunder_window/config.yaml
+I, [2024-12-25T11:18:23.537342 #36268] INFO -- : Processing file: ../../modules/persistence/popunder_window/module.rb
+I, [2024-12-25T11:18:23.537590 #36268] INFO -- : Updated copyright in ../../modules/persistence/popunder_window/module.rb
+I, [2024-12-25T11:18:23.537614 #36268] INFO -- : Processing file: ../../modules/persistence/popunder_window_ie/command.js
+I, [2024-12-25T11:18:23.537777 #36268] INFO -- : Updated copyright in ../../modules/persistence/popunder_window_ie/command.js
+I, [2024-12-25T11:18:23.537860 #36268] INFO -- : Processing file: ../../modules/persistence/popunder_window_ie/config.yaml
+W, [2024-12-25T11:18:23.538063 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/persistence/popunder_window_ie/config.yaml
+I, [2024-12-25T11:18:23.538081 #36268] INFO -- : Processing file: ../../modules/persistence/popunder_window_ie/module.rb
+I, [2024-12-25T11:18:23.538284 #36268] INFO -- : Updated copyright in ../../modules/persistence/popunder_window_ie/module.rb
+I, [2024-12-25T11:18:23.538312 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_alert_user/command.js
+I, [2024-12-25T11:18:23.538558 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_alert_user/command.js
+I, [2024-12-25T11:18:23.538583 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_alert_user/config.yaml
+W, [2024-12-25T11:18:23.538744 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_alert_user/config.yaml
+I, [2024-12-25T11:18:23.538763 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_alert_user/module.rb
+I, [2024-12-25T11:18:23.538931 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_alert_user/module.rb
+I, [2024-12-25T11:18:23.539007 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_beep/command.js
+I, [2024-12-25T11:18:23.539161 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_beep/command.js
+I, [2024-12-25T11:18:23.539179 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_beep/config.yaml
+W, [2024-12-25T11:18:23.539465 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_beep/config.yaml
+I, [2024-12-25T11:18:23.539976 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_beep/module.rb
+I, [2024-12-25T11:18:23.540194 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_beep/module.rb
+I, [2024-12-25T11:18:23.540287 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_check_connection/command.js
+I, [2024-12-25T11:18:23.540552 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_check_connection/command.js
+I, [2024-12-25T11:18:23.540634 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_check_connection/config.yaml
+W, [2024-12-25T11:18:23.540931 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_check_connection/config.yaml
+I, [2024-12-25T11:18:23.540951 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_check_connection/module.rb
+I, [2024-12-25T11:18:23.541125 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_check_connection/module.rb
+I, [2024-12-25T11:18:23.541144 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_detect/command.js
+I, [2024-12-25T11:18:23.541596 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_detect/command.js
+I, [2024-12-25T11:18:23.541638 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_detect/config.yaml
+W, [2024-12-25T11:18:23.541938 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_detect/config.yaml
+I, [2024-12-25T11:18:23.541966 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_detect/module.rb
+I, [2024-12-25T11:18:23.542302 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_detect/module.rb
+I, [2024-12-25T11:18:23.542334 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_file_upload/command.js
+I, [2024-12-25T11:18:23.542572 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_file_upload/command.js
+I, [2024-12-25T11:18:23.542593 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_file_upload/config.yaml
+W, [2024-12-25T11:18:23.542861 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_file_upload/config.yaml
+I, [2024-12-25T11:18:23.542888 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_file_upload/module.rb
+I, [2024-12-25T11:18:23.543071 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_file_upload/module.rb
+I, [2024-12-25T11:18:23.543088 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_geo_locate/command.js
+I, [2024-12-25T11:18:23.543299 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_geo_locate/command.js
+I, [2024-12-25T11:18:23.543376 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_geo_locate/config.yaml
+W, [2024-12-25T11:18:23.543602 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_geo_locate/config.yaml
+I, [2024-12-25T11:18:23.543636 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_geo_locate/module.rb
+I, [2024-12-25T11:18:23.543791 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_geo_locate/module.rb
+I, [2024-12-25T11:18:23.543887 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_globalization_status/command.js
+I, [2024-12-25T11:18:23.544104 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_globalization_status/command.js
+I, [2024-12-25T11:18:23.544137 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_globalization_status/config.yaml
+W, [2024-12-25T11:18:23.544331 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_globalization_status/config.yaml
+I, [2024-12-25T11:18:23.544357 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_globalization_status/module.rb
+I, [2024-12-25T11:18:23.544619 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_globalization_status/module.rb
+I, [2024-12-25T11:18:23.544654 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_keychain/command.js
+I, [2024-12-25T11:18:23.544871 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_keychain/command.js
+I, [2024-12-25T11:18:23.544906 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_keychain/config.yaml
+W, [2024-12-25T11:18:23.545219 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_keychain/config.yaml
+I, [2024-12-25T11:18:23.545256 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_keychain/module.rb
+I, [2024-12-25T11:18:23.545608 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_keychain/module.rb
+I, [2024-12-25T11:18:23.545644 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_list_contacts/command.js
+I, [2024-12-25T11:18:23.545847 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_list_contacts/command.js
+I, [2024-12-25T11:18:23.545983 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_list_contacts/config.yaml
+W, [2024-12-25T11:18:23.546237 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_list_contacts/config.yaml
+I, [2024-12-25T11:18:23.546279 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_list_contacts/module.rb
+I, [2024-12-25T11:18:23.546645 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_list_contacts/module.rb
+I, [2024-12-25T11:18:23.546676 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_list_files/command.js
+I, [2024-12-25T11:18:23.546929 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_list_files/command.js
+I, [2024-12-25T11:18:23.546963 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_list_files/config.yaml
+W, [2024-12-25T11:18:23.547177 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_list_files/config.yaml
+I, [2024-12-25T11:18:23.547204 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_list_files/module.rb
+I, [2024-12-25T11:18:23.547449 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_list_files/module.rb
+I, [2024-12-25T11:18:23.547622 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_persist_resume/command.js
+I, [2024-12-25T11:18:23.547814 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_persist_resume/command.js
+I, [2024-12-25T11:18:23.547840 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_persist_resume/config.yaml
+W, [2024-12-25T11:18:23.548156 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_persist_resume/config.yaml
+I, [2024-12-25T11:18:23.548182 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_persist_resume/module.rb
+I, [2024-12-25T11:18:23.548523 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_persist_resume/module.rb
+I, [2024-12-25T11:18:23.548609 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_persistence/command.js
+I, [2024-12-25T11:18:23.549104 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_persistence/command.js
+I, [2024-12-25T11:18:23.549156 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_persistence/config.yaml
+W, [2024-12-25T11:18:23.549585 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_persistence/config.yaml
+I, [2024-12-25T11:18:23.549624 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_persistence/module.rb
+I, [2024-12-25T11:18:23.549887 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_persistence/module.rb
+I, [2024-12-25T11:18:23.550001 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_plugin_detection/command.js
+I, [2024-12-25T11:18:23.550281 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_plugin_detection/command.js
+I, [2024-12-25T11:18:23.550392 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_plugin_detection/config.yaml
+W, [2024-12-25T11:18:23.550724 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_plugin_detection/config.yaml
+I, [2024-12-25T11:18:23.550762 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_plugin_detection/module.rb
+I, [2024-12-25T11:18:23.551280 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_plugin_detection/module.rb
+I, [2024-12-25T11:18:23.551388 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_prompt_user/command.js
+I, [2024-12-25T11:18:23.551823 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_prompt_user/command.js
+I, [2024-12-25T11:18:23.551865 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_prompt_user/config.yaml
+W, [2024-12-25T11:18:23.552091 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_prompt_user/config.yaml
+I, [2024-12-25T11:18:23.552119 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_prompt_user/module.rb
+I, [2024-12-25T11:18:23.552403 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_prompt_user/module.rb
+I, [2024-12-25T11:18:23.552490 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_start_record_audio/command.js
+I, [2024-12-25T11:18:23.552740 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_start_record_audio/command.js
+I, [2024-12-25T11:18:23.552777 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_start_record_audio/config.yaml
+W, [2024-12-25T11:18:23.553000 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_start_record_audio/config.yaml
+I, [2024-12-25T11:18:23.553034 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_start_record_audio/module.rb
+I, [2024-12-25T11:18:23.553217 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_start_record_audio/module.rb
+I, [2024-12-25T11:18:23.553251 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_stop_record_audio/command.js
+I, [2024-12-25T11:18:23.553699 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_stop_record_audio/command.js
+I, [2024-12-25T11:18:23.553733 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_stop_record_audio/config.yaml
+W, [2024-12-25T11:18:23.553939 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/phonegap/phonegap_stop_record_audio/config.yaml
+I, [2024-12-25T11:18:23.553972 #36268] INFO -- : Processing file: ../../modules/phonegap/phonegap_stop_record_audio/module.rb
+I, [2024-12-25T11:18:23.554191 #36268] INFO -- : Updated copyright in ../../modules/phonegap/phonegap_stop_record_audio/module.rb
+I, [2024-12-25T11:18:23.554225 #36268] INFO -- : Processing file: ../../modules/social_engineering/clickjacking/command.js
+I, [2024-12-25T11:18:23.554570 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/clickjacking/command.js
+I, [2024-12-25T11:18:23.554613 #36268] INFO -- : Processing file: ../../modules/social_engineering/clickjacking/config.yaml
+W, [2024-12-25T11:18:23.554809 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/clickjacking/config.yaml
+I, [2024-12-25T11:18:23.554843 #36268] INFO -- : Processing file: ../../modules/social_engineering/clickjacking/module.rb
+I, [2024-12-25T11:18:23.555079 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/clickjacking/module.rb
+I, [2024-12-25T11:18:23.555178 #36268] INFO -- : Processing file: ../../modules/social_engineering/clippy/command.js
+I, [2024-12-25T11:18:23.555482 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/clippy/command.js
+I, [2024-12-25T11:18:23.555521 #36268] INFO -- : Processing file: ../../modules/social_engineering/clippy/config.yaml
+W, [2024-12-25T11:18:23.555706 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/clippy/config.yaml
+I, [2024-12-25T11:18:23.555738 #36268] INFO -- : Processing file: ../../modules/social_engineering/clippy/module.rb
+I, [2024-12-25T11:18:23.555991 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/clippy/module.rb
+I, [2024-12-25T11:18:23.556025 #36268] INFO -- : Processing file: ../../modules/social_engineering/edge_wscript_wsh_injection/command.js
+I, [2024-12-25T11:18:23.556261 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/edge_wscript_wsh_injection/command.js
+I, [2024-12-25T11:18:23.556296 #36268] INFO -- : Processing file: ../../modules/social_engineering/edge_wscript_wsh_injection/config.yaml
+W, [2024-12-25T11:18:23.556630 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/edge_wscript_wsh_injection/config.yaml
+I, [2024-12-25T11:18:23.556658 #36268] INFO -- : Processing file: ../../modules/social_engineering/edge_wscript_wsh_injection/module.rb
+I, [2024-12-25T11:18:23.556848 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/edge_wscript_wsh_injection/module.rb
+I, [2024-12-25T11:18:23.556937 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_evernote_clipper/command.js
+I, [2024-12-25T11:18:23.557116 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_evernote_clipper/command.js
+I, [2024-12-25T11:18:23.557199 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_evernote_clipper/config.yaml
+W, [2024-12-25T11:18:23.557569 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/fake_evernote_clipper/config.yaml
+I, [2024-12-25T11:18:23.557591 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_evernote_clipper/module.rb
+I, [2024-12-25T11:18:23.557771 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_evernote_clipper/module.rb
+I, [2024-12-25T11:18:23.557873 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_flash_update/command.js
+I, [2024-12-25T11:18:23.558818 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_flash_update/command.js
+I, [2024-12-25T11:18:23.558849 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_flash_update/config.yaml
+W, [2024-12-25T11:18:23.559076 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/fake_flash_update/config.yaml
+I, [2024-12-25T11:18:23.559096 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_flash_update/module.rb
+I, [2024-12-25T11:18:23.559300 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_flash_update/module.rb
+I, [2024-12-25T11:18:23.559472 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_lastpass/command.js
+I, [2024-12-25T11:18:23.559745 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_lastpass/command.js
+I, [2024-12-25T11:18:23.559778 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_lastpass/config.yaml
+W, [2024-12-25T11:18:23.559975 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/fake_lastpass/config.yaml
+I, [2024-12-25T11:18:23.559993 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_lastpass/module.rb
+I, [2024-12-25T11:18:23.560153 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_lastpass/module.rb
+I, [2024-12-25T11:18:23.560254 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification/command.js
+I, [2024-12-25T11:18:23.560560 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_notification/command.js
+I, [2024-12-25T11:18:23.560653 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification/config.yaml
+W, [2024-12-25T11:18:23.560842 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/fake_notification/config.yaml
+I, [2024-12-25T11:18:23.560859 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification/module.rb
+I, [2024-12-25T11:18:23.561044 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_notification/module.rb
+I, [2024-12-25T11:18:23.561175 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification_c/command.js
+I, [2024-12-25T11:18:23.561766 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_notification_c/command.js
+I, [2024-12-25T11:18:23.561841 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification_c/config.yaml
+W, [2024-12-25T11:18:23.562275 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/fake_notification_c/config.yaml
+I, [2024-12-25T11:18:23.562307 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification_c/module.rb
+I, [2024-12-25T11:18:23.562848 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_notification_c/module.rb
+I, [2024-12-25T11:18:23.562889 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification_ff/command.js
+I, [2024-12-25T11:18:23.563136 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_notification_ff/command.js
+I, [2024-12-25T11:18:23.563244 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification_ff/config.yaml
+W, [2024-12-25T11:18:23.563544 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/fake_notification_ff/config.yaml
+I, [2024-12-25T11:18:23.563571 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification_ff/module.rb
+I, [2024-12-25T11:18:23.563782 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_notification_ff/module.rb
+I, [2024-12-25T11:18:23.563893 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification_ie/command.js
+I, [2024-12-25T11:18:23.564238 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_notification_ie/command.js
+I, [2024-12-25T11:18:23.564273 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification_ie/config.yaml
+W, [2024-12-25T11:18:23.564613 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/fake_notification_ie/config.yaml
+I, [2024-12-25T11:18:23.564644 #36268] INFO -- : Processing file: ../../modules/social_engineering/fake_notification_ie/module.rb
+I, [2024-12-25T11:18:23.564847 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/fake_notification_ie/module.rb
+I, [2024-12-25T11:18:23.564880 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_bindshell/command.js
+I, [2024-12-25T11:18:23.565219 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/firefox_extension_bindshell/command.js
+I, [2024-12-25T11:18:23.565244 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_bindshell/config.yaml
+W, [2024-12-25T11:18:23.565583 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/firefox_extension_bindshell/config.yaml
+I, [2024-12-25T11:18:23.565601 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_bindshell/extension/bootstrap.js
+W, [2024-12-25T11:18:23.565679 #36268] WARN -- : Copyright string not found in ../../modules/social_engineering/firefox_extension_bindshell/extension/bootstrap.js
+I, [2024-12-25T11:18:23.565696 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_bindshell/module.rb
+I, [2024-12-25T11:18:23.565855 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/firefox_extension_bindshell/module.rb
+I, [2024-12-25T11:18:23.565873 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_dropper/command.js
+I, [2024-12-25T11:18:23.566182 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/firefox_extension_dropper/command.js
+I, [2024-12-25T11:18:23.566221 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_dropper/config.yaml
+W, [2024-12-25T11:18:23.566544 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/firefox_extension_dropper/config.yaml
+I, [2024-12-25T11:18:23.566563 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_dropper/extension/bootstrap.js
+W, [2024-12-25T11:18:23.566608 #36268] WARN -- : Copyright string not found in ../../modules/social_engineering/firefox_extension_dropper/extension/bootstrap.js
+I, [2024-12-25T11:18:23.566623 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_dropper/module.rb
+I, [2024-12-25T11:18:23.566796 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/firefox_extension_dropper/module.rb
+I, [2024-12-25T11:18:23.566824 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_reverse_shell/command.js
+I, [2024-12-25T11:18:23.567099 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/firefox_extension_reverse_shell/command.js
+I, [2024-12-25T11:18:23.567126 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_reverse_shell/config.yaml
+W, [2024-12-25T11:18:23.567949 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/firefox_extension_reverse_shell/config.yaml
+I, [2024-12-25T11:18:23.567977 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_reverse_shell/extension/bootstrap.js
+W, [2024-12-25T11:18:23.568063 #36268] WARN -- : Copyright string not found in ../../modules/social_engineering/firefox_extension_reverse_shell/extension/bootstrap.js
+I, [2024-12-25T11:18:23.568081 #36268] INFO -- : Processing file: ../../modules/social_engineering/firefox_extension_reverse_shell/module.rb
+I, [2024-12-25T11:18:23.568639 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/firefox_extension_reverse_shell/module.rb
+I, [2024-12-25T11:18:23.568675 #36268] INFO -- : Processing file: ../../modules/social_engineering/gmail_phishing/command.js
+I, [2024-12-25T11:18:23.569136 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/gmail_phishing/command.js
+I, [2024-12-25T11:18:23.569197 #36268] INFO -- : Processing file: ../../modules/social_engineering/gmail_phishing/config.yaml
+W, [2024-12-25T11:18:23.569808 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/gmail_phishing/config.yaml
+I, [2024-12-25T11:18:23.569851 #36268] INFO -- : Processing file: ../../modules/social_engineering/gmail_phishing/module.rb
+I, [2024-12-25T11:18:23.570337 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/gmail_phishing/module.rb
+I, [2024-12-25T11:18:23.570376 #36268] INFO -- : Processing file: ../../modules/social_engineering/hta_powershell/command.js
+I, [2024-12-25T11:18:23.570687 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/hta_powershell/command.js
+I, [2024-12-25T11:18:23.570784 #36268] INFO -- : Processing file: ../../modules/social_engineering/hta_powershell/config.yaml
+W, [2024-12-25T11:18:23.571080 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/hta_powershell/config.yaml
+I, [2024-12-25T11:18:23.571186 #36268] INFO -- : Processing file: ../../modules/social_engineering/hta_powershell/module.rb
+I, [2024-12-25T11:18:23.571665 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/hta_powershell/module.rb
+I, [2024-12-25T11:18:23.571703 #36268] INFO -- : Processing file: ../../modules/social_engineering/lcamtuf_download/command.js
+I, [2024-12-25T11:18:23.571978 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/lcamtuf_download/command.js
+I, [2024-12-25T11:18:23.572083 #36268] INFO -- : Processing file: ../../modules/social_engineering/lcamtuf_download/config.yaml
+W, [2024-12-25T11:18:23.572394 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/lcamtuf_download/config.yaml
+I, [2024-12-25T11:18:23.572590 #36268] INFO -- : Processing file: ../../modules/social_engineering/lcamtuf_download/module.rb
+I, [2024-12-25T11:18:23.572802 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/lcamtuf_download/module.rb
+I, [2024-12-25T11:18:23.572909 #36268] INFO -- : Processing file: ../../modules/social_engineering/pretty_theft/command.js
+I, [2024-12-25T11:18:23.573211 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/pretty_theft/command.js
+I, [2024-12-25T11:18:23.573324 #36268] INFO -- : Processing file: ../../modules/social_engineering/pretty_theft/config.yaml
+W, [2024-12-25T11:18:23.573641 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/pretty_theft/config.yaml
+I, [2024-12-25T11:18:23.573675 #36268] INFO -- : Processing file: ../../modules/social_engineering/pretty_theft/module.rb
+I, [2024-12-25T11:18:23.573859 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/pretty_theft/module.rb
+I, [2024-12-25T11:18:23.573886 #36268] INFO -- : Processing file: ../../modules/social_engineering/replace_video_fake_plugin/command.js
+I, [2024-12-25T11:18:23.574233 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/replace_video_fake_plugin/command.js
+I, [2024-12-25T11:18:23.574522 #36268] INFO -- : Processing file: ../../modules/social_engineering/replace_video_fake_plugin/config.yaml
+W, [2024-12-25T11:18:23.574754 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/replace_video_fake_plugin/config.yaml
+I, [2024-12-25T11:18:23.574784 #36268] INFO -- : Processing file: ../../modules/social_engineering/replace_video_fake_plugin/module.rb
+I, [2024-12-25T11:18:23.575085 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/replace_video_fake_plugin/module.rb
+I, [2024-12-25T11:18:23.575143 #36268] INFO -- : Processing file: ../../modules/social_engineering/simple_hijacker/command.js
+I, [2024-12-25T11:18:23.575380 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/simple_hijacker/command.js
+I, [2024-12-25T11:18:23.575516 #36268] INFO -- : Processing file: ../../modules/social_engineering/simple_hijacker/config.yaml
+W, [2024-12-25T11:18:23.575766 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/simple_hijacker/config.yaml
+I, [2024-12-25T11:18:23.575800 #36268] INFO -- : Processing file: ../../modules/social_engineering/simple_hijacker/module.rb
+I, [2024-12-25T11:18:23.575978 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/simple_hijacker/module.rb
+I, [2024-12-25T11:18:23.576077 #36268] INFO -- : Processing file: ../../modules/social_engineering/simple_hijacker/templates/amazon.js
+I, [2024-12-25T11:18:23.576259 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/simple_hijacker/templates/amazon.js
+I, [2024-12-25T11:18:23.576291 #36268] INFO -- : Processing file: ../../modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js
+I, [2024-12-25T11:18:23.576618 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/simple_hijacker/templates/chromecertbeggar.js
+I, [2024-12-25T11:18:23.576650 #36268] INFO -- : Processing file: ../../modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js
+I, [2024-12-25T11:18:23.576949 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/simple_hijacker/templates/chromecertbeggar2.js
+I, [2024-12-25T11:18:23.576982 #36268] INFO -- : Processing file: ../../modules/social_engineering/simple_hijacker/templates/confirmbox.js
+I, [2024-12-25T11:18:23.577209 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/simple_hijacker/templates/confirmbox.js
+I, [2024-12-25T11:18:23.577301 #36268] INFO -- : Processing file: ../../modules/social_engineering/simple_hijacker/templates/credential.js
+I, [2024-12-25T11:18:23.577609 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/simple_hijacker/templates/credential.js
+I, [2024-12-25T11:18:23.577708 #36268] INFO -- : Processing file: ../../modules/social_engineering/sitekiosk_breakout/command.js
+I, [2024-12-25T11:18:23.577875 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/sitekiosk_breakout/command.js
+I, [2024-12-25T11:18:23.577972 #36268] INFO -- : Processing file: ../../modules/social_engineering/sitekiosk_breakout/config.yaml
+W, [2024-12-25T11:18:23.578233 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/sitekiosk_breakout/config.yaml
+I, [2024-12-25T11:18:23.578266 #36268] INFO -- : Processing file: ../../modules/social_engineering/sitekiosk_breakout/module.rb
+I, [2024-12-25T11:18:23.579152 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/sitekiosk_breakout/module.rb
+I, [2024-12-25T11:18:23.579258 #36268] INFO -- : Processing file: ../../modules/social_engineering/spoof_addressbar_data/command.js
+I, [2024-12-25T11:18:23.579586 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/spoof_addressbar_data/command.js
+I, [2024-12-25T11:18:23.579616 #36268] INFO -- : Processing file: ../../modules/social_engineering/spoof_addressbar_data/config.yaml
+W, [2024-12-25T11:18:23.579846 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/spoof_addressbar_data/config.yaml
+I, [2024-12-25T11:18:23.579872 #36268] INFO -- : Processing file: ../../modules/social_engineering/spoof_addressbar_data/module.rb
+I, [2024-12-25T11:18:23.580134 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/spoof_addressbar_data/module.rb
+I, [2024-12-25T11:18:23.580222 #36268] INFO -- : Processing file: ../../modules/social_engineering/tabnabbing/command.js
+I, [2024-12-25T11:18:23.580490 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/tabnabbing/command.js
+I, [2024-12-25T11:18:23.580524 #36268] INFO -- : Processing file: ../../modules/social_engineering/tabnabbing/config.yaml
+W, [2024-12-25T11:18:23.580713 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/tabnabbing/config.yaml
+I, [2024-12-25T11:18:23.580739 #36268] INFO -- : Processing file: ../../modules/social_engineering/tabnabbing/module.rb
+I, [2024-12-25T11:18:23.580928 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/tabnabbing/module.rb
+I, [2024-12-25T11:18:23.581038 #36268] INFO -- : Processing file: ../../modules/social_engineering/text_to_voice/command.js
+I, [2024-12-25T11:18:23.581228 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/text_to_voice/command.js
+I, [2024-12-25T11:18:23.581354 #36268] INFO -- : Processing file: ../../modules/social_engineering/text_to_voice/config.yaml
+W, [2024-12-25T11:18:23.582010 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/text_to_voice/config.yaml
+I, [2024-12-25T11:18:23.582052 #36268] INFO -- : Processing file: ../../modules/social_engineering/text_to_voice/module.rb
+I, [2024-12-25T11:18:23.582383 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/text_to_voice/module.rb
+I, [2024-12-25T11:18:23.582699 #36268] INFO -- : Processing file: ../../modules/social_engineering/ui_abuse_ie/command.js
+I, [2024-12-25T11:18:23.582996 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/ui_abuse_ie/command.js
+I, [2024-12-25T11:18:23.583028 #36268] INFO -- : Processing file: ../../modules/social_engineering/ui_abuse_ie/config.yaml
+W, [2024-12-25T11:18:23.583388 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../modules/social_engineering/ui_abuse_ie/config.yaml
+I, [2024-12-25T11:18:23.583423 #36268] INFO -- : Processing file: ../../modules/social_engineering/ui_abuse_ie/module.rb
+I, [2024-12-25T11:18:23.584104 #36268] INFO -- : Updated copyright in ../../modules/social_engineering/ui_abuse_ie/module.rb
+I, [2024-12-25T11:18:23.584175 #36268] INFO -- : Processing file: ../../node_modules/@babel/helper-string-parser/lib/index.js
+W, [2024-12-25T11:18:23.585771 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/helper-string-parser/lib/index.js
+I, [2024-12-25T11:18:23.585806 #36268] INFO -- : Processing file: ../../node_modules/@babel/helper-validator-identifier/lib/identifier.js
+W, [2024-12-25T11:18:23.586645 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/helper-validator-identifier/lib/identifier.js
+I, [2024-12-25T11:18:23.586679 #36268] INFO -- : Processing file: ../../node_modules/@babel/helper-validator-identifier/lib/index.js
+W, [2024-12-25T11:18:23.587274 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/helper-validator-identifier/lib/index.js
+I, [2024-12-25T11:18:23.587305 #36268] INFO -- : Processing file: ../../node_modules/@babel/helper-validator-identifier/lib/keyword.js
+W, [2024-12-25T11:18:23.587925 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/helper-validator-identifier/lib/keyword.js
+I, [2024-12-25T11:18:23.587961 #36268] INFO -- : Processing file: ../../node_modules/@babel/parser/bin/babel-parser.js
+W, [2024-12-25T11:18:23.588540 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/parser/bin/babel-parser.js
+I, [2024-12-25T11:18:23.588570 #36268] INFO -- : Processing file: ../../node_modules/@babel/parser/lib/index.js
+W, [2024-12-25T11:18:23.591203 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/parser/lib/index.js
+I, [2024-12-25T11:18:23.591242 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/asserts/assertNode.js
+W, [2024-12-25T11:18:23.591965 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/asserts/assertNode.js
+I, [2024-12-25T11:18:23.591998 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/asserts/generated/index.js
+W, [2024-12-25T11:18:23.592836 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/asserts/generated/index.js
+I, [2024-12-25T11:18:23.592891 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/ast-types/generated/index.js
+W, [2024-12-25T11:18:23.593904 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/ast-types/generated/index.js
+I, [2024-12-25T11:18:23.593942 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js
+W, [2024-12-25T11:18:23.594705 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js
+I, [2024-12-25T11:18:23.594753 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js
+W, [2024-12-25T11:18:23.595675 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js
+I, [2024-12-25T11:18:23.595713 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/builders/generated/index.js
+W, [2024-12-25T11:18:23.596826 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/builders/generated/index.js
+I, [2024-12-25T11:18:23.596857 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/builders/generated/uppercase.js
+W, [2024-12-25T11:18:23.597495 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/builders/generated/uppercase.js
+I, [2024-12-25T11:18:23.597525 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/builders/productions.js
+W, [2024-12-25T11:18:23.598218 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/builders/productions.js
+I, [2024-12-25T11:18:23.598272 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/builders/react/buildChildren.js
+W, [2024-12-25T11:18:23.599395 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/builders/react/buildChildren.js
+I, [2024-12-25T11:18:23.599539 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js
+W, [2024-12-25T11:18:23.600425 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js
+I, [2024-12-25T11:18:23.600615 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/builders/validateNode.js
+W, [2024-12-25T11:18:23.601513 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/builders/validateNode.js
+I, [2024-12-25T11:18:23.601560 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/clone/clone.js
+W, [2024-12-25T11:18:23.602296 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/clone/clone.js
+I, [2024-12-25T11:18:23.602376 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/clone/cloneDeep.js
+W, [2024-12-25T11:18:23.603140 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/clone/cloneDeep.js
+I, [2024-12-25T11:18:23.603195 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js
+W, [2024-12-25T11:18:23.603886 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js
+I, [2024-12-25T11:18:23.603926 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/clone/cloneNode.js
+W, [2024-12-25T11:18:23.604552 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/clone/cloneNode.js
+I, [2024-12-25T11:18:23.604591 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/clone/cloneWithoutLoc.js
+W, [2024-12-25T11:18:23.605295 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/clone/cloneWithoutLoc.js
+I, [2024-12-25T11:18:23.605335 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/comments/addComment.js
+W, [2024-12-25T11:18:23.605953 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/comments/addComment.js
+I, [2024-12-25T11:18:23.606019 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/comments/addComments.js
+W, [2024-12-25T11:18:23.606677 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/comments/addComments.js
+I, [2024-12-25T11:18:23.606723 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/comments/inheritInnerComments.js
+W, [2024-12-25T11:18:23.607555 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/comments/inheritInnerComments.js
+I, [2024-12-25T11:18:23.607604 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/comments/inheritLeadingComments.js
+W, [2024-12-25T11:18:23.608424 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/comments/inheritLeadingComments.js
+I, [2024-12-25T11:18:23.608573 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/comments/inheritTrailingComments.js
+W, [2024-12-25T11:18:23.609517 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/comments/inheritTrailingComments.js
+I, [2024-12-25T11:18:23.609565 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/comments/inheritsComments.js
+W, [2024-12-25T11:18:23.610007 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/comments/inheritsComments.js
+I, [2024-12-25T11:18:23.610038 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/comments/removeComments.js
+W, [2024-12-25T11:18:23.613598 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/comments/removeComments.js
+I, [2024-12-25T11:18:23.613635 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/constants/generated/index.js
+W, [2024-12-25T11:18:23.614399 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/constants/generated/index.js
+I, [2024-12-25T11:18:23.614516 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/constants/index.js
+W, [2024-12-25T11:18:23.615350 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/constants/index.js
+I, [2024-12-25T11:18:23.615398 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/ensureBlock.js
+W, [2024-12-25T11:18:23.616177 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/ensureBlock.js
+I, [2024-12-25T11:18:23.616240 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js
+W, [2024-12-25T11:18:23.617130 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js
+I, [2024-12-25T11:18:23.617170 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/toBindingIdentifierName.js
+W, [2024-12-25T11:18:23.617981 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/toBindingIdentifierName.js
+I, [2024-12-25T11:18:23.618050 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/toBlock.js
+W, [2024-12-25T11:18:23.620924 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/toBlock.js
+I, [2024-12-25T11:18:23.621054 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/toComputedKey.js
+W, [2024-12-25T11:18:23.621627 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/toComputedKey.js
+I, [2024-12-25T11:18:23.621660 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/toExpression.js
+W, [2024-12-25T11:18:23.622292 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/toExpression.js
+I, [2024-12-25T11:18:23.622331 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/toIdentifier.js
+W, [2024-12-25T11:18:23.623070 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/toIdentifier.js
+I, [2024-12-25T11:18:23.623117 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/toKeyAlias.js
+W, [2024-12-25T11:18:23.623677 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/toKeyAlias.js
+I, [2024-12-25T11:18:23.623717 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/toSequenceExpression.js
+W, [2024-12-25T11:18:23.624154 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/toSequenceExpression.js
+I, [2024-12-25T11:18:23.628550 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/toStatement.js
+W, [2024-12-25T11:18:23.629794 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/toStatement.js
+I, [2024-12-25T11:18:23.630584 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/converters/valueToNode.js
+W, [2024-12-25T11:18:23.636661 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/converters/valueToNode.js
+I, [2024-12-25T11:18:23.636706 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/core.js
+W, [2024-12-25T11:18:23.637812 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/core.js
+I, [2024-12-25T11:18:23.637847 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/deprecated-aliases.js
+W, [2024-12-25T11:18:23.638465 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/deprecated-aliases.js
+I, [2024-12-25T11:18:23.638509 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/experimental.js
+W, [2024-12-25T11:18:23.639043 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/experimental.js
+I, [2024-12-25T11:18:23.639079 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/flow.js
+W, [2024-12-25T11:18:23.639726 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/flow.js
+I, [2024-12-25T11:18:23.639797 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/index.js
+W, [2024-12-25T11:18:23.642777 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/index.js
+I, [2024-12-25T11:18:23.643637 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/jsx.js
+W, [2024-12-25T11:18:23.644372 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/jsx.js
+I, [2024-12-25T11:18:23.644499 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/misc.js
+W, [2024-12-25T11:18:23.645079 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/misc.js
+I, [2024-12-25T11:18:23.645116 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/placeholders.js
+W, [2024-12-25T11:18:23.645771 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/placeholders.js
+I, [2024-12-25T11:18:23.645809 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/typescript.js
+W, [2024-12-25T11:18:23.646214 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/typescript.js
+I, [2024-12-25T11:18:23.646251 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/definitions/utils.js
+W, [2024-12-25T11:18:23.646912 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/definitions/utils.js
+I, [2024-12-25T11:18:23.646944 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/index.js
+W, [2024-12-25T11:18:23.649427 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/index.js
+I, [2024-12-25T11:18:23.649570 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/modifications/appendToMemberExpression.js
+W, [2024-12-25T11:18:23.650361 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/modifications/appendToMemberExpression.js
+I, [2024-12-25T11:18:23.650395 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js
+W, [2024-12-25T11:18:23.651298 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js
+I, [2024-12-25T11:18:23.651354 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/modifications/inherits.js
+W, [2024-12-25T11:18:23.652268 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/modifications/inherits.js
+I, [2024-12-25T11:18:23.652318 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/modifications/prependToMemberExpression.js
+W, [2024-12-25T11:18:23.653176 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/modifications/prependToMemberExpression.js
+I, [2024-12-25T11:18:23.653366 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/modifications/removeProperties.js
+W, [2024-12-25T11:18:23.654432 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/modifications/removeProperties.js
+I, [2024-12-25T11:18:23.654998 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/modifications/removePropertiesDeep.js
+W, [2024-12-25T11:18:23.655786 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/modifications/removePropertiesDeep.js
+I, [2024-12-25T11:18:23.655849 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js
+W, [2024-12-25T11:18:23.657063 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js
+I, [2024-12-25T11:18:23.657111 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js
+W, [2024-12-25T11:18:23.658656 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js
+I, [2024-12-25T11:18:23.658753 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js
+W, [2024-12-25T11:18:23.659596 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js
+I, [2024-12-25T11:18:23.659641 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/retrievers/getFunctionName.js
+W, [2024-12-25T11:18:23.660556 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/retrievers/getFunctionName.js
+I, [2024-12-25T11:18:23.661274 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js
+W, [2024-12-25T11:18:23.661729 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js
+I, [2024-12-25T11:18:23.661760 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/traverse/traverse.js
+W, [2024-12-25T11:18:23.663744 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/traverse/traverse.js
+I, [2024-12-25T11:18:23.663934 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/traverse/traverseFast.js
+W, [2024-12-25T11:18:23.664850 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/traverse/traverseFast.js
+I, [2024-12-25T11:18:23.664899 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/utils/deprecationWarning.js
+W, [2024-12-25T11:18:23.665533 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/utils/deprecationWarning.js
+I, [2024-12-25T11:18:23.665568 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/utils/inherit.js
+W, [2024-12-25T11:18:23.666102 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/utils/inherit.js
+I, [2024-12-25T11:18:23.666133 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js
+W, [2024-12-25T11:18:23.666523 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js
+I, [2024-12-25T11:18:23.667003 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/utils/shallowEqual.js
+W, [2024-12-25T11:18:23.668430 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/utils/shallowEqual.js
+I, [2024-12-25T11:18:23.668483 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js
+W, [2024-12-25T11:18:23.670674 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js
+I, [2024-12-25T11:18:23.670763 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/generated/index.js
+W, [2024-12-25T11:18:23.673868 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/generated/index.js
+I, [2024-12-25T11:18:23.673906 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/is.js
+W, [2024-12-25T11:18:23.674636 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/is.js
+I, [2024-12-25T11:18:23.674687 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isBinding.js
+W, [2024-12-25T11:18:23.675296 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isBinding.js
+I, [2024-12-25T11:18:23.675329 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isBlockScoped.js
+W, [2024-12-25T11:18:23.675849 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isBlockScoped.js
+I, [2024-12-25T11:18:23.675873 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isImmutable.js
+W, [2024-12-25T11:18:23.676228 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isImmutable.js
+I, [2024-12-25T11:18:23.676259 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isLet.js
+W, [2024-12-25T11:18:23.676629 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isLet.js
+I, [2024-12-25T11:18:23.676659 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isNode.js
+W, [2024-12-25T11:18:23.680375 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isNode.js
+I, [2024-12-25T11:18:23.680411 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isNodesEquivalent.js
+W, [2024-12-25T11:18:23.681148 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isNodesEquivalent.js
+I, [2024-12-25T11:18:23.681198 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isPlaceholderType.js
+W, [2024-12-25T11:18:23.682424 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isPlaceholderType.js
+I, [2024-12-25T11:18:23.682683 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isReferenced.js
+W, [2024-12-25T11:18:23.684791 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isReferenced.js
+I, [2024-12-25T11:18:23.684859 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isScope.js
+W, [2024-12-25T11:18:23.685730 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isScope.js
+I, [2024-12-25T11:18:23.685769 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isSpecifierDefault.js
+W, [2024-12-25T11:18:23.687199 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isSpecifierDefault.js
+I, [2024-12-25T11:18:23.687317 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isType.js
+W, [2024-12-25T11:18:23.688645 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isType.js
+I, [2024-12-25T11:18:23.688692 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isValidES3Identifier.js
+W, [2024-12-25T11:18:23.691672 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isValidES3Identifier.js
+I, [2024-12-25T11:18:23.691782 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isValidIdentifier.js
+W, [2024-12-25T11:18:23.692553 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isValidIdentifier.js
+I, [2024-12-25T11:18:23.692589 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/isVar.js
+W, [2024-12-25T11:18:23.693212 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/isVar.js
+I, [2024-12-25T11:18:23.693257 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/matchesPattern.js
+W, [2024-12-25T11:18:23.696094 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/matchesPattern.js
+I, [2024-12-25T11:18:23.696147 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/react/isCompatTag.js
+W, [2024-12-25T11:18:23.696665 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/react/isCompatTag.js
+I, [2024-12-25T11:18:23.696697 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/react/isReactComponent.js
+W, [2024-12-25T11:18:23.697224 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/react/isReactComponent.js
+I, [2024-12-25T11:18:23.697263 #36268] INFO -- : Processing file: ../../node_modules/@babel/types/lib/validators/validate.js
+W, [2024-12-25T11:18:23.699199 #36268] WARN -- : Copyright string not found in ../../node_modules/@babel/types/lib/validators/validate.js
+I, [2024-12-25T11:18:23.699235 #36268] INFO -- : Processing file: ../../node_modules/@jsdoc/salty/index.js
+W, [2024-12-25T11:18:23.699941 #36268] WARN -- : Copyright string not found in ../../node_modules/@jsdoc/salty/index.js
+I, [2024-12-25T11:18:23.699991 #36268] INFO -- : Processing file: ../../node_modules/@jsdoc/salty/lib/salty.js
+W, [2024-12-25T11:18:23.700830 #36268] WARN -- : Copyright string not found in ../../node_modules/@jsdoc/salty/lib/salty.js
+I, [2024-12-25T11:18:23.700981 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/adapters/fs.js
+W, [2024-12-25T11:18:23.702920 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/adapters/fs.js
+I, [2024-12-25T11:18:23.702975 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/constants.js
+W, [2024-12-25T11:18:23.703850 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/constants.js
+I, [2024-12-25T11:18:23.703891 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/index.js
+W, [2024-12-25T11:18:23.705146 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/index.js
+I, [2024-12-25T11:18:23.705220 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/providers/async.js
+W, [2024-12-25T11:18:23.706135 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/providers/async.js
+I, [2024-12-25T11:18:23.708650 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/providers/common.js
+W, [2024-12-25T11:18:23.709592 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/providers/common.js
+I, [2024-12-25T11:18:23.709644 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/providers/sync.js
+W, [2024-12-25T11:18:23.710219 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/providers/sync.js
+I, [2024-12-25T11:18:23.710252 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/settings.js
+W, [2024-12-25T11:18:23.710776 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/settings.js
+I, [2024-12-25T11:18:23.710807 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/types/index.js
+W, [2024-12-25T11:18:23.711356 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/types/index.js
+I, [2024-12-25T11:18:23.711385 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/utils/fs.js
+W, [2024-12-25T11:18:23.712064 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/utils/fs.js
+I, [2024-12-25T11:18:23.712101 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.scandir/out/utils/index.js
+W, [2024-12-25T11:18:23.712960 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.scandir/out/utils/index.js
+I, [2024-12-25T11:18:23.713184 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.stat/out/adapters/fs.js
+W, [2024-12-25T11:18:23.715710 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.stat/out/adapters/fs.js
+I, [2024-12-25T11:18:23.715760 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.stat/out/index.js
+W, [2024-12-25T11:18:23.716762 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.stat/out/index.js
+I, [2024-12-25T11:18:23.716841 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.stat/out/providers/async.js
+W, [2024-12-25T11:18:23.717619 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.stat/out/providers/async.js
+I, [2024-12-25T11:18:23.717656 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.stat/out/providers/sync.js
+W, [2024-12-25T11:18:23.718260 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.stat/out/providers/sync.js
+I, [2024-12-25T11:18:23.718295 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.stat/out/settings.js
+W, [2024-12-25T11:18:23.719194 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.stat/out/settings.js
+I, [2024-12-25T11:18:23.719255 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.stat/out/types/index.js
+W, [2024-12-25T11:18:23.721169 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.stat/out/types/index.js
+I, [2024-12-25T11:18:23.721395 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/index.js
+W, [2024-12-25T11:18:23.722217 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/index.js
+I, [2024-12-25T11:18:23.722255 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/providers/async.js
+W, [2024-12-25T11:18:23.722850 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/providers/async.js
+I, [2024-12-25T11:18:23.722885 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/providers/index.js
+W, [2024-12-25T11:18:23.723306 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/providers/index.js
+I, [2024-12-25T11:18:23.723339 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/providers/stream.js
+W, [2024-12-25T11:18:23.724433 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/providers/stream.js
+I, [2024-12-25T11:18:23.724560 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/providers/sync.js
+W, [2024-12-25T11:18:23.725314 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/providers/sync.js
+I, [2024-12-25T11:18:23.725364 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/readers/async.js
+W, [2024-12-25T11:18:23.725995 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/readers/async.js
+I, [2024-12-25T11:18:23.726044 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/readers/common.js
+W, [2024-12-25T11:18:23.728625 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/readers/common.js
+I, [2024-12-25T11:18:23.728694 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/readers/reader.js
+W, [2024-12-25T11:18:23.729302 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/readers/reader.js
+I, [2024-12-25T11:18:23.729336 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/readers/sync.js
+W, [2024-12-25T11:18:23.729929 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/readers/sync.js
+I, [2024-12-25T11:18:23.729966 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/settings.js
+W, [2024-12-25T11:18:23.730342 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/settings.js
+I, [2024-12-25T11:18:23.730374 #36268] INFO -- : Processing file: ../../node_modules/@nodelib/fs.walk/out/types/index.js
+W, [2024-12-25T11:18:23.731079 #36268] WARN -- : Copyright string not found in ../../node_modules/@nodelib/fs.walk/out/types/index.js
+I, [2024-12-25T11:18:23.731113 #36268] INFO -- : Processing file: ../../node_modules/ansi-styles/index.js
+W, [2024-12-25T11:18:23.732354 #36268] WARN -- : Copyright string not found in ../../node_modules/ansi-styles/index.js
+I, [2024-12-25T11:18:23.732390 #36268] INFO -- : Processing file: ../../node_modules/argparse/argparse.js
+W, [2024-12-25T11:18:23.734097 #36268] WARN -- : Copyright string not found in ../../node_modules/argparse/argparse.js
+I, [2024-12-25T11:18:23.734597 #36268] INFO -- : Processing file: ../../node_modules/argparse/lib/sub.js
+W, [2024-12-25T11:18:23.735264 #36268] WARN -- : Copyright string not found in ../../node_modules/argparse/lib/sub.js
+I, [2024-12-25T11:18:23.735622 #36268] INFO -- : Processing file: ../../node_modules/argparse/lib/textwrap.js
+W, [2024-12-25T11:18:23.736548 #36268] WARN -- : Copyright string not found in ../../node_modules/argparse/lib/textwrap.js
+I, [2024-12-25T11:18:23.736601 #36268] INFO -- : Processing file: ../../node_modules/array-back/index.js
+W, [2024-12-25T11:18:23.739673 #36268] WARN -- : Copyright string not found in ../../node_modules/array-back/index.js
+I, [2024-12-25T11:18:23.739768 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/browser/bluebird.core.js
+W, [2024-12-25T11:18:23.741806 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/browser/bluebird.core.js
+I, [2024-12-25T11:18:23.741858 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/browser/bluebird.core.min.js
+W, [2024-12-25T11:18:23.743302 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/browser/bluebird.core.min.js
+I, [2024-12-25T11:18:23.743361 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/browser/bluebird.js
+W, [2024-12-25T11:18:23.746017 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/browser/bluebird.js
+I, [2024-12-25T11:18:23.746066 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/browser/bluebird.min.js
+W, [2024-12-25T11:18:23.747056 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/browser/bluebird.min.js
+I, [2024-12-25T11:18:23.747104 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/any.js
+W, [2024-12-25T11:18:23.747779 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/any.js
+I, [2024-12-25T11:18:23.747825 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/assert.js
+W, [2024-12-25T11:18:23.749835 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/assert.js
+I, [2024-12-25T11:18:23.749926 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/async.js
+W, [2024-12-25T11:18:23.750616 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/async.js
+I, [2024-12-25T11:18:23.750647 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/bind.js
+W, [2024-12-25T11:18:23.751042 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/bind.js
+I, [2024-12-25T11:18:23.751082 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/bluebird.js
+W, [2024-12-25T11:18:23.751895 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/bluebird.js
+I, [2024-12-25T11:18:23.752068 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/call_get.js
+W, [2024-12-25T11:18:23.754213 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/call_get.js
+I, [2024-12-25T11:18:23.754286 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/cancel.js
+W, [2024-12-25T11:18:23.755245 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/cancel.js
+I, [2024-12-25T11:18:23.755295 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/catch_filter.js
+W, [2024-12-25T11:18:23.755958 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/catch_filter.js
+I, [2024-12-25T11:18:23.757269 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/context.js
+W, [2024-12-25T11:18:23.757989 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/context.js
+I, [2024-12-25T11:18:23.758095 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/debuggability.js
+W, [2024-12-25T11:18:23.758979 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/debuggability.js
+I, [2024-12-25T11:18:23.759032 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/direct_resolve.js
+W, [2024-12-25T11:18:23.761704 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/direct_resolve.js
+I, [2024-12-25T11:18:23.761741 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/each.js
+W, [2024-12-25T11:18:23.762700 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/each.js
+I, [2024-12-25T11:18:23.762839 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/errors.js
+W, [2024-12-25T11:18:23.763277 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/errors.js
+I, [2024-12-25T11:18:23.763387 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/es5.js
+W, [2024-12-25T11:18:23.764103 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/es5.js
+I, [2024-12-25T11:18:23.764146 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/filter.js
+W, [2024-12-25T11:18:23.764728 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/filter.js
+I, [2024-12-25T11:18:23.767621 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/finally.js
+W, [2024-12-25T11:18:23.768395 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/finally.js
+I, [2024-12-25T11:18:23.768582 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/generators.js
+W, [2024-12-25T11:18:23.768993 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/generators.js
+I, [2024-12-25T11:18:23.769022 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/join.js
+W, [2024-12-25T11:18:23.769568 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/join.js
+I, [2024-12-25T11:18:23.769605 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/map.js
+W, [2024-12-25T11:18:23.770347 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/map.js
+I, [2024-12-25T11:18:23.770444 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/method.js
+W, [2024-12-25T11:18:23.772925 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/method.js
+I, [2024-12-25T11:18:23.773112 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/nodeback.js
+W, [2024-12-25T11:18:23.774271 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/nodeback.js
+I, [2024-12-25T11:18:23.774723 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/nodeify.js
+W, [2024-12-25T11:18:23.775928 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/nodeify.js
+I, [2024-12-25T11:18:23.775970 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/promise.js
+W, [2024-12-25T11:18:23.778310 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/promise.js
+I, [2024-12-25T11:18:23.778356 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/promise_array.js
+W, [2024-12-25T11:18:23.778998 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/promise_array.js
+I, [2024-12-25T11:18:23.779040 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/promisify.js
+W, [2024-12-25T11:18:23.779854 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/promisify.js
+I, [2024-12-25T11:18:23.779903 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/props.js
+W, [2024-12-25T11:18:23.780613 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/props.js
+I, [2024-12-25T11:18:23.780646 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/queue.js
+W, [2024-12-25T11:18:23.781432 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/queue.js
+I, [2024-12-25T11:18:23.781636 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/race.js
+W, [2024-12-25T11:18:23.782228 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/race.js
+I, [2024-12-25T11:18:23.782269 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/reduce.js
+W, [2024-12-25T11:18:23.782950 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/reduce.js
+I, [2024-12-25T11:18:23.782989 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/schedule.js
+W, [2024-12-25T11:18:23.783669 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/schedule.js
+I, [2024-12-25T11:18:23.783714 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/settle.js
+W, [2024-12-25T11:18:23.784203 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/settle.js
+I, [2024-12-25T11:18:23.784237 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/some.js
+W, [2024-12-25T11:18:23.785556 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/some.js
+I, [2024-12-25T11:18:23.785594 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/synchronous_inspection.js
+W, [2024-12-25T11:18:23.786364 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/synchronous_inspection.js
+I, [2024-12-25T11:18:23.786753 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/thenables.js
+W, [2024-12-25T11:18:23.789075 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/thenables.js
+I, [2024-12-25T11:18:23.789135 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/timers.js
+W, [2024-12-25T11:18:23.789852 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/timers.js
+I, [2024-12-25T11:18:23.789911 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/using.js
+W, [2024-12-25T11:18:23.790405 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/using.js
+I, [2024-12-25T11:18:23.790477 #36268] INFO -- : Processing file: ../../node_modules/bluebird/js/release/util.js
+W, [2024-12-25T11:18:23.791011 #36268] WARN -- : Copyright string not found in ../../node_modules/bluebird/js/release/util.js
+I, [2024-12-25T11:18:23.791035 #36268] INFO -- : Processing file: ../../node_modules/braces/index.js
+W, [2024-12-25T11:18:23.791833 #36268] WARN -- : Copyright string not found in ../../node_modules/braces/index.js
+I, [2024-12-25T11:18:23.791876 #36268] INFO -- : Processing file: ../../node_modules/braces/lib/compile.js
+W, [2024-12-25T11:18:23.792716 #36268] WARN -- : Copyright string not found in ../../node_modules/braces/lib/compile.js
+I, [2024-12-25T11:18:23.792756 #36268] INFO -- : Processing file: ../../node_modules/braces/lib/constants.js
+W, [2024-12-25T11:18:23.793758 #36268] WARN -- : Copyright string not found in ../../node_modules/braces/lib/constants.js
+I, [2024-12-25T11:18:23.793789 #36268] INFO -- : Processing file: ../../node_modules/braces/lib/expand.js
+W, [2024-12-25T11:18:23.794556 #36268] WARN -- : Copyright string not found in ../../node_modules/braces/lib/expand.js
+I, [2024-12-25T11:18:23.794580 #36268] INFO -- : Processing file: ../../node_modules/braces/lib/parse.js
+W, [2024-12-25T11:18:23.795224 #36268] WARN -- : Copyright string not found in ../../node_modules/braces/lib/parse.js
+I, [2024-12-25T11:18:23.795257 #36268] INFO -- : Processing file: ../../node_modules/braces/lib/stringify.js
+W, [2024-12-25T11:18:23.796319 #36268] WARN -- : Copyright string not found in ../../node_modules/braces/lib/stringify.js
+I, [2024-12-25T11:18:23.796364 #36268] INFO -- : Processing file: ../../node_modules/braces/lib/utils.js
+W, [2024-12-25T11:18:23.797382 #36268] WARN -- : Copyright string not found in ../../node_modules/braces/lib/utils.js
+I, [2024-12-25T11:18:23.797708 #36268] INFO -- : Processing file: ../../node_modules/cache-point/index.js
+W, [2024-12-25T11:18:23.798723 #36268] WARN -- : Copyright string not found in ../../node_modules/cache-point/index.js
+I, [2024-12-25T11:18:23.798762 #36268] INFO -- : Processing file: ../../node_modules/catharsis/bin/parse.js
+W, [2024-12-25T11:18:23.799777 #36268] WARN -- : Copyright string not found in ../../node_modules/catharsis/bin/parse.js
+I, [2024-12-25T11:18:23.800045 #36268] INFO -- : Processing file: ../../node_modules/catharsis/catharsis.js
+W, [2024-12-25T11:18:23.801333 #36268] WARN -- : Copyright string not found in ../../node_modules/catharsis/catharsis.js
+I, [2024-12-25T11:18:23.801370 #36268] INFO -- : Processing file: ../../node_modules/catharsis/lib/describe.js
+W, [2024-12-25T11:18:23.802271 #36268] WARN -- : Copyright string not found in ../../node_modules/catharsis/lib/describe.js
+I, [2024-12-25T11:18:23.802309 #36268] INFO -- : Processing file: ../../node_modules/catharsis/lib/parser.js
+W, [2024-12-25T11:18:23.804859 #36268] WARN -- : Copyright string not found in ../../node_modules/catharsis/lib/parser.js
+I, [2024-12-25T11:18:23.804925 #36268] INFO -- : Processing file: ../../node_modules/catharsis/lib/schema.js
+W, [2024-12-25T11:18:23.805701 #36268] WARN -- : Copyright string not found in ../../node_modules/catharsis/lib/schema.js
+I, [2024-12-25T11:18:23.805909 #36268] INFO -- : Processing file: ../../node_modules/catharsis/lib/stringify.js
+W, [2024-12-25T11:18:23.806666 #36268] WARN -- : Copyright string not found in ../../node_modules/catharsis/lib/stringify.js
+I, [2024-12-25T11:18:23.807109 #36268] INFO -- : Processing file: ../../node_modules/catharsis/lib/types.js
+W, [2024-12-25T11:18:23.809820 #36268] WARN -- : Copyright string not found in ../../node_modules/catharsis/lib/types.js
+I, [2024-12-25T11:18:23.809863 #36268] INFO -- : Processing file: ../../node_modules/chalk/source/index.js
+W, [2024-12-25T11:18:23.811138 #36268] WARN -- : Copyright string not found in ../../node_modules/chalk/source/index.js
+I, [2024-12-25T11:18:23.811175 #36268] INFO -- : Processing file: ../../node_modules/chalk/source/templates.js
+W, [2024-12-25T11:18:23.811886 #36268] WARN -- : Copyright string not found in ../../node_modules/chalk/source/templates.js
+I, [2024-12-25T11:18:23.811929 #36268] INFO -- : Processing file: ../../node_modules/chalk/source/util.js
+W, [2024-12-25T11:18:23.814228 #36268] WARN -- : Copyright string not found in ../../node_modules/chalk/source/util.js
+I, [2024-12-25T11:18:23.814265 #36268] INFO -- : Processing file: ../../node_modules/chalk-template/index.js
+W, [2024-12-25T11:18:23.814925 #36268] WARN -- : Copyright string not found in ../../node_modules/chalk-template/index.js
+I, [2024-12-25T11:18:23.814957 #36268] INFO -- : Processing file: ../../node_modules/color-convert/conversions.js
+W, [2024-12-25T11:18:23.815585 #36268] WARN -- : Copyright string not found in ../../node_modules/color-convert/conversions.js
+I, [2024-12-25T11:18:23.815791 #36268] INFO -- : Processing file: ../../node_modules/color-convert/index.js
+W, [2024-12-25T11:18:23.817435 #36268] WARN -- : Copyright string not found in ../../node_modules/color-convert/index.js
+I, [2024-12-25T11:18:23.817541 #36268] INFO -- : Processing file: ../../node_modules/color-convert/route.js
+W, [2024-12-25T11:18:23.818718 #36268] WARN -- : Copyright string not found in ../../node_modules/color-convert/route.js
+I, [2024-12-25T11:18:23.818843 #36268] INFO -- : Processing file: ../../node_modules/color-name/index.js
+W, [2024-12-25T11:18:23.819655 #36268] WARN -- : Copyright string not found in ../../node_modules/color-name/index.js
+I, [2024-12-25T11:18:23.819697 #36268] INFO -- : Processing file: ../../node_modules/command-line-args/index.js
+W, [2024-12-25T11:18:23.823117 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-args/index.js
+I, [2024-12-25T11:18:23.823165 #36268] INFO -- : Processing file: ../../node_modules/command-line-args/lib/argv-parser.js
+W, [2024-12-25T11:18:23.825566 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-args/lib/argv-parser.js
+I, [2024-12-25T11:18:23.825775 #36268] INFO -- : Processing file: ../../node_modules/command-line-args/lib/argv-tools.js
+W, [2024-12-25T11:18:23.827270 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-args/lib/argv-tools.js
+I, [2024-12-25T11:18:23.827295 #36268] INFO -- : Processing file: ../../node_modules/command-line-args/lib/option-definition.js
+W, [2024-12-25T11:18:23.832866 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-args/lib/option-definition.js
+I, [2024-12-25T11:18:23.832934 #36268] INFO -- : Processing file: ../../node_modules/command-line-args/lib/option-definitions.js
+W, [2024-12-25T11:18:23.833774 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-args/lib/option-definitions.js
+I, [2024-12-25T11:18:23.833813 #36268] INFO -- : Processing file: ../../node_modules/command-line-args/lib/option-flag.js
+W, [2024-12-25T11:18:23.834592 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-args/lib/option-flag.js
+I, [2024-12-25T11:18:23.834641 #36268] INFO -- : Processing file: ../../node_modules/command-line-args/lib/option.js
+W, [2024-12-25T11:18:23.839461 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-args/lib/option.js
+I, [2024-12-25T11:18:23.839499 #36268] INFO -- : Processing file: ../../node_modules/command-line-args/lib/output-grouped.js
+W, [2024-12-25T11:18:23.840240 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-args/lib/output-grouped.js
+I, [2024-12-25T11:18:23.840282 #36268] INFO -- : Processing file: ../../node_modules/command-line-args/lib/output.js
+W, [2024-12-25T11:18:23.840687 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-args/lib/output.js
+I, [2024-12-25T11:18:23.840746 #36268] INFO -- : Processing file: ../../node_modules/command-line-usage/index.js
+W, [2024-12-25T11:18:23.841153 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-usage/index.js
+I, [2024-12-25T11:18:23.841183 #36268] INFO -- : Processing file: ../../node_modules/command-line-usage/lib/chalk-format.js
+W, [2024-12-25T11:18:23.841670 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-usage/lib/chalk-format.js
+I, [2024-12-25T11:18:23.841815 #36268] INFO -- : Processing file: ../../node_modules/command-line-usage/lib/section/content.js
+W, [2024-12-25T11:18:23.842317 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-usage/lib/section/content.js
+I, [2024-12-25T11:18:23.842349 #36268] INFO -- : Processing file: ../../node_modules/command-line-usage/lib/section/option-list.js
+W, [2024-12-25T11:18:23.842689 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-usage/lib/section/option-list.js
+I, [2024-12-25T11:18:23.842712 #36268] INFO -- : Processing file: ../../node_modules/command-line-usage/lib/section.js
+W, [2024-12-25T11:18:23.843166 #36268] WARN -- : Copyright string not found in ../../node_modules/command-line-usage/lib/section.js
+I, [2024-12-25T11:18:23.843193 #36268] INFO -- : Processing file: ../../node_modules/common-sequence/dist/index.js
+W, [2024-12-25T11:18:23.843603 #36268] WARN -- : Copyright string not found in ../../node_modules/common-sequence/dist/index.js
+I, [2024-12-25T11:18:23.843632 #36268] INFO -- : Processing file: ../../node_modules/config-master/lib/config-master.js
+W, [2024-12-25T11:18:23.844303 #36268] WARN -- : Copyright string not found in ../../node_modules/config-master/lib/config-master.js
+I, [2024-12-25T11:18:23.844332 #36268] INFO -- : Processing file: ../../node_modules/config-master/node_modules/walk-back/lib/walk-back.js
+W, [2024-12-25T11:18:23.844996 #36268] WARN -- : Copyright string not found in ../../node_modules/config-master/node_modules/walk-back/lib/walk-back.js
+I, [2024-12-25T11:18:23.845052 #36268] INFO -- : Processing file: ../../node_modules/config-master/node_modules/walk-back/test/test.js
+W, [2024-12-25T11:18:23.845628 #36268] WARN -- : Copyright string not found in ../../node_modules/config-master/node_modules/walk-back/test/test.js
+I, [2024-12-25T11:18:23.845658 #36268] INFO -- : Processing file: ../../node_modules/config-master/test/test.js
+W, [2024-12-25T11:18:23.846287 #36268] WARN -- : Copyright string not found in ../../node_modules/config-master/test/test.js
+I, [2024-12-25T11:18:23.846325 #36268] INFO -- : Processing file: ../../node_modules/current-module-paths/index.js
+W, [2024-12-25T11:18:23.847677 #36268] WARN -- : Copyright string not found in ../../node_modules/current-module-paths/index.js
+I, [2024-12-25T11:18:23.847763 #36268] INFO -- : Processing file: ../../node_modules/dmd/helpers/ddata.js
+W, [2024-12-25T11:18:23.848637 #36268] WARN -- : Copyright string not found in ../../node_modules/dmd/helpers/ddata.js
+I, [2024-12-25T11:18:23.848684 #36268] INFO -- : Processing file: ../../node_modules/dmd/helpers/helpers.js
+W, [2024-12-25T11:18:23.850084 #36268] WARN -- : Copyright string not found in ../../node_modules/dmd/helpers/helpers.js
+I, [2024-12-25T11:18:23.850191 #36268] INFO -- : Processing file: ../../node_modules/dmd/helpers/selectors.js
+W, [2024-12-25T11:18:23.851390 #36268] WARN -- : Copyright string not found in ../../node_modules/dmd/helpers/selectors.js
+I, [2024-12-25T11:18:23.851562 #36268] INFO -- : Processing file: ../../node_modules/dmd/index.js
+W, [2024-12-25T11:18:23.852638 #36268] WARN -- : Copyright string not found in ../../node_modules/dmd/index.js
+I, [2024-12-25T11:18:23.852751 #36268] INFO -- : Processing file: ../../node_modules/dmd/lib/dmd-options.js
+W, [2024-12-25T11:18:23.853581 #36268] WARN -- : Copyright string not found in ../../node_modules/dmd/lib/dmd-options.js
+I, [2024-12-25T11:18:23.853620 #36268] INFO -- : Processing file: ../../node_modules/dmd/lib/handlebars-template.js
+W, [2024-12-25T11:18:23.854287 #36268] WARN -- : Copyright string not found in ../../node_modules/dmd/lib/handlebars-template.js
+I, [2024-12-25T11:18:23.854326 #36268] INFO -- : Processing file: ../../node_modules/dmd/lib/state.js
+W, [2024-12-25T11:18:23.854761 #36268] WARN -- : Copyright string not found in ../../node_modules/dmd/lib/state.js
+I, [2024-12-25T11:18:23.854798 #36268] INFO -- : Processing file: ../../node_modules/dmd/partials/partial-cache.js
+W, [2024-12-25T11:18:23.855222 #36268] WARN -- : Copyright string not found in ../../node_modules/dmd/partials/partial-cache.js
+I, [2024-12-25T11:18:23.855259 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/decode.js
+W, [2024-12-25T11:18:23.856167 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/decode.js
+I, [2024-12-25T11:18:23.856206 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/decode_codepoint.js
+W, [2024-12-25T11:18:23.857114 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/decode_codepoint.js
+I, [2024-12-25T11:18:23.857154 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/encode.js
+W, [2024-12-25T11:18:23.857776 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/encode.js
+I, [2024-12-25T11:18:23.857819 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/escape.js
+W, [2024-12-25T11:18:23.858640 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/escape.js
+I, [2024-12-25T11:18:23.858687 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/esm/decode.js
+W, [2024-12-25T11:18:23.859573 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/esm/decode.js
+I, [2024-12-25T11:18:23.859614 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/esm/decode_codepoint.js
+W, [2024-12-25T11:18:23.860226 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/esm/decode_codepoint.js
+I, [2024-12-25T11:18:23.860260 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/esm/encode.js
+W, [2024-12-25T11:18:23.860939 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/esm/encode.js
+I, [2024-12-25T11:18:23.860984 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/esm/escape.js
+W, [2024-12-25T11:18:23.861758 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/esm/escape.js
+I, [2024-12-25T11:18:23.861864 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/esm/generated/decode-data-html.js
+W, [2024-12-25T11:18:23.865376 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/esm/generated/decode-data-html.js
+I, [2024-12-25T11:18:23.865548 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/esm/generated/decode-data-xml.js
+W, [2024-12-25T11:18:23.866082 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/esm/generated/decode-data-xml.js
+I, [2024-12-25T11:18:23.866139 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/esm/generated/encode-html.js
+W, [2024-12-25T11:18:23.867047 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/esm/generated/encode-html.js
+I, [2024-12-25T11:18:23.867092 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/esm/index.js
+W, [2024-12-25T11:18:23.867746 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/esm/index.js
+I, [2024-12-25T11:18:23.867790 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/generated/decode-data-html.js
+W, [2024-12-25T11:18:23.868554 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/generated/decode-data-html.js
+I, [2024-12-25T11:18:23.868600 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/generated/decode-data-xml.js
+W, [2024-12-25T11:18:23.869125 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/generated/decode-data-xml.js
+I, [2024-12-25T11:18:23.869169 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/generated/encode-html.js
+W, [2024-12-25T11:18:23.869826 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/generated/encode-html.js
+I, [2024-12-25T11:18:23.869849 #36268] INFO -- : Processing file: ../../node_modules/entities/lib/index.js
+W, [2024-12-25T11:18:23.870794 #36268] WARN -- : Copyright string not found in ../../node_modules/entities/lib/index.js
+I, [2024-12-25T11:18:23.870867 #36268] INFO -- : Processing file: ../../node_modules/escape-string-regexp/index.js
+W, [2024-12-25T11:18:23.873734 #36268] WARN -- : Copyright string not found in ../../node_modules/escape-string-regexp/index.js
+I, [2024-12-25T11:18:23.873777 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/index.js
+W, [2024-12-25T11:18:23.874522 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/index.js
+I, [2024-12-25T11:18:23.874564 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/managers/tasks.js
+W, [2024-12-25T11:18:23.875203 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/managers/tasks.js
+I, [2024-12-25T11:18:23.875241 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/async.js
+W, [2024-12-25T11:18:23.875871 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/async.js
+I, [2024-12-25T11:18:23.875913 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/filters/deep.js
+W, [2024-12-25T11:18:23.876591 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/filters/deep.js
+I, [2024-12-25T11:18:23.876617 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/filters/entry.js
+W, [2024-12-25T11:18:23.877001 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/filters/entry.js
+I, [2024-12-25T11:18:23.877032 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/filters/error.js
+W, [2024-12-25T11:18:23.877772 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/filters/error.js
+I, [2024-12-25T11:18:23.877816 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/matchers/matcher.js
+W, [2024-12-25T11:18:23.878528 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/matchers/matcher.js
+I, [2024-12-25T11:18:23.878592 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/matchers/partial.js
+W, [2024-12-25T11:18:23.879092 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/matchers/partial.js
+I, [2024-12-25T11:18:23.879122 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/provider.js
+W, [2024-12-25T11:18:23.879846 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/provider.js
+I, [2024-12-25T11:18:23.880465 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/stream.js
+W, [2024-12-25T11:18:23.881292 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/stream.js
+I, [2024-12-25T11:18:23.881325 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/sync.js
+W, [2024-12-25T11:18:23.882057 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/sync.js
+I, [2024-12-25T11:18:23.882093 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/providers/transformers/entry.js
+W, [2024-12-25T11:18:23.882475 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/providers/transformers/entry.js
+I, [2024-12-25T11:18:23.882510 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/readers/async.js
+W, [2024-12-25T11:18:23.883042 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/readers/async.js
+I, [2024-12-25T11:18:23.883143 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/readers/reader.js
+W, [2024-12-25T11:18:23.883529 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/readers/reader.js
+I, [2024-12-25T11:18:23.883564 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/readers/stream.js
+W, [2024-12-25T11:18:23.883924 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/readers/stream.js
+I, [2024-12-25T11:18:23.883959 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/readers/sync.js
+W, [2024-12-25T11:18:23.884502 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/readers/sync.js
+I, [2024-12-25T11:18:23.884536 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/settings.js
+W, [2024-12-25T11:18:23.884834 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/settings.js
+I, [2024-12-25T11:18:23.884868 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/types/index.js
+W, [2024-12-25T11:18:23.885468 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/types/index.js
+I, [2024-12-25T11:18:23.885502 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/utils/array.js
+W, [2024-12-25T11:18:23.885998 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/utils/array.js
+I, [2024-12-25T11:18:23.886031 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/utils/errno.js
+W, [2024-12-25T11:18:23.887213 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/utils/errno.js
+I, [2024-12-25T11:18:23.887247 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/utils/fs.js
+W, [2024-12-25T11:18:23.887775 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/utils/fs.js
+I, [2024-12-25T11:18:23.887808 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/utils/index.js
+W, [2024-12-25T11:18:23.888130 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/utils/index.js
+I, [2024-12-25T11:18:23.888164 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/utils/path.js
+W, [2024-12-25T11:18:23.888601 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/utils/path.js
+I, [2024-12-25T11:18:23.888685 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/utils/pattern.js
+W, [2024-12-25T11:18:23.889141 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/utils/pattern.js
+I, [2024-12-25T11:18:23.889186 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/utils/stream.js
+W, [2024-12-25T11:18:23.889833 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/utils/stream.js
+I, [2024-12-25T11:18:23.889879 #36268] INFO -- : Processing file: ../../node_modules/fast-glob/out/utils/string.js
+W, [2024-12-25T11:18:23.890341 #36268] WARN -- : Copyright string not found in ../../node_modules/fast-glob/out/utils/string.js
+I, [2024-12-25T11:18:23.890375 #36268] INFO -- : Processing file: ../../node_modules/fastq/bench.js
+W, [2024-12-25T11:18:23.891288 #36268] WARN -- : Copyright string not found in ../../node_modules/fastq/bench.js
+I, [2024-12-25T11:18:23.891361 #36268] INFO -- : Processing file: ../../node_modules/fastq/example.js
+W, [2024-12-25T11:18:23.892257 #36268] WARN -- : Copyright string not found in ../../node_modules/fastq/example.js
+I, [2024-12-25T11:18:23.892282 #36268] INFO -- : Processing file: ../../node_modules/fastq/queue.js
+W, [2024-12-25T11:18:23.892995 #36268] WARN -- : Copyright string not found in ../../node_modules/fastq/queue.js
+I, [2024-12-25T11:18:23.893026 #36268] INFO -- : Processing file: ../../node_modules/fastq/test/promise.js
+W, [2024-12-25T11:18:23.893554 #36268] WARN -- : Copyright string not found in ../../node_modules/fastq/test/promise.js
+I, [2024-12-25T11:18:23.893579 #36268] INFO -- : Processing file: ../../node_modules/fastq/test/test.js
+W, [2024-12-25T11:18:23.894304 #36268] WARN -- : Copyright string not found in ../../node_modules/fastq/test/test.js
+I, [2024-12-25T11:18:23.894327 #36268] INFO -- : Processing file: ../../node_modules/file-set/index.js
+W, [2024-12-25T11:18:23.894961 #36268] WARN -- : Copyright string not found in ../../node_modules/file-set/index.js
+I, [2024-12-25T11:18:23.894982 #36268] INFO -- : Processing file: ../../node_modules/fill-range/index.js
+W, [2024-12-25T11:18:23.895672 #36268] WARN -- : Copyright string not found in ../../node_modules/fill-range/index.js
+I, [2024-12-25T11:18:23.895694 #36268] INFO -- : Processing file: ../../node_modules/find-replace/dist/index.js
+W, [2024-12-25T11:18:23.896129 #36268] WARN -- : Copyright string not found in ../../node_modules/find-replace/dist/index.js
+I, [2024-12-25T11:18:23.896170 #36268] INFO -- : Processing file: ../../node_modules/find-replace/index.js
+W, [2024-12-25T11:18:23.897150 #36268] WARN -- : Copyright string not found in ../../node_modules/find-replace/index.js
+I, [2024-12-25T11:18:23.897237 #36268] INFO -- : Processing file: ../../node_modules/glob-parent/index.js
+W, [2024-12-25T11:18:23.898006 #36268] WARN -- : Copyright string not found in ../../node_modules/glob-parent/index.js
+I, [2024-12-25T11:18:23.898042 #36268] INFO -- : Processing file: ../../node_modules/graceful-fs/clone.js
+W, [2024-12-25T11:18:23.898735 #36268] WARN -- : Copyright string not found in ../../node_modules/graceful-fs/clone.js
+I, [2024-12-25T11:18:23.898798 #36268] INFO -- : Processing file: ../../node_modules/graceful-fs/graceful-fs.js
+W, [2024-12-25T11:18:23.899788 #36268] WARN -- : Copyright string not found in ../../node_modules/graceful-fs/graceful-fs.js
+I, [2024-12-25T11:18:23.899844 #36268] INFO -- : Processing file: ../../node_modules/graceful-fs/legacy-streams.js
+W, [2024-12-25T11:18:23.900837 #36268] WARN -- : Copyright string not found in ../../node_modules/graceful-fs/legacy-streams.js
+I, [2024-12-25T11:18:23.900959 #36268] INFO -- : Processing file: ../../node_modules/graceful-fs/polyfills.js
+W, [2024-12-25T11:18:23.901835 #36268] WARN -- : Copyright string not found in ../../node_modules/graceful-fs/polyfills.js
+I, [2024-12-25T11:18:23.901877 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/base.js
+W, [2024-12-25T11:18:23.902709 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/base.js
+I, [2024-12-25T11:18:23.902747 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/ast.js
+W, [2024-12-25T11:18:23.903362 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/ast.js
+I, [2024-12-25T11:18:23.903398 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/base.js
+W, [2024-12-25T11:18:23.903973 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/base.js
+I, [2024-12-25T11:18:23.904004 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js
+W, [2024-12-25T11:18:23.904786 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js
+I, [2024-12-25T11:18:23.904822 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js
+W, [2024-12-25T11:18:23.905650 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js
+I, [2024-12-25T11:18:23.905688 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js
+W, [2024-12-25T11:18:23.906649 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js
+I, [2024-12-25T11:18:23.906705 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/javascript-compiler.js
+W, [2024-12-25T11:18:23.908760 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/javascript-compiler.js
+I, [2024-12-25T11:18:23.908811 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/parser.js
+W, [2024-12-25T11:18:23.910102 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/parser.js
+I, [2024-12-25T11:18:23.910146 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/printer.js
+W, [2024-12-25T11:18:23.910731 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/printer.js
+I, [2024-12-25T11:18:23.910772 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/visitor.js
+W, [2024-12-25T11:18:23.911495 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/visitor.js
+I, [2024-12-25T11:18:23.911538 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/compiler/whitespace-control.js
+W, [2024-12-25T11:18:23.912218 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/compiler/whitespace-control.js
+I, [2024-12-25T11:18:23.912254 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/decorators/inline.js
+W, [2024-12-25T11:18:23.912866 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/decorators/inline.js
+I, [2024-12-25T11:18:23.912901 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/decorators.js
+W, [2024-12-25T11:18:23.913485 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/decorators.js
+I, [2024-12-25T11:18:23.913532 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/exception.js
+W, [2024-12-25T11:18:23.913963 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/exception.js
+I, [2024-12-25T11:18:23.913985 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/helpers/block-helper-missing.js
+W, [2024-12-25T11:18:23.914569 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/helpers/block-helper-missing.js
+I, [2024-12-25T11:18:23.914635 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/helpers/each.js
+W, [2024-12-25T11:18:23.915184 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/helpers/each.js
+I, [2024-12-25T11:18:23.915204 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/helpers/helper-missing.js
+W, [2024-12-25T11:18:23.915517 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/helpers/helper-missing.js
+I, [2024-12-25T11:18:23.915536 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/helpers/if.js
+W, [2024-12-25T11:18:23.916116 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/helpers/if.js
+I, [2024-12-25T11:18:23.916138 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/helpers/log.js
+W, [2024-12-25T11:18:23.916676 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/helpers/log.js
+I, [2024-12-25T11:18:23.916697 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/helpers/lookup.js
+W, [2024-12-25T11:18:23.917231 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/helpers/lookup.js
+I, [2024-12-25T11:18:23.917251 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/helpers/with.js
+W, [2024-12-25T11:18:23.917710 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/helpers/with.js
+I, [2024-12-25T11:18:23.917730 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/helpers.js
+W, [2024-12-25T11:18:23.918187 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/helpers.js
+I, [2024-12-25T11:18:23.918205 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/internal/create-new-lookup-object.js
+W, [2024-12-25T11:18:23.918654 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/internal/create-new-lookup-object.js
+I, [2024-12-25T11:18:23.918672 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/internal/proto-access.js
+W, [2024-12-25T11:18:23.918965 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/internal/proto-access.js
+I, [2024-12-25T11:18:23.918983 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/internal/wrapHelper.js
+W, [2024-12-25T11:18:23.919226 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/internal/wrapHelper.js
+I, [2024-12-25T11:18:23.919280 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/logger.js
+W, [2024-12-25T11:18:23.919782 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/logger.js
+I, [2024-12-25T11:18:23.919801 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/no-conflict.js
+W, [2024-12-25T11:18:23.920289 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/no-conflict.js
+I, [2024-12-25T11:18:23.920309 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/runtime.js
+W, [2024-12-25T11:18:23.920771 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/runtime.js
+I, [2024-12-25T11:18:23.920804 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/safe-string.js
+W, [2024-12-25T11:18:23.921161 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/safe-string.js
+I, [2024-12-25T11:18:23.921201 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars/utils.js
+W, [2024-12-25T11:18:23.921881 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars/utils.js
+I, [2024-12-25T11:18:23.921933 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars.js
+W, [2024-12-25T11:18:23.922589 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars.js
+I, [2024-12-25T11:18:23.922626 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/handlebars.runtime.js
+W, [2024-12-25T11:18:23.923142 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/handlebars.runtime.js
+I, [2024-12-25T11:18:23.923170 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/amd/precompiler.js
+W, [2024-12-25T11:18:23.923756 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/amd/precompiler.js
+I, [2024-12-25T11:18:23.923783 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/base.js
+W, [2024-12-25T11:18:23.926630 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/base.js
+I, [2024-12-25T11:18:23.926663 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js
+W, [2024-12-25T11:18:23.927283 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/ast.js
+I, [2024-12-25T11:18:23.927313 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
+W, [2024-12-25T11:18:23.927866 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/base.js
+I, [2024-12-25T11:18:23.927897 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js
+W, [2024-12-25T11:18:23.928588 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/code-gen.js
+I, [2024-12-25T11:18:23.928624 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js
+W, [2024-12-25T11:18:23.929357 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js
+I, [2024-12-25T11:18:23.929387 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js
+W, [2024-12-25T11:18:23.930017 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js
+I, [2024-12-25T11:18:23.930048 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js
+W, [2024-12-25T11:18:23.931080 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js
+I, [2024-12-25T11:18:23.931118 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js
+W, [2024-12-25T11:18:23.932400 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js
+I, [2024-12-25T11:18:23.932429 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js
+W, [2024-12-25T11:18:23.932818 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/printer.js
+I, [2024-12-25T11:18:23.932845 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js
+W, [2024-12-25T11:18:23.933186 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/visitor.js
+I, [2024-12-25T11:18:23.933214 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js
+W, [2024-12-25T11:18:23.934019 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/compiler/whitespace-control.js
+I, [2024-12-25T11:18:23.934048 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js
+W, [2024-12-25T11:18:23.936742 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js
+I, [2024-12-25T11:18:23.936781 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/decorators.js
+W, [2024-12-25T11:18:23.937397 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/decorators.js
+I, [2024-12-25T11:18:23.937544 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/exception.js
+W, [2024-12-25T11:18:23.937880 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/exception.js
+I, [2024-12-25T11:18:23.937910 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js
+W, [2024-12-25T11:18:23.938441 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/helpers/block-helper-missing.js
+I, [2024-12-25T11:18:23.938479 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/helpers/each.js
+W, [2024-12-25T11:18:23.938929 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/helpers/each.js
+I, [2024-12-25T11:18:23.938982 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js
+W, [2024-12-25T11:18:23.939292 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/helpers/helper-missing.js
+I, [2024-12-25T11:18:23.939325 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/helpers/if.js
+W, [2024-12-25T11:18:23.939841 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/helpers/if.js
+I, [2024-12-25T11:18:23.939875 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/helpers/log.js
+W, [2024-12-25T11:18:23.940393 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/helpers/log.js
+I, [2024-12-25T11:18:23.940486 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js
+W, [2024-12-25T11:18:23.940940 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/helpers/lookup.js
+I, [2024-12-25T11:18:23.940993 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/helpers/with.js
+W, [2024-12-25T11:18:23.941767 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/helpers/with.js
+I, [2024-12-25T11:18:23.941820 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/helpers.js
+W, [2024-12-25T11:18:23.942717 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/helpers.js
+I, [2024-12-25T11:18:23.942765 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/internal/create-new-lookup-object.js
+W, [2024-12-25T11:18:23.943301 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/internal/create-new-lookup-object.js
+I, [2024-12-25T11:18:23.943356 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/internal/proto-access.js
+W, [2024-12-25T11:18:23.944111 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/internal/proto-access.js
+I, [2024-12-25T11:18:23.944170 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/internal/wrapHelper.js
+W, [2024-12-25T11:18:23.944728 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/internal/wrapHelper.js
+I, [2024-12-25T11:18:23.944798 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/logger.js
+W, [2024-12-25T11:18:23.945858 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/logger.js
+I, [2024-12-25T11:18:23.945921 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/no-conflict.js
+W, [2024-12-25T11:18:23.947062 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/no-conflict.js
+I, [2024-12-25T11:18:23.947119 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/runtime.js
+W, [2024-12-25T11:18:23.948680 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/runtime.js
+I, [2024-12-25T11:18:23.948728 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/safe-string.js
+W, [2024-12-25T11:18:23.949231 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/safe-string.js
+I, [2024-12-25T11:18:23.949288 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars/utils.js
+W, [2024-12-25T11:18:23.949748 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars/utils.js
+I, [2024-12-25T11:18:23.949777 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars.js
+W, [2024-12-25T11:18:23.950327 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars.js
+I, [2024-12-25T11:18:23.950357 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/handlebars.runtime.js
+W, [2024-12-25T11:18:23.951152 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/handlebars.runtime.js
+I, [2024-12-25T11:18:23.951210 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/cjs/precompiler.js
+W, [2024-12-25T11:18:23.951759 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/cjs/precompiler.js
+I, [2024-12-25T11:18:23.951785 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/handlebars.amd.js
+W, [2024-12-25T11:18:23.955725 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/handlebars.amd.js
+I, [2024-12-25T11:18:23.955777 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/handlebars.amd.min.js
+W, [2024-12-25T11:18:23.956842 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/handlebars.amd.min.js
+I, [2024-12-25T11:18:23.956873 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/handlebars.js
+W, [2024-12-25T11:18:23.957989 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/handlebars.js
+I, [2024-12-25T11:18:23.958036 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/handlebars.min.js
+W, [2024-12-25T11:18:23.959000 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/handlebars.min.js
+I, [2024-12-25T11:18:23.959221 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/handlebars.runtime.amd.js
+W, [2024-12-25T11:18:23.960303 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/handlebars.runtime.amd.js
+I, [2024-12-25T11:18:23.960342 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/handlebars.runtime.amd.min.js
+W, [2024-12-25T11:18:23.961264 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/handlebars.runtime.amd.min.js
+I, [2024-12-25T11:18:23.961573 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/handlebars.runtime.js
+W, [2024-12-25T11:18:23.965547 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/handlebars.runtime.js
+I, [2024-12-25T11:18:23.965585 #36268] INFO -- : Processing file: ../../node_modules/handlebars/dist/handlebars.runtime.min.js
+W, [2024-12-25T11:18:23.966375 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/dist/handlebars.runtime.min.js
+I, [2024-12-25T11:18:23.966407 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/base.js
+W, [2024-12-25T11:18:23.967089 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/base.js
+I, [2024-12-25T11:18:23.967120 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/ast.js
+W, [2024-12-25T11:18:23.967716 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/ast.js
+I, [2024-12-25T11:18:23.967746 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/base.js
+W, [2024-12-25T11:18:23.968679 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/base.js
+I, [2024-12-25T11:18:23.968709 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/code-gen.js
+W, [2024-12-25T11:18:23.969182 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/code-gen.js
+I, [2024-12-25T11:18:23.969212 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/compiler.js
+W, [2024-12-25T11:18:23.969944 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/compiler.js
+I, [2024-12-25T11:18:23.969988 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/helpers.js
+W, [2024-12-25T11:18:23.970844 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/helpers.js
+I, [2024-12-25T11:18:23.970883 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js
+W, [2024-12-25T11:18:23.974711 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js
+I, [2024-12-25T11:18:23.974841 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/parser.js
+W, [2024-12-25T11:18:23.975786 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/parser.js
+I, [2024-12-25T11:18:23.975821 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/printer.js
+W, [2024-12-25T11:18:23.976381 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/printer.js
+I, [2024-12-25T11:18:23.976529 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/visitor.js
+W, [2024-12-25T11:18:23.977140 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/visitor.js
+I, [2024-12-25T11:18:23.977206 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/compiler/whitespace-control.js
+W, [2024-12-25T11:18:23.977941 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/compiler/whitespace-control.js
+I, [2024-12-25T11:18:23.978050 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/decorators/inline.js
+W, [2024-12-25T11:18:23.980631 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/decorators/inline.js
+I, [2024-12-25T11:18:23.980666 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/decorators.js
+W, [2024-12-25T11:18:23.983699 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/decorators.js
+I, [2024-12-25T11:18:23.983734 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/exception.js
+W, [2024-12-25T11:18:23.984207 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/exception.js
+I, [2024-12-25T11:18:23.984234 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/helpers/block-helper-missing.js
+W, [2024-12-25T11:18:23.984866 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/helpers/block-helper-missing.js
+I, [2024-12-25T11:18:23.984903 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/helpers/each.js
+W, [2024-12-25T11:18:23.985338 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/helpers/each.js
+I, [2024-12-25T11:18:23.985381 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/helpers/helper-missing.js
+W, [2024-12-25T11:18:23.987658 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/helpers/helper-missing.js
+I, [2024-12-25T11:18:23.987757 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/helpers/if.js
+W, [2024-12-25T11:18:23.988545 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/helpers/if.js
+I, [2024-12-25T11:18:23.988583 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/helpers/log.js
+W, [2024-12-25T11:18:23.989011 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/helpers/log.js
+I, [2024-12-25T11:18:23.989056 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/helpers/lookup.js
+W, [2024-12-25T11:18:23.989889 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/helpers/lookup.js
+I, [2024-12-25T11:18:23.989937 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/helpers/with.js
+W, [2024-12-25T11:18:23.995781 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/helpers/with.js
+I, [2024-12-25T11:18:23.996607 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/helpers.js
+W, [2024-12-25T11:18:23.997370 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/helpers.js
+I, [2024-12-25T11:18:23.997400 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/internal/create-new-lookup-object.js
+W, [2024-12-25T11:18:23.998008 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/internal/create-new-lookup-object.js
+I, [2024-12-25T11:18:23.998041 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/internal/proto-access.js
+W, [2024-12-25T11:18:23.998398 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/internal/proto-access.js
+I, [2024-12-25T11:18:23.998425 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/internal/wrapHelper.js
+W, [2024-12-25T11:18:23.998894 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/internal/wrapHelper.js
+I, [2024-12-25T11:18:23.998921 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/logger.js
+W, [2024-12-25T11:18:23.999314 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/logger.js
+I, [2024-12-25T11:18:23.999340 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/no-conflict.js
+W, [2024-12-25T11:18:23.999907 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/no-conflict.js
+I, [2024-12-25T11:18:24.001483 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/runtime.js
+W, [2024-12-25T11:18:24.002247 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/runtime.js
+I, [2024-12-25T11:18:24.002300 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/safe-string.js
+W, [2024-12-25T11:18:24.002703 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/safe-string.js
+I, [2024-12-25T11:18:24.002731 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars/utils.js
+W, [2024-12-25T11:18:24.003067 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars/utils.js
+I, [2024-12-25T11:18:24.003101 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars.js
+W, [2024-12-25T11:18:24.003582 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars.js
+I, [2024-12-25T11:18:24.003632 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/handlebars.runtime.js
+W, [2024-12-25T11:18:24.005255 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/handlebars.runtime.js
+I, [2024-12-25T11:18:24.005290 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/index.js
+W, [2024-12-25T11:18:24.005884 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/index.js
+I, [2024-12-25T11:18:24.005915 #36268] INFO -- : Processing file: ../../node_modules/handlebars/lib/precompiler.js
+W, [2024-12-25T11:18:24.006620 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/lib/precompiler.js
+I, [2024-12-25T11:18:24.006651 #36268] INFO -- : Processing file: ../../node_modules/handlebars/runtime.js
+W, [2024-12-25T11:18:24.009667 #36268] WARN -- : Copyright string not found in ../../node_modules/handlebars/runtime.js
+I, [2024-12-25T11:18:24.009785 #36268] INFO -- : Processing file: ../../node_modules/has-flag/index.js
+W, [2024-12-25T11:18:24.010668 #36268] WARN -- : Copyright string not found in ../../node_modules/has-flag/index.js
+I, [2024-12-25T11:18:24.010730 #36268] INFO -- : Processing file: ../../node_modules/is-extglob/index.js
+W, [2024-12-25T11:18:24.011646 #36268] WARN -- : Copyright string not found in ../../node_modules/is-extglob/index.js
+I, [2024-12-25T11:18:24.011678 #36268] INFO -- : Processing file: ../../node_modules/is-glob/index.js
+W, [2024-12-25T11:18:24.012281 #36268] WARN -- : Copyright string not found in ../../node_modules/is-glob/index.js
+I, [2024-12-25T11:18:24.012333 #36268] INFO -- : Processing file: ../../node_modules/is-number/index.js
+W, [2024-12-25T11:18:24.012951 #36268] WARN -- : Copyright string not found in ../../node_modules/is-number/index.js
+I, [2024-12-25T11:18:24.012982 #36268] INFO -- : Processing file: ../../node_modules/js2xmlparser/lib/main.js
+W, [2024-12-25T11:18:24.013599 #36268] WARN -- : Copyright string not found in ../../node_modules/js2xmlparser/lib/main.js
+I, [2024-12-25T11:18:24.013628 #36268] INFO -- : Processing file: ../../node_modules/js2xmlparser/lib/options.js
+W, [2024-12-25T11:18:24.014272 #36268] WARN -- : Copyright string not found in ../../node_modules/js2xmlparser/lib/options.js
+I, [2024-12-25T11:18:24.014303 #36268] INFO -- : Processing file: ../../node_modules/js2xmlparser/lib/utils.js
+W, [2024-12-25T11:18:24.014905 #36268] WARN -- : Copyright string not found in ../../node_modules/js2xmlparser/lib/utils.js
+I, [2024-12-25T11:18:24.016077 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/cli.js
+W, [2024-12-25T11:18:24.016833 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/cli.js
+I, [2024-12-25T11:18:24.016947 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/jsdoc.js
+W, [2024-12-25T11:18:24.017411 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/jsdoc.js
+I, [2024-12-25T11:18:24.017538 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/app.js
+W, [2024-12-25T11:18:24.018792 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/app.js
+I, [2024-12-25T11:18:24.018858 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/augment.js
+W, [2024-12-25T11:18:24.019820 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/augment.js
+I, [2024-12-25T11:18:24.019852 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/borrow.js
+W, [2024-12-25T11:18:24.020516 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/borrow.js
+I, [2024-12-25T11:18:24.020546 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/config.js
+W, [2024-12-25T11:18:24.020942 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/config.js
+I, [2024-12-25T11:18:24.020974 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/doclet.js
+W, [2024-12-25T11:18:24.021491 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/doclet.js
+I, [2024-12-25T11:18:24.021557 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/env.js
+W, [2024-12-25T11:18:24.021877 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/env.js
+I, [2024-12-25T11:18:24.021905 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/fs.js
+W, [2024-12-25T11:18:24.024767 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/fs.js
+I, [2024-12-25T11:18:24.024827 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/name.js
+W, [2024-12-25T11:18:24.025677 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/name.js
+I, [2024-12-25T11:18:24.025717 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/opts/argparser.js
+W, [2024-12-25T11:18:24.026347 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/opts/argparser.js
+I, [2024-12-25T11:18:24.026378 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/opts/args.js
+W, [2024-12-25T11:18:24.026954 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/opts/args.js
+I, [2024-12-25T11:18:24.026996 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/package.js
+W, [2024-12-25T11:18:24.027686 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/package.js
+I, [2024-12-25T11:18:24.027727 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/path.js
+W, [2024-12-25T11:18:24.028243 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/path.js
+I, [2024-12-25T11:18:24.028278 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/plugins.js
+W, [2024-12-25T11:18:24.028874 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/plugins.js
+I, [2024-12-25T11:18:24.028915 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/readme.js
+W, [2024-12-25T11:18:24.029690 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/readme.js
+I, [2024-12-25T11:18:24.029734 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/schema.js
+W, [2024-12-25T11:18:24.030614 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/schema.js
+I, [2024-12-25T11:18:24.031551 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/src/astbuilder.js
+W, [2024-12-25T11:18:24.031873 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/src/astbuilder.js
+I, [2024-12-25T11:18:24.031902 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/src/astnode.js
+W, [2024-12-25T11:18:24.032377 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/src/astnode.js
+I, [2024-12-25T11:18:24.032411 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/src/filter.js
+W, [2024-12-25T11:18:24.032634 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/src/filter.js
+I, [2024-12-25T11:18:24.032660 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/src/handlers.js
+W, [2024-12-25T11:18:24.032913 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/src/handlers.js
+I, [2024-12-25T11:18:24.032940 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/src/parser.js
+W, [2024-12-25T11:18:24.034184 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/src/parser.js
+I, [2024-12-25T11:18:24.034251 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/src/scanner.js
+W, [2024-12-25T11:18:24.034541 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/src/scanner.js
+I, [2024-12-25T11:18:24.034569 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/src/syntax.js
+W, [2024-12-25T11:18:24.034848 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/src/syntax.js
+I, [2024-12-25T11:18:24.034874 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/src/visitor.js
+W, [2024-12-25T11:18:24.035161 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/src/visitor.js
+I, [2024-12-25T11:18:24.035188 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/src/walker.js
+W, [2024-12-25T11:18:24.035541 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/src/walker.js
+I, [2024-12-25T11:18:24.035575 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/tag/dictionary/definitions.js
+W, [2024-12-25T11:18:24.035888 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/tag/dictionary/definitions.js
+I, [2024-12-25T11:18:24.035925 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/tag/dictionary.js
+W, [2024-12-25T11:18:24.036145 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/tag/dictionary.js
+I, [2024-12-25T11:18:24.036178 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/tag/inline.js
+W, [2024-12-25T11:18:24.036398 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/tag/inline.js
+I, [2024-12-25T11:18:24.036488 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/tag/type.js
+W, [2024-12-25T11:18:24.036706 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/tag/type.js
+I, [2024-12-25T11:18:24.036733 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/tag/validator.js
+W, [2024-12-25T11:18:24.037331 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/tag/validator.js
+I, [2024-12-25T11:18:24.037365 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/tag.js
+W, [2024-12-25T11:18:24.037670 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/tag.js
+I, [2024-12-25T11:18:24.037698 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/template.js
+W, [2024-12-25T11:18:24.037871 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/template.js
+I, [2024-12-25T11:18:24.037898 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/tutorial/resolver.js
+W, [2024-12-25T11:18:24.038122 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/tutorial/resolver.js
+I, [2024-12-25T11:18:24.038156 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/tutorial.js
+W, [2024-12-25T11:18:24.038376 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/tutorial.js
+I, [2024-12-25T11:18:24.038472 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/util/cast.js
+W, [2024-12-25T11:18:24.038648 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/util/cast.js
+I, [2024-12-25T11:18:24.038667 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/util/doop.js
+W, [2024-12-25T11:18:24.038842 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/util/doop.js
+I, [2024-12-25T11:18:24.038870 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/util/dumper.js
+W, [2024-12-25T11:18:24.039049 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/util/dumper.js
+I, [2024-12-25T11:18:24.039067 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/util/error.js
+W, [2024-12-25T11:18:24.039262 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/util/error.js
+I, [2024-12-25T11:18:24.039289 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/util/logger.js
+W, [2024-12-25T11:18:24.039529 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/util/logger.js
+I, [2024-12-25T11:18:24.039556 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/util/markdown.js
+W, [2024-12-25T11:18:24.040870 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/util/markdown.js
+I, [2024-12-25T11:18:24.040907 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/util/stripbom.js
+W, [2024-12-25T11:18:24.041176 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/util/stripbom.js
+I, [2024-12-25T11:18:24.041221 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/lib/jsdoc/util/templateHelper.js
+W, [2024-12-25T11:18:24.043490 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/lib/jsdoc/util/templateHelper.js
+I, [2024-12-25T11:18:24.043567 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/commentConvert.js
+W, [2024-12-25T11:18:24.043853 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/commentConvert.js
+I, [2024-12-25T11:18:24.043881 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/commentsOnly.js
+W, [2024-12-25T11:18:24.044115 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/commentsOnly.js
+I, [2024-12-25T11:18:24.044159 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/escapeHtml.js
+W, [2024-12-25T11:18:24.044578 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/escapeHtml.js
+I, [2024-12-25T11:18:24.045529 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/eventDumper.js
+W, [2024-12-25T11:18:24.045967 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/eventDumper.js
+I, [2024-12-25T11:18:24.046004 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/markdown.js
+W, [2024-12-25T11:18:24.046406 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/markdown.js
+I, [2024-12-25T11:18:24.047574 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/overloadHelper.js
+W, [2024-12-25T11:18:24.048052 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/overloadHelper.js
+I, [2024-12-25T11:18:24.048085 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/partial.js
+W, [2024-12-25T11:18:24.048297 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/partial.js
+I, [2024-12-25T11:18:24.048324 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/railsTemplate.js
+W, [2024-12-25T11:18:24.048610 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/railsTemplate.js
+I, [2024-12-25T11:18:24.048637 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/shout.js
+W, [2024-12-25T11:18:24.048885 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/shout.js
+I, [2024-12-25T11:18:24.048912 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/sourcetag.js
+W, [2024-12-25T11:18:24.051587 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/sourcetag.js
+I, [2024-12-25T11:18:24.051663 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/summarize.js
+W, [2024-12-25T11:18:24.052045 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/summarize.js
+I, [2024-12-25T11:18:24.052099 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/fixtures/markdown.js
+W, [2024-12-25T11:18:24.052691 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/fixtures/markdown.js
+I, [2024-12-25T11:18:24.052754 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/fixtures/overloadHelper.js
+W, [2024-12-25T11:18:24.053274 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/fixtures/overloadHelper.js
+I, [2024-12-25T11:18:24.053315 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/fixtures/underscore.js
+W, [2024-12-25T11:18:24.053713 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/fixtures/underscore.js
+I, [2024-12-25T11:18:24.053808 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/specs/commentConvert.js
+W, [2024-12-25T11:18:24.054005 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/specs/commentConvert.js
+I, [2024-12-25T11:18:24.054033 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/specs/escapeHtml.js
+W, [2024-12-25T11:18:24.054280 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/specs/escapeHtml.js
+I, [2024-12-25T11:18:24.054306 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/specs/markdown.js
+W, [2024-12-25T11:18:24.054585 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/specs/markdown.js
+I, [2024-12-25T11:18:24.054614 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/specs/overloadHelper.js
+W, [2024-12-25T11:18:24.054831 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/specs/overloadHelper.js
+I, [2024-12-25T11:18:24.054864 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/specs/railsTemplate.js
+W, [2024-12-25T11:18:24.055064 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/specs/railsTemplate.js
+I, [2024-12-25T11:18:24.055097 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/specs/shout.js
+W, [2024-12-25T11:18:24.055720 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/specs/shout.js
+I, [2024-12-25T11:18:24.055745 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/specs/sourcetag.js
+W, [2024-12-25T11:18:24.058625 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/specs/sourcetag.js
+I, [2024-12-25T11:18:24.058692 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/specs/summarize.js
+W, [2024-12-25T11:18:24.059042 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/specs/summarize.js
+I, [2024-12-25T11:18:24.059072 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/test/specs/underscore.js
+W, [2024-12-25T11:18:24.059288 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/test/specs/underscore.js
+I, [2024-12-25T11:18:24.059316 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/plugins/underscore.js
+W, [2024-12-25T11:18:24.059569 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/plugins/underscore.js
+I, [2024-12-25T11:18:24.059599 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/templates/default/publish.js
+W, [2024-12-25T11:18:24.060041 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/templates/default/publish.js
+I, [2024-12-25T11:18:24.060071 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/templates/default/static/scripts/linenumber.js
+W, [2024-12-25T11:18:24.060694 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/templates/default/static/scripts/linenumber.js
+I, [2024-12-25T11:18:24.060738 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/templates/default/static/scripts/prettify/lang-css.js
+W, [2024-12-25T11:18:24.061539 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/templates/default/static/scripts/prettify/lang-css.js
+I, [2024-12-25T11:18:24.061575 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/templates/default/static/scripts/prettify/prettify.js
+W, [2024-12-25T11:18:24.062178 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/templates/default/static/scripts/prettify/prettify.js
+I, [2024-12-25T11:18:24.062260 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/templates/haruki/publish.js
+W, [2024-12-25T11:18:24.062945 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/templates/haruki/publish.js
+I, [2024-12-25T11:18:24.062978 #36268] INFO -- : Processing file: ../../node_modules/jsdoc/templates/silent/publish.js
+W, [2024-12-25T11:18:24.063627 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc/templates/silent/publish.js
+I, [2024-12-25T11:18:24.063663 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-api/index.js
+W, [2024-12-25T11:18:24.064073 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-api/index.js
+I, [2024-12-25T11:18:24.064106 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-api/lib/explain.js
+W, [2024-12-25T11:18:24.065138 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-api/lib/explain.js
+I, [2024-12-25T11:18:24.065173 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-api/lib/jsdoc-command.js
+W, [2024-12-25T11:18:24.065592 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-api/lib/jsdoc-command.js
+I, [2024-12-25T11:18:24.065620 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-api/lib/render.js
+W, [2024-12-25T11:18:24.065958 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-api/lib/render.js
+I, [2024-12-25T11:18:24.065985 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-api/lib/temp-file.js
+W, [2024-12-25T11:18:24.066931 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-api/lib/temp-file.js
+I, [2024-12-25T11:18:24.066998 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-parse/index.js
+W, [2024-12-25T11:18:24.067682 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-parse/index.js
+I, [2024-12-25T11:18:24.067716 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-parse/lib/transform.js
+W, [2024-12-25T11:18:24.068270 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-parse/lib/transform.js
+I, [2024-12-25T11:18:24.068303 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-to-markdown/bin/cli.js
+W, [2024-12-25T11:18:24.068619 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-to-markdown/bin/cli.js
+I, [2024-12-25T11:18:24.068656 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-to-markdown/index.js
+W, [2024-12-25T11:18:24.069165 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-to-markdown/index.js
+I, [2024-12-25T11:18:24.069198 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-to-markdown/lib/cli-data.js
+W, [2024-12-25T11:18:24.069550 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-to-markdown/lib/cli-data.js
+I, [2024-12-25T11:18:24.069585 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-to-markdown/lib/dmd-options.js
+W, [2024-12-25T11:18:24.069908 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-to-markdown/lib/dmd-options.js
+I, [2024-12-25T11:18:24.069942 #36268] INFO -- : Processing file: ../../node_modules/jsdoc-to-markdown/lib/jsdoc-options.js
+W, [2024-12-25T11:18:24.070387 #36268] WARN -- : Copyright string not found in ../../node_modules/jsdoc-to-markdown/lib/jsdoc-options.js
+I, [2024-12-25T11:18:24.070473 #36268] INFO -- : Processing file: ../../node_modules/klaw/src/index.js
+W, [2024-12-25T11:18:24.071257 #36268] WARN -- : Copyright string not found in ../../node_modules/klaw/src/index.js
+I, [2024-12-25T11:18:24.071650 #36268] INFO -- : Processing file: ../../node_modules/linkify-it/build/index.cjs.js
+W, [2024-12-25T11:18:24.073777 #36268] WARN -- : Copyright string not found in ../../node_modules/linkify-it/build/index.cjs.js
+I, [2024-12-25T11:18:24.073850 #36268] INFO -- : Processing file: ../../node_modules/lodash/_DataView.js
+W, [2024-12-25T11:18:24.074295 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_DataView.js
+I, [2024-12-25T11:18:24.074326 #36268] INFO -- : Processing file: ../../node_modules/lodash/_Hash.js
+W, [2024-12-25T11:18:24.074936 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_Hash.js
+I, [2024-12-25T11:18:24.075004 #36268] INFO -- : Processing file: ../../node_modules/lodash/_LazyWrapper.js
+W, [2024-12-25T11:18:24.075682 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_LazyWrapper.js
+I, [2024-12-25T11:18:24.075718 #36268] INFO -- : Processing file: ../../node_modules/lodash/_ListCache.js
+W, [2024-12-25T11:18:24.076272 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_ListCache.js
+I, [2024-12-25T11:18:24.076308 #36268] INFO -- : Processing file: ../../node_modules/lodash/_LodashWrapper.js
+W, [2024-12-25T11:18:24.076685 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_LodashWrapper.js
+I, [2024-12-25T11:18:24.076735 #36268] INFO -- : Processing file: ../../node_modules/lodash/_Map.js
+W, [2024-12-25T11:18:24.077230 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_Map.js
+I, [2024-12-25T11:18:24.077271 #36268] INFO -- : Processing file: ../../node_modules/lodash/_MapCache.js
+W, [2024-12-25T11:18:24.077666 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_MapCache.js
+I, [2024-12-25T11:18:24.077701 #36268] INFO -- : Processing file: ../../node_modules/lodash/_Promise.js
+W, [2024-12-25T11:18:24.080024 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_Promise.js
+I, [2024-12-25T11:18:24.080105 #36268] INFO -- : Processing file: ../../node_modules/lodash/_Set.js
+W, [2024-12-25T11:18:24.080873 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_Set.js
+I, [2024-12-25T11:18:24.080916 #36268] INFO -- : Processing file: ../../node_modules/lodash/_SetCache.js
+W, [2024-12-25T11:18:24.081532 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_SetCache.js
+I, [2024-12-25T11:18:24.081561 #36268] INFO -- : Processing file: ../../node_modules/lodash/_Stack.js
+W, [2024-12-25T11:18:24.082113 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_Stack.js
+I, [2024-12-25T11:18:24.082143 #36268] INFO -- : Processing file: ../../node_modules/lodash/_Symbol.js
+W, [2024-12-25T11:18:24.082663 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_Symbol.js
+I, [2024-12-25T11:18:24.082728 #36268] INFO -- : Processing file: ../../node_modules/lodash/_Uint8Array.js
+W, [2024-12-25T11:18:24.083382 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_Uint8Array.js
+I, [2024-12-25T11:18:24.083536 #36268] INFO -- : Processing file: ../../node_modules/lodash/_WeakMap.js
+W, [2024-12-25T11:18:24.083986 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_WeakMap.js
+I, [2024-12-25T11:18:24.084026 #36268] INFO -- : Processing file: ../../node_modules/lodash/_apply.js
+W, [2024-12-25T11:18:24.084564 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_apply.js
+I, [2024-12-25T11:18:24.084604 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayAggregator.js
+W, [2024-12-25T11:18:24.084921 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayAggregator.js
+I, [2024-12-25T11:18:24.084960 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayEach.js
+W, [2024-12-25T11:18:24.085484 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayEach.js
+I, [2024-12-25T11:18:24.085523 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayEachRight.js
+W, [2024-12-25T11:18:24.086059 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayEachRight.js
+I, [2024-12-25T11:18:24.086098 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayEvery.js
+W, [2024-12-25T11:18:24.086602 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayEvery.js
+I, [2024-12-25T11:18:24.086642 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayFilter.js
+W, [2024-12-25T11:18:24.087138 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayFilter.js
+I, [2024-12-25T11:18:24.087203 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayIncludes.js
+W, [2024-12-25T11:18:24.087794 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayIncludes.js
+I, [2024-12-25T11:18:24.087835 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayIncludesWith.js
+W, [2024-12-25T11:18:24.088302 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayIncludesWith.js
+I, [2024-12-25T11:18:24.088343 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayLikeKeys.js
+W, [2024-12-25T11:18:24.089230 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayLikeKeys.js
+I, [2024-12-25T11:18:24.089270 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayMap.js
+W, [2024-12-25T11:18:24.090004 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayMap.js
+I, [2024-12-25T11:18:24.090040 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayPush.js
+W, [2024-12-25T11:18:24.090661 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayPush.js
+I, [2024-12-25T11:18:24.090735 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayReduce.js
+W, [2024-12-25T11:18:24.091372 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayReduce.js
+I, [2024-12-25T11:18:24.091504 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayReduceRight.js
+W, [2024-12-25T11:18:24.092270 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayReduceRight.js
+I, [2024-12-25T11:18:24.092314 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arraySample.js
+W, [2024-12-25T11:18:24.092943 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arraySample.js
+I, [2024-12-25T11:18:24.092977 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arraySampleSize.js
+W, [2024-12-25T11:18:24.093634 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arraySampleSize.js
+I, [2024-12-25T11:18:24.093671 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arrayShuffle.js
+W, [2024-12-25T11:18:24.094540 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arrayShuffle.js
+I, [2024-12-25T11:18:24.094616 #36268] INFO -- : Processing file: ../../node_modules/lodash/_arraySome.js
+W, [2024-12-25T11:18:24.096779 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_arraySome.js
+I, [2024-12-25T11:18:24.096842 #36268] INFO -- : Processing file: ../../node_modules/lodash/_asciiSize.js
+W, [2024-12-25T11:18:24.097543 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_asciiSize.js
+I, [2024-12-25T11:18:24.097579 #36268] INFO -- : Processing file: ../../node_modules/lodash/_asciiToArray.js
+W, [2024-12-25T11:18:24.098192 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_asciiToArray.js
+I, [2024-12-25T11:18:24.098228 #36268] INFO -- : Processing file: ../../node_modules/lodash/_asciiWords.js
+W, [2024-12-25T11:18:24.098706 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_asciiWords.js
+I, [2024-12-25T11:18:24.098739 #36268] INFO -- : Processing file: ../../node_modules/lodash/_assignMergeValue.js
+W, [2024-12-25T11:18:24.099240 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_assignMergeValue.js
+I, [2024-12-25T11:18:24.099273 #36268] INFO -- : Processing file: ../../node_modules/lodash/_assignValue.js
+W, [2024-12-25T11:18:24.099759 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_assignValue.js
+I, [2024-12-25T11:18:24.099785 #36268] INFO -- : Processing file: ../../node_modules/lodash/_assocIndexOf.js
+W, [2024-12-25T11:18:24.100364 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_assocIndexOf.js
+I, [2024-12-25T11:18:24.100384 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseAggregator.js
+W, [2024-12-25T11:18:24.100862 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseAggregator.js
+I, [2024-12-25T11:18:24.100881 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseAssign.js
+W, [2024-12-25T11:18:24.101565 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseAssign.js
+I, [2024-12-25T11:18:24.101606 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseAssignIn.js
+W, [2024-12-25T11:18:24.101990 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseAssignIn.js
+I, [2024-12-25T11:18:24.102027 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseAssignValue.js
+W, [2024-12-25T11:18:24.102544 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseAssignValue.js
+I, [2024-12-25T11:18:24.102584 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseAt.js
+W, [2024-12-25T11:18:24.103064 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseAt.js
+I, [2024-12-25T11:18:24.103104 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseClamp.js
+W, [2024-12-25T11:18:24.103449 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseClamp.js
+I, [2024-12-25T11:18:24.103507 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseClone.js
+W, [2024-12-25T11:18:24.103870 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseClone.js
+I, [2024-12-25T11:18:24.103907 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseConforms.js
+W, [2024-12-25T11:18:24.104553 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseConforms.js
+I, [2024-12-25T11:18:24.104594 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseConformsTo.js
+W, [2024-12-25T11:18:24.105090 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseConformsTo.js
+I, [2024-12-25T11:18:24.105188 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseCreate.js
+W, [2024-12-25T11:18:24.106177 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseCreate.js
+I, [2024-12-25T11:18:24.106241 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseDelay.js
+W, [2024-12-25T11:18:24.107034 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseDelay.js
+I, [2024-12-25T11:18:24.107362 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseDifference.js
+W, [2024-12-25T11:18:24.108343 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseDifference.js
+I, [2024-12-25T11:18:24.108686 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseEach.js
+W, [2024-12-25T11:18:24.109260 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseEach.js
+I, [2024-12-25T11:18:24.110636 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseEachRight.js
+W, [2024-12-25T11:18:24.111759 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseEachRight.js
+I, [2024-12-25T11:18:24.112123 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseEvery.js
+W, [2024-12-25T11:18:24.113545 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseEvery.js
+I, [2024-12-25T11:18:24.114478 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseExtremum.js
+W, [2024-12-25T11:18:24.115257 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseExtremum.js
+I, [2024-12-25T11:18:24.115329 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseFill.js
+W, [2024-12-25T11:18:24.116387 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseFill.js
+I, [2024-12-25T11:18:24.116600 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseFilter.js
+W, [2024-12-25T11:18:24.117222 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseFilter.js
+I, [2024-12-25T11:18:24.117263 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseFindIndex.js
+W, [2024-12-25T11:18:24.117875 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseFindIndex.js
+I, [2024-12-25T11:18:24.117897 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseFindKey.js
+W, [2024-12-25T11:18:24.118530 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseFindKey.js
+I, [2024-12-25T11:18:24.118569 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseFlatten.js
+W, [2024-12-25T11:18:24.119156 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseFlatten.js
+I, [2024-12-25T11:18:24.119198 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseFor.js
+W, [2024-12-25T11:18:24.119531 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseFor.js
+I, [2024-12-25T11:18:24.119568 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseForOwn.js
+W, [2024-12-25T11:18:24.119939 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseForOwn.js
+I, [2024-12-25T11:18:24.119979 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseForOwnRight.js
+W, [2024-12-25T11:18:24.120331 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseForOwnRight.js
+I, [2024-12-25T11:18:24.120389 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseForRight.js
+W, [2024-12-25T11:18:24.120735 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseForRight.js
+I, [2024-12-25T11:18:24.120776 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseFunctions.js
+W, [2024-12-25T11:18:24.121323 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseFunctions.js
+I, [2024-12-25T11:18:24.121363 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseGet.js
+W, [2024-12-25T11:18:24.121906 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseGet.js
+I, [2024-12-25T11:18:24.121946 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseGetAllKeys.js
+W, [2024-12-25T11:18:24.122788 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseGetAllKeys.js
+I, [2024-12-25T11:18:24.122816 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseGetTag.js
+W, [2024-12-25T11:18:24.123203 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseGetTag.js
+I, [2024-12-25T11:18:24.123224 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseGt.js
+W, [2024-12-25T11:18:24.123534 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseGt.js
+I, [2024-12-25T11:18:24.123555 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseHas.js
+W, [2024-12-25T11:18:24.123850 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseHas.js
+I, [2024-12-25T11:18:24.123869 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseHasIn.js
+W, [2024-12-25T11:18:24.124215 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseHasIn.js
+I, [2024-12-25T11:18:24.124240 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseInRange.js
+W, [2024-12-25T11:18:24.124568 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseInRange.js
+I, [2024-12-25T11:18:24.124587 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIndexOf.js
+W, [2024-12-25T11:18:24.125156 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIndexOf.js
+I, [2024-12-25T11:18:24.125178 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIndexOfWith.js
+W, [2024-12-25T11:18:24.126130 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIndexOfWith.js
+I, [2024-12-25T11:18:24.126171 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIntersection.js
+W, [2024-12-25T11:18:24.127149 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIntersection.js
+I, [2024-12-25T11:18:24.127197 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseInverter.js
+W, [2024-12-25T11:18:24.127970 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseInverter.js
+I, [2024-12-25T11:18:24.128337 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseInvoke.js
+W, [2024-12-25T11:18:24.129229 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseInvoke.js
+I, [2024-12-25T11:18:24.129411 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsArguments.js
+W, [2024-12-25T11:18:24.130148 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsArguments.js
+I, [2024-12-25T11:18:24.130292 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsArrayBuffer.js
+W, [2024-12-25T11:18:24.130674 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsArrayBuffer.js
+I, [2024-12-25T11:18:24.130803 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsDate.js
+W, [2024-12-25T11:18:24.131141 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsDate.js
+I, [2024-12-25T11:18:24.131263 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsEqual.js
+W, [2024-12-25T11:18:24.131578 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsEqual.js
+I, [2024-12-25T11:18:24.131867 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsEqualDeep.js
+W, [2024-12-25T11:18:24.132173 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsEqualDeep.js
+I, [2024-12-25T11:18:24.132200 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsMap.js
+W, [2024-12-25T11:18:24.132724 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsMap.js
+I, [2024-12-25T11:18:24.132778 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsMatch.js
+W, [2024-12-25T11:18:24.133305 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsMatch.js
+I, [2024-12-25T11:18:24.133358 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsNaN.js
+W, [2024-12-25T11:18:24.133730 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsNaN.js
+I, [2024-12-25T11:18:24.133958 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsNative.js
+W, [2024-12-25T11:18:24.134273 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsNative.js
+I, [2024-12-25T11:18:24.134466 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsRegExp.js
+W, [2024-12-25T11:18:24.134775 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsRegExp.js
+I, [2024-12-25T11:18:24.134905 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsSet.js
+W, [2024-12-25T11:18:24.135233 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsSet.js
+I, [2024-12-25T11:18:24.135362 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIsTypedArray.js
+W, [2024-12-25T11:18:24.135715 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIsTypedArray.js
+I, [2024-12-25T11:18:24.135766 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseIteratee.js
+W, [2024-12-25T11:18:24.136053 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseIteratee.js
+I, [2024-12-25T11:18:24.136261 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseKeys.js
+W, [2024-12-25T11:18:24.136623 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseKeys.js
+I, [2024-12-25T11:18:24.136947 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseKeysIn.js
+W, [2024-12-25T11:18:24.137310 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseKeysIn.js
+I, [2024-12-25T11:18:24.137480 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseLodash.js
+W, [2024-12-25T11:18:24.138061 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseLodash.js
+I, [2024-12-25T11:18:24.138114 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseLt.js
+W, [2024-12-25T11:18:24.138903 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseLt.js
+I, [2024-12-25T11:18:24.139170 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseMap.js
+W, [2024-12-25T11:18:24.139690 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseMap.js
+I, [2024-12-25T11:18:24.139720 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseMatches.js
+W, [2024-12-25T11:18:24.140260 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseMatches.js
+I, [2024-12-25T11:18:24.140398 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseMatchesProperty.js
+W, [2024-12-25T11:18:24.141031 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseMatchesProperty.js
+I, [2024-12-25T11:18:24.141167 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseMean.js
+W, [2024-12-25T11:18:24.141699 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseMean.js
+I, [2024-12-25T11:18:24.141779 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseMerge.js
+W, [2024-12-25T11:18:24.142549 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseMerge.js
+I, [2024-12-25T11:18:24.142613 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseMergeDeep.js
+W, [2024-12-25T11:18:24.143119 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseMergeDeep.js
+I, [2024-12-25T11:18:24.143255 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseNth.js
+W, [2024-12-25T11:18:24.143889 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseNth.js
+I, [2024-12-25T11:18:24.144100 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseOrderBy.js
+W, [2024-12-25T11:18:24.144732 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseOrderBy.js
+I, [2024-12-25T11:18:24.144776 #36268] INFO -- : Processing file: ../../node_modules/lodash/_basePick.js
+W, [2024-12-25T11:18:24.145418 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_basePick.js
+I, [2024-12-25T11:18:24.145818 #36268] INFO -- : Processing file: ../../node_modules/lodash/_basePickBy.js
+W, [2024-12-25T11:18:24.146392 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_basePickBy.js
+I, [2024-12-25T11:18:24.146694 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseProperty.js
+W, [2024-12-25T11:18:24.147089 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseProperty.js
+I, [2024-12-25T11:18:24.147119 #36268] INFO -- : Processing file: ../../node_modules/lodash/_basePropertyDeep.js
+W, [2024-12-25T11:18:24.148026 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_basePropertyDeep.js
+I, [2024-12-25T11:18:24.148061 #36268] INFO -- : Processing file: ../../node_modules/lodash/_basePropertyOf.js
+W, [2024-12-25T11:18:24.149476 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_basePropertyOf.js
+I, [2024-12-25T11:18:24.149594 #36268] INFO -- : Processing file: ../../node_modules/lodash/_basePullAll.js
+W, [2024-12-25T11:18:24.150038 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_basePullAll.js
+I, [2024-12-25T11:18:24.150192 #36268] INFO -- : Processing file: ../../node_modules/lodash/_basePullAt.js
+W, [2024-12-25T11:18:24.150550 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_basePullAt.js
+I, [2024-12-25T11:18:24.150679 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseRandom.js
+W, [2024-12-25T11:18:24.150990 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseRandom.js
+I, [2024-12-25T11:18:24.151114 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseRange.js
+W, [2024-12-25T11:18:24.151453 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseRange.js
+I, [2024-12-25T11:18:24.151581 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseReduce.js
+W, [2024-12-25T11:18:24.152093 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseReduce.js
+I, [2024-12-25T11:18:24.152142 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseRepeat.js
+W, [2024-12-25T11:18:24.152632 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseRepeat.js
+I, [2024-12-25T11:18:24.152970 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseRest.js
+W, [2024-12-25T11:18:24.153304 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseRest.js
+I, [2024-12-25T11:18:24.153363 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSample.js
+W, [2024-12-25T11:18:24.153736 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSample.js
+I, [2024-12-25T11:18:24.153835 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSampleSize.js
+W, [2024-12-25T11:18:24.154309 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSampleSize.js
+I, [2024-12-25T11:18:24.154535 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSet.js
+W, [2024-12-25T11:18:24.155057 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSet.js
+I, [2024-12-25T11:18:24.155089 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSetData.js
+W, [2024-12-25T11:18:24.155386 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSetData.js
+I, [2024-12-25T11:18:24.155496 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSetToString.js
+W, [2024-12-25T11:18:24.155859 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSetToString.js
+I, [2024-12-25T11:18:24.155992 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseShuffle.js
+W, [2024-12-25T11:18:24.156372 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseShuffle.js
+I, [2024-12-25T11:18:24.156599 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSlice.js
+W, [2024-12-25T11:18:24.156995 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSlice.js
+I, [2024-12-25T11:18:24.157048 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSome.js
+W, [2024-12-25T11:18:24.157795 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSome.js
+I, [2024-12-25T11:18:24.157836 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSortBy.js
+W, [2024-12-25T11:18:24.158281 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSortBy.js
+I, [2024-12-25T11:18:24.158312 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSortedIndex.js
+W, [2024-12-25T11:18:24.158893 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSortedIndex.js
+I, [2024-12-25T11:18:24.158924 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSortedIndexBy.js
+W, [2024-12-25T11:18:24.159476 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSortedIndexBy.js
+I, [2024-12-25T11:18:24.159662 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSortedUniq.js
+W, [2024-12-25T11:18:24.160091 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSortedUniq.js
+I, [2024-12-25T11:18:24.160127 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseSum.js
+W, [2024-12-25T11:18:24.160818 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseSum.js
+I, [2024-12-25T11:18:24.161022 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseTimes.js
+W, [2024-12-25T11:18:24.161775 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseTimes.js
+I, [2024-12-25T11:18:24.161847 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseToNumber.js
+W, [2024-12-25T11:18:24.162442 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseToNumber.js
+I, [2024-12-25T11:18:24.162555 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseToPairs.js
+W, [2024-12-25T11:18:24.163581 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseToPairs.js
+I, [2024-12-25T11:18:24.163634 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseToString.js
+W, [2024-12-25T11:18:24.164156 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseToString.js
+I, [2024-12-25T11:18:24.164904 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseTrim.js
+W, [2024-12-25T11:18:24.165696 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseTrim.js
+I, [2024-12-25T11:18:24.165749 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseUnary.js
+W, [2024-12-25T11:18:24.166154 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseUnary.js
+I, [2024-12-25T11:18:24.166302 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseUniq.js
+W, [2024-12-25T11:18:24.166674 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseUniq.js
+I, [2024-12-25T11:18:24.166802 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseUnset.js
+W, [2024-12-25T11:18:24.167132 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseUnset.js
+I, [2024-12-25T11:18:24.167182 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseUpdate.js
+W, [2024-12-25T11:18:24.167533 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseUpdate.js
+I, [2024-12-25T11:18:24.167756 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseValues.js
+W, [2024-12-25T11:18:24.168300 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseValues.js
+I, [2024-12-25T11:18:24.168463 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseWhile.js
+W, [2024-12-25T11:18:24.169070 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseWhile.js
+I, [2024-12-25T11:18:24.169135 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseWrapperValue.js
+W, [2024-12-25T11:18:24.169506 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseWrapperValue.js
+I, [2024-12-25T11:18:24.169799 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseXor.js
+W, [2024-12-25T11:18:24.170168 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseXor.js
+I, [2024-12-25T11:18:24.170295 #36268] INFO -- : Processing file: ../../node_modules/lodash/_baseZipObject.js
+W, [2024-12-25T11:18:24.170657 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_baseZipObject.js
+I, [2024-12-25T11:18:24.170792 #36268] INFO -- : Processing file: ../../node_modules/lodash/_cacheHas.js
+W, [2024-12-25T11:18:24.171126 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_cacheHas.js
+I, [2024-12-25T11:18:24.171179 #36268] INFO -- : Processing file: ../../node_modules/lodash/_castArrayLikeObject.js
+W, [2024-12-25T11:18:24.171541 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_castArrayLikeObject.js
+I, [2024-12-25T11:18:24.171669 #36268] INFO -- : Processing file: ../../node_modules/lodash/_castFunction.js
+W, [2024-12-25T11:18:24.172003 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_castFunction.js
+I, [2024-12-25T11:18:24.172130 #36268] INFO -- : Processing file: ../../node_modules/lodash/_castPath.js
+W, [2024-12-25T11:18:24.172483 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_castPath.js
+I, [2024-12-25T11:18:24.172510 #36268] INFO -- : Processing file: ../../node_modules/lodash/_castRest.js
+W, [2024-12-25T11:18:24.172775 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_castRest.js
+I, [2024-12-25T11:18:24.172801 #36268] INFO -- : Processing file: ../../node_modules/lodash/_castSlice.js
+W, [2024-12-25T11:18:24.173138 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_castSlice.js
+I, [2024-12-25T11:18:24.173188 #36268] INFO -- : Processing file: ../../node_modules/lodash/_charsEndIndex.js
+W, [2024-12-25T11:18:24.173826 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_charsEndIndex.js
+I, [2024-12-25T11:18:24.173854 #36268] INFO -- : Processing file: ../../node_modules/lodash/_charsStartIndex.js
+W, [2024-12-25T11:18:24.174292 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_charsStartIndex.js
+I, [2024-12-25T11:18:24.174335 #36268] INFO -- : Processing file: ../../node_modules/lodash/_cloneArrayBuffer.js
+W, [2024-12-25T11:18:24.174924 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_cloneArrayBuffer.js
+I, [2024-12-25T11:18:24.175118 #36268] INFO -- : Processing file: ../../node_modules/lodash/_cloneBuffer.js
+W, [2024-12-25T11:18:24.175655 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_cloneBuffer.js
+I, [2024-12-25T11:18:24.175795 #36268] INFO -- : Processing file: ../../node_modules/lodash/_cloneDataView.js
+W, [2024-12-25T11:18:24.176276 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_cloneDataView.js
+I, [2024-12-25T11:18:24.176475 #36268] INFO -- : Processing file: ../../node_modules/lodash/_cloneRegExp.js
+W, [2024-12-25T11:18:24.176931 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_cloneRegExp.js
+I, [2024-12-25T11:18:24.177194 #36268] INFO -- : Processing file: ../../node_modules/lodash/_cloneSymbol.js
+W, [2024-12-25T11:18:24.177758 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_cloneSymbol.js
+I, [2024-12-25T11:18:24.177798 #36268] INFO -- : Processing file: ../../node_modules/lodash/_cloneTypedArray.js
+W, [2024-12-25T11:18:24.178503 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_cloneTypedArray.js
+I, [2024-12-25T11:18:24.179058 #36268] INFO -- : Processing file: ../../node_modules/lodash/_compareAscending.js
+W, [2024-12-25T11:18:24.179848 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_compareAscending.js
+I, [2024-12-25T11:18:24.179903 #36268] INFO -- : Processing file: ../../node_modules/lodash/_compareMultiple.js
+W, [2024-12-25T11:18:24.180377 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_compareMultiple.js
+I, [2024-12-25T11:18:24.180502 #36268] INFO -- : Processing file: ../../node_modules/lodash/_composeArgs.js
+W, [2024-12-25T11:18:24.181259 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_composeArgs.js
+I, [2024-12-25T11:18:24.181347 #36268] INFO -- : Processing file: ../../node_modules/lodash/_composeArgsRight.js
+W, [2024-12-25T11:18:24.181753 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_composeArgsRight.js
+I, [2024-12-25T11:18:24.181834 #36268] INFO -- : Processing file: ../../node_modules/lodash/_copyArray.js
+W, [2024-12-25T11:18:24.182118 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_copyArray.js
+I, [2024-12-25T11:18:24.182191 #36268] INFO -- : Processing file: ../../node_modules/lodash/_copyObject.js
+W, [2024-12-25T11:18:24.182585 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_copyObject.js
+I, [2024-12-25T11:18:24.182634 #36268] INFO -- : Processing file: ../../node_modules/lodash/_copySymbols.js
+W, [2024-12-25T11:18:24.182954 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_copySymbols.js
+I, [2024-12-25T11:18:24.182998 #36268] INFO -- : Processing file: ../../node_modules/lodash/_copySymbolsIn.js
+W, [2024-12-25T11:18:24.183346 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_copySymbolsIn.js
+I, [2024-12-25T11:18:24.183463 #36268] INFO -- : Processing file: ../../node_modules/lodash/_coreJsData.js
+W, [2024-12-25T11:18:24.183926 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_coreJsData.js
+I, [2024-12-25T11:18:24.184000 #36268] INFO -- : Processing file: ../../node_modules/lodash/_countHolders.js
+W, [2024-12-25T11:18:24.184296 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_countHolders.js
+I, [2024-12-25T11:18:24.184380 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createAggregator.js
+W, [2024-12-25T11:18:24.184987 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createAggregator.js
+I, [2024-12-25T11:18:24.185082 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createAssigner.js
+W, [2024-12-25T11:18:24.185476 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createAssigner.js
+I, [2024-12-25T11:18:24.185541 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createBaseEach.js
+W, [2024-12-25T11:18:24.185904 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createBaseEach.js
+I, [2024-12-25T11:18:24.185973 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createBaseFor.js
+W, [2024-12-25T11:18:24.186304 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createBaseFor.js
+I, [2024-12-25T11:18:24.186377 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createBind.js
+W, [2024-12-25T11:18:24.186744 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createBind.js
+I, [2024-12-25T11:18:24.186822 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createCaseFirst.js
+W, [2024-12-25T11:18:24.187153 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createCaseFirst.js
+I, [2024-12-25T11:18:24.187229 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createCompounder.js
+W, [2024-12-25T11:18:24.187653 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createCompounder.js
+I, [2024-12-25T11:18:24.187672 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createCtor.js
+W, [2024-12-25T11:18:24.187983 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createCtor.js
+I, [2024-12-25T11:18:24.188092 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createCurry.js
+W, [2024-12-25T11:18:24.188920 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createCurry.js
+I, [2024-12-25T11:18:24.188945 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createFind.js
+W, [2024-12-25T11:18:24.191672 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createFind.js
+I, [2024-12-25T11:18:24.191747 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createFlow.js
+W, [2024-12-25T11:18:24.192210 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createFlow.js
+I, [2024-12-25T11:18:24.192246 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createHybrid.js
+W, [2024-12-25T11:18:24.192723 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createHybrid.js
+I, [2024-12-25T11:18:24.192764 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createInverter.js
+W, [2024-12-25T11:18:24.193192 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createInverter.js
+I, [2024-12-25T11:18:24.193234 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createMathOperation.js
+W, [2024-12-25T11:18:24.193886 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createMathOperation.js
+I, [2024-12-25T11:18:24.193940 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createOver.js
+W, [2024-12-25T11:18:24.194642 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createOver.js
+I, [2024-12-25T11:18:24.194683 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createPadding.js
+W, [2024-12-25T11:18:24.195277 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createPadding.js
+I, [2024-12-25T11:18:24.195319 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createPartial.js
+W, [2024-12-25T11:18:24.196141 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createPartial.js
+I, [2024-12-25T11:18:24.196484 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createRange.js
+W, [2024-12-25T11:18:24.198077 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createRange.js
+I, [2024-12-25T11:18:24.198182 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createRecurry.js
+W, [2024-12-25T11:18:24.198960 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createRecurry.js
+I, [2024-12-25T11:18:24.198998 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createRelationalOperation.js
+W, [2024-12-25T11:18:24.199530 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createRelationalOperation.js
+I, [2024-12-25T11:18:24.200083 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createRound.js
+W, [2024-12-25T11:18:24.200489 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createRound.js
+I, [2024-12-25T11:18:24.200522 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createSet.js
+W, [2024-12-25T11:18:24.200805 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createSet.js
+I, [2024-12-25T11:18:24.200831 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createToPairs.js
+W, [2024-12-25T11:18:24.201611 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createToPairs.js
+I, [2024-12-25T11:18:24.201651 #36268] INFO -- : Processing file: ../../node_modules/lodash/_createWrap.js
+W, [2024-12-25T11:18:24.201980 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_createWrap.js
+I, [2024-12-25T11:18:24.202009 #36268] INFO -- : Processing file: ../../node_modules/lodash/_customDefaultsAssignIn.js
+W, [2024-12-25T11:18:24.202388 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_customDefaultsAssignIn.js
+I, [2024-12-25T11:18:24.202475 #36268] INFO -- : Processing file: ../../node_modules/lodash/_customDefaultsMerge.js
+W, [2024-12-25T11:18:24.202769 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_customDefaultsMerge.js
+I, [2024-12-25T11:18:24.202802 #36268] INFO -- : Processing file: ../../node_modules/lodash/_customOmitClone.js
+W, [2024-12-25T11:18:24.203089 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_customOmitClone.js
+I, [2024-12-25T11:18:24.203231 #36268] INFO -- : Processing file: ../../node_modules/lodash/_deburrLetter.js
+W, [2024-12-25T11:18:24.203505 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_deburrLetter.js
+I, [2024-12-25T11:18:24.203524 #36268] INFO -- : Processing file: ../../node_modules/lodash/_defineProperty.js
+W, [2024-12-25T11:18:24.203940 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_defineProperty.js
+I, [2024-12-25T11:18:24.203959 #36268] INFO -- : Processing file: ../../node_modules/lodash/_equalArrays.js
+W, [2024-12-25T11:18:24.204370 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_equalArrays.js
+I, [2024-12-25T11:18:24.204389 #36268] INFO -- : Processing file: ../../node_modules/lodash/_equalByTag.js
+W, [2024-12-25T11:18:24.204713 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_equalByTag.js
+I, [2024-12-25T11:18:24.204731 #36268] INFO -- : Processing file: ../../node_modules/lodash/_equalObjects.js
+W, [2024-12-25T11:18:24.204975 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_equalObjects.js
+I, [2024-12-25T11:18:24.204994 #36268] INFO -- : Processing file: ../../node_modules/lodash/_escapeHtmlChar.js
+W, [2024-12-25T11:18:24.205232 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_escapeHtmlChar.js
+I, [2024-12-25T11:18:24.205250 #36268] INFO -- : Processing file: ../../node_modules/lodash/_escapeStringChar.js
+W, [2024-12-25T11:18:24.205514 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_escapeStringChar.js
+I, [2024-12-25T11:18:24.205534 #36268] INFO -- : Processing file: ../../node_modules/lodash/_flatRest.js
+W, [2024-12-25T11:18:24.207811 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_flatRest.js
+I, [2024-12-25T11:18:24.207950 #36268] INFO -- : Processing file: ../../node_modules/lodash/_freeGlobal.js
+W, [2024-12-25T11:18:24.208601 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_freeGlobal.js
+I, [2024-12-25T11:18:24.208668 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getAllKeys.js
+W, [2024-12-25T11:18:24.209101 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getAllKeys.js
+I, [2024-12-25T11:18:24.209136 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getAllKeysIn.js
+W, [2024-12-25T11:18:24.209644 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getAllKeysIn.js
+I, [2024-12-25T11:18:24.209680 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getData.js
+W, [2024-12-25T11:18:24.210101 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getData.js
+I, [2024-12-25T11:18:24.210121 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getFuncName.js
+W, [2024-12-25T11:18:24.210568 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getFuncName.js
+I, [2024-12-25T11:18:24.210632 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getHolder.js
+W, [2024-12-25T11:18:24.211065 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getHolder.js
+I, [2024-12-25T11:18:24.211090 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getMapData.js
+W, [2024-12-25T11:18:24.212747 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getMapData.js
+I, [2024-12-25T11:18:24.212781 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getMatchData.js
+W, [2024-12-25T11:18:24.213623 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getMatchData.js
+I, [2024-12-25T11:18:24.213675 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getNative.js
+W, [2024-12-25T11:18:24.214242 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getNative.js
+I, [2024-12-25T11:18:24.214281 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getPrototype.js
+W, [2024-12-25T11:18:24.215207 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getPrototype.js
+I, [2024-12-25T11:18:24.215252 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getRawTag.js
+W, [2024-12-25T11:18:24.215881 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getRawTag.js
+I, [2024-12-25T11:18:24.215925 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getSymbols.js
+W, [2024-12-25T11:18:24.216729 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getSymbols.js
+I, [2024-12-25T11:18:24.216769 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getSymbolsIn.js
+W, [2024-12-25T11:18:24.217204 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getSymbolsIn.js
+I, [2024-12-25T11:18:24.217239 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getTag.js
+W, [2024-12-25T11:18:24.217574 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getTag.js
+I, [2024-12-25T11:18:24.217609 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getValue.js
+W, [2024-12-25T11:18:24.218091 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getValue.js
+I, [2024-12-25T11:18:24.218125 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getView.js
+W, [2024-12-25T11:18:24.218537 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getView.js
+I, [2024-12-25T11:18:24.218570 #36268] INFO -- : Processing file: ../../node_modules/lodash/_getWrapDetails.js
+W, [2024-12-25T11:18:24.219067 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_getWrapDetails.js
+I, [2024-12-25T11:18:24.219100 #36268] INFO -- : Processing file: ../../node_modules/lodash/_hasPath.js
+W, [2024-12-25T11:18:24.219399 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_hasPath.js
+I, [2024-12-25T11:18:24.219516 #36268] INFO -- : Processing file: ../../node_modules/lodash/_hasUnicode.js
+W, [2024-12-25T11:18:24.219990 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_hasUnicode.js
+I, [2024-12-25T11:18:24.220023 #36268] INFO -- : Processing file: ../../node_modules/lodash/_hasUnicodeWord.js
+W, [2024-12-25T11:18:24.220485 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_hasUnicodeWord.js
+I, [2024-12-25T11:18:24.220518 #36268] INFO -- : Processing file: ../../node_modules/lodash/_hashClear.js
+W, [2024-12-25T11:18:24.220802 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_hashClear.js
+I, [2024-12-25T11:18:24.220834 #36268] INFO -- : Processing file: ../../node_modules/lodash/_hashDelete.js
+W, [2024-12-25T11:18:24.221109 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_hashDelete.js
+I, [2024-12-25T11:18:24.221141 #36268] INFO -- : Processing file: ../../node_modules/lodash/_hashGet.js
+W, [2024-12-25T11:18:24.221461 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_hashGet.js
+I, [2024-12-25T11:18:24.221487 #36268] INFO -- : Processing file: ../../node_modules/lodash/_hashHas.js
+W, [2024-12-25T11:18:24.221752 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_hashHas.js
+I, [2024-12-25T11:18:24.221770 #36268] INFO -- : Processing file: ../../node_modules/lodash/_hashSet.js
+W, [2024-12-25T11:18:24.222037 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_hashSet.js
+I, [2024-12-25T11:18:24.222055 #36268] INFO -- : Processing file: ../../node_modules/lodash/_initCloneArray.js
+W, [2024-12-25T11:18:24.222295 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_initCloneArray.js
+I, [2024-12-25T11:18:24.222314 #36268] INFO -- : Processing file: ../../node_modules/lodash/_initCloneByTag.js
+W, [2024-12-25T11:18:24.222611 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_initCloneByTag.js
+I, [2024-12-25T11:18:24.222631 #36268] INFO -- : Processing file: ../../node_modules/lodash/_initCloneObject.js
+W, [2024-12-25T11:18:24.222909 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_initCloneObject.js
+I, [2024-12-25T11:18:24.222928 #36268] INFO -- : Processing file: ../../node_modules/lodash/_insertWrapDetails.js
+W, [2024-12-25T11:18:24.223189 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_insertWrapDetails.js
+I, [2024-12-25T11:18:24.223207 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isFlattenable.js
+W, [2024-12-25T11:18:24.223680 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isFlattenable.js
+I, [2024-12-25T11:18:24.224024 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isIndex.js
+W, [2024-12-25T11:18:24.224742 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isIndex.js
+I, [2024-12-25T11:18:24.224778 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isIterateeCall.js
+W, [2024-12-25T11:18:24.225225 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isIterateeCall.js
+I, [2024-12-25T11:18:24.225263 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isKey.js
+W, [2024-12-25T11:18:24.225672 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isKey.js
+I, [2024-12-25T11:18:24.225701 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isKeyable.js
+W, [2024-12-25T11:18:24.226058 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isKeyable.js
+I, [2024-12-25T11:18:24.226078 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isLaziable.js
+W, [2024-12-25T11:18:24.226514 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isLaziable.js
+I, [2024-12-25T11:18:24.226554 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isMaskable.js
+W, [2024-12-25T11:18:24.226930 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isMaskable.js
+I, [2024-12-25T11:18:24.226956 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isMasked.js
+W, [2024-12-25T11:18:24.227532 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isMasked.js
+I, [2024-12-25T11:18:24.227575 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isPrototype.js
+W, [2024-12-25T11:18:24.228077 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isPrototype.js
+I, [2024-12-25T11:18:24.228104 #36268] INFO -- : Processing file: ../../node_modules/lodash/_isStrictComparable.js
+W, [2024-12-25T11:18:24.228541 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_isStrictComparable.js
+I, [2024-12-25T11:18:24.228603 #36268] INFO -- : Processing file: ../../node_modules/lodash/_iteratorToArray.js
+W, [2024-12-25T11:18:24.229691 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_iteratorToArray.js
+I, [2024-12-25T11:18:24.229745 #36268] INFO -- : Processing file: ../../node_modules/lodash/_lazyClone.js
+W, [2024-12-25T11:18:24.230284 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_lazyClone.js
+I, [2024-12-25T11:18:24.230313 #36268] INFO -- : Processing file: ../../node_modules/lodash/_lazyReverse.js
+W, [2024-12-25T11:18:24.230685 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_lazyReverse.js
+I, [2024-12-25T11:18:24.230720 #36268] INFO -- : Processing file: ../../node_modules/lodash/_lazyValue.js
+W, [2024-12-25T11:18:24.231075 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_lazyValue.js
+I, [2024-12-25T11:18:24.231109 #36268] INFO -- : Processing file: ../../node_modules/lodash/_listCacheClear.js
+W, [2024-12-25T11:18:24.231563 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_listCacheClear.js
+I, [2024-12-25T11:18:24.231595 #36268] INFO -- : Processing file: ../../node_modules/lodash/_listCacheDelete.js
+W, [2024-12-25T11:18:24.232294 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_listCacheDelete.js
+I, [2024-12-25T11:18:24.232343 #36268] INFO -- : Processing file: ../../node_modules/lodash/_listCacheGet.js
+W, [2024-12-25T11:18:24.232949 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_listCacheGet.js
+I, [2024-12-25T11:18:24.233021 #36268] INFO -- : Processing file: ../../node_modules/lodash/_listCacheHas.js
+W, [2024-12-25T11:18:24.233497 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_listCacheHas.js
+I, [2024-12-25T11:18:24.233531 #36268] INFO -- : Processing file: ../../node_modules/lodash/_listCacheSet.js
+W, [2024-12-25T11:18:24.233895 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_listCacheSet.js
+I, [2024-12-25T11:18:24.233923 #36268] INFO -- : Processing file: ../../node_modules/lodash/_mapCacheClear.js
+W, [2024-12-25T11:18:24.234297 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_mapCacheClear.js
+I, [2024-12-25T11:18:24.234335 #36268] INFO -- : Processing file: ../../node_modules/lodash/_mapCacheDelete.js
+W, [2024-12-25T11:18:24.234737 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_mapCacheDelete.js
+I, [2024-12-25T11:18:24.234771 #36268] INFO -- : Processing file: ../../node_modules/lodash/_mapCacheGet.js
+W, [2024-12-25T11:18:24.235086 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_mapCacheGet.js
+I, [2024-12-25T11:18:24.235120 #36268] INFO -- : Processing file: ../../node_modules/lodash/_mapCacheHas.js
+W, [2024-12-25T11:18:24.235443 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_mapCacheHas.js
+I, [2024-12-25T11:18:24.235469 #36268] INFO -- : Processing file: ../../node_modules/lodash/_mapCacheSet.js
+W, [2024-12-25T11:18:24.235749 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_mapCacheSet.js
+I, [2024-12-25T11:18:24.235767 #36268] INFO -- : Processing file: ../../node_modules/lodash/_mapToArray.js
+W, [2024-12-25T11:18:24.236230 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_mapToArray.js
+I, [2024-12-25T11:18:24.236248 #36268] INFO -- : Processing file: ../../node_modules/lodash/_matchesStrictComparable.js
+W, [2024-12-25T11:18:24.236652 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_matchesStrictComparable.js
+I, [2024-12-25T11:18:24.236671 #36268] INFO -- : Processing file: ../../node_modules/lodash/_memoizeCapped.js
+W, [2024-12-25T11:18:24.236926 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_memoizeCapped.js
+I, [2024-12-25T11:18:24.236947 #36268] INFO -- : Processing file: ../../node_modules/lodash/_mergeData.js
+W, [2024-12-25T11:18:24.237199 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_mergeData.js
+I, [2024-12-25T11:18:24.237219 #36268] INFO -- : Processing file: ../../node_modules/lodash/_metaMap.js
+W, [2024-12-25T11:18:24.237489 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_metaMap.js
+I, [2024-12-25T11:18:24.237507 #36268] INFO -- : Processing file: ../../node_modules/lodash/_nativeCreate.js
+W, [2024-12-25T11:18:24.237696 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_nativeCreate.js
+I, [2024-12-25T11:18:24.237714 #36268] INFO -- : Processing file: ../../node_modules/lodash/_nativeKeys.js
+W, [2024-12-25T11:18:24.237969 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_nativeKeys.js
+I, [2024-12-25T11:18:24.237987 #36268] INFO -- : Processing file: ../../node_modules/lodash/_nativeKeysIn.js
+W, [2024-12-25T11:18:24.238240 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_nativeKeysIn.js
+I, [2024-12-25T11:18:24.238259 #36268] INFO -- : Processing file: ../../node_modules/lodash/_nodeUtil.js
+W, [2024-12-25T11:18:24.238471 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_nodeUtil.js
+I, [2024-12-25T11:18:24.238489 #36268] INFO -- : Processing file: ../../node_modules/lodash/_objectToString.js
+W, [2024-12-25T11:18:24.238763 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_objectToString.js
+I, [2024-12-25T11:18:24.238790 #36268] INFO -- : Processing file: ../../node_modules/lodash/_overArg.js
+W, [2024-12-25T11:18:24.239182 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_overArg.js
+I, [2024-12-25T11:18:24.239215 #36268] INFO -- : Processing file: ../../node_modules/lodash/_overRest.js
+W, [2024-12-25T11:18:24.239684 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_overRest.js
+I, [2024-12-25T11:18:24.239710 #36268] INFO -- : Processing file: ../../node_modules/lodash/_parent.js
+W, [2024-12-25T11:18:24.240130 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_parent.js
+I, [2024-12-25T11:18:24.240164 #36268] INFO -- : Processing file: ../../node_modules/lodash/_reEscape.js
+W, [2024-12-25T11:18:24.240565 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_reEscape.js
+I, [2024-12-25T11:18:24.240600 #36268] INFO -- : Processing file: ../../node_modules/lodash/_reEvaluate.js
+W, [2024-12-25T11:18:24.241029 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_reEvaluate.js
+I, [2024-12-25T11:18:24.241062 #36268] INFO -- : Processing file: ../../node_modules/lodash/_reInterpolate.js
+W, [2024-12-25T11:18:24.241478 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_reInterpolate.js
+I, [2024-12-25T11:18:24.241526 #36268] INFO -- : Processing file: ../../node_modules/lodash/_realNames.js
+W, [2024-12-25T11:18:24.241984 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_realNames.js
+I, [2024-12-25T11:18:24.242050 #36268] INFO -- : Processing file: ../../node_modules/lodash/_reorder.js
+W, [2024-12-25T11:18:24.242495 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_reorder.js
+I, [2024-12-25T11:18:24.242530 #36268] INFO -- : Processing file: ../../node_modules/lodash/_replaceHolders.js
+W, [2024-12-25T11:18:24.242866 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_replaceHolders.js
+I, [2024-12-25T11:18:24.242888 #36268] INFO -- : Processing file: ../../node_modules/lodash/_root.js
+W, [2024-12-25T11:18:24.243245 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_root.js
+I, [2024-12-25T11:18:24.243267 #36268] INFO -- : Processing file: ../../node_modules/lodash/_safeGet.js
+W, [2024-12-25T11:18:24.243685 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_safeGet.js
+I, [2024-12-25T11:18:24.243765 #36268] INFO -- : Processing file: ../../node_modules/lodash/_setCacheAdd.js
+W, [2024-12-25T11:18:24.244276 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_setCacheAdd.js
+I, [2024-12-25T11:18:24.244320 #36268] INFO -- : Processing file: ../../node_modules/lodash/_setCacheHas.js
+W, [2024-12-25T11:18:24.244998 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_setCacheHas.js
+I, [2024-12-25T11:18:24.245093 #36268] INFO -- : Processing file: ../../node_modules/lodash/_setData.js
+W, [2024-12-25T11:18:24.245748 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_setData.js
+I, [2024-12-25T11:18:24.245792 #36268] INFO -- : Processing file: ../../node_modules/lodash/_setToArray.js
+W, [2024-12-25T11:18:24.246345 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_setToArray.js
+I, [2024-12-25T11:18:24.246598 #36268] INFO -- : Processing file: ../../node_modules/lodash/_setToPairs.js
+W, [2024-12-25T11:18:24.247504 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_setToPairs.js
+I, [2024-12-25T11:18:24.247548 #36268] INFO -- : Processing file: ../../node_modules/lodash/_setToString.js
+W, [2024-12-25T11:18:24.248158 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_setToString.js
+I, [2024-12-25T11:18:24.248201 #36268] INFO -- : Processing file: ../../node_modules/lodash/_setWrapToString.js
+W, [2024-12-25T11:18:24.249043 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_setWrapToString.js
+I, [2024-12-25T11:18:24.249089 #36268] INFO -- : Processing file: ../../node_modules/lodash/_shortOut.js
+W, [2024-12-25T11:18:24.249742 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_shortOut.js
+I, [2024-12-25T11:18:24.249776 #36268] INFO -- : Processing file: ../../node_modules/lodash/_shuffleSelf.js
+W, [2024-12-25T11:18:24.250265 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_shuffleSelf.js
+I, [2024-12-25T11:18:24.250298 #36268] INFO -- : Processing file: ../../node_modules/lodash/_stackClear.js
+W, [2024-12-25T11:18:24.250630 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_stackClear.js
+I, [2024-12-25T11:18:24.250665 #36268] INFO -- : Processing file: ../../node_modules/lodash/_stackDelete.js
+W, [2024-12-25T11:18:24.250966 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_stackDelete.js
+I, [2024-12-25T11:18:24.250999 #36268] INFO -- : Processing file: ../../node_modules/lodash/_stackGet.js
+W, [2024-12-25T11:18:24.251278 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_stackGet.js
+I, [2024-12-25T11:18:24.251311 #36268] INFO -- : Processing file: ../../node_modules/lodash/_stackHas.js
+W, [2024-12-25T11:18:24.251630 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_stackHas.js
+I, [2024-12-25T11:18:24.251665 #36268] INFO -- : Processing file: ../../node_modules/lodash/_stackSet.js
+W, [2024-12-25T11:18:24.251962 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_stackSet.js
+I, [2024-12-25T11:18:24.251995 #36268] INFO -- : Processing file: ../../node_modules/lodash/_strictIndexOf.js
+W, [2024-12-25T11:18:24.252269 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_strictIndexOf.js
+I, [2024-12-25T11:18:24.252302 #36268] INFO -- : Processing file: ../../node_modules/lodash/_strictLastIndexOf.js
+W, [2024-12-25T11:18:24.252656 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_strictLastIndexOf.js
+I, [2024-12-25T11:18:24.252689 #36268] INFO -- : Processing file: ../../node_modules/lodash/_stringSize.js
+W, [2024-12-25T11:18:24.252973 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_stringSize.js
+I, [2024-12-25T11:18:24.253006 #36268] INFO -- : Processing file: ../../node_modules/lodash/_stringToArray.js
+W, [2024-12-25T11:18:24.253291 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_stringToArray.js
+I, [2024-12-25T11:18:24.253325 #36268] INFO -- : Processing file: ../../node_modules/lodash/_stringToPath.js
+W, [2024-12-25T11:18:24.254018 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_stringToPath.js
+I, [2024-12-25T11:18:24.254099 #36268] INFO -- : Processing file: ../../node_modules/lodash/_toKey.js
+W, [2024-12-25T11:18:24.254457 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_toKey.js
+I, [2024-12-25T11:18:24.254489 #36268] INFO -- : Processing file: ../../node_modules/lodash/_toSource.js
+W, [2024-12-25T11:18:24.254801 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_toSource.js
+I, [2024-12-25T11:18:24.254835 #36268] INFO -- : Processing file: ../../node_modules/lodash/_trimmedEndIndex.js
+W, [2024-12-25T11:18:24.255106 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_trimmedEndIndex.js
+I, [2024-12-25T11:18:24.255134 #36268] INFO -- : Processing file: ../../node_modules/lodash/_unescapeHtmlChar.js
+W, [2024-12-25T11:18:24.255466 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_unescapeHtmlChar.js
+I, [2024-12-25T11:18:24.255498 #36268] INFO -- : Processing file: ../../node_modules/lodash/_unicodeSize.js
+W, [2024-12-25T11:18:24.255868 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_unicodeSize.js
+I, [2024-12-25T11:18:24.255903 #36268] INFO -- : Processing file: ../../node_modules/lodash/_unicodeToArray.js
+W, [2024-12-25T11:18:24.256178 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_unicodeToArray.js
+I, [2024-12-25T11:18:24.256205 #36268] INFO -- : Processing file: ../../node_modules/lodash/_unicodeWords.js
+W, [2024-12-25T11:18:24.256534 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_unicodeWords.js
+I, [2024-12-25T11:18:24.256568 #36268] INFO -- : Processing file: ../../node_modules/lodash/_updateWrapDetails.js
+W, [2024-12-25T11:18:24.256918 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_updateWrapDetails.js
+I, [2024-12-25T11:18:24.256952 #36268] INFO -- : Processing file: ../../node_modules/lodash/_wrapperClone.js
+W, [2024-12-25T11:18:24.257295 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/_wrapperClone.js
+I, [2024-12-25T11:18:24.257341 #36268] INFO -- : Processing file: ../../node_modules/lodash/add.js
+W, [2024-12-25T11:18:24.257782 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/add.js
+I, [2024-12-25T11:18:24.257816 #36268] INFO -- : Processing file: ../../node_modules/lodash/after.js
+W, [2024-12-25T11:18:24.258176 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/after.js
+I, [2024-12-25T11:18:24.258240 #36268] INFO -- : Processing file: ../../node_modules/lodash/array.js
+W, [2024-12-25T11:18:24.258689 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/array.js
+I, [2024-12-25T11:18:24.258729 #36268] INFO -- : Processing file: ../../node_modules/lodash/ary.js
+W, [2024-12-25T11:18:24.259111 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/ary.js
+I, [2024-12-25T11:18:24.259131 #36268] INFO -- : Processing file: ../../node_modules/lodash/assign.js
+W, [2024-12-25T11:18:24.259487 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/assign.js
+I, [2024-12-25T11:18:24.259510 #36268] INFO -- : Processing file: ../../node_modules/lodash/assignIn.js
+W, [2024-12-25T11:18:24.259908 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/assignIn.js
+I, [2024-12-25T11:18:24.259937 #36268] INFO -- : Processing file: ../../node_modules/lodash/assignInWith.js
+W, [2024-12-25T11:18:24.260387 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/assignInWith.js
+I, [2024-12-25T11:18:24.260483 #36268] INFO -- : Processing file: ../../node_modules/lodash/assignWith.js
+W, [2024-12-25T11:18:24.261074 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/assignWith.js
+I, [2024-12-25T11:18:24.261099 #36268] INFO -- : Processing file: ../../node_modules/lodash/at.js
+W, [2024-12-25T11:18:24.261815 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/at.js
+I, [2024-12-25T11:18:24.261843 #36268] INFO -- : Processing file: ../../node_modules/lodash/attempt.js
+W, [2024-12-25T11:18:24.262667 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/attempt.js
+I, [2024-12-25T11:18:24.262692 #36268] INFO -- : Processing file: ../../node_modules/lodash/before.js
+W, [2024-12-25T11:18:24.263164 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/before.js
+I, [2024-12-25T11:18:24.263208 #36268] INFO -- : Processing file: ../../node_modules/lodash/bind.js
+W, [2024-12-25T11:18:24.263632 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/bind.js
+I, [2024-12-25T11:18:24.263681 #36268] INFO -- : Processing file: ../../node_modules/lodash/bindAll.js
+W, [2024-12-25T11:18:24.264107 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/bindAll.js
+I, [2024-12-25T11:18:24.264149 #36268] INFO -- : Processing file: ../../node_modules/lodash/bindKey.js
+W, [2024-12-25T11:18:24.264653 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/bindKey.js
+I, [2024-12-25T11:18:24.264685 #36268] INFO -- : Processing file: ../../node_modules/lodash/camelCase.js
+W, [2024-12-25T11:18:24.265298 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/camelCase.js
+I, [2024-12-25T11:18:24.265326 #36268] INFO -- : Processing file: ../../node_modules/lodash/capitalize.js
+W, [2024-12-25T11:18:24.265858 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/capitalize.js
+I, [2024-12-25T11:18:24.265881 #36268] INFO -- : Processing file: ../../node_modules/lodash/castArray.js
+W, [2024-12-25T11:18:24.266360 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/castArray.js
+I, [2024-12-25T11:18:24.266390 #36268] INFO -- : Processing file: ../../node_modules/lodash/ceil.js
+W, [2024-12-25T11:18:24.267118 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/ceil.js
+I, [2024-12-25T11:18:24.267154 #36268] INFO -- : Processing file: ../../node_modules/lodash/chain.js
+W, [2024-12-25T11:18:24.267743 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/chain.js
+I, [2024-12-25T11:18:24.267779 #36268] INFO -- : Processing file: ../../node_modules/lodash/chunk.js
+W, [2024-12-25T11:18:24.268120 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/chunk.js
+I, [2024-12-25T11:18:24.268153 #36268] INFO -- : Processing file: ../../node_modules/lodash/clamp.js
+W, [2024-12-25T11:18:24.268488 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/clamp.js
+I, [2024-12-25T11:18:24.268521 #36268] INFO -- : Processing file: ../../node_modules/lodash/clone.js
+W, [2024-12-25T11:18:24.268811 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/clone.js
+I, [2024-12-25T11:18:24.268837 #36268] INFO -- : Processing file: ../../node_modules/lodash/cloneDeep.js
+W, [2024-12-25T11:18:24.269139 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/cloneDeep.js
+I, [2024-12-25T11:18:24.269203 #36268] INFO -- : Processing file: ../../node_modules/lodash/cloneDeepWith.js
+W, [2024-12-25T11:18:24.269563 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/cloneDeepWith.js
+I, [2024-12-25T11:18:24.269625 #36268] INFO -- : Processing file: ../../node_modules/lodash/cloneWith.js
+W, [2024-12-25T11:18:24.269917 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/cloneWith.js
+I, [2024-12-25T11:18:24.269950 #36268] INFO -- : Processing file: ../../node_modules/lodash/collection.js
+W, [2024-12-25T11:18:24.270236 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/collection.js
+I, [2024-12-25T11:18:24.270270 #36268] INFO -- : Processing file: ../../node_modules/lodash/commit.js
+W, [2024-12-25T11:18:24.270547 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/commit.js
+I, [2024-12-25T11:18:24.270580 #36268] INFO -- : Processing file: ../../node_modules/lodash/compact.js
+W, [2024-12-25T11:18:24.270870 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/compact.js
+I, [2024-12-25T11:18:24.270903 #36268] INFO -- : Processing file: ../../node_modules/lodash/concat.js
+W, [2024-12-25T11:18:24.271182 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/concat.js
+I, [2024-12-25T11:18:24.271214 #36268] INFO -- : Processing file: ../../node_modules/lodash/cond.js
+W, [2024-12-25T11:18:24.271533 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/cond.js
+I, [2024-12-25T11:18:24.271567 #36268] INFO -- : Processing file: ../../node_modules/lodash/conforms.js
+W, [2024-12-25T11:18:24.271881 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/conforms.js
+I, [2024-12-25T11:18:24.271908 #36268] INFO -- : Processing file: ../../node_modules/lodash/conformsTo.js
+W, [2024-12-25T11:18:24.272206 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/conformsTo.js
+I, [2024-12-25T11:18:24.272225 #36268] INFO -- : Processing file: ../../node_modules/lodash/constant.js
+W, [2024-12-25T11:18:24.272679 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/constant.js
+I, [2024-12-25T11:18:24.272699 #36268] INFO -- : Processing file: ../../node_modules/lodash/core.js
+W, [2024-12-25T11:18:24.273586 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/core.js
+I, [2024-12-25T11:18:24.273608 #36268] INFO -- : Processing file: ../../node_modules/lodash/core.min.js
+W, [2024-12-25T11:18:24.274261 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/core.min.js
+I, [2024-12-25T11:18:24.274284 #36268] INFO -- : Processing file: ../../node_modules/lodash/countBy.js
+W, [2024-12-25T11:18:24.274920 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/countBy.js
+I, [2024-12-25T11:18:24.274951 #36268] INFO -- : Processing file: ../../node_modules/lodash/create.js
+W, [2024-12-25T11:18:24.275375 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/create.js
+I, [2024-12-25T11:18:24.275398 #36268] INFO -- : Processing file: ../../node_modules/lodash/curry.js
+W, [2024-12-25T11:18:24.275818 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/curry.js
+I, [2024-12-25T11:18:24.275853 #36268] INFO -- : Processing file: ../../node_modules/lodash/curryRight.js
+W, [2024-12-25T11:18:24.276236 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/curryRight.js
+I, [2024-12-25T11:18:24.276261 #36268] INFO -- : Processing file: ../../node_modules/lodash/date.js
+W, [2024-12-25T11:18:24.276633 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/date.js
+I, [2024-12-25T11:18:24.276655 #36268] INFO -- : Processing file: ../../node_modules/lodash/debounce.js
+W, [2024-12-25T11:18:24.277377 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/debounce.js
+I, [2024-12-25T11:18:24.277403 #36268] INFO -- : Processing file: ../../node_modules/lodash/deburr.js
+W, [2024-12-25T11:18:24.278345 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/deburr.js
+I, [2024-12-25T11:18:24.278380 #36268] INFO -- : Processing file: ../../node_modules/lodash/defaultTo.js
+W, [2024-12-25T11:18:24.279137 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/defaultTo.js
+I, [2024-12-25T11:18:24.279162 #36268] INFO -- : Processing file: ../../node_modules/lodash/defaults.js
+W, [2024-12-25T11:18:24.279729 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/defaults.js
+I, [2024-12-25T11:18:24.279787 #36268] INFO -- : Processing file: ../../node_modules/lodash/defaultsDeep.js
+W, [2024-12-25T11:18:24.280392 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/defaultsDeep.js
+I, [2024-12-25T11:18:24.280432 #36268] INFO -- : Processing file: ../../node_modules/lodash/defer.js
+W, [2024-12-25T11:18:24.280916 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/defer.js
+I, [2024-12-25T11:18:24.280955 #36268] INFO -- : Processing file: ../../node_modules/lodash/delay.js
+W, [2024-12-25T11:18:24.281935 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/delay.js
+I, [2024-12-25T11:18:24.281988 #36268] INFO -- : Processing file: ../../node_modules/lodash/difference.js
+W, [2024-12-25T11:18:24.282727 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/difference.js
+I, [2024-12-25T11:18:24.282766 #36268] INFO -- : Processing file: ../../node_modules/lodash/differenceBy.js
+W, [2024-12-25T11:18:24.283139 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/differenceBy.js
+I, [2024-12-25T11:18:24.283184 #36268] INFO -- : Processing file: ../../node_modules/lodash/differenceWith.js
+W, [2024-12-25T11:18:24.283534 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/differenceWith.js
+I, [2024-12-25T11:18:24.283568 #36268] INFO -- : Processing file: ../../node_modules/lodash/divide.js
+W, [2024-12-25T11:18:24.283884 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/divide.js
+I, [2024-12-25T11:18:24.283917 #36268] INFO -- : Processing file: ../../node_modules/lodash/drop.js
+W, [2024-12-25T11:18:24.284205 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/drop.js
+I, [2024-12-25T11:18:24.284237 #36268] INFO -- : Processing file: ../../node_modules/lodash/dropRight.js
+W, [2024-12-25T11:18:24.284523 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/dropRight.js
+I, [2024-12-25T11:18:24.284555 #36268] INFO -- : Processing file: ../../node_modules/lodash/dropRightWhile.js
+W, [2024-12-25T11:18:24.285016 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/dropRightWhile.js
+I, [2024-12-25T11:18:24.285048 #36268] INFO -- : Processing file: ../../node_modules/lodash/dropWhile.js
+W, [2024-12-25T11:18:24.285521 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/dropWhile.js
+I, [2024-12-25T11:18:24.285554 #36268] INFO -- : Processing file: ../../node_modules/lodash/each.js
+W, [2024-12-25T11:18:24.285847 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/each.js
+I, [2024-12-25T11:18:24.285874 #36268] INFO -- : Processing file: ../../node_modules/lodash/eachRight.js
+W, [2024-12-25T11:18:24.286160 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/eachRight.js
+I, [2024-12-25T11:18:24.286192 #36268] INFO -- : Processing file: ../../node_modules/lodash/endsWith.js
+W, [2024-12-25T11:18:24.286514 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/endsWith.js
+I, [2024-12-25T11:18:24.286546 #36268] INFO -- : Processing file: ../../node_modules/lodash/entries.js
+W, [2024-12-25T11:18:24.286817 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/entries.js
+I, [2024-12-25T11:18:24.286842 #36268] INFO -- : Processing file: ../../node_modules/lodash/entriesIn.js
+W, [2024-12-25T11:18:24.287326 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/entriesIn.js
+I, [2024-12-25T11:18:24.287358 #36268] INFO -- : Processing file: ../../node_modules/lodash/eq.js
+W, [2024-12-25T11:18:24.287784 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/eq.js
+I, [2024-12-25T11:18:24.287969 #36268] INFO -- : Processing file: ../../node_modules/lodash/escape.js
+W, [2024-12-25T11:18:24.288263 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/escape.js
+I, [2024-12-25T11:18:24.288294 #36268] INFO -- : Processing file: ../../node_modules/lodash/escapeRegExp.js
+W, [2024-12-25T11:18:24.288601 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/escapeRegExp.js
+I, [2024-12-25T11:18:24.288634 #36268] INFO -- : Processing file: ../../node_modules/lodash/every.js
+W, [2024-12-25T11:18:24.288923 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/every.js
+I, [2024-12-25T11:18:24.288952 #36268] INFO -- : Processing file: ../../node_modules/lodash/extend.js
+W, [2024-12-25T11:18:24.289285 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/extend.js
+I, [2024-12-25T11:18:24.289311 #36268] INFO -- : Processing file: ../../node_modules/lodash/extendWith.js
+W, [2024-12-25T11:18:24.289640 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/extendWith.js
+I, [2024-12-25T11:18:24.289674 #36268] INFO -- : Processing file: ../../node_modules/lodash/fill.js
+W, [2024-12-25T11:18:24.290006 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fill.js
+I, [2024-12-25T11:18:24.290039 #36268] INFO -- : Processing file: ../../node_modules/lodash/filter.js
+W, [2024-12-25T11:18:24.290345 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/filter.js
+I, [2024-12-25T11:18:24.290371 #36268] INFO -- : Processing file: ../../node_modules/lodash/find.js
+W, [2024-12-25T11:18:24.290916 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/find.js
+I, [2024-12-25T11:18:24.290935 #36268] INFO -- : Processing file: ../../node_modules/lodash/findIndex.js
+W, [2024-12-25T11:18:24.291582 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/findIndex.js
+I, [2024-12-25T11:18:24.291642 #36268] INFO -- : Processing file: ../../node_modules/lodash/findKey.js
+W, [2024-12-25T11:18:24.292088 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/findKey.js
+I, [2024-12-25T11:18:24.292109 #36268] INFO -- : Processing file: ../../node_modules/lodash/findLast.js
+W, [2024-12-25T11:18:24.292527 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/findLast.js
+I, [2024-12-25T11:18:24.292557 #36268] INFO -- : Processing file: ../../node_modules/lodash/findLastIndex.js
+W, [2024-12-25T11:18:24.292936 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/findLastIndex.js
+I, [2024-12-25T11:18:24.292967 #36268] INFO -- : Processing file: ../../node_modules/lodash/findLastKey.js
+W, [2024-12-25T11:18:24.293374 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/findLastKey.js
+I, [2024-12-25T11:18:24.293507 #36268] INFO -- : Processing file: ../../node_modules/lodash/first.js
+W, [2024-12-25T11:18:24.294036 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/first.js
+I, [2024-12-25T11:18:24.294059 #36268] INFO -- : Processing file: ../../node_modules/lodash/flatMap.js
+W, [2024-12-25T11:18:24.294597 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/flatMap.js
+I, [2024-12-25T11:18:24.294660 #36268] INFO -- : Processing file: ../../node_modules/lodash/flatMapDeep.js
+W, [2024-12-25T11:18:24.296467 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/flatMapDeep.js
+I, [2024-12-25T11:18:24.296599 #36268] INFO -- : Processing file: ../../node_modules/lodash/flatMapDepth.js
+W, [2024-12-25T11:18:24.297273 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/flatMapDepth.js
+I, [2024-12-25T11:18:24.297324 #36268] INFO -- : Processing file: ../../node_modules/lodash/flatten.js
+W, [2024-12-25T11:18:24.297727 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/flatten.js
+I, [2024-12-25T11:18:24.297749 #36268] INFO -- : Processing file: ../../node_modules/lodash/flattenDeep.js
+W, [2024-12-25T11:18:24.298149 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/flattenDeep.js
+I, [2024-12-25T11:18:24.298183 #36268] INFO -- : Processing file: ../../node_modules/lodash/flattenDepth.js
+W, [2024-12-25T11:18:24.298966 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/flattenDepth.js
+I, [2024-12-25T11:18:24.299004 #36268] INFO -- : Processing file: ../../node_modules/lodash/flip.js
+W, [2024-12-25T11:18:24.299593 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/flip.js
+I, [2024-12-25T11:18:24.299615 #36268] INFO -- : Processing file: ../../node_modules/lodash/floor.js
+W, [2024-12-25T11:18:24.300050 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/floor.js
+I, [2024-12-25T11:18:24.300069 #36268] INFO -- : Processing file: ../../node_modules/lodash/flow.js
+W, [2024-12-25T11:18:24.300660 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/flow.js
+I, [2024-12-25T11:18:24.301036 #36268] INFO -- : Processing file: ../../node_modules/lodash/flowRight.js
+W, [2024-12-25T11:18:24.301554 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/flowRight.js
+I, [2024-12-25T11:18:24.301572 #36268] INFO -- : Processing file: ../../node_modules/lodash/forEach.js
+W, [2024-12-25T11:18:24.301835 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/forEach.js
+I, [2024-12-25T11:18:24.301854 #36268] INFO -- : Processing file: ../../node_modules/lodash/forEachRight.js
+W, [2024-12-25T11:18:24.302139 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/forEachRight.js
+I, [2024-12-25T11:18:24.302158 #36268] INFO -- : Processing file: ../../node_modules/lodash/forIn.js
+W, [2024-12-25T11:18:24.302459 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/forIn.js
+I, [2024-12-25T11:18:24.302479 #36268] INFO -- : Processing file: ../../node_modules/lodash/forInRight.js
+W, [2024-12-25T11:18:24.302750 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/forInRight.js
+I, [2024-12-25T11:18:24.302771 #36268] INFO -- : Processing file: ../../node_modules/lodash/forOwn.js
+W, [2024-12-25T11:18:24.303053 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/forOwn.js
+I, [2024-12-25T11:18:24.303071 #36268] INFO -- : Processing file: ../../node_modules/lodash/forOwnRight.js
+W, [2024-12-25T11:18:24.303544 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/forOwnRight.js
+I, [2024-12-25T11:18:24.303563 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/F.js
+W, [2024-12-25T11:18:24.303809 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/F.js
+I, [2024-12-25T11:18:24.303826 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/T.js
+W, [2024-12-25T11:18:24.304246 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/T.js
+I, [2024-12-25T11:18:24.304265 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/__.js
+W, [2024-12-25T11:18:24.304700 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/__.js
+I, [2024-12-25T11:18:24.304718 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/_baseConvert.js
+W, [2024-12-25T11:18:24.305216 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/_baseConvert.js
+I, [2024-12-25T11:18:24.305235 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/_convertBrowser.js
+W, [2024-12-25T11:18:24.305507 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/_convertBrowser.js
+I, [2024-12-25T11:18:24.305526 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/_falseOptions.js
+W, [2024-12-25T11:18:24.305775 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/_falseOptions.js
+I, [2024-12-25T11:18:24.305795 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/_mapping.js
+W, [2024-12-25T11:18:24.306065 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/_mapping.js
+I, [2024-12-25T11:18:24.306110 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/_util.js
+W, [2024-12-25T11:18:24.306386 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/_util.js
+I, [2024-12-25T11:18:24.306504 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/add.js
+W, [2024-12-25T11:18:24.306801 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/add.js
+I, [2024-12-25T11:18:24.306827 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/after.js
+W, [2024-12-25T11:18:24.307221 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/after.js
+I, [2024-12-25T11:18:24.307254 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/all.js
+W, [2024-12-25T11:18:24.307634 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/all.js
+I, [2024-12-25T11:18:24.307712 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/allPass.js
+W, [2024-12-25T11:18:24.308071 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/allPass.js
+I, [2024-12-25T11:18:24.308107 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/always.js
+W, [2024-12-25T11:18:24.308610 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/always.js
+I, [2024-12-25T11:18:24.308671 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/any.js
+W, [2024-12-25T11:18:24.309077 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/any.js
+I, [2024-12-25T11:18:24.309116 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/anyPass.js
+W, [2024-12-25T11:18:24.309581 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/anyPass.js
+I, [2024-12-25T11:18:24.309647 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/apply.js
+W, [2024-12-25T11:18:24.310096 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/apply.js
+I, [2024-12-25T11:18:24.310179 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/array.js
+W, [2024-12-25T11:18:24.310672 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/array.js
+I, [2024-12-25T11:18:24.310710 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/ary.js
+W, [2024-12-25T11:18:24.311137 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/ary.js
+I, [2024-12-25T11:18:24.311162 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assign.js
+W, [2024-12-25T11:18:24.311674 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assign.js
+I, [2024-12-25T11:18:24.311703 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assignAll.js
+W, [2024-12-25T11:18:24.312276 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assignAll.js
+I, [2024-12-25T11:18:24.312305 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assignAllWith.js
+W, [2024-12-25T11:18:24.313026 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assignAllWith.js
+I, [2024-12-25T11:18:24.313063 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assignIn.js
+W, [2024-12-25T11:18:24.314267 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assignIn.js
+I, [2024-12-25T11:18:24.314351 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assignInAll.js
+W, [2024-12-25T11:18:24.315034 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assignInAll.js
+I, [2024-12-25T11:18:24.315077 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assignInAllWith.js
+W, [2024-12-25T11:18:24.315519 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assignInAllWith.js
+I, [2024-12-25T11:18:24.315542 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assignInWith.js
+W, [2024-12-25T11:18:24.315967 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assignInWith.js
+I, [2024-12-25T11:18:24.316003 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assignWith.js
+W, [2024-12-25T11:18:24.316669 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assignWith.js
+I, [2024-12-25T11:18:24.316721 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assoc.js
+W, [2024-12-25T11:18:24.317561 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assoc.js
+I, [2024-12-25T11:18:24.317599 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/assocPath.js
+W, [2024-12-25T11:18:24.318107 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/assocPath.js
+I, [2024-12-25T11:18:24.318141 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/at.js
+W, [2024-12-25T11:18:24.318541 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/at.js
+I, [2024-12-25T11:18:24.318576 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/attempt.js
+W, [2024-12-25T11:18:24.318866 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/attempt.js
+I, [2024-12-25T11:18:24.318899 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/before.js
+W, [2024-12-25T11:18:24.319181 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/before.js
+I, [2024-12-25T11:18:24.319213 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/bind.js
+W, [2024-12-25T11:18:24.319513 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/bind.js
+I, [2024-12-25T11:18:24.319545 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/bindAll.js
+W, [2024-12-25T11:18:24.319824 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/bindAll.js
+I, [2024-12-25T11:18:24.319857 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/bindKey.js
+W, [2024-12-25T11:18:24.320115 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/bindKey.js
+I, [2024-12-25T11:18:24.320147 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/camelCase.js
+W, [2024-12-25T11:18:24.320448 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/camelCase.js
+I, [2024-12-25T11:18:24.320481 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/capitalize.js
+W, [2024-12-25T11:18:24.320753 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/capitalize.js
+I, [2024-12-25T11:18:24.320785 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/castArray.js
+W, [2024-12-25T11:18:24.321078 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/castArray.js
+I, [2024-12-25T11:18:24.321110 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/ceil.js
+W, [2024-12-25T11:18:24.321382 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/ceil.js
+I, [2024-12-25T11:18:24.321466 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/chain.js
+W, [2024-12-25T11:18:24.321923 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/chain.js
+I, [2024-12-25T11:18:24.321958 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/chunk.js
+W, [2024-12-25T11:18:24.322242 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/chunk.js
+I, [2024-12-25T11:18:24.322274 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/clamp.js
+W, [2024-12-25T11:18:24.322556 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/clamp.js
+I, [2024-12-25T11:18:24.322583 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/clone.js
+W, [2024-12-25T11:18:24.322903 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/clone.js
+I, [2024-12-25T11:18:24.322937 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/cloneDeep.js
+W, [2024-12-25T11:18:24.323271 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/cloneDeep.js
+I, [2024-12-25T11:18:24.323305 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/cloneDeepWith.js
+W, [2024-12-25T11:18:24.323695 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/cloneDeepWith.js
+I, [2024-12-25T11:18:24.323729 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/cloneWith.js
+W, [2024-12-25T11:18:24.324093 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/cloneWith.js
+I, [2024-12-25T11:18:24.324156 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/collection.js
+W, [2024-12-25T11:18:24.324564 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/collection.js
+I, [2024-12-25T11:18:24.324624 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/commit.js
+W, [2024-12-25T11:18:24.325072 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/commit.js
+I, [2024-12-25T11:18:24.325155 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/compact.js
+W, [2024-12-25T11:18:24.325650 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/compact.js
+I, [2024-12-25T11:18:24.325699 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/complement.js
+W, [2024-12-25T11:18:24.326047 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/complement.js
+I, [2024-12-25T11:18:24.326082 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/compose.js
+W, [2024-12-25T11:18:24.326481 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/compose.js
+I, [2024-12-25T11:18:24.326518 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/concat.js
+W, [2024-12-25T11:18:24.327188 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/concat.js
+I, [2024-12-25T11:18:24.327313 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/cond.js
+W, [2024-12-25T11:18:24.327925 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/cond.js
+I, [2024-12-25T11:18:24.327967 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/conforms.js
+W, [2024-12-25T11:18:24.328613 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/conforms.js
+I, [2024-12-25T11:18:24.328671 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/conformsTo.js
+W, [2024-12-25T11:18:24.329204 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/conformsTo.js
+I, [2024-12-25T11:18:24.329267 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/constant.js
+W, [2024-12-25T11:18:24.329985 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/constant.js
+I, [2024-12-25T11:18:24.330064 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/contains.js
+W, [2024-12-25T11:18:24.331072 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/contains.js
+I, [2024-12-25T11:18:24.331152 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/convert.js
+W, [2024-12-25T11:18:24.331787 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/convert.js
+I, [2024-12-25T11:18:24.331911 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/countBy.js
+W, [2024-12-25T11:18:24.332694 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/countBy.js
+I, [2024-12-25T11:18:24.332741 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/create.js
+W, [2024-12-25T11:18:24.333764 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/create.js
+I, [2024-12-25T11:18:24.333811 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/curry.js
+W, [2024-12-25T11:18:24.334266 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/curry.js
+I, [2024-12-25T11:18:24.334300 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/curryN.js
+W, [2024-12-25T11:18:24.334709 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/curryN.js
+I, [2024-12-25T11:18:24.334742 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/curryRight.js
+W, [2024-12-25T11:18:24.335086 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/curryRight.js
+I, [2024-12-25T11:18:24.335118 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/curryRightN.js
+W, [2024-12-25T11:18:24.335455 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/curryRightN.js
+I, [2024-12-25T11:18:24.335474 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/date.js
+W, [2024-12-25T11:18:24.335742 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/date.js
+I, [2024-12-25T11:18:24.335760 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/debounce.js
+W, [2024-12-25T11:18:24.336082 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/debounce.js
+I, [2024-12-25T11:18:24.336099 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/deburr.js
+W, [2024-12-25T11:18:24.336473 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/deburr.js
+I, [2024-12-25T11:18:24.336492 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/defaultTo.js
+W, [2024-12-25T11:18:24.336835 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/defaultTo.js
+I, [2024-12-25T11:18:24.336853 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/defaults.js
+W, [2024-12-25T11:18:24.337698 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/defaults.js
+I, [2024-12-25T11:18:24.337724 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/defaultsAll.js
+W, [2024-12-25T11:18:24.338082 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/defaultsAll.js
+I, [2024-12-25T11:18:24.338108 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/defaultsDeep.js
+W, [2024-12-25T11:18:24.338400 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/defaultsDeep.js
+I, [2024-12-25T11:18:24.338535 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/defaultsDeepAll.js
+W, [2024-12-25T11:18:24.338827 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/defaultsDeepAll.js
+I, [2024-12-25T11:18:24.338861 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/defer.js
+W, [2024-12-25T11:18:24.339131 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/defer.js
+I, [2024-12-25T11:18:24.339157 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/delay.js
+W, [2024-12-25T11:18:24.339484 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/delay.js
+I, [2024-12-25T11:18:24.339517 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/difference.js
+W, [2024-12-25T11:18:24.339918 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/difference.js
+I, [2024-12-25T11:18:24.339953 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/differenceBy.js
+W, [2024-12-25T11:18:24.340332 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/differenceBy.js
+I, [2024-12-25T11:18:24.340367 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/differenceWith.js
+W, [2024-12-25T11:18:24.340696 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/differenceWith.js
+I, [2024-12-25T11:18:24.340778 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/dissoc.js
+W, [2024-12-25T11:18:24.341137 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/dissoc.js
+I, [2024-12-25T11:18:24.341190 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/dissocPath.js
+W, [2024-12-25T11:18:24.341679 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/dissocPath.js
+I, [2024-12-25T11:18:24.341708 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/divide.js
+W, [2024-12-25T11:18:24.342081 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/divide.js
+I, [2024-12-25T11:18:24.342102 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/drop.js
+W, [2024-12-25T11:18:24.342644 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/drop.js
+I, [2024-12-25T11:18:24.342679 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/dropLast.js
+W, [2024-12-25T11:18:24.343535 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/dropLast.js
+I, [2024-12-25T11:18:24.343592 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/dropLastWhile.js
+W, [2024-12-25T11:18:24.344218 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/dropLastWhile.js
+I, [2024-12-25T11:18:24.344270 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/dropRight.js
+W, [2024-12-25T11:18:24.344758 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/dropRight.js
+I, [2024-12-25T11:18:24.344782 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/dropRightWhile.js
+W, [2024-12-25T11:18:24.345966 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/dropRightWhile.js
+I, [2024-12-25T11:18:24.346041 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/dropWhile.js
+W, [2024-12-25T11:18:24.346568 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/dropWhile.js
+I, [2024-12-25T11:18:24.346591 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/each.js
+W, [2024-12-25T11:18:24.347069 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/each.js
+I, [2024-12-25T11:18:24.347145 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/eachRight.js
+W, [2024-12-25T11:18:24.347688 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/eachRight.js
+I, [2024-12-25T11:18:24.347768 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/endsWith.js
+W, [2024-12-25T11:18:24.348717 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/endsWith.js
+I, [2024-12-25T11:18:24.348754 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/entries.js
+W, [2024-12-25T11:18:24.349248 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/entries.js
+I, [2024-12-25T11:18:24.349291 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/entriesIn.js
+W, [2024-12-25T11:18:24.350029 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/entriesIn.js
+I, [2024-12-25T11:18:24.350063 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/eq.js
+W, [2024-12-25T11:18:24.350637 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/eq.js
+I, [2024-12-25T11:18:24.350671 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/equals.js
+W, [2024-12-25T11:18:24.351065 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/equals.js
+I, [2024-12-25T11:18:24.351099 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/escape.js
+W, [2024-12-25T11:18:24.351454 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/escape.js
+I, [2024-12-25T11:18:24.351489 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/escapeRegExp.js
+W, [2024-12-25T11:18:24.351865 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/escapeRegExp.js
+I, [2024-12-25T11:18:24.351898 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/every.js
+W, [2024-12-25T11:18:24.352278 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/every.js
+I, [2024-12-25T11:18:24.352310 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/extend.js
+W, [2024-12-25T11:18:24.352614 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/extend.js
+I, [2024-12-25T11:18:24.352645 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/extendAll.js
+W, [2024-12-25T11:18:24.352957 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/extendAll.js
+I, [2024-12-25T11:18:24.352989 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/extendAllWith.js
+W, [2024-12-25T11:18:24.353272 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/extendAllWith.js
+I, [2024-12-25T11:18:24.353304 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/extendWith.js
+W, [2024-12-25T11:18:24.353611 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/extendWith.js
+I, [2024-12-25T11:18:24.353644 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/fill.js
+W, [2024-12-25T11:18:24.353935 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/fill.js
+I, [2024-12-25T11:18:24.353966 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/filter.js
+W, [2024-12-25T11:18:24.354229 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/filter.js
+I, [2024-12-25T11:18:24.354261 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/find.js
+W, [2024-12-25T11:18:24.354527 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/find.js
+I, [2024-12-25T11:18:24.354560 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/findFrom.js
+W, [2024-12-25T11:18:24.354832 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/findFrom.js
+I, [2024-12-25T11:18:24.354858 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/findIndex.js
+W, [2024-12-25T11:18:24.355166 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/findIndex.js
+I, [2024-12-25T11:18:24.355199 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/findIndexFrom.js
+W, [2024-12-25T11:18:24.355521 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/findIndexFrom.js
+I, [2024-12-25T11:18:24.355554 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/findKey.js
+W, [2024-12-25T11:18:24.355841 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/findKey.js
+I, [2024-12-25T11:18:24.355866 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/findLast.js
+W, [2024-12-25T11:18:24.356152 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/findLast.js
+I, [2024-12-25T11:18:24.356184 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/findLastFrom.js
+W, [2024-12-25T11:18:24.356479 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/findLastFrom.js
+I, [2024-12-25T11:18:24.356510 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/findLastIndex.js
+W, [2024-12-25T11:18:24.356823 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/findLastIndex.js
+I, [2024-12-25T11:18:24.356849 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/findLastIndexFrom.js
+W, [2024-12-25T11:18:24.357177 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/findLastIndexFrom.js
+I, [2024-12-25T11:18:24.357210 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/findLastKey.js
+W, [2024-12-25T11:18:24.357640 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/findLastKey.js
+I, [2024-12-25T11:18:24.357675 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/first.js
+W, [2024-12-25T11:18:24.358062 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/first.js
+I, [2024-12-25T11:18:24.358178 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/flatMap.js
+W, [2024-12-25T11:18:24.358630 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/flatMap.js
+I, [2024-12-25T11:18:24.358694 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/flatMapDeep.js
+W, [2024-12-25T11:18:24.359080 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/flatMapDeep.js
+I, [2024-12-25T11:18:24.359101 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/flatMapDepth.js
+W, [2024-12-25T11:18:24.359533 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/flatMapDepth.js
+I, [2024-12-25T11:18:24.359570 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/flatten.js
+W, [2024-12-25T11:18:24.360065 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/flatten.js
+I, [2024-12-25T11:18:24.360114 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/flattenDeep.js
+W, [2024-12-25T11:18:24.360797 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/flattenDeep.js
+I, [2024-12-25T11:18:24.360859 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/flattenDepth.js
+W, [2024-12-25T11:18:24.361536 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/flattenDepth.js
+I, [2024-12-25T11:18:24.361590 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/flip.js
+W, [2024-12-25T11:18:24.362222 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/flip.js
+I, [2024-12-25T11:18:24.362291 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/floor.js
+W, [2024-12-25T11:18:24.362837 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/floor.js
+I, [2024-12-25T11:18:24.362888 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/flow.js
+W, [2024-12-25T11:18:24.363406 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/flow.js
+I, [2024-12-25T11:18:24.363518 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/flowRight.js
+W, [2024-12-25T11:18:24.363896 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/flowRight.js
+I, [2024-12-25T11:18:24.363923 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/forEach.js
+W, [2024-12-25T11:18:24.364282 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/forEach.js
+I, [2024-12-25T11:18:24.364309 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/forEachRight.js
+W, [2024-12-25T11:18:24.365453 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/forEachRight.js
+I, [2024-12-25T11:18:24.365657 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/forIn.js
+W, [2024-12-25T11:18:24.366345 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/forIn.js
+I, [2024-12-25T11:18:24.366377 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/forInRight.js
+W, [2024-12-25T11:18:24.366922 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/forInRight.js
+I, [2024-12-25T11:18:24.366960 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/forOwn.js
+W, [2024-12-25T11:18:24.367471 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/forOwn.js
+I, [2024-12-25T11:18:24.367505 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/forOwnRight.js
+W, [2024-12-25T11:18:24.368007 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/forOwnRight.js
+I, [2024-12-25T11:18:24.368040 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/fromPairs.js
+W, [2024-12-25T11:18:24.368325 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/fromPairs.js
+I, [2024-12-25T11:18:24.368358 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/function.js
+W, [2024-12-25T11:18:24.368656 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/function.js
+I, [2024-12-25T11:18:24.368689 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/functions.js
+W, [2024-12-25T11:18:24.369130 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/functions.js
+I, [2024-12-25T11:18:24.369163 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/functionsIn.js
+W, [2024-12-25T11:18:24.369627 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/functionsIn.js
+I, [2024-12-25T11:18:24.369660 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/get.js
+W, [2024-12-25T11:18:24.369952 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/get.js
+I, [2024-12-25T11:18:24.369985 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/getOr.js
+W, [2024-12-25T11:18:24.370251 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/getOr.js
+I, [2024-12-25T11:18:24.370283 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/groupBy.js
+W, [2024-12-25T11:18:24.370713 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/groupBy.js
+I, [2024-12-25T11:18:24.370746 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/gt.js
+W, [2024-12-25T11:18:24.371021 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/gt.js
+I, [2024-12-25T11:18:24.371053 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/gte.js
+W, [2024-12-25T11:18:24.371327 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/gte.js
+I, [2024-12-25T11:18:24.371360 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/has.js
+W, [2024-12-25T11:18:24.371636 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/has.js
+I, [2024-12-25T11:18:24.371668 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/hasIn.js
+W, [2024-12-25T11:18:24.371942 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/hasIn.js
+I, [2024-12-25T11:18:24.371968 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/head.js
+W, [2024-12-25T11:18:24.372810 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/head.js
+I, [2024-12-25T11:18:24.372888 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/identical.js
+W, [2024-12-25T11:18:24.373277 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/identical.js
+I, [2024-12-25T11:18:24.373424 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/identity.js
+W, [2024-12-25T11:18:24.373814 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/identity.js
+I, [2024-12-25T11:18:24.373849 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/inRange.js
+W, [2024-12-25T11:18:24.374507 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/inRange.js
+I, [2024-12-25T11:18:24.374562 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/includes.js
+W, [2024-12-25T11:18:24.375043 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/includes.js
+I, [2024-12-25T11:18:24.375138 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/includesFrom.js
+W, [2024-12-25T11:18:24.375611 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/includesFrom.js
+I, [2024-12-25T11:18:24.375647 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/indexBy.js
+W, [2024-12-25T11:18:24.376025 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/indexBy.js
+I, [2024-12-25T11:18:24.376060 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/indexOf.js
+W, [2024-12-25T11:18:24.376437 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/indexOf.js
+I, [2024-12-25T11:18:24.376505 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/indexOfFrom.js
+W, [2024-12-25T11:18:24.376956 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/indexOfFrom.js
+I, [2024-12-25T11:18:24.377234 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/init.js
+W, [2024-12-25T11:18:24.377906 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/init.js
+I, [2024-12-25T11:18:24.377946 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/initial.js
+W, [2024-12-25T11:18:24.378705 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/initial.js
+I, [2024-12-25T11:18:24.378761 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/intersection.js
+W, [2024-12-25T11:18:24.379374 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/intersection.js
+I, [2024-12-25T11:18:24.379555 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/intersectionBy.js
+W, [2024-12-25T11:18:24.380208 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/intersectionBy.js
+I, [2024-12-25T11:18:24.380243 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/intersectionWith.js
+W, [2024-12-25T11:18:24.380601 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/intersectionWith.js
+I, [2024-12-25T11:18:24.380651 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/invert.js
+W, [2024-12-25T11:18:24.381154 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/invert.js
+I, [2024-12-25T11:18:24.381209 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/invertBy.js
+W, [2024-12-25T11:18:24.381889 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/invertBy.js
+I, [2024-12-25T11:18:24.381946 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/invertObj.js
+W, [2024-12-25T11:18:24.382856 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/invertObj.js
+I, [2024-12-25T11:18:24.382892 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/invoke.js
+W, [2024-12-25T11:18:24.383311 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/invoke.js
+I, [2024-12-25T11:18:24.383342 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/invokeArgs.js
+W, [2024-12-25T11:18:24.383739 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/invokeArgs.js
+I, [2024-12-25T11:18:24.383796 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/invokeArgsMap.js
+W, [2024-12-25T11:18:24.384275 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/invokeArgsMap.js
+I, [2024-12-25T11:18:24.384341 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/invokeMap.js
+W, [2024-12-25T11:18:24.384667 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/invokeMap.js
+I, [2024-12-25T11:18:24.384694 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isArguments.js
+W, [2024-12-25T11:18:24.384923 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isArguments.js
+I, [2024-12-25T11:18:24.384956 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isArray.js
+W, [2024-12-25T11:18:24.385477 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isArray.js
+I, [2024-12-25T11:18:24.385512 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isArrayBuffer.js
+W, [2024-12-25T11:18:24.385842 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isArrayBuffer.js
+I, [2024-12-25T11:18:24.385875 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isArrayLike.js
+W, [2024-12-25T11:18:24.386192 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isArrayLike.js
+I, [2024-12-25T11:18:24.386226 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isArrayLikeObject.js
+W, [2024-12-25T11:18:24.386512 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isArrayLikeObject.js
+I, [2024-12-25T11:18:24.386545 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isBoolean.js
+W, [2024-12-25T11:18:24.386879 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isBoolean.js
+I, [2024-12-25T11:18:24.386913 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isBuffer.js
+W, [2024-12-25T11:18:24.387216 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isBuffer.js
+I, [2024-12-25T11:18:24.387265 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isDate.js
+W, [2024-12-25T11:18:24.387574 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isDate.js
+I, [2024-12-25T11:18:24.387606 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isElement.js
+W, [2024-12-25T11:18:24.387943 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isElement.js
+I, [2024-12-25T11:18:24.387971 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isEmpty.js
+W, [2024-12-25T11:18:24.388252 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isEmpty.js
+I, [2024-12-25T11:18:24.388285 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isEqual.js
+W, [2024-12-25T11:18:24.388589 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isEqual.js
+I, [2024-12-25T11:18:24.389253 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isEqualWith.js
+W, [2024-12-25T11:18:24.389650 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isEqualWith.js
+I, [2024-12-25T11:18:24.389685 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isError.js
+W, [2024-12-25T11:18:24.390019 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isError.js
+I, [2024-12-25T11:18:24.390052 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isFinite.js
+W, [2024-12-25T11:18:24.390405 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isFinite.js
+I, [2024-12-25T11:18:24.390509 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isFunction.js
+W, [2024-12-25T11:18:24.390873 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isFunction.js
+I, [2024-12-25T11:18:24.390906 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isInteger.js
+W, [2024-12-25T11:18:24.391224 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isInteger.js
+I, [2024-12-25T11:18:24.391258 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isLength.js
+W, [2024-12-25T11:18:24.391839 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isLength.js
+I, [2024-12-25T11:18:24.391902 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isMap.js
+W, [2024-12-25T11:18:24.392555 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isMap.js
+I, [2024-12-25T11:18:24.392591 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isMatch.js
+W, [2024-12-25T11:18:24.392985 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isMatch.js
+I, [2024-12-25T11:18:24.393022 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isMatchWith.js
+W, [2024-12-25T11:18:24.393621 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isMatchWith.js
+I, [2024-12-25T11:18:24.393665 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isNaN.js
+W, [2024-12-25T11:18:24.394293 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isNaN.js
+I, [2024-12-25T11:18:24.394392 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isNative.js
+W, [2024-12-25T11:18:24.395253 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isNative.js
+I, [2024-12-25T11:18:24.395305 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isNil.js
+W, [2024-12-25T11:18:24.397085 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isNil.js
+I, [2024-12-25T11:18:24.397145 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isNull.js
+W, [2024-12-25T11:18:24.397783 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isNull.js
+I, [2024-12-25T11:18:24.397839 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isNumber.js
+W, [2024-12-25T11:18:24.398544 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isNumber.js
+I, [2024-12-25T11:18:24.398584 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isObject.js
+W, [2024-12-25T11:18:24.399030 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isObject.js
+I, [2024-12-25T11:18:24.399066 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isObjectLike.js
+W, [2024-12-25T11:18:24.399472 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isObjectLike.js
+I, [2024-12-25T11:18:24.399583 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isPlainObject.js
+W, [2024-12-25T11:18:24.400094 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isPlainObject.js
+I, [2024-12-25T11:18:24.400126 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isRegExp.js
+W, [2024-12-25T11:18:24.400515 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isRegExp.js
+I, [2024-12-25T11:18:24.400547 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isSafeInteger.js
+W, [2024-12-25T11:18:24.400833 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isSafeInteger.js
+I, [2024-12-25T11:18:24.400866 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isSet.js
+W, [2024-12-25T11:18:24.401131 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isSet.js
+I, [2024-12-25T11:18:24.401163 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isString.js
+W, [2024-12-25T11:18:24.401481 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isString.js
+I, [2024-12-25T11:18:24.401513 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isSymbol.js
+W, [2024-12-25T11:18:24.401936 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isSymbol.js
+I, [2024-12-25T11:18:24.401968 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isTypedArray.js
+W, [2024-12-25T11:18:24.402442 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isTypedArray.js
+I, [2024-12-25T11:18:24.402478 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isUndefined.js
+W, [2024-12-25T11:18:24.402749 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isUndefined.js
+I, [2024-12-25T11:18:24.402781 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isWeakMap.js
+W, [2024-12-25T11:18:24.403036 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isWeakMap.js
+I, [2024-12-25T11:18:24.403068 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/isWeakSet.js
+W, [2024-12-25T11:18:24.403330 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/isWeakSet.js
+I, [2024-12-25T11:18:24.403362 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/iteratee.js
+W, [2024-12-25T11:18:24.403641 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/iteratee.js
+I, [2024-12-25T11:18:24.403674 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/join.js
+W, [2024-12-25T11:18:24.403929 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/join.js
+I, [2024-12-25T11:18:24.403954 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/juxt.js
+W, [2024-12-25T11:18:24.404219 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/juxt.js
+I, [2024-12-25T11:18:24.404244 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/kebabCase.js
+W, [2024-12-25T11:18:24.404548 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/kebabCase.js
+I, [2024-12-25T11:18:24.404570 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/keyBy.js
+W, [2024-12-25T11:18:24.404835 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/keyBy.js
+I, [2024-12-25T11:18:24.404854 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/keys.js
+W, [2024-12-25T11:18:24.405110 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/keys.js
+I, [2024-12-25T11:18:24.405129 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/keysIn.js
+W, [2024-12-25T11:18:24.405379 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/keysIn.js
+I, [2024-12-25T11:18:24.405397 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/lang.js
+W, [2024-12-25T11:18:24.405720 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/lang.js
+I, [2024-12-25T11:18:24.405752 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/last.js
+W, [2024-12-25T11:18:24.406016 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/last.js
+I, [2024-12-25T11:18:24.406048 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/lastIndexOf.js
+W, [2024-12-25T11:18:24.406625 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/lastIndexOf.js
+I, [2024-12-25T11:18:24.406659 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/lastIndexOfFrom.js
+W, [2024-12-25T11:18:24.407042 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/lastIndexOfFrom.js
+I, [2024-12-25T11:18:24.407080 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/lowerCase.js
+W, [2024-12-25T11:18:24.407570 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/lowerCase.js
+I, [2024-12-25T11:18:24.407678 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/lowerFirst.js
+W, [2024-12-25T11:18:24.408271 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/lowerFirst.js
+I, [2024-12-25T11:18:24.408339 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/lt.js
+W, [2024-12-25T11:18:24.409444 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/lt.js
+I, [2024-12-25T11:18:24.409792 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/lte.js
+W, [2024-12-25T11:18:24.411236 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/lte.js
+I, [2024-12-25T11:18:24.411438 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/map.js
+W, [2024-12-25T11:18:24.412804 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/map.js
+I, [2024-12-25T11:18:24.412850 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/mapKeys.js
+W, [2024-12-25T11:18:24.414555 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/mapKeys.js
+I, [2024-12-25T11:18:24.414654 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/mapValues.js
+W, [2024-12-25T11:18:24.415779 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/mapValues.js
+I, [2024-12-25T11:18:24.415824 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/matches.js
+W, [2024-12-25T11:18:24.416625 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/matches.js
+I, [2024-12-25T11:18:24.416686 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/matchesProperty.js
+W, [2024-12-25T11:18:24.417197 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/matchesProperty.js
+I, [2024-12-25T11:18:24.417217 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/math.js
+W, [2024-12-25T11:18:24.417503 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/math.js
+I, [2024-12-25T11:18:24.417520 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/max.js
+W, [2024-12-25T11:18:24.417892 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/max.js
+I, [2024-12-25T11:18:24.417910 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/maxBy.js
+W, [2024-12-25T11:18:24.418215 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/maxBy.js
+I, [2024-12-25T11:18:24.418233 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/mean.js
+W, [2024-12-25T11:18:24.418498 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/mean.js
+I, [2024-12-25T11:18:24.418517 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/meanBy.js
+W, [2024-12-25T11:18:24.418785 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/meanBy.js
+I, [2024-12-25T11:18:24.418805 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/memoize.js
+W, [2024-12-25T11:18:24.419066 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/memoize.js
+I, [2024-12-25T11:18:24.419131 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/merge.js
+W, [2024-12-25T11:18:24.419451 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/merge.js
+I, [2024-12-25T11:18:24.419474 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/mergeAll.js
+W, [2024-12-25T11:18:24.419738 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/mergeAll.js
+I, [2024-12-25T11:18:24.419757 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/mergeAllWith.js
+W, [2024-12-25T11:18:24.420017 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/mergeAllWith.js
+I, [2024-12-25T11:18:24.420052 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/mergeWith.js
+W, [2024-12-25T11:18:24.420243 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/mergeWith.js
+I, [2024-12-25T11:18:24.420260 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/method.js
+W, [2024-12-25T11:18:24.420493 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/method.js
+I, [2024-12-25T11:18:24.420511 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/methodOf.js
+W, [2024-12-25T11:18:24.420759 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/methodOf.js
+I, [2024-12-25T11:18:24.420778 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/min.js
+W, [2024-12-25T11:18:24.421032 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/min.js
+I, [2024-12-25T11:18:24.421051 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/minBy.js
+W, [2024-12-25T11:18:24.421992 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/minBy.js
+I, [2024-12-25T11:18:24.422011 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/mixin.js
+W, [2024-12-25T11:18:24.422296 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/mixin.js
+I, [2024-12-25T11:18:24.422319 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/multiply.js
+W, [2024-12-25T11:18:24.422652 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/multiply.js
+I, [2024-12-25T11:18:24.422679 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/nAry.js
+W, [2024-12-25T11:18:24.422961 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/nAry.js
+I, [2024-12-25T11:18:24.422979 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/negate.js
+W, [2024-12-25T11:18:24.423266 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/negate.js
+I, [2024-12-25T11:18:24.423285 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/next.js
+W, [2024-12-25T11:18:24.423566 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/next.js
+I, [2024-12-25T11:18:24.423586 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/noop.js
+W, [2024-12-25T11:18:24.424032 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/noop.js
+I, [2024-12-25T11:18:24.424090 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/now.js
+W, [2024-12-25T11:18:24.424539 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/now.js
+I, [2024-12-25T11:18:24.424601 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/nth.js
+W, [2024-12-25T11:18:24.425074 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/nth.js
+I, [2024-12-25T11:18:24.425163 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/nthArg.js
+W, [2024-12-25T11:18:24.425637 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/nthArg.js
+I, [2024-12-25T11:18:24.425673 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/number.js
+W, [2024-12-25T11:18:24.426059 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/number.js
+I, [2024-12-25T11:18:24.426094 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/object.js
+W, [2024-12-25T11:18:24.426504 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/object.js
+I, [2024-12-25T11:18:24.426541 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/omit.js
+W, [2024-12-25T11:18:24.426961 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/omit.js
+I, [2024-12-25T11:18:24.427003 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/omitAll.js
+W, [2024-12-25T11:18:24.427710 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/omitAll.js
+I, [2024-12-25T11:18:24.427756 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/omitBy.js
+W, [2024-12-25T11:18:24.428640 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/omitBy.js
+I, [2024-12-25T11:18:24.428705 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/once.js
+W, [2024-12-25T11:18:24.429602 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/once.js
+I, [2024-12-25T11:18:24.429726 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/orderBy.js
+W, [2024-12-25T11:18:24.430243 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/orderBy.js
+I, [2024-12-25T11:18:24.430288 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/over.js
+W, [2024-12-25T11:18:24.430769 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/over.js
+I, [2024-12-25T11:18:24.430810 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/overArgs.js
+W, [2024-12-25T11:18:24.431236 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/overArgs.js
+I, [2024-12-25T11:18:24.431291 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/overEvery.js
+W, [2024-12-25T11:18:24.432058 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/overEvery.js
+I, [2024-12-25T11:18:24.432119 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/overSome.js
+W, [2024-12-25T11:18:24.432811 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/overSome.js
+I, [2024-12-25T11:18:24.432856 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pad.js
+W, [2024-12-25T11:18:24.433863 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pad.js
+I, [2024-12-25T11:18:24.433901 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/padChars.js
+W, [2024-12-25T11:18:24.434391 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/padChars.js
+I, [2024-12-25T11:18:24.434475 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/padCharsEnd.js
+W, [2024-12-25T11:18:24.434852 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/padCharsEnd.js
+I, [2024-12-25T11:18:24.434880 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/padCharsStart.js
+W, [2024-12-25T11:18:24.435099 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/padCharsStart.js
+I, [2024-12-25T11:18:24.435126 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/padEnd.js
+W, [2024-12-25T11:18:24.435347 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/padEnd.js
+I, [2024-12-25T11:18:24.435376 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/padStart.js
+W, [2024-12-25T11:18:24.435631 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/padStart.js
+I, [2024-12-25T11:18:24.435673 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/parseInt.js
+W, [2024-12-25T11:18:24.435877 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/parseInt.js
+I, [2024-12-25T11:18:24.435911 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/partial.js
+W, [2024-12-25T11:18:24.436380 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/partial.js
+I, [2024-12-25T11:18:24.436463 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/partialRight.js
+W, [2024-12-25T11:18:24.436795 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/partialRight.js
+I, [2024-12-25T11:18:24.436829 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/partition.js
+W, [2024-12-25T11:18:24.437130 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/partition.js
+I, [2024-12-25T11:18:24.437158 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/path.js
+W, [2024-12-25T11:18:24.437490 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/path.js
+I, [2024-12-25T11:18:24.437509 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pathEq.js
+W, [2024-12-25T11:18:24.437778 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pathEq.js
+I, [2024-12-25T11:18:24.437797 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pathOr.js
+W, [2024-12-25T11:18:24.437993 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pathOr.js
+I, [2024-12-25T11:18:24.438011 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/paths.js
+W, [2024-12-25T11:18:24.438205 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/paths.js
+I, [2024-12-25T11:18:24.438223 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pick.js
+W, [2024-12-25T11:18:24.438544 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pick.js
+I, [2024-12-25T11:18:24.438563 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pickAll.js
+W, [2024-12-25T11:18:24.438734 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pickAll.js
+I, [2024-12-25T11:18:24.438753 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pickBy.js
+W, [2024-12-25T11:18:24.438912 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pickBy.js
+I, [2024-12-25T11:18:24.438930 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pipe.js
+W, [2024-12-25T11:18:24.442222 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pipe.js
+I, [2024-12-25T11:18:24.442255 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/placeholder.js
+W, [2024-12-25T11:18:24.442756 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/placeholder.js
+I, [2024-12-25T11:18:24.442789 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/plant.js
+W, [2024-12-25T11:18:24.443109 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/plant.js
+I, [2024-12-25T11:18:24.443133 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pluck.js
+W, [2024-12-25T11:18:24.443949 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pluck.js
+I, [2024-12-25T11:18:24.444069 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/prop.js
+W, [2024-12-25T11:18:24.444994 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/prop.js
+I, [2024-12-25T11:18:24.445262 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/propEq.js
+W, [2024-12-25T11:18:24.446212 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/propEq.js
+I, [2024-12-25T11:18:24.446245 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/propOr.js
+W, [2024-12-25T11:18:24.446959 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/propOr.js
+I, [2024-12-25T11:18:24.447033 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/property.js
+W, [2024-12-25T11:18:24.447393 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/property.js
+I, [2024-12-25T11:18:24.448479 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/propertyOf.js
+W, [2024-12-25T11:18:24.449295 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/propertyOf.js
+I, [2024-12-25T11:18:24.449329 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/props.js
+W, [2024-12-25T11:18:24.449690 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/props.js
+I, [2024-12-25T11:18:24.449720 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pull.js
+W, [2024-12-25T11:18:24.450190 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pull.js
+I, [2024-12-25T11:18:24.450238 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pullAll.js
+W, [2024-12-25T11:18:24.450735 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pullAll.js
+I, [2024-12-25T11:18:24.450766 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pullAllBy.js
+W, [2024-12-25T11:18:24.451130 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pullAllBy.js
+I, [2024-12-25T11:18:24.451164 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pullAllWith.js
+W, [2024-12-25T11:18:24.451556 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pullAllWith.js
+I, [2024-12-25T11:18:24.451589 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/pullAt.js
+W, [2024-12-25T11:18:24.452030 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/pullAt.js
+I, [2024-12-25T11:18:24.452062 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/random.js
+W, [2024-12-25T11:18:24.452524 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/random.js
+I, [2024-12-25T11:18:24.452568 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/range.js
+W, [2024-12-25T11:18:24.452872 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/range.js
+I, [2024-12-25T11:18:24.452911 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/rangeRight.js
+W, [2024-12-25T11:18:24.453202 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/rangeRight.js
+I, [2024-12-25T11:18:24.453222 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/rangeStep.js
+W, [2024-12-25T11:18:24.453485 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/rangeStep.js
+I, [2024-12-25T11:18:24.453503 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/rangeStepRight.js
+W, [2024-12-25T11:18:24.453952 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/rangeStepRight.js
+I, [2024-12-25T11:18:24.453971 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/rearg.js
+W, [2024-12-25T11:18:24.454159 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/rearg.js
+I, [2024-12-25T11:18:24.454177 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/reduce.js
+W, [2024-12-25T11:18:24.454335 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/reduce.js
+I, [2024-12-25T11:18:24.454354 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/reduceRight.js
+W, [2024-12-25T11:18:24.454624 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/reduceRight.js
+I, [2024-12-25T11:18:24.454643 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/reject.js
+W, [2024-12-25T11:18:24.454889 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/reject.js
+I, [2024-12-25T11:18:24.454908 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/remove.js
+W, [2024-12-25T11:18:24.455149 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/remove.js
+I, [2024-12-25T11:18:24.455167 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/repeat.js
+W, [2024-12-25T11:18:24.456130 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/repeat.js
+I, [2024-12-25T11:18:24.456163 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/replace.js
+W, [2024-12-25T11:18:24.456506 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/replace.js
+I, [2024-12-25T11:18:24.456525 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/rest.js
+W, [2024-12-25T11:18:24.459718 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/rest.js
+I, [2024-12-25T11:18:24.459838 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/restFrom.js
+W, [2024-12-25T11:18:24.460701 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/restFrom.js
+I, [2024-12-25T11:18:24.460832 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/result.js
+W, [2024-12-25T11:18:24.462714 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/result.js
+I, [2024-12-25T11:18:24.462820 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/reverse.js
+W, [2024-12-25T11:18:24.463475 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/reverse.js
+I, [2024-12-25T11:18:24.463529 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/round.js
+W, [2024-12-25T11:18:24.463994 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/round.js
+I, [2024-12-25T11:18:24.464069 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sample.js
+W, [2024-12-25T11:18:24.464782 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sample.js
+I, [2024-12-25T11:18:24.464814 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sampleSize.js
+W, [2024-12-25T11:18:24.465223 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sampleSize.js
+I, [2024-12-25T11:18:24.465263 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/seq.js
+W, [2024-12-25T11:18:24.466159 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/seq.js
+I, [2024-12-25T11:18:24.466189 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/set.js
+W, [2024-12-25T11:18:24.466811 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/set.js
+I, [2024-12-25T11:18:24.466941 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/setWith.js
+W, [2024-12-25T11:18:24.467463 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/setWith.js
+I, [2024-12-25T11:18:24.467588 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/shuffle.js
+W, [2024-12-25T11:18:24.468101 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/shuffle.js
+I, [2024-12-25T11:18:24.468226 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/size.js
+W, [2024-12-25T11:18:24.468585 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/size.js
+I, [2024-12-25T11:18:24.468726 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/slice.js
+W, [2024-12-25T11:18:24.469092 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/slice.js
+I, [2024-12-25T11:18:24.469117 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/snakeCase.js
+W, [2024-12-25T11:18:24.469801 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/snakeCase.js
+I, [2024-12-25T11:18:24.469881 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/some.js
+W, [2024-12-25T11:18:24.470217 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/some.js
+I, [2024-12-25T11:18:24.470260 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sortBy.js
+W, [2024-12-25T11:18:24.470716 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sortBy.js
+I, [2024-12-25T11:18:24.471026 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sortedIndex.js
+W, [2024-12-25T11:18:24.471843 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sortedIndex.js
+I, [2024-12-25T11:18:24.471871 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sortedIndexBy.js
+W, [2024-12-25T11:18:24.472300 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sortedIndexBy.js
+I, [2024-12-25T11:18:24.472333 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sortedIndexOf.js
+W, [2024-12-25T11:18:24.472727 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sortedIndexOf.js
+I, [2024-12-25T11:18:24.472807 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sortedLastIndex.js
+W, [2024-12-25T11:18:24.473872 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sortedLastIndex.js
+I, [2024-12-25T11:18:24.473906 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sortedLastIndexBy.js
+W, [2024-12-25T11:18:24.474323 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sortedLastIndexBy.js
+I, [2024-12-25T11:18:24.474395 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sortedLastIndexOf.js
+W, [2024-12-25T11:18:24.475037 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sortedLastIndexOf.js
+I, [2024-12-25T11:18:24.475096 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sortedUniq.js
+W, [2024-12-25T11:18:24.475648 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sortedUniq.js
+I, [2024-12-25T11:18:24.475689 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sortedUniqBy.js
+W, [2024-12-25T11:18:24.476102 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sortedUniqBy.js
+I, [2024-12-25T11:18:24.476168 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/split.js
+W, [2024-12-25T11:18:24.476640 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/split.js
+I, [2024-12-25T11:18:24.476686 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/spread.js
+W, [2024-12-25T11:18:24.477366 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/spread.js
+I, [2024-12-25T11:18:24.477531 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/spreadFrom.js
+W, [2024-12-25T11:18:24.478394 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/spreadFrom.js
+I, [2024-12-25T11:18:24.478600 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/startCase.js
+W, [2024-12-25T11:18:24.479813 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/startCase.js
+I, [2024-12-25T11:18:24.481048 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/startsWith.js
+W, [2024-12-25T11:18:24.481622 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/startsWith.js
+I, [2024-12-25T11:18:24.482030 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/string.js
+W, [2024-12-25T11:18:24.482468 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/string.js
+I, [2024-12-25T11:18:24.482520 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/stubArray.js
+W, [2024-12-25T11:18:24.483041 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/stubArray.js
+I, [2024-12-25T11:18:24.483070 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/stubFalse.js
+W, [2024-12-25T11:18:24.483617 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/stubFalse.js
+I, [2024-12-25T11:18:24.483645 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/stubObject.js
+W, [2024-12-25T11:18:24.484008 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/stubObject.js
+I, [2024-12-25T11:18:24.484029 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/stubString.js
+W, [2024-12-25T11:18:24.484307 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/stubString.js
+I, [2024-12-25T11:18:24.484326 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/stubTrue.js
+W, [2024-12-25T11:18:24.484606 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/stubTrue.js
+I, [2024-12-25T11:18:24.484625 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/subtract.js
+W, [2024-12-25T11:18:24.484923 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/subtract.js
+I, [2024-12-25T11:18:24.484944 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sum.js
+W, [2024-12-25T11:18:24.485213 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sum.js
+I, [2024-12-25T11:18:24.485279 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/sumBy.js
+W, [2024-12-25T11:18:24.485573 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/sumBy.js
+I, [2024-12-25T11:18:24.485600 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/symmetricDifference.js
+W, [2024-12-25T11:18:24.485872 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/symmetricDifference.js
+I, [2024-12-25T11:18:24.485905 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/symmetricDifferenceBy.js
+W, [2024-12-25T11:18:24.486194 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/symmetricDifferenceBy.js
+I, [2024-12-25T11:18:24.486227 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/symmetricDifferenceWith.js
+W, [2024-12-25T11:18:24.486449 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/symmetricDifferenceWith.js
+I, [2024-12-25T11:18:24.486480 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/tail.js
+W, [2024-12-25T11:18:24.486770 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/tail.js
+I, [2024-12-25T11:18:24.486798 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/take.js
+W, [2024-12-25T11:18:24.487067 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/take.js
+I, [2024-12-25T11:18:24.487100 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/takeLast.js
+W, [2024-12-25T11:18:24.487549 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/takeLast.js
+I, [2024-12-25T11:18:24.487581 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/takeLastWhile.js
+W, [2024-12-25T11:18:24.488022 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/takeLastWhile.js
+I, [2024-12-25T11:18:24.488055 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/takeRight.js
+W, [2024-12-25T11:18:24.488262 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/takeRight.js
+I, [2024-12-25T11:18:24.488288 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/takeRightWhile.js
+W, [2024-12-25T11:18:24.488518 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/takeRightWhile.js
+I, [2024-12-25T11:18:24.488550 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/takeWhile.js
+W, [2024-12-25T11:18:24.488843 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/takeWhile.js
+I, [2024-12-25T11:18:24.488877 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/tap.js
+W, [2024-12-25T11:18:24.489162 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/tap.js
+I, [2024-12-25T11:18:24.489194 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/template.js
+W, [2024-12-25T11:18:24.489505 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/template.js
+I, [2024-12-25T11:18:24.489531 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/templateSettings.js
+W, [2024-12-25T11:18:24.489809 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/templateSettings.js
+I, [2024-12-25T11:18:24.489836 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/throttle.js
+W, [2024-12-25T11:18:24.490143 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/throttle.js
+I, [2024-12-25T11:18:24.490170 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/thru.js
+W, [2024-12-25T11:18:24.490739 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/thru.js
+I, [2024-12-25T11:18:24.490843 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/times.js
+W, [2024-12-25T11:18:24.491392 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/times.js
+I, [2024-12-25T11:18:24.491864 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toArray.js
+W, [2024-12-25T11:18:24.492375 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toArray.js
+I, [2024-12-25T11:18:24.492414 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toFinite.js
+W, [2024-12-25T11:18:24.493065 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toFinite.js
+I, [2024-12-25T11:18:24.493242 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toInteger.js
+W, [2024-12-25T11:18:24.493719 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toInteger.js
+I, [2024-12-25T11:18:24.494219 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toIterator.js
+W, [2024-12-25T11:18:24.494933 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toIterator.js
+I, [2024-12-25T11:18:24.495145 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toJSON.js
+W, [2024-12-25T11:18:24.495857 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toJSON.js
+I, [2024-12-25T11:18:24.495894 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toLength.js
+W, [2024-12-25T11:18:24.496652 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toLength.js
+I, [2024-12-25T11:18:24.497073 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toLower.js
+W, [2024-12-25T11:18:24.497908 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toLower.js
+I, [2024-12-25T11:18:24.497960 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toNumber.js
+W, [2024-12-25T11:18:24.499349 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toNumber.js
+I, [2024-12-25T11:18:24.499679 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toPairs.js
+W, [2024-12-25T11:18:24.500403 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toPairs.js
+I, [2024-12-25T11:18:24.500638 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toPairsIn.js
+W, [2024-12-25T11:18:24.501093 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toPairsIn.js
+I, [2024-12-25T11:18:24.501206 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toPath.js
+W, [2024-12-25T11:18:24.501541 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toPath.js
+I, [2024-12-25T11:18:24.501695 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toPlainObject.js
+W, [2024-12-25T11:18:24.502241 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toPlainObject.js
+I, [2024-12-25T11:18:24.502347 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toSafeInteger.js
+W, [2024-12-25T11:18:24.502957 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toSafeInteger.js
+I, [2024-12-25T11:18:24.502992 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toString.js
+W, [2024-12-25T11:18:24.503342 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toString.js
+I, [2024-12-25T11:18:24.503386 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/toUpper.js
+W, [2024-12-25T11:18:24.503889 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/toUpper.js
+I, [2024-12-25T11:18:24.503971 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/transform.js
+W, [2024-12-25T11:18:24.504284 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/transform.js
+I, [2024-12-25T11:18:24.504369 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/trim.js
+W, [2024-12-25T11:18:24.504896 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/trim.js
+I, [2024-12-25T11:18:24.504941 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/trimChars.js
+W, [2024-12-25T11:18:24.505465 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/trimChars.js
+I, [2024-12-25T11:18:24.505549 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/trimCharsEnd.js
+W, [2024-12-25T11:18:24.505882 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/trimCharsEnd.js
+I, [2024-12-25T11:18:24.505967 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/trimCharsStart.js
+W, [2024-12-25T11:18:24.506238 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/trimCharsStart.js
+I, [2024-12-25T11:18:24.506365 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/trimEnd.js
+W, [2024-12-25T11:18:24.507993 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/trimEnd.js
+I, [2024-12-25T11:18:24.508025 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/trimStart.js
+W, [2024-12-25T11:18:24.508399 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/trimStart.js
+I, [2024-12-25T11:18:24.508517 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/truncate.js
+W, [2024-12-25T11:18:24.508771 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/truncate.js
+I, [2024-12-25T11:18:24.508798 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/unapply.js
+W, [2024-12-25T11:18:24.509133 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/unapply.js
+I, [2024-12-25T11:18:24.509164 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/unary.js
+W, [2024-12-25T11:18:24.509630 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/unary.js
+I, [2024-12-25T11:18:24.509664 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/unescape.js
+W, [2024-12-25T11:18:24.510425 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/unescape.js
+I, [2024-12-25T11:18:24.510600 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/union.js
+W, [2024-12-25T11:18:24.511630 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/union.js
+I, [2024-12-25T11:18:24.511897 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/unionBy.js
+W, [2024-12-25T11:18:24.513091 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/unionBy.js
+I, [2024-12-25T11:18:24.513127 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/unionWith.js
+W, [2024-12-25T11:18:24.513671 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/unionWith.js
+I, [2024-12-25T11:18:24.513704 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/uniq.js
+W, [2024-12-25T11:18:24.514318 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/uniq.js
+I, [2024-12-25T11:18:24.514377 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/uniqBy.js
+W, [2024-12-25T11:18:24.514986 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/uniqBy.js
+I, [2024-12-25T11:18:24.515041 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/uniqWith.js
+W, [2024-12-25T11:18:24.515521 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/uniqWith.js
+I, [2024-12-25T11:18:24.515549 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/uniqueId.js
+W, [2024-12-25T11:18:24.515966 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/uniqueId.js
+I, [2024-12-25T11:18:24.516011 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/unnest.js
+W, [2024-12-25T11:18:24.516908 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/unnest.js
+I, [2024-12-25T11:18:24.516973 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/unset.js
+W, [2024-12-25T11:18:24.517876 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/unset.js
+I, [2024-12-25T11:18:24.517926 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/unzip.js
+W, [2024-12-25T11:18:24.518339 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/unzip.js
+I, [2024-12-25T11:18:24.518371 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/unzipWith.js
+W, [2024-12-25T11:18:24.518846 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/unzipWith.js
+I, [2024-12-25T11:18:24.518893 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/update.js
+W, [2024-12-25T11:18:24.519216 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/update.js
+I, [2024-12-25T11:18:24.519249 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/updateWith.js
+W, [2024-12-25T11:18:24.519547 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/updateWith.js
+I, [2024-12-25T11:18:24.519580 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/upperCase.js
+W, [2024-12-25T11:18:24.519853 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/upperCase.js
+I, [2024-12-25T11:18:24.519885 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/upperFirst.js
+W, [2024-12-25T11:18:24.520142 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/upperFirst.js
+I, [2024-12-25T11:18:24.520176 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/useWith.js
+W, [2024-12-25T11:18:24.520484 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/useWith.js
+I, [2024-12-25T11:18:24.520517 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/util.js
+W, [2024-12-25T11:18:24.520870 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/util.js
+I, [2024-12-25T11:18:24.520907 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/value.js
+W, [2024-12-25T11:18:24.521191 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/value.js
+I, [2024-12-25T11:18:24.521223 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/valueOf.js
+W, [2024-12-25T11:18:24.521523 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/valueOf.js
+I, [2024-12-25T11:18:24.521556 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/values.js
+W, [2024-12-25T11:18:24.521824 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/values.js
+I, [2024-12-25T11:18:24.522290 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/valuesIn.js
+W, [2024-12-25T11:18:24.525728 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/valuesIn.js
+I, [2024-12-25T11:18:24.525767 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/where.js
+W, [2024-12-25T11:18:24.526164 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/where.js
+I, [2024-12-25T11:18:24.526193 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/whereEq.js
+W, [2024-12-25T11:18:24.526555 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/whereEq.js
+I, [2024-12-25T11:18:24.526584 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/without.js
+W, [2024-12-25T11:18:24.528528 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/without.js
+I, [2024-12-25T11:18:24.528698 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/words.js
+W, [2024-12-25T11:18:24.529152 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/words.js
+I, [2024-12-25T11:18:24.529189 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/wrap.js
+W, [2024-12-25T11:18:24.530149 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/wrap.js
+I, [2024-12-25T11:18:24.530219 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/wrapperAt.js
+W, [2024-12-25T11:18:24.530913 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/wrapperAt.js
+I, [2024-12-25T11:18:24.530951 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/wrapperChain.js
+W, [2024-12-25T11:18:24.531591 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/wrapperChain.js
+I, [2024-12-25T11:18:24.531651 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/wrapperLodash.js
+W, [2024-12-25T11:18:24.532574 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/wrapperLodash.js
+I, [2024-12-25T11:18:24.532628 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/wrapperReverse.js
+W, [2024-12-25T11:18:24.533071 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/wrapperReverse.js
+I, [2024-12-25T11:18:24.533107 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/wrapperValue.js
+W, [2024-12-25T11:18:24.533532 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/wrapperValue.js
+I, [2024-12-25T11:18:24.533567 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/xor.js
+W, [2024-12-25T11:18:24.533914 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/xor.js
+I, [2024-12-25T11:18:24.533948 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/xorBy.js
+W, [2024-12-25T11:18:24.534310 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/xorBy.js
+I, [2024-12-25T11:18:24.534343 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/xorWith.js
+W, [2024-12-25T11:18:24.534724 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/xorWith.js
+I, [2024-12-25T11:18:24.534758 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/zip.js
+W, [2024-12-25T11:18:24.535110 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/zip.js
+I, [2024-12-25T11:18:24.535143 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/zipAll.js
+W, [2024-12-25T11:18:24.535554 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/zipAll.js
+I, [2024-12-25T11:18:24.535589 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/zipObj.js
+W, [2024-12-25T11:18:24.535906 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/zipObj.js
+I, [2024-12-25T11:18:24.535938 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/zipObject.js
+W, [2024-12-25T11:18:24.536168 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/zipObject.js
+I, [2024-12-25T11:18:24.536201 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/zipObjectDeep.js
+W, [2024-12-25T11:18:24.536452 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/zipObjectDeep.js
+I, [2024-12-25T11:18:24.536485 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp/zipWith.js
+W, [2024-12-25T11:18:24.536788 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp/zipWith.js
+I, [2024-12-25T11:18:24.536822 #36268] INFO -- : Processing file: ../../node_modules/lodash/fp.js
+W, [2024-12-25T11:18:24.537132 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fp.js
+I, [2024-12-25T11:18:24.537164 #36268] INFO -- : Processing file: ../../node_modules/lodash/fromPairs.js
+W, [2024-12-25T11:18:24.537497 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/fromPairs.js
+I, [2024-12-25T11:18:24.537531 #36268] INFO -- : Processing file: ../../node_modules/lodash/function.js
+W, [2024-12-25T11:18:24.537807 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/function.js
+I, [2024-12-25T11:18:24.537834 #36268] INFO -- : Processing file: ../../node_modules/lodash/functions.js
+W, [2024-12-25T11:18:24.538589 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/functions.js
+I, [2024-12-25T11:18:24.538623 #36268] INFO -- : Processing file: ../../node_modules/lodash/functionsIn.js
+W, [2024-12-25T11:18:24.538914 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/functionsIn.js
+I, [2024-12-25T11:18:24.538941 #36268] INFO -- : Processing file: ../../node_modules/lodash/get.js
+W, [2024-12-25T11:18:24.539211 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/get.js
+I, [2024-12-25T11:18:24.539237 #36268] INFO -- : Processing file: ../../node_modules/lodash/groupBy.js
+W, [2024-12-25T11:18:24.541759 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/groupBy.js
+I, [2024-12-25T11:18:24.541849 #36268] INFO -- : Processing file: ../../node_modules/lodash/gt.js
+W, [2024-12-25T11:18:24.542326 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/gt.js
+I, [2024-12-25T11:18:24.542362 #36268] INFO -- : Processing file: ../../node_modules/lodash/gte.js
+W, [2024-12-25T11:18:24.544344 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/gte.js
+I, [2024-12-25T11:18:24.544444 #36268] INFO -- : Processing file: ../../node_modules/lodash/has.js
+W, [2024-12-25T11:18:24.545140 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/has.js
+I, [2024-12-25T11:18:24.545184 #36268] INFO -- : Processing file: ../../node_modules/lodash/hasIn.js
+W, [2024-12-25T11:18:24.545923 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/hasIn.js
+I, [2024-12-25T11:18:24.545985 #36268] INFO -- : Processing file: ../../node_modules/lodash/head.js
+W, [2024-12-25T11:18:24.546688 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/head.js
+I, [2024-12-25T11:18:24.546787 #36268] INFO -- : Processing file: ../../node_modules/lodash/identity.js
+W, [2024-12-25T11:18:24.547247 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/identity.js
+I, [2024-12-25T11:18:24.547281 #36268] INFO -- : Processing file: ../../node_modules/lodash/inRange.js
+W, [2024-12-25T11:18:24.548075 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/inRange.js
+I, [2024-12-25T11:18:24.548225 #36268] INFO -- : Processing file: ../../node_modules/lodash/includes.js
+W, [2024-12-25T11:18:24.548785 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/includes.js
+I, [2024-12-25T11:18:24.548825 #36268] INFO -- : Processing file: ../../node_modules/lodash/index.js
+W, [2024-12-25T11:18:24.549215 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/index.js
+I, [2024-12-25T11:18:24.549247 #36268] INFO -- : Processing file: ../../node_modules/lodash/indexOf.js
+W, [2024-12-25T11:18:24.549537 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/indexOf.js
+I, [2024-12-25T11:18:24.549570 #36268] INFO -- : Processing file: ../../node_modules/lodash/initial.js
+W, [2024-12-25T11:18:24.549879 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/initial.js
+I, [2024-12-25T11:18:24.549911 #36268] INFO -- : Processing file: ../../node_modules/lodash/intersection.js
+W, [2024-12-25T11:18:24.550251 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/intersection.js
+I, [2024-12-25T11:18:24.550285 #36268] INFO -- : Processing file: ../../node_modules/lodash/intersectionBy.js
+W, [2024-12-25T11:18:24.550603 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/intersectionBy.js
+I, [2024-12-25T11:18:24.550637 #36268] INFO -- : Processing file: ../../node_modules/lodash/intersectionWith.js
+W, [2024-12-25T11:18:24.550935 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/intersectionWith.js
+I, [2024-12-25T11:18:24.550968 #36268] INFO -- : Processing file: ../../node_modules/lodash/invert.js
+W, [2024-12-25T11:18:24.551248 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/invert.js
+I, [2024-12-25T11:18:24.551280 #36268] INFO -- : Processing file: ../../node_modules/lodash/invertBy.js
+W, [2024-12-25T11:18:24.551555 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/invertBy.js
+I, [2024-12-25T11:18:24.551588 #36268] INFO -- : Processing file: ../../node_modules/lodash/invoke.js
+W, [2024-12-25T11:18:24.551782 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/invoke.js
+I, [2024-12-25T11:18:24.551814 #36268] INFO -- : Processing file: ../../node_modules/lodash/invokeMap.js
+W, [2024-12-25T11:18:24.552012 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/invokeMap.js
+I, [2024-12-25T11:18:24.552046 #36268] INFO -- : Processing file: ../../node_modules/lodash/isArguments.js
+W, [2024-12-25T11:18:24.552371 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isArguments.js
+I, [2024-12-25T11:18:24.552491 #36268] INFO -- : Processing file: ../../node_modules/lodash/isArray.js
+W, [2024-12-25T11:18:24.552785 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isArray.js
+I, [2024-12-25T11:18:24.552818 #36268] INFO -- : Processing file: ../../node_modules/lodash/isArrayBuffer.js
+W, [2024-12-25T11:18:24.553083 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isArrayBuffer.js
+I, [2024-12-25T11:18:24.553117 #36268] INFO -- : Processing file: ../../node_modules/lodash/isArrayLike.js
+W, [2024-12-25T11:18:24.553371 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isArrayLike.js
+I, [2024-12-25T11:18:24.553399 #36268] INFO -- : Processing file: ../../node_modules/lodash/isArrayLikeObject.js
+W, [2024-12-25T11:18:24.553712 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isArrayLikeObject.js
+I, [2024-12-25T11:18:24.553731 #36268] INFO -- : Processing file: ../../node_modules/lodash/isBoolean.js
+W, [2024-12-25T11:18:24.553997 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isBoolean.js
+I, [2024-12-25T11:18:24.554015 #36268] INFO -- : Processing file: ../../node_modules/lodash/isBuffer.js
+W, [2024-12-25T11:18:24.554273 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isBuffer.js
+I, [2024-12-25T11:18:24.554294 #36268] INFO -- : Processing file: ../../node_modules/lodash/isDate.js
+W, [2024-12-25T11:18:24.554556 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isDate.js
+I, [2024-12-25T11:18:24.554575 #36268] INFO -- : Processing file: ../../node_modules/lodash/isElement.js
+W, [2024-12-25T11:18:24.554855 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isElement.js
+I, [2024-12-25T11:18:24.554875 #36268] INFO -- : Processing file: ../../node_modules/lodash/isEmpty.js
+W, [2024-12-25T11:18:24.555138 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isEmpty.js
+I, [2024-12-25T11:18:24.555156 #36268] INFO -- : Processing file: ../../node_modules/lodash/isEqual.js
+W, [2024-12-25T11:18:24.555491 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isEqual.js
+I, [2024-12-25T11:18:24.555517 #36268] INFO -- : Processing file: ../../node_modules/lodash/isEqualWith.js
+W, [2024-12-25T11:18:24.555845 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isEqualWith.js
+I, [2024-12-25T11:18:24.555865 #36268] INFO -- : Processing file: ../../node_modules/lodash/isError.js
+W, [2024-12-25T11:18:24.556132 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isError.js
+I, [2024-12-25T11:18:24.556151 #36268] INFO -- : Processing file: ../../node_modules/lodash/isFinite.js
+W, [2024-12-25T11:18:24.556554 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isFinite.js
+I, [2024-12-25T11:18:24.556581 #36268] INFO -- : Processing file: ../../node_modules/lodash/isFunction.js
+W, [2024-12-25T11:18:24.556872 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isFunction.js
+I, [2024-12-25T11:18:24.556954 #36268] INFO -- : Processing file: ../../node_modules/lodash/isInteger.js
+W, [2024-12-25T11:18:24.557228 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isInteger.js
+I, [2024-12-25T11:18:24.557329 #36268] INFO -- : Processing file: ../../node_modules/lodash/isLength.js
+W, [2024-12-25T11:18:24.557949 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isLength.js
+I, [2024-12-25T11:18:24.558082 #36268] INFO -- : Processing file: ../../node_modules/lodash/isMap.js
+W, [2024-12-25T11:18:24.559000 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isMap.js
+I, [2024-12-25T11:18:24.559074 #36268] INFO -- : Processing file: ../../node_modules/lodash/isMatch.js
+W, [2024-12-25T11:18:24.559717 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isMatch.js
+I, [2024-12-25T11:18:24.559880 #36268] INFO -- : Processing file: ../../node_modules/lodash/isMatchWith.js
+W, [2024-12-25T11:18:24.560367 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isMatchWith.js
+I, [2024-12-25T11:18:24.560708 #36268] INFO -- : Processing file: ../../node_modules/lodash/isNaN.js
+W, [2024-12-25T11:18:24.562890 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isNaN.js
+I, [2024-12-25T11:18:24.562970 #36268] INFO -- : Processing file: ../../node_modules/lodash/isNative.js
+W, [2024-12-25T11:18:24.563933 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isNative.js
+I, [2024-12-25T11:18:24.564122 #36268] INFO -- : Processing file: ../../node_modules/lodash/isNil.js
+W, [2024-12-25T11:18:24.564674 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isNil.js
+I, [2024-12-25T11:18:24.564733 #36268] INFO -- : Processing file: ../../node_modules/lodash/isNull.js
+W, [2024-12-25T11:18:24.565535 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isNull.js
+I, [2024-12-25T11:18:24.565748 #36268] INFO -- : Processing file: ../../node_modules/lodash/isNumber.js
+W, [2024-12-25T11:18:24.566360 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isNumber.js
+I, [2024-12-25T11:18:24.566385 #36268] INFO -- : Processing file: ../../node_modules/lodash/isObject.js
+W, [2024-12-25T11:18:24.566922 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isObject.js
+I, [2024-12-25T11:18:24.566942 #36268] INFO -- : Processing file: ../../node_modules/lodash/isObjectLike.js
+W, [2024-12-25T11:18:24.567223 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isObjectLike.js
+I, [2024-12-25T11:18:24.567304 #36268] INFO -- : Processing file: ../../node_modules/lodash/isPlainObject.js
+W, [2024-12-25T11:18:24.567673 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isPlainObject.js
+I, [2024-12-25T11:18:24.567761 #36268] INFO -- : Processing file: ../../node_modules/lodash/isRegExp.js
+W, [2024-12-25T11:18:24.568043 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isRegExp.js
+I, [2024-12-25T11:18:24.568117 #36268] INFO -- : Processing file: ../../node_modules/lodash/isSafeInteger.js
+W, [2024-12-25T11:18:24.568673 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isSafeInteger.js
+I, [2024-12-25T11:18:24.568710 #36268] INFO -- : Processing file: ../../node_modules/lodash/isSet.js
+W, [2024-12-25T11:18:24.569135 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isSet.js
+I, [2024-12-25T11:18:24.569288 #36268] INFO -- : Processing file: ../../node_modules/lodash/isString.js
+W, [2024-12-25T11:18:24.569752 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isString.js
+I, [2024-12-25T11:18:24.569829 #36268] INFO -- : Processing file: ../../node_modules/lodash/isSymbol.js
+W, [2024-12-25T11:18:24.570150 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isSymbol.js
+I, [2024-12-25T11:18:24.570235 #36268] INFO -- : Processing file: ../../node_modules/lodash/isTypedArray.js
+W, [2024-12-25T11:18:24.570591 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isTypedArray.js
+I, [2024-12-25T11:18:24.570637 #36268] INFO -- : Processing file: ../../node_modules/lodash/isUndefined.js
+W, [2024-12-25T11:18:24.570964 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isUndefined.js
+I, [2024-12-25T11:18:24.571008 #36268] INFO -- : Processing file: ../../node_modules/lodash/isWeakMap.js
+W, [2024-12-25T11:18:24.571329 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isWeakMap.js
+I, [2024-12-25T11:18:24.571400 #36268] INFO -- : Processing file: ../../node_modules/lodash/isWeakSet.js
+W, [2024-12-25T11:18:24.571765 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/isWeakSet.js
+I, [2024-12-25T11:18:24.571919 #36268] INFO -- : Processing file: ../../node_modules/lodash/iteratee.js
+W, [2024-12-25T11:18:24.572205 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/iteratee.js
+I, [2024-12-25T11:18:24.572286 #36268] INFO -- : Processing file: ../../node_modules/lodash/join.js
+W, [2024-12-25T11:18:24.572603 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/join.js
+I, [2024-12-25T11:18:24.572646 #36268] INFO -- : Processing file: ../../node_modules/lodash/kebabCase.js
+W, [2024-12-25T11:18:24.572878 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/kebabCase.js
+I, [2024-12-25T11:18:24.572911 #36268] INFO -- : Processing file: ../../node_modules/lodash/keyBy.js
+W, [2024-12-25T11:18:24.573290 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/keyBy.js
+I, [2024-12-25T11:18:24.573544 #36268] INFO -- : Processing file: ../../node_modules/lodash/keys.js
+W, [2024-12-25T11:18:24.573849 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/keys.js
+I, [2024-12-25T11:18:24.573875 #36268] INFO -- : Processing file: ../../node_modules/lodash/keysIn.js
+W, [2024-12-25T11:18:24.574530 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/keysIn.js
+I, [2024-12-25T11:18:24.574562 #36268] INFO -- : Processing file: ../../node_modules/lodash/lang.js
+W, [2024-12-25T11:18:24.574969 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/lang.js
+I, [2024-12-25T11:18:24.575188 #36268] INFO -- : Processing file: ../../node_modules/lodash/last.js
+W, [2024-12-25T11:18:24.575744 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/last.js
+I, [2024-12-25T11:18:24.575861 #36268] INFO -- : Processing file: ../../node_modules/lodash/lastIndexOf.js
+W, [2024-12-25T11:18:24.576274 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/lastIndexOf.js
+I, [2024-12-25T11:18:24.576549 #36268] INFO -- : Processing file: ../../node_modules/lodash/lodash.js
+W, [2024-12-25T11:18:24.580037 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/lodash.js
+I, [2024-12-25T11:18:24.580099 #36268] INFO -- : Processing file: ../../node_modules/lodash/lodash.min.js
+W, [2024-12-25T11:18:24.581744 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/lodash.min.js
+I, [2024-12-25T11:18:24.581771 #36268] INFO -- : Processing file: ../../node_modules/lodash/lowerCase.js
+W, [2024-12-25T11:18:24.582277 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/lowerCase.js
+I, [2024-12-25T11:18:24.582322 #36268] INFO -- : Processing file: ../../node_modules/lodash/lowerFirst.js
+W, [2024-12-25T11:18:24.583168 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/lowerFirst.js
+I, [2024-12-25T11:18:24.583249 #36268] INFO -- : Processing file: ../../node_modules/lodash/lt.js
+W, [2024-12-25T11:18:24.583667 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/lt.js
+I, [2024-12-25T11:18:24.583786 #36268] INFO -- : Processing file: ../../node_modules/lodash/lte.js
+W, [2024-12-25T11:18:24.584112 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/lte.js
+I, [2024-12-25T11:18:24.584226 #36268] INFO -- : Processing file: ../../node_modules/lodash/map.js
+W, [2024-12-25T11:18:24.584529 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/map.js
+I, [2024-12-25T11:18:24.584641 #36268] INFO -- : Processing file: ../../node_modules/lodash/mapKeys.js
+W, [2024-12-25T11:18:24.584941 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/mapKeys.js
+I, [2024-12-25T11:18:24.585063 #36268] INFO -- : Processing file: ../../node_modules/lodash/mapValues.js
+W, [2024-12-25T11:18:24.585363 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/mapValues.js
+I, [2024-12-25T11:18:24.585456 #36268] INFO -- : Processing file: ../../node_modules/lodash/matches.js
+W, [2024-12-25T11:18:24.585795 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/matches.js
+I, [2024-12-25T11:18:24.586012 #36268] INFO -- : Processing file: ../../node_modules/lodash/matchesProperty.js
+W, [2024-12-25T11:18:24.586332 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/matchesProperty.js
+I, [2024-12-25T11:18:24.586753 #36268] INFO -- : Processing file: ../../node_modules/lodash/math.js
+W, [2024-12-25T11:18:24.587009 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/math.js
+I, [2024-12-25T11:18:24.587036 #36268] INFO -- : Processing file: ../../node_modules/lodash/max.js
+W, [2024-12-25T11:18:24.587316 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/max.js
+I, [2024-12-25T11:18:24.587342 #36268] INFO -- : Processing file: ../../node_modules/lodash/maxBy.js
+W, [2024-12-25T11:18:24.589661 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/maxBy.js
+I, [2024-12-25T11:18:24.589691 #36268] INFO -- : Processing file: ../../node_modules/lodash/mean.js
+W, [2024-12-25T11:18:24.590005 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/mean.js
+I, [2024-12-25T11:18:24.590031 #36268] INFO -- : Processing file: ../../node_modules/lodash/meanBy.js
+W, [2024-12-25T11:18:24.590288 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/meanBy.js
+I, [2024-12-25T11:18:24.590309 #36268] INFO -- : Processing file: ../../node_modules/lodash/memoize.js
+W, [2024-12-25T11:18:24.590561 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/memoize.js
+I, [2024-12-25T11:18:24.590587 #36268] INFO -- : Processing file: ../../node_modules/lodash/merge.js
+W, [2024-12-25T11:18:24.590904 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/merge.js
+I, [2024-12-25T11:18:24.590934 #36268] INFO -- : Processing file: ../../node_modules/lodash/mergeWith.js
+W, [2024-12-25T11:18:24.591144 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/mergeWith.js
+I, [2024-12-25T11:18:24.591172 #36268] INFO -- : Processing file: ../../node_modules/lodash/method.js
+W, [2024-12-25T11:18:24.591568 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/method.js
+I, [2024-12-25T11:18:24.591679 #36268] INFO -- : Processing file: ../../node_modules/lodash/methodOf.js
+W, [2024-12-25T11:18:24.592077 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/methodOf.js
+I, [2024-12-25T11:18:24.592107 #36268] INFO -- : Processing file: ../../node_modules/lodash/min.js
+W, [2024-12-25T11:18:24.592458 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/min.js
+I, [2024-12-25T11:18:24.592492 #36268] INFO -- : Processing file: ../../node_modules/lodash/minBy.js
+W, [2024-12-25T11:18:24.592941 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/minBy.js
+I, [2024-12-25T11:18:24.592977 #36268] INFO -- : Processing file: ../../node_modules/lodash/mixin.js
+W, [2024-12-25T11:18:24.594133 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/mixin.js
+I, [2024-12-25T11:18:24.594188 #36268] INFO -- : Processing file: ../../node_modules/lodash/multiply.js
+W, [2024-12-25T11:18:24.594943 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/multiply.js
+I, [2024-12-25T11:18:24.595020 #36268] INFO -- : Processing file: ../../node_modules/lodash/negate.js
+W, [2024-12-25T11:18:24.595736 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/negate.js
+I, [2024-12-25T11:18:24.595909 #36268] INFO -- : Processing file: ../../node_modules/lodash/next.js
+W, [2024-12-25T11:18:24.596319 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/next.js
+I, [2024-12-25T11:18:24.596635 #36268] INFO -- : Processing file: ../../node_modules/lodash/noop.js
+W, [2024-12-25T11:18:24.597172 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/noop.js
+I, [2024-12-25T11:18:24.597283 #36268] INFO -- : Processing file: ../../node_modules/lodash/now.js
+W, [2024-12-25T11:18:24.597957 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/now.js
+I, [2024-12-25T11:18:24.598007 #36268] INFO -- : Processing file: ../../node_modules/lodash/nth.js
+W, [2024-12-25T11:18:24.600991 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/nth.js
+I, [2024-12-25T11:18:24.601065 #36268] INFO -- : Processing file: ../../node_modules/lodash/nthArg.js
+W, [2024-12-25T11:18:24.601686 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/nthArg.js
+I, [2024-12-25T11:18:24.601741 #36268] INFO -- : Processing file: ../../node_modules/lodash/number.js
+W, [2024-12-25T11:18:24.602444 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/number.js
+I, [2024-12-25T11:18:24.602628 #36268] INFO -- : Processing file: ../../node_modules/lodash/object.js
+W, [2024-12-25T11:18:24.603187 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/object.js
+I, [2024-12-25T11:18:24.603213 #36268] INFO -- : Processing file: ../../node_modules/lodash/omit.js
+W, [2024-12-25T11:18:24.603551 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/omit.js
+I, [2024-12-25T11:18:24.603577 #36268] INFO -- : Processing file: ../../node_modules/lodash/omitBy.js
+W, [2024-12-25T11:18:24.603908 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/omitBy.js
+I, [2024-12-25T11:18:24.603937 #36268] INFO -- : Processing file: ../../node_modules/lodash/once.js
+W, [2024-12-25T11:18:24.604353 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/once.js
+I, [2024-12-25T11:18:24.604394 #36268] INFO -- : Processing file: ../../node_modules/lodash/orderBy.js
+W, [2024-12-25T11:18:24.604781 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/orderBy.js
+I, [2024-12-25T11:18:24.604886 #36268] INFO -- : Processing file: ../../node_modules/lodash/over.js
+W, [2024-12-25T11:18:24.605547 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/over.js
+I, [2024-12-25T11:18:24.605584 #36268] INFO -- : Processing file: ../../node_modules/lodash/overArgs.js
+W, [2024-12-25T11:18:24.606201 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/overArgs.js
+I, [2024-12-25T11:18:24.606238 #36268] INFO -- : Processing file: ../../node_modules/lodash/overEvery.js
+W, [2024-12-25T11:18:24.606579 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/overEvery.js
+I, [2024-12-25T11:18:24.606781 #36268] INFO -- : Processing file: ../../node_modules/lodash/overSome.js
+W, [2024-12-25T11:18:24.609026 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/overSome.js
+I, [2024-12-25T11:18:24.609052 #36268] INFO -- : Processing file: ../../node_modules/lodash/pad.js
+W, [2024-12-25T11:18:24.609472 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/pad.js
+I, [2024-12-25T11:18:24.609506 #36268] INFO -- : Processing file: ../../node_modules/lodash/padEnd.js
+W, [2024-12-25T11:18:24.609725 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/padEnd.js
+I, [2024-12-25T11:18:24.609756 #36268] INFO -- : Processing file: ../../node_modules/lodash/padStart.js
+W, [2024-12-25T11:18:24.609965 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/padStart.js
+I, [2024-12-25T11:18:24.609996 #36268] INFO -- : Processing file: ../../node_modules/lodash/parseInt.js
+W, [2024-12-25T11:18:24.610235 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/parseInt.js
+I, [2024-12-25T11:18:24.610269 #36268] INFO -- : Processing file: ../../node_modules/lodash/partial.js
+W, [2024-12-25T11:18:24.610670 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/partial.js
+I, [2024-12-25T11:18:24.610698 #36268] INFO -- : Processing file: ../../node_modules/lodash/partialRight.js
+W, [2024-12-25T11:18:24.611157 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/partialRight.js
+I, [2024-12-25T11:18:24.611192 #36268] INFO -- : Processing file: ../../node_modules/lodash/partition.js
+W, [2024-12-25T11:18:24.611795 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/partition.js
+I, [2024-12-25T11:18:24.611844 #36268] INFO -- : Processing file: ../../node_modules/lodash/pick.js
+W, [2024-12-25T11:18:24.613310 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/pick.js
+I, [2024-12-25T11:18:24.613477 #36268] INFO -- : Processing file: ../../node_modules/lodash/pickBy.js
+W, [2024-12-25T11:18:24.614151 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/pickBy.js
+I, [2024-12-25T11:18:24.614186 #36268] INFO -- : Processing file: ../../node_modules/lodash/plant.js
+W, [2024-12-25T11:18:24.615371 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/plant.js
+I, [2024-12-25T11:18:24.615395 #36268] INFO -- : Processing file: ../../node_modules/lodash/property.js
+W, [2024-12-25T11:18:24.615805 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/property.js
+I, [2024-12-25T11:18:24.615834 #36268] INFO -- : Processing file: ../../node_modules/lodash/propertyOf.js
+W, [2024-12-25T11:18:24.616339 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/propertyOf.js
+I, [2024-12-25T11:18:24.616366 #36268] INFO -- : Processing file: ../../node_modules/lodash/pull.js
+W, [2024-12-25T11:18:24.616613 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/pull.js
+I, [2024-12-25T11:18:24.616641 #36268] INFO -- : Processing file: ../../node_modules/lodash/pullAll.js
+W, [2024-12-25T11:18:24.617002 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/pullAll.js
+I, [2024-12-25T11:18:24.617029 #36268] INFO -- : Processing file: ../../node_modules/lodash/pullAllBy.js
+W, [2024-12-25T11:18:24.617328 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/pullAllBy.js
+I, [2024-12-25T11:18:24.617360 #36268] INFO -- : Processing file: ../../node_modules/lodash/pullAllWith.js
+W, [2024-12-25T11:18:24.617645 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/pullAllWith.js
+I, [2024-12-25T11:18:24.617671 #36268] INFO -- : Processing file: ../../node_modules/lodash/pullAt.js
+W, [2024-12-25T11:18:24.617989 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/pullAt.js
+I, [2024-12-25T11:18:24.618021 #36268] INFO -- : Processing file: ../../node_modules/lodash/random.js
+W, [2024-12-25T11:18:24.618289 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/random.js
+I, [2024-12-25T11:18:24.618315 #36268] INFO -- : Processing file: ../../node_modules/lodash/range.js
+W, [2024-12-25T11:18:24.618607 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/range.js
+I, [2024-12-25T11:18:24.618634 #36268] INFO -- : Processing file: ../../node_modules/lodash/rangeRight.js
+W, [2024-12-25T11:18:24.618923 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/rangeRight.js
+I, [2024-12-25T11:18:24.618956 #36268] INFO -- : Processing file: ../../node_modules/lodash/rearg.js
+W, [2024-12-25T11:18:24.619157 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/rearg.js
+I, [2024-12-25T11:18:24.619184 #36268] INFO -- : Processing file: ../../node_modules/lodash/reduce.js
+W, [2024-12-25T11:18:24.619496 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/reduce.js
+I, [2024-12-25T11:18:24.619527 #36268] INFO -- : Processing file: ../../node_modules/lodash/reduceRight.js
+W, [2024-12-25T11:18:24.620274 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/reduceRight.js
+I, [2024-12-25T11:18:24.620306 #36268] INFO -- : Processing file: ../../node_modules/lodash/reject.js
+W, [2024-12-25T11:18:24.620603 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/reject.js
+I, [2024-12-25T11:18:24.620635 #36268] INFO -- : Processing file: ../../node_modules/lodash/remove.js
+W, [2024-12-25T11:18:24.620930 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/remove.js
+I, [2024-12-25T11:18:24.621008 #36268] INFO -- : Processing file: ../../node_modules/lodash/repeat.js
+W, [2024-12-25T11:18:24.621302 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/repeat.js
+I, [2024-12-25T11:18:24.621334 #36268] INFO -- : Processing file: ../../node_modules/lodash/replace.js
+W, [2024-12-25T11:18:24.621623 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/replace.js
+I, [2024-12-25T11:18:24.621643 #36268] INFO -- : Processing file: ../../node_modules/lodash/rest.js
+W, [2024-12-25T11:18:24.621849 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/rest.js
+I, [2024-12-25T11:18:24.621866 #36268] INFO -- : Processing file: ../../node_modules/lodash/result.js
+W, [2024-12-25T11:18:24.622042 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/result.js
+I, [2024-12-25T11:18:24.622060 #36268] INFO -- : Processing file: ../../node_modules/lodash/reverse.js
+W, [2024-12-25T11:18:24.622313 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/reverse.js
+I, [2024-12-25T11:18:24.622331 #36268] INFO -- : Processing file: ../../node_modules/lodash/round.js
+W, [2024-12-25T11:18:24.622593 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/round.js
+I, [2024-12-25T11:18:24.622625 #36268] INFO -- : Processing file: ../../node_modules/lodash/sample.js
+W, [2024-12-25T11:18:24.623038 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sample.js
+I, [2024-12-25T11:18:24.623061 #36268] INFO -- : Processing file: ../../node_modules/lodash/sampleSize.js
+W, [2024-12-25T11:18:24.623491 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sampleSize.js
+I, [2024-12-25T11:18:24.623538 #36268] INFO -- : Processing file: ../../node_modules/lodash/seq.js
+W, [2024-12-25T11:18:24.623869 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/seq.js
+I, [2024-12-25T11:18:24.624402 #36268] INFO -- : Processing file: ../../node_modules/lodash/set.js
+W, [2024-12-25T11:18:24.625068 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/set.js
+I, [2024-12-25T11:18:24.625141 #36268] INFO -- : Processing file: ../../node_modules/lodash/setWith.js
+W, [2024-12-25T11:18:24.625664 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/setWith.js
+I, [2024-12-25T11:18:24.625713 #36268] INFO -- : Processing file: ../../node_modules/lodash/shuffle.js
+W, [2024-12-25T11:18:24.626061 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/shuffle.js
+I, [2024-12-25T11:18:24.626103 #36268] INFO -- : Processing file: ../../node_modules/lodash/size.js
+W, [2024-12-25T11:18:24.626530 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/size.js
+I, [2024-12-25T11:18:24.626572 #36268] INFO -- : Processing file: ../../node_modules/lodash/slice.js
+W, [2024-12-25T11:18:24.627082 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/slice.js
+I, [2024-12-25T11:18:24.627136 #36268] INFO -- : Processing file: ../../node_modules/lodash/snakeCase.js
+W, [2024-12-25T11:18:24.628853 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/snakeCase.js
+I, [2024-12-25T11:18:24.628927 #36268] INFO -- : Processing file: ../../node_modules/lodash/some.js
+W, [2024-12-25T11:18:24.629824 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/some.js
+I, [2024-12-25T11:18:24.629872 #36268] INFO -- : Processing file: ../../node_modules/lodash/sortBy.js
+W, [2024-12-25T11:18:24.630610 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sortBy.js
+I, [2024-12-25T11:18:24.630687 #36268] INFO -- : Processing file: ../../node_modules/lodash/sortedIndex.js
+W, [2024-12-25T11:18:24.631085 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sortedIndex.js
+I, [2024-12-25T11:18:24.631122 #36268] INFO -- : Processing file: ../../node_modules/lodash/sortedIndexBy.js
+W, [2024-12-25T11:18:24.631532 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sortedIndexBy.js
+I, [2024-12-25T11:18:24.631567 #36268] INFO -- : Processing file: ../../node_modules/lodash/sortedIndexOf.js
+W, [2024-12-25T11:18:24.631884 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sortedIndexOf.js
+I, [2024-12-25T11:18:24.631918 #36268] INFO -- : Processing file: ../../node_modules/lodash/sortedLastIndex.js
+W, [2024-12-25T11:18:24.632201 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sortedLastIndex.js
+I, [2024-12-25T11:18:24.632226 #36268] INFO -- : Processing file: ../../node_modules/lodash/sortedLastIndexBy.js
+W, [2024-12-25T11:18:24.632506 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sortedLastIndexBy.js
+I, [2024-12-25T11:18:24.632525 #36268] INFO -- : Processing file: ../../node_modules/lodash/sortedLastIndexOf.js
+W, [2024-12-25T11:18:24.632800 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sortedLastIndexOf.js
+I, [2024-12-25T11:18:24.632821 #36268] INFO -- : Processing file: ../../node_modules/lodash/sortedUniq.js
+W, [2024-12-25T11:18:24.633086 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sortedUniq.js
+I, [2024-12-25T11:18:24.633104 #36268] INFO -- : Processing file: ../../node_modules/lodash/sortedUniqBy.js
+W, [2024-12-25T11:18:24.633364 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sortedUniqBy.js
+I, [2024-12-25T11:18:24.633383 #36268] INFO -- : Processing file: ../../node_modules/lodash/split.js
+W, [2024-12-25T11:18:24.633713 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/split.js
+I, [2024-12-25T11:18:24.633732 #36268] INFO -- : Processing file: ../../node_modules/lodash/spread.js
+W, [2024-12-25T11:18:24.633988 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/spread.js
+I, [2024-12-25T11:18:24.634007 #36268] INFO -- : Processing file: ../../node_modules/lodash/startCase.js
+W, [2024-12-25T11:18:24.634179 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/startCase.js
+I, [2024-12-25T11:18:24.634198 #36268] INFO -- : Processing file: ../../node_modules/lodash/startsWith.js
+W, [2024-12-25T11:18:24.634515 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/startsWith.js
+I, [2024-12-25T11:18:24.634534 #36268] INFO -- : Processing file: ../../node_modules/lodash/string.js
+W, [2024-12-25T11:18:24.634780 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/string.js
+I, [2024-12-25T11:18:24.634798 #36268] INFO -- : Processing file: ../../node_modules/lodash/stubArray.js
+W, [2024-12-25T11:18:24.635072 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/stubArray.js
+I, [2024-12-25T11:18:24.635090 #36268] INFO -- : Processing file: ../../node_modules/lodash/stubFalse.js
+W, [2024-12-25T11:18:24.635370 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/stubFalse.js
+I, [2024-12-25T11:18:24.635388 #36268] INFO -- : Processing file: ../../node_modules/lodash/stubObject.js
+W, [2024-12-25T11:18:24.635787 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/stubObject.js
+I, [2024-12-25T11:18:24.635878 #36268] INFO -- : Processing file: ../../node_modules/lodash/stubString.js
+W, [2024-12-25T11:18:24.636259 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/stubString.js
+I, [2024-12-25T11:18:24.636318 #36268] INFO -- : Processing file: ../../node_modules/lodash/stubTrue.js
+W, [2024-12-25T11:18:24.636670 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/stubTrue.js
+I, [2024-12-25T11:18:24.636698 #36268] INFO -- : Processing file: ../../node_modules/lodash/subtract.js
+W, [2024-12-25T11:18:24.637004 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/subtract.js
+I, [2024-12-25T11:18:24.637066 #36268] INFO -- : Processing file: ../../node_modules/lodash/sum.js
+W, [2024-12-25T11:18:24.637546 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sum.js
+I, [2024-12-25T11:18:24.637704 #36268] INFO -- : Processing file: ../../node_modules/lodash/sumBy.js
+W, [2024-12-25T11:18:24.638382 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/sumBy.js
+I, [2024-12-25T11:18:24.638584 #36268] INFO -- : Processing file: ../../node_modules/lodash/tail.js
+W, [2024-12-25T11:18:24.639194 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/tail.js
+I, [2024-12-25T11:18:24.639288 #36268] INFO -- : Processing file: ../../node_modules/lodash/take.js
+W, [2024-12-25T11:18:24.639603 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/take.js
+I, [2024-12-25T11:18:24.639654 #36268] INFO -- : Processing file: ../../node_modules/lodash/takeRight.js
+W, [2024-12-25T11:18:24.640097 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/takeRight.js
+I, [2024-12-25T11:18:24.640126 #36268] INFO -- : Processing file: ../../node_modules/lodash/takeRightWhile.js
+W, [2024-12-25T11:18:24.640849 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/takeRightWhile.js
+I, [2024-12-25T11:18:24.640915 #36268] INFO -- : Processing file: ../../node_modules/lodash/takeWhile.js
+W, [2024-12-25T11:18:24.641621 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/takeWhile.js
+I, [2024-12-25T11:18:24.641710 #36268] INFO -- : Processing file: ../../node_modules/lodash/tap.js
+W, [2024-12-25T11:18:24.642234 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/tap.js
+I, [2024-12-25T11:18:24.642334 #36268] INFO -- : Processing file: ../../node_modules/lodash/template.js
+W, [2024-12-25T11:18:24.642830 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/template.js
+I, [2024-12-25T11:18:24.642927 #36268] INFO -- : Processing file: ../../node_modules/lodash/templateSettings.js
+W, [2024-12-25T11:18:24.643349 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/templateSettings.js
+I, [2024-12-25T11:18:24.643403 #36268] INFO -- : Processing file: ../../node_modules/lodash/throttle.js
+W, [2024-12-25T11:18:24.644309 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/throttle.js
+I, [2024-12-25T11:18:24.644457 #36268] INFO -- : Processing file: ../../node_modules/lodash/thru.js
+W, [2024-12-25T11:18:24.645454 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/thru.js
+I, [2024-12-25T11:18:24.645625 #36268] INFO -- : Processing file: ../../node_modules/lodash/times.js
+W, [2024-12-25T11:18:24.646339 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/times.js
+I, [2024-12-25T11:18:24.646534 #36268] INFO -- : Processing file: ../../node_modules/lodash/toArray.js
+W, [2024-12-25T11:18:24.647174 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toArray.js
+I, [2024-12-25T11:18:24.647542 #36268] INFO -- : Processing file: ../../node_modules/lodash/toFinite.js
+W, [2024-12-25T11:18:24.648167 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toFinite.js
+I, [2024-12-25T11:18:24.648269 #36268] INFO -- : Processing file: ../../node_modules/lodash/toInteger.js
+W, [2024-12-25T11:18:24.648841 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toInteger.js
+I, [2024-12-25T11:18:24.649023 #36268] INFO -- : Processing file: ../../node_modules/lodash/toIterator.js
+W, [2024-12-25T11:18:24.649709 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toIterator.js
+I, [2024-12-25T11:18:24.650115 #36268] INFO -- : Processing file: ../../node_modules/lodash/toJSON.js
+W, [2024-12-25T11:18:24.650847 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toJSON.js
+I, [2024-12-25T11:18:24.651002 #36268] INFO -- : Processing file: ../../node_modules/lodash/toLength.js
+W, [2024-12-25T11:18:24.651596 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toLength.js
+I, [2024-12-25T11:18:24.651737 #36268] INFO -- : Processing file: ../../node_modules/lodash/toLower.js
+W, [2024-12-25T11:18:24.652100 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toLower.js
+I, [2024-12-25T11:18:24.652180 #36268] INFO -- : Processing file: ../../node_modules/lodash/toNumber.js
+W, [2024-12-25T11:18:24.652507 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toNumber.js
+I, [2024-12-25T11:18:24.652581 #36268] INFO -- : Processing file: ../../node_modules/lodash/toPairs.js
+W, [2024-12-25T11:18:24.652934 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toPairs.js
+I, [2024-12-25T11:18:24.652978 #36268] INFO -- : Processing file: ../../node_modules/lodash/toPairsIn.js
+W, [2024-12-25T11:18:24.653296 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toPairsIn.js
+I, [2024-12-25T11:18:24.653339 #36268] INFO -- : Processing file: ../../node_modules/lodash/toPath.js
+W, [2024-12-25T11:18:24.653659 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toPath.js
+I, [2024-12-25T11:18:24.653728 #36268] INFO -- : Processing file: ../../node_modules/lodash/toPlainObject.js
+W, [2024-12-25T11:18:24.654006 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toPlainObject.js
+I, [2024-12-25T11:18:24.654034 #36268] INFO -- : Processing file: ../../node_modules/lodash/toSafeInteger.js
+W, [2024-12-25T11:18:24.654285 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toSafeInteger.js
+I, [2024-12-25T11:18:24.654305 #36268] INFO -- : Processing file: ../../node_modules/lodash/toString.js
+W, [2024-12-25T11:18:24.654722 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toString.js
+I, [2024-12-25T11:18:24.654762 #36268] INFO -- : Processing file: ../../node_modules/lodash/toUpper.js
+W, [2024-12-25T11:18:24.655096 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/toUpper.js
+I, [2024-12-25T11:18:24.655192 #36268] INFO -- : Processing file: ../../node_modules/lodash/transform.js
+W, [2024-12-25T11:18:24.655689 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/transform.js
+I, [2024-12-25T11:18:24.655732 #36268] INFO -- : Processing file: ../../node_modules/lodash/trim.js
+W, [2024-12-25T11:18:24.656199 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/trim.js
+I, [2024-12-25T11:18:24.656338 #36268] INFO -- : Processing file: ../../node_modules/lodash/trimEnd.js
+W, [2024-12-25T11:18:24.656665 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/trimEnd.js
+I, [2024-12-25T11:18:24.656693 #36268] INFO -- : Processing file: ../../node_modules/lodash/trimStart.js
+W, [2024-12-25T11:18:24.657032 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/trimStart.js
+I, [2024-12-25T11:18:24.657076 #36268] INFO -- : Processing file: ../../node_modules/lodash/truncate.js
+W, [2024-12-25T11:18:24.657514 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/truncate.js
+I, [2024-12-25T11:18:24.657569 #36268] INFO -- : Processing file: ../../node_modules/lodash/unary.js
+W, [2024-12-25T11:18:24.657927 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/unary.js
+I, [2024-12-25T11:18:24.658001 #36268] INFO -- : Processing file: ../../node_modules/lodash/unescape.js
+W, [2024-12-25T11:18:24.658522 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/unescape.js
+I, [2024-12-25T11:18:24.658574 #36268] INFO -- : Processing file: ../../node_modules/lodash/union.js
+W, [2024-12-25T11:18:24.658977 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/union.js
+I, [2024-12-25T11:18:24.659066 #36268] INFO -- : Processing file: ../../node_modules/lodash/unionBy.js
+W, [2024-12-25T11:18:24.659903 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/unionBy.js
+I, [2024-12-25T11:18:24.659958 #36268] INFO -- : Processing file: ../../node_modules/lodash/unionWith.js
+W, [2024-12-25T11:18:24.660843 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/unionWith.js
+I, [2024-12-25T11:18:24.661340 #36268] INFO -- : Processing file: ../../node_modules/lodash/uniq.js
+W, [2024-12-25T11:18:24.662569 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/uniq.js
+I, [2024-12-25T11:18:24.662690 #36268] INFO -- : Processing file: ../../node_modules/lodash/uniqBy.js
+W, [2024-12-25T11:18:24.663305 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/uniqBy.js
+I, [2024-12-25T11:18:24.663352 #36268] INFO -- : Processing file: ../../node_modules/lodash/uniqWith.js
+W, [2024-12-25T11:18:24.663867 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/uniqWith.js
+I, [2024-12-25T11:18:24.664018 #36268] INFO -- : Processing file: ../../node_modules/lodash/uniqueId.js
+W, [2024-12-25T11:18:24.664912 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/uniqueId.js
+I, [2024-12-25T11:18:24.665028 #36268] INFO -- : Processing file: ../../node_modules/lodash/unset.js
+W, [2024-12-25T11:18:24.665577 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/unset.js
+I, [2024-12-25T11:18:24.665611 #36268] INFO -- : Processing file: ../../node_modules/lodash/unzip.js
+W, [2024-12-25T11:18:24.666044 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/unzip.js
+I, [2024-12-25T11:18:24.666173 #36268] INFO -- : Processing file: ../../node_modules/lodash/unzipWith.js
+W, [2024-12-25T11:18:24.666496 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/unzipWith.js
+I, [2024-12-25T11:18:24.666629 #36268] INFO -- : Processing file: ../../node_modules/lodash/update.js
+W, [2024-12-25T11:18:24.666980 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/update.js
+I, [2024-12-25T11:18:24.667034 #36268] INFO -- : Processing file: ../../node_modules/lodash/updateWith.js
+W, [2024-12-25T11:18:24.667357 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/updateWith.js
+I, [2024-12-25T11:18:24.667612 #36268] INFO -- : Processing file: ../../node_modules/lodash/upperCase.js
+W, [2024-12-25T11:18:24.667960 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/upperCase.js
+I, [2024-12-25T11:18:24.668018 #36268] INFO -- : Processing file: ../../node_modules/lodash/upperFirst.js
+W, [2024-12-25T11:18:24.668305 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/upperFirst.js
+I, [2024-12-25T11:18:24.668561 #36268] INFO -- : Processing file: ../../node_modules/lodash/util.js
+W, [2024-12-25T11:18:24.668830 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/util.js
+I, [2024-12-25T11:18:24.668949 #36268] INFO -- : Processing file: ../../node_modules/lodash/value.js
+W, [2024-12-25T11:18:24.669294 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/value.js
+I, [2024-12-25T11:18:24.669346 #36268] INFO -- : Processing file: ../../node_modules/lodash/valueOf.js
+W, [2024-12-25T11:18:24.669674 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/valueOf.js
+I, [2024-12-25T11:18:24.669874 #36268] INFO -- : Processing file: ../../node_modules/lodash/values.js
+W, [2024-12-25T11:18:24.670179 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/values.js
+I, [2024-12-25T11:18:24.670324 #36268] INFO -- : Processing file: ../../node_modules/lodash/valuesIn.js
+W, [2024-12-25T11:18:24.670746 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/valuesIn.js
+I, [2024-12-25T11:18:24.670792 #36268] INFO -- : Processing file: ../../node_modules/lodash/without.js
+W, [2024-12-25T11:18:24.671002 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/without.js
+I, [2024-12-25T11:18:24.671096 #36268] INFO -- : Processing file: ../../node_modules/lodash/words.js
+W, [2024-12-25T11:18:24.671493 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/words.js
+I, [2024-12-25T11:18:24.671518 #36268] INFO -- : Processing file: ../../node_modules/lodash/wrap.js
+W, [2024-12-25T11:18:24.671978 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/wrap.js
+I, [2024-12-25T11:18:24.672005 #36268] INFO -- : Processing file: ../../node_modules/lodash/wrapperAt.js
+W, [2024-12-25T11:18:24.672317 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/wrapperAt.js
+I, [2024-12-25T11:18:24.672562 #36268] INFO -- : Processing file: ../../node_modules/lodash/wrapperChain.js
+W, [2024-12-25T11:18:24.672917 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/wrapperChain.js
+I, [2024-12-25T11:18:24.672944 #36268] INFO -- : Processing file: ../../node_modules/lodash/wrapperLodash.js
+W, [2024-12-25T11:18:24.673237 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/wrapperLodash.js
+I, [2024-12-25T11:18:24.673263 #36268] INFO -- : Processing file: ../../node_modules/lodash/wrapperReverse.js
+W, [2024-12-25T11:18:24.673643 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/wrapperReverse.js
+I, [2024-12-25T11:18:24.673687 #36268] INFO -- : Processing file: ../../node_modules/lodash/wrapperValue.js
+W, [2024-12-25T11:18:24.674035 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/wrapperValue.js
+I, [2024-12-25T11:18:24.674284 #36268] INFO -- : Processing file: ../../node_modules/lodash/xor.js
+W, [2024-12-25T11:18:24.674728 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/xor.js
+I, [2024-12-25T11:18:24.674803 #36268] INFO -- : Processing file: ../../node_modules/lodash/xorBy.js
+W, [2024-12-25T11:18:24.675293 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/xorBy.js
+I, [2024-12-25T11:18:24.675345 #36268] INFO -- : Processing file: ../../node_modules/lodash/xorWith.js
+W, [2024-12-25T11:18:24.676034 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/xorWith.js
+I, [2024-12-25T11:18:24.676068 #36268] INFO -- : Processing file: ../../node_modules/lodash/zip.js
+W, [2024-12-25T11:18:24.676849 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/zip.js
+I, [2024-12-25T11:18:24.676941 #36268] INFO -- : Processing file: ../../node_modules/lodash/zipObject.js
+W, [2024-12-25T11:18:24.677555 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/zipObject.js
+I, [2024-12-25T11:18:24.677797 #36268] INFO -- : Processing file: ../../node_modules/lodash/zipObjectDeep.js
+W, [2024-12-25T11:18:24.678729 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/zipObjectDeep.js
+I, [2024-12-25T11:18:24.678822 #36268] INFO -- : Processing file: ../../node_modules/lodash/zipWith.js
+W, [2024-12-25T11:18:24.679517 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash/zipWith.js
+I, [2024-12-25T11:18:24.679555 #36268] INFO -- : Processing file: ../../node_modules/lodash.camelcase/index.js
+W, [2024-12-25T11:18:24.680268 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash.camelcase/index.js
+I, [2024-12-25T11:18:24.680304 #36268] INFO -- : Processing file: ../../node_modules/lodash.omit/index.js
+W, [2024-12-25T11:18:24.681258 #36268] WARN -- : Copyright string not found in ../../node_modules/lodash.omit/index.js
+I, [2024-12-25T11:18:24.681768 #36268] INFO -- : Processing file: ../../node_modules/markdown-it/dist/index.cjs.js
+W, [2024-12-25T11:18:24.683247 #36268] WARN -- : Copyright string not found in ../../node_modules/markdown-it/dist/index.cjs.js
+I, [2024-12-25T11:18:24.683283 #36268] INFO -- : Processing file: ../../node_modules/markdown-it/dist/markdown-it.js
+W, [2024-12-25T11:18:24.684781 #36268] WARN -- : Copyright string not found in ../../node_modules/markdown-it/dist/markdown-it.js
+I, [2024-12-25T11:18:24.684864 #36268] INFO -- : Processing file: ../../node_modules/markdown-it/dist/markdown-it.min.js
+W, [2024-12-25T11:18:24.685606 #36268] WARN -- : Copyright string not found in ../../node_modules/markdown-it/dist/markdown-it.min.js
+I, [2024-12-25T11:18:24.685870 #36268] INFO -- : Processing file: ../../node_modules/markdown-it-anchor/dist/markdownItAnchor.js
+W, [2024-12-25T11:18:24.686637 #36268] WARN -- : Copyright string not found in ../../node_modules/markdown-it-anchor/dist/markdownItAnchor.js
+I, [2024-12-25T11:18:24.686675 #36268] INFO -- : Processing file: ../../node_modules/markdown-it-anchor/dist/markdownItAnchor.modern.js
+W, [2024-12-25T11:18:24.687170 #36268] WARN -- : Copyright string not found in ../../node_modules/markdown-it-anchor/dist/markdownItAnchor.modern.js
+I, [2024-12-25T11:18:24.687300 #36268] INFO -- : Processing file: ../../node_modules/markdown-it-anchor/dist/markdownItAnchor.umd.js
+W, [2024-12-25T11:18:24.687804 #36268] WARN -- : Copyright string not found in ../../node_modules/markdown-it-anchor/dist/markdownItAnchor.umd.js
+I, [2024-12-25T11:18:24.687879 #36268] INFO -- : Processing file: ../../node_modules/markdown-it-anchor/runkit.js
+W, [2024-12-25T11:18:24.688441 #36268] WARN -- : Copyright string not found in ../../node_modules/markdown-it-anchor/runkit.js
+I, [2024-12-25T11:18:24.688493 #36268] INFO -- : Processing file: ../../node_modules/marked/bin/marked.js
+W, [2024-12-25T11:18:24.688836 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/bin/marked.js
+I, [2024-12-25T11:18:24.688911 #36268] INFO -- : Processing file: ../../node_modules/marked/lib/marked.esm.js
+W, [2024-12-25T11:18:24.689678 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/lib/marked.esm.js
+I, [2024-12-25T11:18:24.689764 #36268] INFO -- : Processing file: ../../node_modules/marked/lib/marked.umd.js
+W, [2024-12-25T11:18:24.690848 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/lib/marked.umd.js
+I, [2024-12-25T11:18:24.691161 #36268] INFO -- : Processing file: ../../node_modules/marked/marked.min.js
+W, [2024-12-25T11:18:24.692227 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/marked.min.js
+I, [2024-12-25T11:18:24.692261 #36268] INFO -- : Processing file: ../../node_modules/marked/src/Hooks.js
+W, [2024-12-25T11:18:24.692938 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/Hooks.js
+I, [2024-12-25T11:18:24.693009 #36268] INFO -- : Processing file: ../../node_modules/marked/src/Lexer.js
+W, [2024-12-25T11:18:24.693909 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/Lexer.js
+I, [2024-12-25T11:18:24.694009 #36268] INFO -- : Processing file: ../../node_modules/marked/src/Parser.js
+W, [2024-12-25T11:18:24.694952 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/Parser.js
+I, [2024-12-25T11:18:24.694988 #36268] INFO -- : Processing file: ../../node_modules/marked/src/Renderer.js
+W, [2024-12-25T11:18:24.695713 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/Renderer.js
+I, [2024-12-25T11:18:24.695762 #36268] INFO -- : Processing file: ../../node_modules/marked/src/Slugger.js
+W, [2024-12-25T11:18:24.696485 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/Slugger.js
+I, [2024-12-25T11:18:24.696531 #36268] INFO -- : Processing file: ../../node_modules/marked/src/TextRenderer.js
+W, [2024-12-25T11:18:24.699691 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/TextRenderer.js
+I, [2024-12-25T11:18:24.699734 #36268] INFO -- : Processing file: ../../node_modules/marked/src/Tokenizer.js
+W, [2024-12-25T11:18:24.700207 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/Tokenizer.js
+I, [2024-12-25T11:18:24.700247 #36268] INFO -- : Processing file: ../../node_modules/marked/src/defaults.js
+W, [2024-12-25T11:18:24.700768 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/defaults.js
+I, [2024-12-25T11:18:24.700809 #36268] INFO -- : Processing file: ../../node_modules/marked/src/helpers.js
+W, [2024-12-25T11:18:24.701370 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/helpers.js
+I, [2024-12-25T11:18:24.701467 #36268] INFO -- : Processing file: ../../node_modules/marked/src/marked.js
+W, [2024-12-25T11:18:24.701864 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/marked.js
+I, [2024-12-25T11:18:24.701950 #36268] INFO -- : Processing file: ../../node_modules/marked/src/rules.js
+W, [2024-12-25T11:18:24.702309 #36268] WARN -- : Copyright string not found in ../../node_modules/marked/src/rules.js
+I, [2024-12-25T11:18:24.702349 #36268] INFO -- : Processing file: ../../node_modules/mdurl/build/index.cjs.js
+W, [2024-12-25T11:18:24.702942 #36268] WARN -- : Copyright string not found in ../../node_modules/mdurl/build/index.cjs.js
+I, [2024-12-25T11:18:24.702968 #36268] INFO -- : Processing file: ../../node_modules/merge2/index.js
+W, [2024-12-25T11:18:24.703280 #36268] WARN -- : Copyright string not found in ../../node_modules/merge2/index.js
+I, [2024-12-25T11:18:24.703320 #36268] INFO -- : Processing file: ../../node_modules/micromatch/index.js
+W, [2024-12-25T11:18:24.703676 #36268] WARN -- : Copyright string not found in ../../node_modules/micromatch/index.js
+I, [2024-12-25T11:18:24.703715 #36268] INFO -- : Processing file: ../../node_modules/minimist/example/parse.js
+W, [2024-12-25T11:18:24.704215 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/example/parse.js
+I, [2024-12-25T11:18:24.704254 #36268] INFO -- : Processing file: ../../node_modules/minimist/index.js
+W, [2024-12-25T11:18:24.704780 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/index.js
+I, [2024-12-25T11:18:24.704819 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/all_bool.js
+W, [2024-12-25T11:18:24.705303 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/all_bool.js
+I, [2024-12-25T11:18:24.705342 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/bool.js
+W, [2024-12-25T11:18:24.706446 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/bool.js
+I, [2024-12-25T11:18:24.706617 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/dash.js
+W, [2024-12-25T11:18:24.707245 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/dash.js
+I, [2024-12-25T11:18:24.707285 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/default_bool.js
+W, [2024-12-25T11:18:24.707990 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/default_bool.js
+I, [2024-12-25T11:18:24.708030 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/dotted.js
+W, [2024-12-25T11:18:24.708729 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/dotted.js
+I, [2024-12-25T11:18:24.708801 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/kv_short.js
+W, [2024-12-25T11:18:24.709556 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/kv_short.js
+I, [2024-12-25T11:18:24.709617 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/long.js
+W, [2024-12-25T11:18:24.710598 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/long.js
+I, [2024-12-25T11:18:24.712005 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/num.js
+W, [2024-12-25T11:18:24.712799 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/num.js
+I, [2024-12-25T11:18:24.712834 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/parse.js
+W, [2024-12-25T11:18:24.713833 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/parse.js
+I, [2024-12-25T11:18:24.713912 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/parse_modified.js
+W, [2024-12-25T11:18:24.715587 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/parse_modified.js
+I, [2024-12-25T11:18:24.715662 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/proto.js
+W, [2024-12-25T11:18:24.716352 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/proto.js
+I, [2024-12-25T11:18:24.716386 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/short.js
+W, [2024-12-25T11:18:24.717073 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/short.js
+I, [2024-12-25T11:18:24.717092 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/stop_early.js
+W, [2024-12-25T11:18:24.717576 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/stop_early.js
+I, [2024-12-25T11:18:24.717597 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/unknown.js
+W, [2024-12-25T11:18:24.718121 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/unknown.js
+I, [2024-12-25T11:18:24.718140 #36268] INFO -- : Processing file: ../../node_modules/minimist/test/whitespace.js
+W, [2024-12-25T11:18:24.718623 #36268] WARN -- : Copyright string not found in ../../node_modules/minimist/test/whitespace.js
+I, [2024-12-25T11:18:24.718643 #36268] INFO -- : Processing file: ../../node_modules/mkdirp/bin/cmd.js
+W, [2024-12-25T11:18:24.719132 #36268] WARN -- : Copyright string not found in ../../node_modules/mkdirp/bin/cmd.js
+I, [2024-12-25T11:18:24.719150 #36268] INFO -- : Processing file: ../../node_modules/mkdirp/index.js
+W, [2024-12-25T11:18:24.719595 #36268] WARN -- : Copyright string not found in ../../node_modules/mkdirp/index.js
+I, [2024-12-25T11:18:24.719613 #36268] INFO -- : Processing file: ../../node_modules/mkdirp/lib/find-made.js
+W, [2024-12-25T11:18:24.720061 #36268] WARN -- : Copyright string not found in ../../node_modules/mkdirp/lib/find-made.js
+I, [2024-12-25T11:18:24.720079 #36268] INFO -- : Processing file: ../../node_modules/mkdirp/lib/mkdirp-manual.js
+W, [2024-12-25T11:18:24.720511 #36268] WARN -- : Copyright string not found in ../../node_modules/mkdirp/lib/mkdirp-manual.js
+I, [2024-12-25T11:18:24.720529 #36268] INFO -- : Processing file: ../../node_modules/mkdirp/lib/mkdirp-native.js
+W, [2024-12-25T11:18:24.720934 #36268] WARN -- : Copyright string not found in ../../node_modules/mkdirp/lib/mkdirp-native.js
+I, [2024-12-25T11:18:24.720953 #36268] INFO -- : Processing file: ../../node_modules/mkdirp/lib/opts-arg.js
+W, [2024-12-25T11:18:24.721384 #36268] WARN -- : Copyright string not found in ../../node_modules/mkdirp/lib/opts-arg.js
+I, [2024-12-25T11:18:24.721402 #36268] INFO -- : Processing file: ../../node_modules/mkdirp/lib/path-arg.js
+W, [2024-12-25T11:18:24.721923 #36268] WARN -- : Copyright string not found in ../../node_modules/mkdirp/lib/path-arg.js
+I, [2024-12-25T11:18:24.721942 #36268] INFO -- : Processing file: ../../node_modules/mkdirp/lib/use-native.js
+W, [2024-12-25T11:18:24.722406 #36268] WARN -- : Copyright string not found in ../../node_modules/mkdirp/lib/use-native.js
+I, [2024-12-25T11:18:24.722498 #36268] INFO -- : Processing file: ../../node_modules/neo-async/all.js
+W, [2024-12-25T11:18:24.723019 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/all.js
+I, [2024-12-25T11:18:24.723040 #36268] INFO -- : Processing file: ../../node_modules/neo-async/allLimit.js
+W, [2024-12-25T11:18:24.723592 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/allLimit.js
+I, [2024-12-25T11:18:24.723613 #36268] INFO -- : Processing file: ../../node_modules/neo-async/allSeries.js
+W, [2024-12-25T11:18:24.724242 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/allSeries.js
+I, [2024-12-25T11:18:24.724264 #36268] INFO -- : Processing file: ../../node_modules/neo-async/angelFall.js
+W, [2024-12-25T11:18:24.725106 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/angelFall.js
+I, [2024-12-25T11:18:24.725179 #36268] INFO -- : Processing file: ../../node_modules/neo-async/any.js
+W, [2024-12-25T11:18:24.728851 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/any.js
+I, [2024-12-25T11:18:24.728909 #36268] INFO -- : Processing file: ../../node_modules/neo-async/anyLimit.js
+W, [2024-12-25T11:18:24.729690 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/anyLimit.js
+I, [2024-12-25T11:18:24.729725 #36268] INFO -- : Processing file: ../../node_modules/neo-async/anySeries.js
+W, [2024-12-25T11:18:24.730268 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/anySeries.js
+I, [2024-12-25T11:18:24.730298 #36268] INFO -- : Processing file: ../../node_modules/neo-async/apply.js
+W, [2024-12-25T11:18:24.730921 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/apply.js
+I, [2024-12-25T11:18:24.730983 #36268] INFO -- : Processing file: ../../node_modules/neo-async/applyEach.js
+W, [2024-12-25T11:18:24.731628 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/applyEach.js
+I, [2024-12-25T11:18:24.731658 #36268] INFO -- : Processing file: ../../node_modules/neo-async/applyEachSeries.js
+W, [2024-12-25T11:18:24.732225 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/applyEachSeries.js
+I, [2024-12-25T11:18:24.732263 #36268] INFO -- : Processing file: ../../node_modules/neo-async/async.js
+W, [2024-12-25T11:18:24.734011 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/async.js
+I, [2024-12-25T11:18:24.734075 #36268] INFO -- : Processing file: ../../node_modules/neo-async/async.min.js
+W, [2024-12-25T11:18:24.735602 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/async.min.js
+I, [2024-12-25T11:18:24.735654 #36268] INFO -- : Processing file: ../../node_modules/neo-async/asyncify.js
+W, [2024-12-25T11:18:24.736135 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/asyncify.js
+I, [2024-12-25T11:18:24.736166 #36268] INFO -- : Processing file: ../../node_modules/neo-async/auto.js
+W, [2024-12-25T11:18:24.736677 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/auto.js
+I, [2024-12-25T11:18:24.736844 #36268] INFO -- : Processing file: ../../node_modules/neo-async/autoInject.js
+W, [2024-12-25T11:18:24.737594 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/autoInject.js
+I, [2024-12-25T11:18:24.737625 #36268] INFO -- : Processing file: ../../node_modules/neo-async/cargo.js
+W, [2024-12-25T11:18:24.738027 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/cargo.js
+I, [2024-12-25T11:18:24.738054 #36268] INFO -- : Processing file: ../../node_modules/neo-async/compose.js
+W, [2024-12-25T11:18:24.738394 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/compose.js
+I, [2024-12-25T11:18:24.738478 #36268] INFO -- : Processing file: ../../node_modules/neo-async/concat.js
+W, [2024-12-25T11:18:24.739095 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/concat.js
+I, [2024-12-25T11:18:24.739137 #36268] INFO -- : Processing file: ../../node_modules/neo-async/concatLimit.js
+W, [2024-12-25T11:18:24.739895 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/concatLimit.js
+I, [2024-12-25T11:18:24.739925 #36268] INFO -- : Processing file: ../../node_modules/neo-async/concatSeries.js
+W, [2024-12-25T11:18:24.740297 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/concatSeries.js
+I, [2024-12-25T11:18:24.740357 #36268] INFO -- : Processing file: ../../node_modules/neo-async/constant.js
+W, [2024-12-25T11:18:24.740883 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/constant.js
+I, [2024-12-25T11:18:24.740937 #36268] INFO -- : Processing file: ../../node_modules/neo-async/createLogger.js
+W, [2024-12-25T11:18:24.741320 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/createLogger.js
+I, [2024-12-25T11:18:24.741347 #36268] INFO -- : Processing file: ../../node_modules/neo-async/detect.js
+W, [2024-12-25T11:18:24.743618 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/detect.js
+I, [2024-12-25T11:18:24.743670 #36268] INFO -- : Processing file: ../../node_modules/neo-async/detectLimit.js
+W, [2024-12-25T11:18:24.744393 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/detectLimit.js
+I, [2024-12-25T11:18:24.744427 #36268] INFO -- : Processing file: ../../node_modules/neo-async/detectSeries.js
+W, [2024-12-25T11:18:24.746588 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/detectSeries.js
+I, [2024-12-25T11:18:24.746667 #36268] INFO -- : Processing file: ../../node_modules/neo-async/dir.js
+W, [2024-12-25T11:18:24.747217 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/dir.js
+I, [2024-12-25T11:18:24.747254 #36268] INFO -- : Processing file: ../../node_modules/neo-async/doDuring.js
+W, [2024-12-25T11:18:24.747654 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/doDuring.js
+I, [2024-12-25T11:18:24.747689 #36268] INFO -- : Processing file: ../../node_modules/neo-async/doUntil.js
+W, [2024-12-25T11:18:24.748094 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/doUntil.js
+I, [2024-12-25T11:18:24.748130 #36268] INFO -- : Processing file: ../../node_modules/neo-async/doWhilst.js
+W, [2024-12-25T11:18:24.748782 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/doWhilst.js
+I, [2024-12-25T11:18:24.748810 #36268] INFO -- : Processing file: ../../node_modules/neo-async/during.js
+W, [2024-12-25T11:18:24.749451 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/during.js
+I, [2024-12-25T11:18:24.749510 #36268] INFO -- : Processing file: ../../node_modules/neo-async/each.js
+W, [2024-12-25T11:18:24.750070 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/each.js
+I, [2024-12-25T11:18:24.750117 #36268] INFO -- : Processing file: ../../node_modules/neo-async/eachLimit.js
+W, [2024-12-25T11:18:24.751037 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/eachLimit.js
+I, [2024-12-25T11:18:24.751077 #36268] INFO -- : Processing file: ../../node_modules/neo-async/eachOf.js
+W, [2024-12-25T11:18:24.751777 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/eachOf.js
+I, [2024-12-25T11:18:24.751812 #36268] INFO -- : Processing file: ../../node_modules/neo-async/eachOfLimit.js
+W, [2024-12-25T11:18:24.752303 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/eachOfLimit.js
+I, [2024-12-25T11:18:24.752336 #36268] INFO -- : Processing file: ../../node_modules/neo-async/eachOfSeries.js
+W, [2024-12-25T11:18:24.752789 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/eachOfSeries.js
+I, [2024-12-25T11:18:24.752822 #36268] INFO -- : Processing file: ../../node_modules/neo-async/eachSeries.js
+W, [2024-12-25T11:18:24.753133 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/eachSeries.js
+I, [2024-12-25T11:18:24.753165 #36268] INFO -- : Processing file: ../../node_modules/neo-async/ensureAsync.js
+W, [2024-12-25T11:18:24.753512 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/ensureAsync.js
+I, [2024-12-25T11:18:24.753549 #36268] INFO -- : Processing file: ../../node_modules/neo-async/every.js
+W, [2024-12-25T11:18:24.753825 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/every.js
+I, [2024-12-25T11:18:24.753852 #36268] INFO -- : Processing file: ../../node_modules/neo-async/everyLimit.js
+W, [2024-12-25T11:18:24.754129 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/everyLimit.js
+I, [2024-12-25T11:18:24.754162 #36268] INFO -- : Processing file: ../../node_modules/neo-async/everySeries.js
+W, [2024-12-25T11:18:24.754476 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/everySeries.js
+I, [2024-12-25T11:18:24.754516 #36268] INFO -- : Processing file: ../../node_modules/neo-async/fast.js
+W, [2024-12-25T11:18:24.754778 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/fast.js
+I, [2024-12-25T11:18:24.754804 #36268] INFO -- : Processing file: ../../node_modules/neo-async/filter.js
+W, [2024-12-25T11:18:24.755074 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/filter.js
+I, [2024-12-25T11:18:24.755107 #36268] INFO -- : Processing file: ../../node_modules/neo-async/filterLimit.js
+W, [2024-12-25T11:18:24.755379 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/filterLimit.js
+I, [2024-12-25T11:18:24.755449 #36268] INFO -- : Processing file: ../../node_modules/neo-async/filterSeries.js
+W, [2024-12-25T11:18:24.755744 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/filterSeries.js
+I, [2024-12-25T11:18:24.755763 #36268] INFO -- : Processing file: ../../node_modules/neo-async/find.js
+W, [2024-12-25T11:18:24.756018 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/find.js
+I, [2024-12-25T11:18:24.756036 #36268] INFO -- : Processing file: ../../node_modules/neo-async/findLimit.js
+W, [2024-12-25T11:18:24.756291 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/findLimit.js
+I, [2024-12-25T11:18:24.756310 #36268] INFO -- : Processing file: ../../node_modules/neo-async/findSeries.js
+W, [2024-12-25T11:18:24.756642 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/findSeries.js
+I, [2024-12-25T11:18:24.756673 #36268] INFO -- : Processing file: ../../node_modules/neo-async/foldl.js
+W, [2024-12-25T11:18:24.757047 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/foldl.js
+I, [2024-12-25T11:18:24.757085 #36268] INFO -- : Processing file: ../../node_modules/neo-async/foldr.js
+W, [2024-12-25T11:18:24.757545 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/foldr.js
+I, [2024-12-25T11:18:24.757620 #36268] INFO -- : Processing file: ../../node_modules/neo-async/forEach.js
+W, [2024-12-25T11:18:24.758009 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/forEach.js
+I, [2024-12-25T11:18:24.758051 #36268] INFO -- : Processing file: ../../node_modules/neo-async/forEachLimit.js
+W, [2024-12-25T11:18:24.758548 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/forEachLimit.js
+I, [2024-12-25T11:18:24.758614 #36268] INFO -- : Processing file: ../../node_modules/neo-async/forEachOf.js
+W, [2024-12-25T11:18:24.759075 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/forEachOf.js
+I, [2024-12-25T11:18:24.759116 #36268] INFO -- : Processing file: ../../node_modules/neo-async/forEachOfLimit.js
+W, [2024-12-25T11:18:24.759690 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/forEachOfLimit.js
+I, [2024-12-25T11:18:24.759743 #36268] INFO -- : Processing file: ../../node_modules/neo-async/forEachOfSeries.js
+W, [2024-12-25T11:18:24.760161 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/forEachOfSeries.js
+I, [2024-12-25T11:18:24.760250 #36268] INFO -- : Processing file: ../../node_modules/neo-async/forEachSeries.js
+W, [2024-12-25T11:18:24.760856 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/forEachSeries.js
+I, [2024-12-25T11:18:24.760909 #36268] INFO -- : Processing file: ../../node_modules/neo-async/forever.js
+W, [2024-12-25T11:18:24.761412 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/forever.js
+I, [2024-12-25T11:18:24.761573 #36268] INFO -- : Processing file: ../../node_modules/neo-async/groupBy.js
+W, [2024-12-25T11:18:24.762663 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/groupBy.js
+I, [2024-12-25T11:18:24.762826 #36268] INFO -- : Processing file: ../../node_modules/neo-async/groupByLimit.js
+W, [2024-12-25T11:18:24.763515 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/groupByLimit.js
+I, [2024-12-25T11:18:24.763576 #36268] INFO -- : Processing file: ../../node_modules/neo-async/groupBySeries.js
+W, [2024-12-25T11:18:24.764055 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/groupBySeries.js
+I, [2024-12-25T11:18:24.764186 #36268] INFO -- : Processing file: ../../node_modules/neo-async/inject.js
+W, [2024-12-25T11:18:24.764652 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/inject.js
+I, [2024-12-25T11:18:24.764687 #36268] INFO -- : Processing file: ../../node_modules/neo-async/iterator.js
+W, [2024-12-25T11:18:24.765137 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/iterator.js
+I, [2024-12-25T11:18:24.765176 #36268] INFO -- : Processing file: ../../node_modules/neo-async/log.js
+W, [2024-12-25T11:18:24.766038 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/log.js
+I, [2024-12-25T11:18:24.766085 #36268] INFO -- : Processing file: ../../node_modules/neo-async/map.js
+W, [2024-12-25T11:18:24.766736 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/map.js
+I, [2024-12-25T11:18:24.766774 #36268] INFO -- : Processing file: ../../node_modules/neo-async/mapLimit.js
+W, [2024-12-25T11:18:24.767172 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/mapLimit.js
+I, [2024-12-25T11:18:24.767209 #36268] INFO -- : Processing file: ../../node_modules/neo-async/mapSeries.js
+W, [2024-12-25T11:18:24.767553 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/mapSeries.js
+I, [2024-12-25T11:18:24.767586 #36268] INFO -- : Processing file: ../../node_modules/neo-async/mapValues.js
+W, [2024-12-25T11:18:24.767913 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/mapValues.js
+I, [2024-12-25T11:18:24.767945 #36268] INFO -- : Processing file: ../../node_modules/neo-async/mapValuesLimit.js
+W, [2024-12-25T11:18:24.768218 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/mapValuesLimit.js
+I, [2024-12-25T11:18:24.768250 #36268] INFO -- : Processing file: ../../node_modules/neo-async/mapValuesSeries.js
+W, [2024-12-25T11:18:24.768590 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/mapValuesSeries.js
+I, [2024-12-25T11:18:24.768626 #36268] INFO -- : Processing file: ../../node_modules/neo-async/memoize.js
+W, [2024-12-25T11:18:24.768907 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/memoize.js
+I, [2024-12-25T11:18:24.768933 #36268] INFO -- : Processing file: ../../node_modules/neo-async/nextTick.js
+W, [2024-12-25T11:18:24.769241 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/nextTick.js
+I, [2024-12-25T11:18:24.769273 #36268] INFO -- : Processing file: ../../node_modules/neo-async/omit.js
+W, [2024-12-25T11:18:24.769589 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/omit.js
+I, [2024-12-25T11:18:24.769621 #36268] INFO -- : Processing file: ../../node_modules/neo-async/omitLimit.js
+W, [2024-12-25T11:18:24.769932 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/omitLimit.js
+I, [2024-12-25T11:18:24.769966 #36268] INFO -- : Processing file: ../../node_modules/neo-async/omitSeries.js
+W, [2024-12-25T11:18:24.770255 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/omitSeries.js
+I, [2024-12-25T11:18:24.770280 #36268] INFO -- : Processing file: ../../node_modules/neo-async/parallel.js
+W, [2024-12-25T11:18:24.770514 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/parallel.js
+I, [2024-12-25T11:18:24.770532 #36268] INFO -- : Processing file: ../../node_modules/neo-async/parallelLimit.js
+W, [2024-12-25T11:18:24.770778 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/parallelLimit.js
+I, [2024-12-25T11:18:24.770795 #36268] INFO -- : Processing file: ../../node_modules/neo-async/pick.js
+W, [2024-12-25T11:18:24.771030 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/pick.js
+I, [2024-12-25T11:18:24.771048 #36268] INFO -- : Processing file: ../../node_modules/neo-async/pickLimit.js
+W, [2024-12-25T11:18:24.771283 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/pickLimit.js
+I, [2024-12-25T11:18:24.771301 #36268] INFO -- : Processing file: ../../node_modules/neo-async/pickSeries.js
+W, [2024-12-25T11:18:24.771570 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/pickSeries.js
+I, [2024-12-25T11:18:24.771591 #36268] INFO -- : Processing file: ../../node_modules/neo-async/priorityQueue.js
+W, [2024-12-25T11:18:24.771879 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/priorityQueue.js
+I, [2024-12-25T11:18:24.771899 #36268] INFO -- : Processing file: ../../node_modules/neo-async/queue.js
+W, [2024-12-25T11:18:24.772172 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/queue.js
+I, [2024-12-25T11:18:24.772190 #36268] INFO -- : Processing file: ../../node_modules/neo-async/race.js
+W, [2024-12-25T11:18:24.772487 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/race.js
+I, [2024-12-25T11:18:24.772505 #36268] INFO -- : Processing file: ../../node_modules/neo-async/reduce.js
+W, [2024-12-25T11:18:24.772783 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/reduce.js
+I, [2024-12-25T11:18:24.772803 #36268] INFO -- : Processing file: ../../node_modules/neo-async/reduceRight.js
+W, [2024-12-25T11:18:24.773170 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/reduceRight.js
+I, [2024-12-25T11:18:24.773217 #36268] INFO -- : Processing file: ../../node_modules/neo-async/reflect.js
+W, [2024-12-25T11:18:24.773662 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/reflect.js
+I, [2024-12-25T11:18:24.773690 #36268] INFO -- : Processing file: ../../node_modules/neo-async/reflectAll.js
+W, [2024-12-25T11:18:24.774385 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/reflectAll.js
+I, [2024-12-25T11:18:24.774420 #36268] INFO -- : Processing file: ../../node_modules/neo-async/reject.js
+W, [2024-12-25T11:18:24.774913 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/reject.js
+I, [2024-12-25T11:18:24.774950 #36268] INFO -- : Processing file: ../../node_modules/neo-async/rejectLimit.js
+W, [2024-12-25T11:18:24.775592 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/rejectLimit.js
+I, [2024-12-25T11:18:24.775621 #36268] INFO -- : Processing file: ../../node_modules/neo-async/rejectSeries.js
+W, [2024-12-25T11:18:24.775988 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/rejectSeries.js
+I, [2024-12-25T11:18:24.776119 #36268] INFO -- : Processing file: ../../node_modules/neo-async/retry.js
+W, [2024-12-25T11:18:24.776568 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/retry.js
+I, [2024-12-25T11:18:24.776598 #36268] INFO -- : Processing file: ../../node_modules/neo-async/retryable.js
+W, [2024-12-25T11:18:24.776984 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/retryable.js
+I, [2024-12-25T11:18:24.777054 #36268] INFO -- : Processing file: ../../node_modules/neo-async/safe.js
+W, [2024-12-25T11:18:24.777669 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/safe.js
+I, [2024-12-25T11:18:24.777812 #36268] INFO -- : Processing file: ../../node_modules/neo-async/select.js
+W, [2024-12-25T11:18:24.779278 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/select.js
+I, [2024-12-25T11:18:24.779383 #36268] INFO -- : Processing file: ../../node_modules/neo-async/selectLimit.js
+W, [2024-12-25T11:18:24.780010 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/selectLimit.js
+I, [2024-12-25T11:18:24.780040 #36268] INFO -- : Processing file: ../../node_modules/neo-async/selectSeries.js
+W, [2024-12-25T11:18:24.780859 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/selectSeries.js
+I, [2024-12-25T11:18:24.780907 #36268] INFO -- : Processing file: ../../node_modules/neo-async/seq.js
+W, [2024-12-25T11:18:24.781762 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/seq.js
+I, [2024-12-25T11:18:24.781827 #36268] INFO -- : Processing file: ../../node_modules/neo-async/series.js
+W, [2024-12-25T11:18:24.782362 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/series.js
+I, [2024-12-25T11:18:24.782402 #36268] INFO -- : Processing file: ../../node_modules/neo-async/setImmediate.js
+W, [2024-12-25T11:18:24.782908 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/setImmediate.js
+I, [2024-12-25T11:18:24.782945 #36268] INFO -- : Processing file: ../../node_modules/neo-async/some.js
+W, [2024-12-25T11:18:24.783287 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/some.js
+I, [2024-12-25T11:18:24.783326 #36268] INFO -- : Processing file: ../../node_modules/neo-async/someLimit.js
+W, [2024-12-25T11:18:24.783673 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/someLimit.js
+I, [2024-12-25T11:18:24.783709 #36268] INFO -- : Processing file: ../../node_modules/neo-async/someSeries.js
+W, [2024-12-25T11:18:24.784079 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/someSeries.js
+I, [2024-12-25T11:18:24.784113 #36268] INFO -- : Processing file: ../../node_modules/neo-async/sortBy.js
+W, [2024-12-25T11:18:24.784519 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/sortBy.js
+I, [2024-12-25T11:18:24.784558 #36268] INFO -- : Processing file: ../../node_modules/neo-async/sortByLimit.js
+W, [2024-12-25T11:18:24.784867 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/sortByLimit.js
+I, [2024-12-25T11:18:24.784906 #36268] INFO -- : Processing file: ../../node_modules/neo-async/sortBySeries.js
+W, [2024-12-25T11:18:24.785209 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/sortBySeries.js
+I, [2024-12-25T11:18:24.785248 #36268] INFO -- : Processing file: ../../node_modules/neo-async/timeout.js
+W, [2024-12-25T11:18:24.785551 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/timeout.js
+I, [2024-12-25T11:18:24.785588 #36268] INFO -- : Processing file: ../../node_modules/neo-async/times.js
+W, [2024-12-25T11:18:24.785884 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/times.js
+I, [2024-12-25T11:18:24.785947 #36268] INFO -- : Processing file: ../../node_modules/neo-async/timesLimit.js
+W, [2024-12-25T11:18:24.786567 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/timesLimit.js
+I, [2024-12-25T11:18:24.786595 #36268] INFO -- : Processing file: ../../node_modules/neo-async/timesSeries.js
+W, [2024-12-25T11:18:24.787263 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/timesSeries.js
+I, [2024-12-25T11:18:24.787359 #36268] INFO -- : Processing file: ../../node_modules/neo-async/transform.js
+W, [2024-12-25T11:18:24.787852 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/transform.js
+I, [2024-12-25T11:18:24.787887 #36268] INFO -- : Processing file: ../../node_modules/neo-async/transformLimit.js
+W, [2024-12-25T11:18:24.788490 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/transformLimit.js
+I, [2024-12-25T11:18:24.788566 #36268] INFO -- : Processing file: ../../node_modules/neo-async/transformSeries.js
+W, [2024-12-25T11:18:24.789041 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/transformSeries.js
+I, [2024-12-25T11:18:24.789126 #36268] INFO -- : Processing file: ../../node_modules/neo-async/tryEach.js
+W, [2024-12-25T11:18:24.789647 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/tryEach.js
+I, [2024-12-25T11:18:24.789736 #36268] INFO -- : Processing file: ../../node_modules/neo-async/unmemoize.js
+W, [2024-12-25T11:18:24.790209 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/unmemoize.js
+I, [2024-12-25T11:18:24.790255 #36268] INFO -- : Processing file: ../../node_modules/neo-async/until.js
+W, [2024-12-25T11:18:24.790652 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/until.js
+I, [2024-12-25T11:18:24.790704 #36268] INFO -- : Processing file: ../../node_modules/neo-async/waterfall.js
+W, [2024-12-25T11:18:24.791560 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/waterfall.js
+I, [2024-12-25T11:18:24.791616 #36268] INFO -- : Processing file: ../../node_modules/neo-async/whilst.js
+W, [2024-12-25T11:18:24.792258 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/whilst.js
+I, [2024-12-25T11:18:24.792425 #36268] INFO -- : Processing file: ../../node_modules/neo-async/wrapSync.js
+W, [2024-12-25T11:18:24.793022 #36268] WARN -- : Copyright string not found in ../../node_modules/neo-async/wrapSync.js
+I, [2024-12-25T11:18:24.793203 #36268] INFO -- : Processing file: ../../node_modules/object-to-spawn-args/index.js
+W, [2024-12-25T11:18:24.794042 #36268] WARN -- : Copyright string not found in ../../node_modules/object-to-spawn-args/index.js
+I, [2024-12-25T11:18:24.794130 #36268] INFO -- : Processing file: ../../node_modules/picomatch/index.js
+W, [2024-12-25T11:18:24.795239 #36268] WARN -- : Copyright string not found in ../../node_modules/picomatch/index.js
+I, [2024-12-25T11:18:24.795658 #36268] INFO -- : Processing file: ../../node_modules/picomatch/lib/constants.js
+W, [2024-12-25T11:18:24.796728 #36268] WARN -- : Copyright string not found in ../../node_modules/picomatch/lib/constants.js
+I, [2024-12-25T11:18:24.797209 #36268] INFO -- : Processing file: ../../node_modules/picomatch/lib/parse.js
+W, [2024-12-25T11:18:24.799673 #36268] WARN -- : Copyright string not found in ../../node_modules/picomatch/lib/parse.js
+I, [2024-12-25T11:18:24.799764 #36268] INFO -- : Processing file: ../../node_modules/picomatch/lib/picomatch.js
+W, [2024-12-25T11:18:24.800616 #36268] WARN -- : Copyright string not found in ../../node_modules/picomatch/lib/picomatch.js
+I, [2024-12-25T11:18:24.800685 #36268] INFO -- : Processing file: ../../node_modules/picomatch/lib/scan.js
+W, [2024-12-25T11:18:24.801416 #36268] WARN -- : Copyright string not found in ../../node_modules/picomatch/lib/scan.js
+I, [2024-12-25T11:18:24.801583 #36268] INFO -- : Processing file: ../../node_modules/picomatch/lib/utils.js
+W, [2024-12-25T11:18:24.802664 #36268] WARN -- : Copyright string not found in ../../node_modules/picomatch/lib/utils.js
+I, [2024-12-25T11:18:24.802788 #36268] INFO -- : Processing file: ../../node_modules/punycode.js
+E, [2024-12-25T11:18:24.802875 #36268] ERROR -- : Error processing file ../../node_modules/punycode.js: Is a directory @ io_fread - ../../node_modules/punycode.js
+I, [2024-12-25T11:18:24.802891 #36268] INFO -- : Processing file: ../../node_modules/punycode.js/punycode.es6.js
+W, [2024-12-25T11:18:24.803715 #36268] WARN -- : Copyright string not found in ../../node_modules/punycode.js/punycode.es6.js
+I, [2024-12-25T11:18:24.803748 #36268] INFO -- : Processing file: ../../node_modules/punycode.js/punycode.js
+W, [2024-12-25T11:18:24.804373 #36268] WARN -- : Copyright string not found in ../../node_modules/punycode.js/punycode.js
+I, [2024-12-25T11:18:24.804393 #36268] INFO -- : Processing file: ../../node_modules/queue-microtask/index.js
+W, [2024-12-25T11:18:24.804912 #36268] WARN -- : Copyright string not found in ../../node_modules/queue-microtask/index.js
+I, [2024-12-25T11:18:24.804942 #36268] INFO -- : Processing file: ../../node_modules/requizzle/index.js
+W, [2024-12-25T11:18:24.805552 #36268] WARN -- : Copyright string not found in ../../node_modules/requizzle/index.js
+I, [2024-12-25T11:18:24.805680 #36268] INFO -- : Processing file: ../../node_modules/requizzle/lib/loader.js
+W, [2024-12-25T11:18:24.806192 #36268] WARN -- : Copyright string not found in ../../node_modules/requizzle/lib/loader.js
+I, [2024-12-25T11:18:24.806213 #36268] INFO -- : Processing file: ../../node_modules/requizzle/lib/requizzle.js
+W, [2024-12-25T11:18:24.806616 #36268] WARN -- : Copyright string not found in ../../node_modules/requizzle/lib/requizzle.js
+I, [2024-12-25T11:18:24.806789 #36268] INFO -- : Processing file: ../../node_modules/requizzle/lib/wrappers/extras.js
+W, [2024-12-25T11:18:24.808161 #36268] WARN -- : Copyright string not found in ../../node_modules/requizzle/lib/wrappers/extras.js
+I, [2024-12-25T11:18:24.808201 #36268] INFO -- : Processing file: ../../node_modules/requizzle/lib/wrappers/requirepaths.js
+W, [2024-12-25T11:18:24.808855 #36268] WARN -- : Copyright string not found in ../../node_modules/requizzle/lib/wrappers/requirepaths.js
+I, [2024-12-25T11:18:24.809151 #36268] INFO -- : Processing file: ../../node_modules/requizzle/lib/wrappers/strict.js
+W, [2024-12-25T11:18:24.810073 #36268] WARN -- : Copyright string not found in ../../node_modules/requizzle/lib/wrappers/strict.js
+I, [2024-12-25T11:18:24.810124 #36268] INFO -- : Processing file: ../../node_modules/reusify/benchmarks/createNoCodeFunction.js
+W, [2024-12-25T11:18:24.811061 #36268] WARN -- : Copyright string not found in ../../node_modules/reusify/benchmarks/createNoCodeFunction.js
+I, [2024-12-25T11:18:24.811111 #36268] INFO -- : Processing file: ../../node_modules/reusify/benchmarks/fib.js
+W, [2024-12-25T11:18:24.812379 #36268] WARN -- : Copyright string not found in ../../node_modules/reusify/benchmarks/fib.js
+I, [2024-12-25T11:18:24.812422 #36268] INFO -- : Processing file: ../../node_modules/reusify/benchmarks/reuseNoCodeFunction.js
+W, [2024-12-25T11:18:24.813227 #36268] WARN -- : Copyright string not found in ../../node_modules/reusify/benchmarks/reuseNoCodeFunction.js
+I, [2024-12-25T11:18:24.813260 #36268] INFO -- : Processing file: ../../node_modules/reusify/reusify.js
+W, [2024-12-25T11:18:24.813829 #36268] WARN -- : Copyright string not found in ../../node_modules/reusify/reusify.js
+I, [2024-12-25T11:18:24.813872 #36268] INFO -- : Processing file: ../../node_modules/reusify/test.js
+W, [2024-12-25T11:18:24.814680 #36268] WARN -- : Copyright string not found in ../../node_modules/reusify/test.js
+I, [2024-12-25T11:18:24.814832 #36268] INFO -- : Processing file: ../../node_modules/run-parallel/index.js
+W, [2024-12-25T11:18:24.815852 #36268] WARN -- : Copyright string not found in ../../node_modules/run-parallel/index.js
+I, [2024-12-25T11:18:24.815886 #36268] INFO -- : Processing file: ../../node_modules/sort-array/index.js
+W, [2024-12-25T11:18:24.816548 #36268] WARN -- : Copyright string not found in ../../node_modules/sort-array/index.js
+I, [2024-12-25T11:18:24.816579 #36268] INFO -- : Processing file: ../../node_modules/source-map/dist/source-map.debug.js
+W, [2024-12-25T11:18:24.818622 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/dist/source-map.debug.js
+I, [2024-12-25T11:18:24.818676 #36268] INFO -- : Processing file: ../../node_modules/source-map/dist/source-map.js
+W, [2024-12-25T11:18:24.819674 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/dist/source-map.js
+I, [2024-12-25T11:18:24.819707 #36268] INFO -- : Processing file: ../../node_modules/source-map/dist/source-map.min.js
+W, [2024-12-25T11:18:24.820298 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/dist/source-map.min.js
+I, [2024-12-25T11:18:24.820333 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/array-set.js
+W, [2024-12-25T11:18:24.820950 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/array-set.js
+I, [2024-12-25T11:18:24.820985 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/base64-vlq.js
+W, [2024-12-25T11:18:24.821667 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/base64-vlq.js
+I, [2024-12-25T11:18:24.821699 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/base64.js
+W, [2024-12-25T11:18:24.822286 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/base64.js
+I, [2024-12-25T11:18:24.822319 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/binary-search.js
+W, [2024-12-25T11:18:24.822673 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/binary-search.js
+I, [2024-12-25T11:18:24.823721 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/mapping-list.js
+W, [2024-12-25T11:18:24.824367 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/mapping-list.js
+I, [2024-12-25T11:18:24.824396 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/quick-sort.js
+W, [2024-12-25T11:18:24.825725 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/quick-sort.js
+I, [2024-12-25T11:18:24.825806 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/source-map-consumer.js
+W, [2024-12-25T11:18:24.826703 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/source-map-consumer.js
+I, [2024-12-25T11:18:24.826855 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/source-map-generator.js
+W, [2024-12-25T11:18:24.827757 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/source-map-generator.js
+I, [2024-12-25T11:18:24.828015 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/source-node.js
+W, [2024-12-25T11:18:24.829775 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/source-node.js
+I, [2024-12-25T11:18:24.830490 #36268] INFO -- : Processing file: ../../node_modules/source-map/lib/util.js
+W, [2024-12-25T11:18:24.831176 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/lib/util.js
+I, [2024-12-25T11:18:24.831207 #36268] INFO -- : Processing file: ../../node_modules/source-map/source-map.js
+W, [2024-12-25T11:18:24.832259 #36268] WARN -- : Copyright string not found in ../../node_modules/source-map/source-map.js
+I, [2024-12-25T11:18:24.832298 #36268] INFO -- : Processing file: ../../node_modules/strip-json-comments/index.js
+W, [2024-12-25T11:18:24.833674 #36268] WARN -- : Copyright string not found in ../../node_modules/strip-json-comments/index.js
+I, [2024-12-25T11:18:24.833753 #36268] INFO -- : Processing file: ../../node_modules/supports-color/browser.js
+W, [2024-12-25T11:18:24.834162 #36268] WARN -- : Copyright string not found in ../../node_modules/supports-color/browser.js
+I, [2024-12-25T11:18:24.834298 #36268] INFO -- : Processing file: ../../node_modules/supports-color/index.js
+W, [2024-12-25T11:18:24.834801 #36268] WARN -- : Copyright string not found in ../../node_modules/supports-color/index.js
+I, [2024-12-25T11:18:24.834927 #36268] INFO -- : Processing file: ../../node_modules/table-layout/index.js
+W, [2024-12-25T11:18:24.835314 #36268] WARN -- : Copyright string not found in ../../node_modules/table-layout/index.js
+I, [2024-12-25T11:18:24.835622 #36268] INFO -- : Processing file: ../../node_modules/table-layout/lib/ansi.js
+W, [2024-12-25T11:18:24.835935 #36268] WARN -- : Copyright string not found in ../../node_modules/table-layout/lib/ansi.js
+I, [2024-12-25T11:18:24.835963 #36268] INFO -- : Processing file: ../../node_modules/table-layout/lib/cell.js
+W, [2024-12-25T11:18:24.836262 #36268] WARN -- : Copyright string not found in ../../node_modules/table-layout/lib/cell.js
+I, [2024-12-25T11:18:24.836389 #36268] INFO -- : Processing file: ../../node_modules/table-layout/lib/column.js
+W, [2024-12-25T11:18:24.836824 #36268] WARN -- : Copyright string not found in ../../node_modules/table-layout/lib/column.js
+I, [2024-12-25T11:18:24.836951 #36268] INFO -- : Processing file: ../../node_modules/table-layout/lib/columns.js
+W, [2024-12-25T11:18:24.837271 #36268] WARN -- : Copyright string not found in ../../node_modules/table-layout/lib/columns.js
+I, [2024-12-25T11:18:24.837481 #36268] INFO -- : Processing file: ../../node_modules/table-layout/lib/padding.js
+W, [2024-12-25T11:18:24.837759 #36268] WARN -- : Copyright string not found in ../../node_modules/table-layout/lib/padding.js
+I, [2024-12-25T11:18:24.837777 #36268] INFO -- : Processing file: ../../node_modules/table-layout/lib/rows.js
+W, [2024-12-25T11:18:24.838028 #36268] WARN -- : Copyright string not found in ../../node_modules/table-layout/lib/rows.js
+I, [2024-12-25T11:18:24.838046 #36268] INFO -- : Processing file: ../../node_modules/table-layout/lib/util.js
+W, [2024-12-25T11:18:24.838311 #36268] WARN -- : Copyright string not found in ../../node_modules/table-layout/lib/util.js
+I, [2024-12-25T11:18:24.838337 #36268] INFO -- : Processing file: ../../node_modules/to-fast-properties/index.js
+W, [2024-12-25T11:18:24.838754 #36268] WARN -- : Copyright string not found in ../../node_modules/to-fast-properties/index.js
+I, [2024-12-25T11:18:24.838879 #36268] INFO -- : Processing file: ../../node_modules/to-regex-range/index.js
+W, [2024-12-25T11:18:24.839279 #36268] WARN -- : Copyright string not found in ../../node_modules/to-regex-range/index.js
+I, [2024-12-25T11:18:24.839542 #36268] INFO -- : Processing file: ../../node_modules/typical/index.js
+W, [2024-12-25T11:18:24.839949 #36268] WARN -- : Copyright string not found in ../../node_modules/typical/index.js
+I, [2024-12-25T11:18:24.839975 #36268] INFO -- : Processing file: ../../node_modules/uc.micro/build/index.cjs.js
+W, [2024-12-25T11:18:24.840824 #36268] WARN -- : Copyright string not found in ../../node_modules/uc.micro/build/index.cjs.js
+I, [2024-12-25T11:18:24.841245 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/ast.js
+W, [2024-12-25T11:18:24.843894 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/ast.js
+I, [2024-12-25T11:18:24.843933 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/compress.js
+W, [2024-12-25T11:18:24.848537 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/compress.js
+I, [2024-12-25T11:18:24.848569 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/minify.js
+W, [2024-12-25T11:18:24.849020 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/minify.js
+I, [2024-12-25T11:18:24.849040 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/mozilla-ast.js
+W, [2024-12-25T11:18:24.849706 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/mozilla-ast.js
+I, [2024-12-25T11:18:24.849738 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/output.js
+W, [2024-12-25T11:18:24.850800 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/output.js
+I, [2024-12-25T11:18:24.850824 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/parse.js
+W, [2024-12-25T11:18:24.851722 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/parse.js
+I, [2024-12-25T11:18:24.851758 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/propmangle.js
+W, [2024-12-25T11:18:24.852089 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/propmangle.js
+I, [2024-12-25T11:18:24.852122 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/scope.js
+W, [2024-12-25T11:18:24.852553 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/scope.js
+I, [2024-12-25T11:18:24.852586 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/sourcemap.js
+W, [2024-12-25T11:18:24.852907 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/sourcemap.js
+I, [2024-12-25T11:18:24.852940 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/transform.js
+W, [2024-12-25T11:18:24.853257 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/transform.js
+I, [2024-12-25T11:18:24.853290 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/lib/utils.js
+W, [2024-12-25T11:18:24.853622 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/lib/utils.js
+I, [2024-12-25T11:18:24.853654 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/tools/exports.js
+W, [2024-12-25T11:18:24.854142 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/tools/exports.js
+I, [2024-12-25T11:18:24.854180 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/tools/node.js
+W, [2024-12-25T11:18:24.854534 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/tools/node.js
+I, [2024-12-25T11:18:24.854568 #36268] INFO -- : Processing file: ../../node_modules/uglify-js/tools/tty.js
+W, [2024-12-25T11:18:24.854859 #36268] WARN -- : Copyright string not found in ../../node_modules/uglify-js/tools/tty.js
+I, [2024-12-25T11:18:24.854892 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_baseCreate.js
+W, [2024-12-25T11:18:24.855374 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_baseCreate.js
+I, [2024-12-25T11:18:24.855492 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_baseIteratee.js
+W, [2024-12-25T11:18:24.859142 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_baseIteratee.js
+I, [2024-12-25T11:18:24.859218 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_cb.js
+W, [2024-12-25T11:18:24.859828 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_cb.js
+I, [2024-12-25T11:18:24.859885 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_chainResult.js
+W, [2024-12-25T11:18:24.860588 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_chainResult.js
+I, [2024-12-25T11:18:24.860639 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_collectNonEnumProps.js
+W, [2024-12-25T11:18:24.861220 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_collectNonEnumProps.js
+I, [2024-12-25T11:18:24.861269 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_createAssigner.js
+W, [2024-12-25T11:18:24.861901 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_createAssigner.js
+I, [2024-12-25T11:18:24.861949 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_createEscaper.js
+W, [2024-12-25T11:18:24.863030 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_createEscaper.js
+I, [2024-12-25T11:18:24.863055 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_createIndexFinder.js
+W, [2024-12-25T11:18:24.863613 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_createIndexFinder.js
+I, [2024-12-25T11:18:24.863900 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_createPredicateIndexFinder.js
+W, [2024-12-25T11:18:24.864746 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_createPredicateIndexFinder.js
+I, [2024-12-25T11:18:24.864804 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_createReduce.js
+W, [2024-12-25T11:18:24.865648 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_createReduce.js
+I, [2024-12-25T11:18:24.865711 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_createSizePropertyCheck.js
+W, [2024-12-25T11:18:24.866271 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_createSizePropertyCheck.js
+I, [2024-12-25T11:18:24.866308 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_deepGet.js
+W, [2024-12-25T11:18:24.866724 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_deepGet.js
+I, [2024-12-25T11:18:24.866758 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_escapeMap.js
+W, [2024-12-25T11:18:24.867154 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_escapeMap.js
+I, [2024-12-25T11:18:24.867186 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_executeBound.js
+W, [2024-12-25T11:18:24.867533 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_executeBound.js
+I, [2024-12-25T11:18:24.867568 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_flatten.js
+W, [2024-12-25T11:18:24.867879 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_flatten.js
+I, [2024-12-25T11:18:24.867905 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_getByteLength.js
+W, [2024-12-25T11:18:24.868175 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_getByteLength.js
+I, [2024-12-25T11:18:24.868193 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_getLength.js
+W, [2024-12-25T11:18:24.868477 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_getLength.js
+I, [2024-12-25T11:18:24.868541 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_group.js
+W, [2024-12-25T11:18:24.868814 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_group.js
+I, [2024-12-25T11:18:24.868832 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_has.js
+W, [2024-12-25T11:18:24.869081 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_has.js
+I, [2024-12-25T11:18:24.869099 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_hasObjectTag.js
+W, [2024-12-25T11:18:24.869343 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_hasObjectTag.js
+I, [2024-12-25T11:18:24.869361 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_isArrayLike.js
+W, [2024-12-25T11:18:24.869599 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_isArrayLike.js
+I, [2024-12-25T11:18:24.869617 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_isBufferLike.js
+W, [2024-12-25T11:18:24.869867 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_isBufferLike.js
+I, [2024-12-25T11:18:24.869885 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_keyInObj.js
+W, [2024-12-25T11:18:24.870122 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_keyInObj.js
+I, [2024-12-25T11:18:24.870140 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_methodFingerprint.js
+W, [2024-12-25T11:18:24.870372 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_methodFingerprint.js
+I, [2024-12-25T11:18:24.870390 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_optimizeCb.js
+W, [2024-12-25T11:18:24.870675 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_optimizeCb.js
+I, [2024-12-25T11:18:24.870712 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_set.js
+W, [2024-12-25T11:18:24.870997 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_set.js
+I, [2024-12-25T11:18:24.871030 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_setup.js
+W, [2024-12-25T11:18:24.871328 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_setup.js
+I, [2024-12-25T11:18:24.871360 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_shallowProperty.js
+W, [2024-12-25T11:18:24.871638 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_shallowProperty.js
+I, [2024-12-25T11:18:24.871670 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_stringTagBug.js
+W, [2024-12-25T11:18:24.871928 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_stringTagBug.js
+I, [2024-12-25T11:18:24.872006 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_tagTester.js
+W, [2024-12-25T11:18:24.872869 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_tagTester.js
+I, [2024-12-25T11:18:24.872903 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_toBufferView.js
+W, [2024-12-25T11:18:24.873241 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_toBufferView.js
+I, [2024-12-25T11:18:24.873267 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_toPath.js
+W, [2024-12-25T11:18:24.873640 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_toPath.js
+I, [2024-12-25T11:18:24.873676 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/_unescapeMap.js
+W, [2024-12-25T11:18:24.874010 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/_unescapeMap.js
+I, [2024-12-25T11:18:24.874097 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/after.js
+W, [2024-12-25T11:18:24.874473 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/after.js
+I, [2024-12-25T11:18:24.874520 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/allKeys.js
+W, [2024-12-25T11:18:24.874856 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/allKeys.js
+I, [2024-12-25T11:18:24.874876 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/before.js
+W, [2024-12-25T11:18:24.875228 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/before.js
+I, [2024-12-25T11:18:24.875248 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/bind.js
+W, [2024-12-25T11:18:24.875660 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/bind.js
+I, [2024-12-25T11:18:24.875693 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/bindAll.js
+W, [2024-12-25T11:18:24.876129 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/bindAll.js
+I, [2024-12-25T11:18:24.876152 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/chain.js
+W, [2024-12-25T11:18:24.876554 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/chain.js
+I, [2024-12-25T11:18:24.876574 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/chunk.js
+W, [2024-12-25T11:18:24.877060 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/chunk.js
+I, [2024-12-25T11:18:24.877080 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/clone.js
+W, [2024-12-25T11:18:24.877555 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/clone.js
+I, [2024-12-25T11:18:24.877590 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/compact.js
+W, [2024-12-25T11:18:24.878043 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/compact.js
+I, [2024-12-25T11:18:24.878223 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/compose.js
+W, [2024-12-25T11:18:24.878724 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/compose.js
+I, [2024-12-25T11:18:24.878786 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/constant.js
+W, [2024-12-25T11:18:24.879126 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/constant.js
+I, [2024-12-25T11:18:24.879155 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/contains.js
+W, [2024-12-25T11:18:24.879531 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/contains.js
+I, [2024-12-25T11:18:24.879634 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/countBy.js
+W, [2024-12-25T11:18:24.879974 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/countBy.js
+I, [2024-12-25T11:18:24.880103 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/create.js
+W, [2024-12-25T11:18:24.880473 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/create.js
+I, [2024-12-25T11:18:24.880523 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/debounce.js
+W, [2024-12-25T11:18:24.880834 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/debounce.js
+I, [2024-12-25T11:18:24.881063 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/defaults.js
+W, [2024-12-25T11:18:24.881395 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/defaults.js
+I, [2024-12-25T11:18:24.881541 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/defer.js
+W, [2024-12-25T11:18:24.882070 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/defer.js
+I, [2024-12-25T11:18:24.882128 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/delay.js
+W, [2024-12-25T11:18:24.882718 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/delay.js
+I, [2024-12-25T11:18:24.883174 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/difference.js
+W, [2024-12-25T11:18:24.884174 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/difference.js
+I, [2024-12-25T11:18:24.884199 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/each.js
+W, [2024-12-25T11:18:24.884921 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/each.js
+I, [2024-12-25T11:18:24.884983 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/escape.js
+W, [2024-12-25T11:18:24.885384 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/escape.js
+I, [2024-12-25T11:18:24.885677 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/every.js
+W, [2024-12-25T11:18:24.886338 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/every.js
+I, [2024-12-25T11:18:24.886811 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/extend.js
+W, [2024-12-25T11:18:24.887200 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/extend.js
+I, [2024-12-25T11:18:24.887330 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/extendOwn.js
+W, [2024-12-25T11:18:24.887746 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/extendOwn.js
+I, [2024-12-25T11:18:24.887873 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/filter.js
+W, [2024-12-25T11:18:24.888201 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/filter.js
+I, [2024-12-25T11:18:24.888252 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/find.js
+W, [2024-12-25T11:18:24.888617 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/find.js
+I, [2024-12-25T11:18:24.888766 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/findIndex.js
+W, [2024-12-25T11:18:24.889095 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/findIndex.js
+I, [2024-12-25T11:18:24.889231 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/findKey.js
+W, [2024-12-25T11:18:24.889583 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/findKey.js
+I, [2024-12-25T11:18:24.889610 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/findLastIndex.js
+W, [2024-12-25T11:18:24.889991 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/findLastIndex.js
+I, [2024-12-25T11:18:24.890019 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/findWhere.js
+W, [2024-12-25T11:18:24.890391 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/findWhere.js
+I, [2024-12-25T11:18:24.890502 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/first.js
+W, [2024-12-25T11:18:24.890928 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/first.js
+I, [2024-12-25T11:18:24.892308 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/flatten.js
+W, [2024-12-25T11:18:24.893238 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/flatten.js
+I, [2024-12-25T11:18:24.893373 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/functions.js
+W, [2024-12-25T11:18:24.893897 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/functions.js
+I, [2024-12-25T11:18:24.894036 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/get.js
+W, [2024-12-25T11:18:24.894359 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/get.js
+I, [2024-12-25T11:18:24.894386 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/groupBy.js
+W, [2024-12-25T11:18:24.894832 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/groupBy.js
+I, [2024-12-25T11:18:24.894883 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/has.js
+W, [2024-12-25T11:18:24.895322 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/has.js
+I, [2024-12-25T11:18:24.895363 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/identity.js
+W, [2024-12-25T11:18:24.896024 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/identity.js
+I, [2024-12-25T11:18:24.896049 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/index-default.js
+W, [2024-12-25T11:18:24.896771 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/index-default.js
+I, [2024-12-25T11:18:24.896823 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/index.js
+W, [2024-12-25T11:18:24.897572 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/index.js
+I, [2024-12-25T11:18:24.897607 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/indexBy.js
+W, [2024-12-25T11:18:24.898641 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/indexBy.js
+I, [2024-12-25T11:18:24.898830 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/indexOf.js
+W, [2024-12-25T11:18:24.899896 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/indexOf.js
+I, [2024-12-25T11:18:24.899955 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/initial.js
+W, [2024-12-25T11:18:24.900414 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/initial.js
+I, [2024-12-25T11:18:24.900593 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/intersection.js
+W, [2024-12-25T11:18:24.900935 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/intersection.js
+I, [2024-12-25T11:18:24.900979 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/invert.js
+W, [2024-12-25T11:18:24.901299 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/invert.js
+I, [2024-12-25T11:18:24.901342 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/invoke.js
+W, [2024-12-25T11:18:24.901660 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/invoke.js
+I, [2024-12-25T11:18:24.901704 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isArguments.js
+W, [2024-12-25T11:18:24.902019 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isArguments.js
+I, [2024-12-25T11:18:24.902097 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isArray.js
+W, [2024-12-25T11:18:24.902379 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isArray.js
+I, [2024-12-25T11:18:24.902728 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isArrayBuffer.js
+W, [2024-12-25T11:18:24.903189 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isArrayBuffer.js
+I, [2024-12-25T11:18:24.903342 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isBoolean.js
+W, [2024-12-25T11:18:24.903911 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isBoolean.js
+I, [2024-12-25T11:18:24.903954 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isDataView.js
+W, [2024-12-25T11:18:24.904289 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isDataView.js
+I, [2024-12-25T11:18:24.904327 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isDate.js
+W, [2024-12-25T11:18:24.904943 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isDate.js
+I, [2024-12-25T11:18:24.905001 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isElement.js
+W, [2024-12-25T11:18:24.905620 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isElement.js
+I, [2024-12-25T11:18:24.905663 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isEmpty.js
+W, [2024-12-25T11:18:24.906028 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isEmpty.js
+I, [2024-12-25T11:18:24.906208 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isEqual.js
+W, [2024-12-25T11:18:24.906597 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isEqual.js
+I, [2024-12-25T11:18:24.906633 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isError.js
+W, [2024-12-25T11:18:24.907713 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isError.js
+I, [2024-12-25T11:18:24.907748 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isFinite.js
+W, [2024-12-25T11:18:24.908550 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isFinite.js
+I, [2024-12-25T11:18:24.908585 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isFunction.js
+W, [2024-12-25T11:18:24.909175 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isFunction.js
+I, [2024-12-25T11:18:24.909219 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isMap.js
+W, [2024-12-25T11:18:24.909658 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isMap.js
+I, [2024-12-25T11:18:24.909700 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isMatch.js
+W, [2024-12-25T11:18:24.910077 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isMatch.js
+I, [2024-12-25T11:18:24.910154 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isNaN.js
+W, [2024-12-25T11:18:24.910763 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isNaN.js
+I, [2024-12-25T11:18:24.910810 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isNull.js
+W, [2024-12-25T11:18:24.911570 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isNull.js
+I, [2024-12-25T11:18:24.911669 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isNumber.js
+W, [2024-12-25T11:18:24.912201 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isNumber.js
+I, [2024-12-25T11:18:24.912229 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isObject.js
+W, [2024-12-25T11:18:24.912667 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isObject.js
+I, [2024-12-25T11:18:24.912706 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isRegExp.js
+W, [2024-12-25T11:18:24.913245 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isRegExp.js
+I, [2024-12-25T11:18:24.913297 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isSet.js
+W, [2024-12-25T11:18:24.913772 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isSet.js
+I, [2024-12-25T11:18:24.913838 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isString.js
+W, [2024-12-25T11:18:24.914315 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isString.js
+I, [2024-12-25T11:18:24.914356 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isSymbol.js
+W, [2024-12-25T11:18:24.915304 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isSymbol.js
+I, [2024-12-25T11:18:24.915350 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isTypedArray.js
+W, [2024-12-25T11:18:24.916238 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isTypedArray.js
+I, [2024-12-25T11:18:24.916353 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isUndefined.js
+W, [2024-12-25T11:18:24.917099 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isUndefined.js
+I, [2024-12-25T11:18:24.917129 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isWeakMap.js
+W, [2024-12-25T11:18:24.917504 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isWeakMap.js
+I, [2024-12-25T11:18:24.917523 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/isWeakSet.js
+W, [2024-12-25T11:18:24.917837 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/isWeakSet.js
+I, [2024-12-25T11:18:24.917855 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/iteratee.js
+W, [2024-12-25T11:18:24.918182 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/iteratee.js
+I, [2024-12-25T11:18:24.918201 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/keys.js
+W, [2024-12-25T11:18:24.918481 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/keys.js
+I, [2024-12-25T11:18:24.918499 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/last.js
+W, [2024-12-25T11:18:24.918817 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/last.js
+I, [2024-12-25T11:18:24.918836 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/lastIndexOf.js
+W, [2024-12-25T11:18:24.919151 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/lastIndexOf.js
+I, [2024-12-25T11:18:24.919183 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/map.js
+W, [2024-12-25T11:18:24.919516 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/map.js
+I, [2024-12-25T11:18:24.919549 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/mapObject.js
+W, [2024-12-25T11:18:24.919912 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/mapObject.js
+I, [2024-12-25T11:18:24.919945 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/matcher.js
+W, [2024-12-25T11:18:24.920227 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/matcher.js
+I, [2024-12-25T11:18:24.920259 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/max.js
+W, [2024-12-25T11:18:24.920546 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/max.js
+I, [2024-12-25T11:18:24.920578 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/memoize.js
+W, [2024-12-25T11:18:24.920869 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/memoize.js
+I, [2024-12-25T11:18:24.920901 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/min.js
+W, [2024-12-25T11:18:24.921172 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/min.js
+I, [2024-12-25T11:18:24.921205 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/mixin.js
+W, [2024-12-25T11:18:24.921472 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/mixin.js
+I, [2024-12-25T11:18:24.921513 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/negate.js
+W, [2024-12-25T11:18:24.921797 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/negate.js
+I, [2024-12-25T11:18:24.921829 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/noop.js
+W, [2024-12-25T11:18:24.922102 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/noop.js
+I, [2024-12-25T11:18:24.922135 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/now.js
+W, [2024-12-25T11:18:24.922465 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/now.js
+I, [2024-12-25T11:18:24.922491 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/object.js
+W, [2024-12-25T11:18:24.922812 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/object.js
+I, [2024-12-25T11:18:24.922841 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/omit.js
+W, [2024-12-25T11:18:24.923135 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/omit.js
+I, [2024-12-25T11:18:24.923154 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/once.js
+W, [2024-12-25T11:18:24.923538 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/once.js
+I, [2024-12-25T11:18:24.923612 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/pairs.js
+W, [2024-12-25T11:18:24.924230 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/pairs.js
+I, [2024-12-25T11:18:24.924289 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/partial.js
+W, [2024-12-25T11:18:24.924960 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/partial.js
+I, [2024-12-25T11:18:24.925000 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/partition.js
+W, [2024-12-25T11:18:24.925533 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/partition.js
+I, [2024-12-25T11:18:24.925612 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/pick.js
+W, [2024-12-25T11:18:24.926076 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/pick.js
+I, [2024-12-25T11:18:24.926117 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/pluck.js
+W, [2024-12-25T11:18:24.926585 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/pluck.js
+I, [2024-12-25T11:18:24.926627 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/property.js
+W, [2024-12-25T11:18:24.927064 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/property.js
+I, [2024-12-25T11:18:24.927167 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/propertyOf.js
+W, [2024-12-25T11:18:24.927784 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/propertyOf.js
+I, [2024-12-25T11:18:24.927864 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/random.js
+W, [2024-12-25T11:18:24.928617 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/random.js
+I, [2024-12-25T11:18:24.928662 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/range.js
+W, [2024-12-25T11:18:24.929184 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/range.js
+I, [2024-12-25T11:18:24.929279 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/reduce.js
+W, [2024-12-25T11:18:24.930094 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/reduce.js
+I, [2024-12-25T11:18:24.930168 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/reduceRight.js
+W, [2024-12-25T11:18:24.930818 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/reduceRight.js
+I, [2024-12-25T11:18:24.930893 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/reject.js
+W, [2024-12-25T11:18:24.932142 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/reject.js
+I, [2024-12-25T11:18:24.932235 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/rest.js
+W, [2024-12-25T11:18:24.932777 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/rest.js
+I, [2024-12-25T11:18:24.932815 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/restArguments.js
+W, [2024-12-25T11:18:24.933503 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/restArguments.js
+I, [2024-12-25T11:18:24.933593 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/result.js
+W, [2024-12-25T11:18:24.934060 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/result.js
+I, [2024-12-25T11:18:24.934080 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/sample.js
+W, [2024-12-25T11:18:24.934584 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/sample.js
+I, [2024-12-25T11:18:24.934608 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/set.js
+W, [2024-12-25T11:18:24.935661 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/set.js
+I, [2024-12-25T11:18:24.935719 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/shuffle.js
+W, [2024-12-25T11:18:24.936209 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/shuffle.js
+I, [2024-12-25T11:18:24.936232 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/size.js
+W, [2024-12-25T11:18:24.936927 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/size.js
+I, [2024-12-25T11:18:24.936981 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/some.js
+W, [2024-12-25T11:18:24.937351 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/some.js
+I, [2024-12-25T11:18:24.937368 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/sortBy.js
+W, [2024-12-25T11:18:24.937781 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/sortBy.js
+I, [2024-12-25T11:18:24.937801 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/sortedIndex.js
+W, [2024-12-25T11:18:24.938214 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/sortedIndex.js
+I, [2024-12-25T11:18:24.938246 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/tap.js
+W, [2024-12-25T11:18:24.938596 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/tap.js
+I, [2024-12-25T11:18:24.938616 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/template.js
+W, [2024-12-25T11:18:24.938947 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/template.js
+I, [2024-12-25T11:18:24.938969 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/templateSettings.js
+W, [2024-12-25T11:18:24.939317 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/templateSettings.js
+I, [2024-12-25T11:18:24.939336 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/throttle.js
+W, [2024-12-25T11:18:24.939657 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/throttle.js
+I, [2024-12-25T11:18:24.939677 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/times.js
+W, [2024-12-25T11:18:24.940010 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/times.js
+I, [2024-12-25T11:18:24.940058 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/toArray.js
+W, [2024-12-25T11:18:24.940573 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/toArray.js
+I, [2024-12-25T11:18:24.940751 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/toPath.js
+W, [2024-12-25T11:18:24.941393 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/toPath.js
+I, [2024-12-25T11:18:24.941435 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/underscore-array-methods.js
+W, [2024-12-25T11:18:24.942044 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/underscore-array-methods.js
+I, [2024-12-25T11:18:24.942116 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/underscore.js
+W, [2024-12-25T11:18:24.942611 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/underscore.js
+I, [2024-12-25T11:18:24.942647 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/unescape.js
+W, [2024-12-25T11:18:24.943149 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/unescape.js
+I, [2024-12-25T11:18:24.943186 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/union.js
+W, [2024-12-25T11:18:24.943519 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/union.js
+I, [2024-12-25T11:18:24.943547 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/uniq.js
+W, [2024-12-25T11:18:24.943959 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/uniq.js
+I, [2024-12-25T11:18:24.943992 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/uniqueId.js
+W, [2024-12-25T11:18:24.944515 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/uniqueId.js
+I, [2024-12-25T11:18:24.944551 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/unzip.js
+W, [2024-12-25T11:18:24.944971 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/unzip.js
+I, [2024-12-25T11:18:24.944999 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/values.js
+W, [2024-12-25T11:18:24.945465 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/values.js
+I, [2024-12-25T11:18:24.945538 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/where.js
+W, [2024-12-25T11:18:24.946191 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/where.js
+I, [2024-12-25T11:18:24.946267 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/without.js
+W, [2024-12-25T11:18:24.946944 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/without.js
+I, [2024-12-25T11:18:24.946985 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/wrap.js
+W, [2024-12-25T11:18:24.948012 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/wrap.js
+I, [2024-12-25T11:18:24.948149 #36268] INFO -- : Processing file: ../../node_modules/underscore/amd/zip.js
+W, [2024-12-25T11:18:24.948641 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/amd/zip.js
+I, [2024-12-25T11:18:24.948676 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_baseCreate.js
+W, [2024-12-25T11:18:24.949274 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_baseCreate.js
+I, [2024-12-25T11:18:24.949307 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_baseIteratee.js
+W, [2024-12-25T11:18:24.949724 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_baseIteratee.js
+I, [2024-12-25T11:18:24.949756 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_cb.js
+W, [2024-12-25T11:18:24.950232 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_cb.js
+I, [2024-12-25T11:18:24.950264 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_chainResult.js
+W, [2024-12-25T11:18:24.950619 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_chainResult.js
+I, [2024-12-25T11:18:24.950655 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_collectNonEnumProps.js
+W, [2024-12-25T11:18:24.950963 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_collectNonEnumProps.js
+I, [2024-12-25T11:18:24.950991 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_createAssigner.js
+W, [2024-12-25T11:18:24.951282 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_createAssigner.js
+I, [2024-12-25T11:18:24.951315 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_createEscaper.js
+W, [2024-12-25T11:18:24.951601 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_createEscaper.js
+I, [2024-12-25T11:18:24.951635 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_createIndexFinder.js
+W, [2024-12-25T11:18:24.951925 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_createIndexFinder.js
+I, [2024-12-25T11:18:24.951959 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_createPredicateIndexFinder.js
+W, [2024-12-25T11:18:24.952473 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_createPredicateIndexFinder.js
+I, [2024-12-25T11:18:24.952506 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_createReduce.js
+W, [2024-12-25T11:18:24.952797 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_createReduce.js
+I, [2024-12-25T11:18:24.952830 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_createSizePropertyCheck.js
+W, [2024-12-25T11:18:24.953116 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_createSizePropertyCheck.js
+I, [2024-12-25T11:18:24.953148 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_deepGet.js
+W, [2024-12-25T11:18:24.953486 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_deepGet.js
+I, [2024-12-25T11:18:24.953518 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_escapeMap.js
+W, [2024-12-25T11:18:24.953816 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_escapeMap.js
+I, [2024-12-25T11:18:24.953849 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_executeBound.js
+W, [2024-12-25T11:18:24.954138 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_executeBound.js
+I, [2024-12-25T11:18:24.954171 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_flatten.js
+W, [2024-12-25T11:18:24.954505 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_flatten.js
+I, [2024-12-25T11:18:24.954540 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_getByteLength.js
+W, [2024-12-25T11:18:24.954828 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_getByteLength.js
+I, [2024-12-25T11:18:24.954861 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_getLength.js
+W, [2024-12-25T11:18:24.955130 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_getLength.js
+I, [2024-12-25T11:18:24.955163 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_group.js
+W, [2024-12-25T11:18:24.955462 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_group.js
+I, [2024-12-25T11:18:24.955496 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_has.js
+W, [2024-12-25T11:18:24.955781 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_has.js
+I, [2024-12-25T11:18:24.955806 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_hasObjectTag.js
+W, [2024-12-25T11:18:24.956086 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_hasObjectTag.js
+I, [2024-12-25T11:18:24.956105 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_isArrayLike.js
+W, [2024-12-25T11:18:24.956757 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_isArrayLike.js
+I, [2024-12-25T11:18:24.956783 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_isBufferLike.js
+W, [2024-12-25T11:18:24.957165 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_isBufferLike.js
+I, [2024-12-25T11:18:24.957187 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_keyInObj.js
+W, [2024-12-25T11:18:24.957554 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_keyInObj.js
+I, [2024-12-25T11:18:24.957584 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_methodFingerprint.js
+W, [2024-12-25T11:18:24.957945 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_methodFingerprint.js
+I, [2024-12-25T11:18:24.957986 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_optimizeCb.js
+W, [2024-12-25T11:18:24.958396 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_optimizeCb.js
+I, [2024-12-25T11:18:24.958610 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_set.js
+W, [2024-12-25T11:18:24.958989 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_set.js
+I, [2024-12-25T11:18:24.959030 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_setup.js
+W, [2024-12-25T11:18:24.959395 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_setup.js
+I, [2024-12-25T11:18:24.959593 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_shallowProperty.js
+W, [2024-12-25T11:18:24.960053 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_shallowProperty.js
+I, [2024-12-25T11:18:24.960098 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_stringTagBug.js
+W, [2024-12-25T11:18:24.960687 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_stringTagBug.js
+I, [2024-12-25T11:18:24.960730 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_tagTester.js
+W, [2024-12-25T11:18:24.961147 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_tagTester.js
+I, [2024-12-25T11:18:24.961178 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_toBufferView.js
+W, [2024-12-25T11:18:24.961660 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_toBufferView.js
+I, [2024-12-25T11:18:24.961810 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_toPath.js
+W, [2024-12-25T11:18:24.962171 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_toPath.js
+I, [2024-12-25T11:18:24.962200 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/_unescapeMap.js
+W, [2024-12-25T11:18:24.962627 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/_unescapeMap.js
+I, [2024-12-25T11:18:24.962667 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/after.js
+W, [2024-12-25T11:18:24.963090 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/after.js
+I, [2024-12-25T11:18:24.963157 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/allKeys.js
+W, [2024-12-25T11:18:24.963710 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/allKeys.js
+I, [2024-12-25T11:18:24.963751 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/before.js
+W, [2024-12-25T11:18:24.964250 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/before.js
+I, [2024-12-25T11:18:24.964290 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/bind.js
+W, [2024-12-25T11:18:24.964596 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/bind.js
+I, [2024-12-25T11:18:24.964617 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/bindAll.js
+W, [2024-12-25T11:18:24.964915 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/bindAll.js
+I, [2024-12-25T11:18:24.964934 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/chain.js
+W, [2024-12-25T11:18:24.965198 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/chain.js
+I, [2024-12-25T11:18:24.965216 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/chunk.js
+W, [2024-12-25T11:18:24.965507 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/chunk.js
+I, [2024-12-25T11:18:24.965526 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/clone.js
+W, [2024-12-25T11:18:24.965839 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/clone.js
+I, [2024-12-25T11:18:24.965876 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/compact.js
+W, [2024-12-25T11:18:24.966144 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/compact.js
+I, [2024-12-25T11:18:24.966170 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/compose.js
+W, [2024-12-25T11:18:24.966512 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/compose.js
+I, [2024-12-25T11:18:24.966538 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/constant.js
+W, [2024-12-25T11:18:24.966865 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/constant.js
+I, [2024-12-25T11:18:24.966891 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/contains.js
+W, [2024-12-25T11:18:24.967190 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/contains.js
+I, [2024-12-25T11:18:24.967225 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/countBy.js
+W, [2024-12-25T11:18:24.967568 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/countBy.js
+I, [2024-12-25T11:18:24.967602 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/create.js
+W, [2024-12-25T11:18:24.967898 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/create.js
+I, [2024-12-25T11:18:24.967930 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/debounce.js
+W, [2024-12-25T11:18:24.968227 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/debounce.js
+I, [2024-12-25T11:18:24.968262 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/defaults.js
+W, [2024-12-25T11:18:24.968568 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/defaults.js
+I, [2024-12-25T11:18:24.968600 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/defer.js
+W, [2024-12-25T11:18:24.968894 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/defer.js
+I, [2024-12-25T11:18:24.968920 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/delay.js
+W, [2024-12-25T11:18:24.969163 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/delay.js
+I, [2024-12-25T11:18:24.969181 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/difference.js
+W, [2024-12-25T11:18:24.969478 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/difference.js
+I, [2024-12-25T11:18:24.969497 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/each.js
+W, [2024-12-25T11:18:24.969755 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/each.js
+I, [2024-12-25T11:18:24.969774 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/escape.js
+W, [2024-12-25T11:18:24.970027 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/escape.js
+I, [2024-12-25T11:18:24.970045 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/every.js
+W, [2024-12-25T11:18:24.970285 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/every.js
+I, [2024-12-25T11:18:24.970304 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/extend.js
+W, [2024-12-25T11:18:24.970582 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/extend.js
+I, [2024-12-25T11:18:24.970632 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/extendOwn.js
+W, [2024-12-25T11:18:24.970982 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/extendOwn.js
+I, [2024-12-25T11:18:24.971008 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/filter.js
+W, [2024-12-25T11:18:24.971267 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/filter.js
+I, [2024-12-25T11:18:24.971293 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/find.js
+W, [2024-12-25T11:18:24.971567 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/find.js
+I, [2024-12-25T11:18:24.971593 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/findIndex.js
+W, [2024-12-25T11:18:24.971968 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/findIndex.js
+I, [2024-12-25T11:18:24.972005 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/findKey.js
+W, [2024-12-25T11:18:24.972319 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/findKey.js
+I, [2024-12-25T11:18:24.972403 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/findLastIndex.js
+W, [2024-12-25T11:18:24.972823 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/findLastIndex.js
+I, [2024-12-25T11:18:24.972889 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/findWhere.js
+W, [2024-12-25T11:18:24.975758 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/findWhere.js
+I, [2024-12-25T11:18:24.975797 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/first.js
+W, [2024-12-25T11:18:24.976207 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/first.js
+I, [2024-12-25T11:18:24.977300 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/flatten.js
+W, [2024-12-25T11:18:24.978364 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/flatten.js
+I, [2024-12-25T11:18:24.978431 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/functions.js
+W, [2024-12-25T11:18:24.979297 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/functions.js
+I, [2024-12-25T11:18:24.979350 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/get.js
+W, [2024-12-25T11:18:24.979948 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/get.js
+I, [2024-12-25T11:18:24.979981 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/groupBy.js
+W, [2024-12-25T11:18:24.980392 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/groupBy.js
+I, [2024-12-25T11:18:24.980521 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/has.js
+W, [2024-12-25T11:18:24.981076 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/has.js
+I, [2024-12-25T11:18:24.981123 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/identity.js
+W, [2024-12-25T11:18:24.981625 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/identity.js
+I, [2024-12-25T11:18:24.981680 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/index-default.js
+W, [2024-12-25T11:18:24.982039 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/index-default.js
+I, [2024-12-25T11:18:24.982059 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/index.js
+W, [2024-12-25T11:18:24.982558 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/index.js
+I, [2024-12-25T11:18:24.982579 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/indexBy.js
+W, [2024-12-25T11:18:24.983720 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/indexBy.js
+I, [2024-12-25T11:18:24.983750 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/indexOf.js
+W, [2024-12-25T11:18:24.984236 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/indexOf.js
+I, [2024-12-25T11:18:24.984285 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/initial.js
+W, [2024-12-25T11:18:24.984613 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/initial.js
+I, [2024-12-25T11:18:24.984649 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/intersection.js
+W, [2024-12-25T11:18:24.985045 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/intersection.js
+I, [2024-12-25T11:18:24.985078 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/invert.js
+W, [2024-12-25T11:18:24.985509 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/invert.js
+I, [2024-12-25T11:18:24.985543 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/invoke.js
+W, [2024-12-25T11:18:24.985804 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/invoke.js
+I, [2024-12-25T11:18:24.985837 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isArguments.js
+W, [2024-12-25T11:18:24.986122 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isArguments.js
+I, [2024-12-25T11:18:24.986156 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isArray.js
+W, [2024-12-25T11:18:24.986500 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isArray.js
+I, [2024-12-25T11:18:24.986534 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isArrayBuffer.js
+W, [2024-12-25T11:18:24.986822 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isArrayBuffer.js
+I, [2024-12-25T11:18:24.986856 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isBoolean.js
+W, [2024-12-25T11:18:24.987130 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isBoolean.js
+I, [2024-12-25T11:18:24.987163 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isDataView.js
+W, [2024-12-25T11:18:24.987460 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isDataView.js
+I, [2024-12-25T11:18:24.987487 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isDate.js
+W, [2024-12-25T11:18:24.987833 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isDate.js
+I, [2024-12-25T11:18:24.987858 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isElement.js
+W, [2024-12-25T11:18:24.988166 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isElement.js
+I, [2024-12-25T11:18:24.988200 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isEmpty.js
+W, [2024-12-25T11:18:24.988502 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isEmpty.js
+I, [2024-12-25T11:18:24.988536 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isEqual.js
+W, [2024-12-25T11:18:24.988839 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isEqual.js
+I, [2024-12-25T11:18:24.988872 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isError.js
+W, [2024-12-25T11:18:24.989172 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isError.js
+I, [2024-12-25T11:18:24.989209 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isFinite.js
+W, [2024-12-25T11:18:24.989881 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isFinite.js
+I, [2024-12-25T11:18:24.990001 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isFunction.js
+W, [2024-12-25T11:18:24.990604 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isFunction.js
+I, [2024-12-25T11:18:24.990627 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isMap.js
+W, [2024-12-25T11:18:24.991103 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isMap.js
+I, [2024-12-25T11:18:24.991125 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isMatch.js
+W, [2024-12-25T11:18:24.991498 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isMatch.js
+I, [2024-12-25T11:18:24.991524 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isNaN.js
+W, [2024-12-25T11:18:24.992043 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isNaN.js
+I, [2024-12-25T11:18:24.992120 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isNull.js
+W, [2024-12-25T11:18:24.992567 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isNull.js
+I, [2024-12-25T11:18:24.992940 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isNumber.js
+W, [2024-12-25T11:18:24.993483 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isNumber.js
+I, [2024-12-25T11:18:24.993516 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isObject.js
+W, [2024-12-25T11:18:24.994299 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isObject.js
+I, [2024-12-25T11:18:24.994405 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isRegExp.js
+W, [2024-12-25T11:18:24.995312 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isRegExp.js
+I, [2024-12-25T11:18:24.995381 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isSet.js
+W, [2024-12-25T11:18:24.995979 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isSet.js
+I, [2024-12-25T11:18:24.996080 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isString.js
+W, [2024-12-25T11:18:24.997734 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isString.js
+I, [2024-12-25T11:18:24.997767 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isSymbol.js
+W, [2024-12-25T11:18:24.998109 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isSymbol.js
+I, [2024-12-25T11:18:24.998136 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isTypedArray.js
+W, [2024-12-25T11:18:24.998496 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isTypedArray.js
+I, [2024-12-25T11:18:24.998522 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isUndefined.js
+W, [2024-12-25T11:18:24.998799 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isUndefined.js
+I, [2024-12-25T11:18:24.998880 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isWeakMap.js
+W, [2024-12-25T11:18:24.999208 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isWeakMap.js
+I, [2024-12-25T11:18:24.999243 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/isWeakSet.js
+W, [2024-12-25T11:18:25.000568 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/isWeakSet.js
+I, [2024-12-25T11:18:25.000601 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/iteratee.js
+W, [2024-12-25T11:18:25.001030 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/iteratee.js
+I, [2024-12-25T11:18:25.001068 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/keys.js
+W, [2024-12-25T11:18:25.001393 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/keys.js
+I, [2024-12-25T11:18:25.001805 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/last.js
+W, [2024-12-25T11:18:25.003273 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/last.js
+I, [2024-12-25T11:18:25.003305 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/lastIndexOf.js
+W, [2024-12-25T11:18:25.003666 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/lastIndexOf.js
+I, [2024-12-25T11:18:25.003693 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/map.js
+W, [2024-12-25T11:18:25.003999 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/map.js
+I, [2024-12-25T11:18:25.004087 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/mapObject.js
+W, [2024-12-25T11:18:25.004508 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/mapObject.js
+I, [2024-12-25T11:18:25.004557 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/matcher.js
+W, [2024-12-25T11:18:25.005038 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/matcher.js
+I, [2024-12-25T11:18:25.005121 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/max.js
+W, [2024-12-25T11:18:25.005505 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/max.js
+I, [2024-12-25T11:18:25.005588 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/memoize.js
+W, [2024-12-25T11:18:25.006714 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/memoize.js
+I, [2024-12-25T11:18:25.006757 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/min.js
+W, [2024-12-25T11:18:25.007151 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/min.js
+I, [2024-12-25T11:18:25.007181 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/mixin.js
+W, [2024-12-25T11:18:25.007629 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/mixin.js
+I, [2024-12-25T11:18:25.007721 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/negate.js
+W, [2024-12-25T11:18:25.008146 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/negate.js
+I, [2024-12-25T11:18:25.008189 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/noop.js
+W, [2024-12-25T11:18:25.008649 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/noop.js
+I, [2024-12-25T11:18:25.008908 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/now.js
+W, [2024-12-25T11:18:25.009341 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/now.js
+I, [2024-12-25T11:18:25.009382 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/object.js
+W, [2024-12-25T11:18:25.009848 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/object.js
+I, [2024-12-25T11:18:25.009872 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/omit.js
+W, [2024-12-25T11:18:25.010577 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/omit.js
+I, [2024-12-25T11:18:25.012163 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/once.js
+W, [2024-12-25T11:18:25.012858 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/once.js
+I, [2024-12-25T11:18:25.012891 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/pairs.js
+W, [2024-12-25T11:18:25.013560 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/pairs.js
+I, [2024-12-25T11:18:25.013609 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/partial.js
+W, [2024-12-25T11:18:25.014079 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/partial.js
+I, [2024-12-25T11:18:25.014169 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/partition.js
+W, [2024-12-25T11:18:25.014902 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/partition.js
+I, [2024-12-25T11:18:25.014939 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/pick.js
+W, [2024-12-25T11:18:25.015352 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/pick.js
+I, [2024-12-25T11:18:25.015392 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/pluck.js
+W, [2024-12-25T11:18:25.015954 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/pluck.js
+I, [2024-12-25T11:18:25.016021 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/property.js
+W, [2024-12-25T11:18:25.016694 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/property.js
+I, [2024-12-25T11:18:25.016747 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/propertyOf.js
+W, [2024-12-25T11:18:25.017343 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/propertyOf.js
+I, [2024-12-25T11:18:25.017390 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/random.js
+W, [2024-12-25T11:18:25.017926 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/random.js
+I, [2024-12-25T11:18:25.017988 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/range.js
+W, [2024-12-25T11:18:25.018392 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/range.js
+I, [2024-12-25T11:18:25.018486 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/reduce.js
+W, [2024-12-25T11:18:25.018800 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/reduce.js
+I, [2024-12-25T11:18:25.018942 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/reduceRight.js
+W, [2024-12-25T11:18:25.019261 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/reduceRight.js
+I, [2024-12-25T11:18:25.019301 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/reject.js
+W, [2024-12-25T11:18:25.019595 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/reject.js
+I, [2024-12-25T11:18:25.019622 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/rest.js
+W, [2024-12-25T11:18:25.020096 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/rest.js
+I, [2024-12-25T11:18:25.020133 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/restArguments.js
+W, [2024-12-25T11:18:25.020513 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/restArguments.js
+I, [2024-12-25T11:18:25.020541 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/result.js
+W, [2024-12-25T11:18:25.020867 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/result.js
+I, [2024-12-25T11:18:25.020908 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/sample.js
+W, [2024-12-25T11:18:25.021222 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/sample.js
+I, [2024-12-25T11:18:25.021262 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/set.js
+W, [2024-12-25T11:18:25.021622 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/set.js
+I, [2024-12-25T11:18:25.021658 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/shuffle.js
+W, [2024-12-25T11:18:25.022002 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/shuffle.js
+I, [2024-12-25T11:18:25.022041 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/size.js
+W, [2024-12-25T11:18:25.022310 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/size.js
+I, [2024-12-25T11:18:25.022335 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/some.js
+W, [2024-12-25T11:18:25.022664 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/some.js
+I, [2024-12-25T11:18:25.022690 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/sortBy.js
+W, [2024-12-25T11:18:25.022953 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/sortBy.js
+I, [2024-12-25T11:18:25.023029 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/sortedIndex.js
+W, [2024-12-25T11:18:25.023510 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/sortedIndex.js
+I, [2024-12-25T11:18:25.023554 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/tap.js
+W, [2024-12-25T11:18:25.023974 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/tap.js
+I, [2024-12-25T11:18:25.024083 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/template.js
+W, [2024-12-25T11:18:25.024769 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/template.js
+I, [2024-12-25T11:18:25.024815 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/templateSettings.js
+W, [2024-12-25T11:18:25.025966 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/templateSettings.js
+I, [2024-12-25T11:18:25.026076 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/throttle.js
+W, [2024-12-25T11:18:25.026490 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/throttle.js
+I, [2024-12-25T11:18:25.026562 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/times.js
+W, [2024-12-25T11:18:25.026965 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/times.js
+I, [2024-12-25T11:18:25.027080 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/toArray.js
+W, [2024-12-25T11:18:25.027749 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/toArray.js
+I, [2024-12-25T11:18:25.027820 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/toPath.js
+W, [2024-12-25T11:18:25.028662 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/toPath.js
+I, [2024-12-25T11:18:25.028809 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/underscore-array-methods.js
+W, [2024-12-25T11:18:25.029800 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/underscore-array-methods.js
+I, [2024-12-25T11:18:25.029839 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/underscore.js
+W, [2024-12-25T11:18:25.030342 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/underscore.js
+I, [2024-12-25T11:18:25.030528 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/unescape.js
+W, [2024-12-25T11:18:25.031016 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/unescape.js
+I, [2024-12-25T11:18:25.031054 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/union.js
+W, [2024-12-25T11:18:25.032068 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/union.js
+I, [2024-12-25T11:18:25.032099 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/uniq.js
+W, [2024-12-25T11:18:25.032805 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/uniq.js
+I, [2024-12-25T11:18:25.032854 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/uniqueId.js
+W, [2024-12-25T11:18:25.033556 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/uniqueId.js
+I, [2024-12-25T11:18:25.033606 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/unzip.js
+W, [2024-12-25T11:18:25.033980 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/unzip.js
+I, [2024-12-25T11:18:25.034015 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/values.js
+W, [2024-12-25T11:18:25.034331 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/values.js
+I, [2024-12-25T11:18:25.034366 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/where.js
+W, [2024-12-25T11:18:25.034676 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/where.js
+I, [2024-12-25T11:18:25.034710 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/without.js
+W, [2024-12-25T11:18:25.035046 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/without.js
+I, [2024-12-25T11:18:25.035079 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/wrap.js
+W, [2024-12-25T11:18:25.035383 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/wrap.js
+I, [2024-12-25T11:18:25.035501 #36268] INFO -- : Processing file: ../../node_modules/underscore/cjs/zip.js
+W, [2024-12-25T11:18:25.036008 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/cjs/zip.js
+I, [2024-12-25T11:18:25.036042 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_baseCreate.js
+W, [2024-12-25T11:18:25.036655 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_baseCreate.js
+I, [2024-12-25T11:18:25.036690 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_baseIteratee.js
+W, [2024-12-25T11:18:25.037024 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_baseIteratee.js
+I, [2024-12-25T11:18:25.037057 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_cb.js
+W, [2024-12-25T11:18:25.037849 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_cb.js
+I, [2024-12-25T11:18:25.037882 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_chainResult.js
+W, [2024-12-25T11:18:25.038293 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_chainResult.js
+I, [2024-12-25T11:18:25.038326 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_collectNonEnumProps.js
+W, [2024-12-25T11:18:25.038602 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_collectNonEnumProps.js
+I, [2024-12-25T11:18:25.038632 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_createAssigner.js
+W, [2024-12-25T11:18:25.038935 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_createAssigner.js
+I, [2024-12-25T11:18:25.038969 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_createEscaper.js
+W, [2024-12-25T11:18:25.039230 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_createEscaper.js
+I, [2024-12-25T11:18:25.039271 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_createIndexFinder.js
+W, [2024-12-25T11:18:25.039686 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_createIndexFinder.js
+I, [2024-12-25T11:18:25.039788 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_createPredicateIndexFinder.js
+W, [2024-12-25T11:18:25.040160 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_createPredicateIndexFinder.js
+I, [2024-12-25T11:18:25.040194 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_createReduce.js
+W, [2024-12-25T11:18:25.040522 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_createReduce.js
+I, [2024-12-25T11:18:25.040556 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_createSizePropertyCheck.js
+W, [2024-12-25T11:18:25.041292 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_createSizePropertyCheck.js
+I, [2024-12-25T11:18:25.041330 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_deepGet.js
+W, [2024-12-25T11:18:25.041864 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_deepGet.js
+I, [2024-12-25T11:18:25.041902 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_escapeMap.js
+W, [2024-12-25T11:18:25.042297 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_escapeMap.js
+I, [2024-12-25T11:18:25.042333 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_executeBound.js
+W, [2024-12-25T11:18:25.042687 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_executeBound.js
+I, [2024-12-25T11:18:25.042722 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_flatten.js
+W, [2024-12-25T11:18:25.043078 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_flatten.js
+I, [2024-12-25T11:18:25.043110 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_getByteLength.js
+W, [2024-12-25T11:18:25.043601 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_getByteLength.js
+I, [2024-12-25T11:18:25.043669 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_getLength.js
+W, [2024-12-25T11:18:25.044192 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_getLength.js
+I, [2024-12-25T11:18:25.044216 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_group.js
+W, [2024-12-25T11:18:25.044660 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_group.js
+I, [2024-12-25T11:18:25.044686 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_has.js
+W, [2024-12-25T11:18:25.045193 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_has.js
+I, [2024-12-25T11:18:25.045219 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_hasObjectTag.js
+W, [2024-12-25T11:18:25.046230 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_hasObjectTag.js
+I, [2024-12-25T11:18:25.046297 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_isArrayLike.js
+W, [2024-12-25T11:18:25.047369 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_isArrayLike.js
+I, [2024-12-25T11:18:25.047435 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_isBufferLike.js
+W, [2024-12-25T11:18:25.048131 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_isBufferLike.js
+I, [2024-12-25T11:18:25.048169 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_keyInObj.js
+W, [2024-12-25T11:18:25.048745 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_keyInObj.js
+I, [2024-12-25T11:18:25.048782 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_methodFingerprint.js
+W, [2024-12-25T11:18:25.049264 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_methodFingerprint.js
+I, [2024-12-25T11:18:25.049310 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_optimizeCb.js
+W, [2024-12-25T11:18:25.049693 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_optimizeCb.js
+I, [2024-12-25T11:18:25.049728 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_setup.js
+W, [2024-12-25T11:18:25.050097 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_setup.js
+I, [2024-12-25T11:18:25.050141 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_shallowProperty.js
+W, [2024-12-25T11:18:25.050861 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_shallowProperty.js
+I, [2024-12-25T11:18:25.050915 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_stringTagBug.js
+W, [2024-12-25T11:18:25.051378 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_stringTagBug.js
+I, [2024-12-25T11:18:25.051478 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_tagTester.js
+W, [2024-12-25T11:18:25.051841 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_tagTester.js
+I, [2024-12-25T11:18:25.051875 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_toBufferView.js
+W, [2024-12-25T11:18:25.052180 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_toBufferView.js
+I, [2024-12-25T11:18:25.052213 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_toPath.js
+W, [2024-12-25T11:18:25.052491 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_toPath.js
+I, [2024-12-25T11:18:25.052517 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/_unescapeMap.js
+W, [2024-12-25T11:18:25.053105 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/_unescapeMap.js
+I, [2024-12-25T11:18:25.053168 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/after.js
+W, [2024-12-25T11:18:25.053509 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/after.js
+I, [2024-12-25T11:18:25.053549 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/allKeys.js
+W, [2024-12-25T11:18:25.053897 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/allKeys.js
+I, [2024-12-25T11:18:25.053957 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/before.js
+W, [2024-12-25T11:18:25.054264 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/before.js
+I, [2024-12-25T11:18:25.054303 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/bind.js
+W, [2024-12-25T11:18:25.054622 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/bind.js
+I, [2024-12-25T11:18:25.054712 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/bindAll.js
+W, [2024-12-25T11:18:25.055006 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/bindAll.js
+I, [2024-12-25T11:18:25.055045 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/chain.js
+W, [2024-12-25T11:18:25.055491 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/chain.js
+I, [2024-12-25T11:18:25.055534 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/chunk.js
+W, [2024-12-25T11:18:25.055886 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/chunk.js
+I, [2024-12-25T11:18:25.055926 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/clone.js
+W, [2024-12-25T11:18:25.058633 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/clone.js
+I, [2024-12-25T11:18:25.058731 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/compact.js
+W, [2024-12-25T11:18:25.059148 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/compact.js
+I, [2024-12-25T11:18:25.059176 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/compose.js
+W, [2024-12-25T11:18:25.059516 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/compose.js
+I, [2024-12-25T11:18:25.059545 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/constant.js
+W, [2024-12-25T11:18:25.059886 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/constant.js
+I, [2024-12-25T11:18:25.059916 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/contains.js
+W, [2024-12-25T11:18:25.060384 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/contains.js
+I, [2024-12-25T11:18:25.060543 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/countBy.js
+W, [2024-12-25T11:18:25.061208 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/countBy.js
+I, [2024-12-25T11:18:25.061251 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/create.js
+W, [2024-12-25T11:18:25.061854 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/create.js
+I, [2024-12-25T11:18:25.061891 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/debounce.js
+W, [2024-12-25T11:18:25.062627 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/debounce.js
+I, [2024-12-25T11:18:25.062875 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/defaults.js
+W, [2024-12-25T11:18:25.063322 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/defaults.js
+I, [2024-12-25T11:18:25.063353 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/defer.js
+W, [2024-12-25T11:18:25.064132 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/defer.js
+I, [2024-12-25T11:18:25.064171 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/delay.js
+W, [2024-12-25T11:18:25.065002 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/delay.js
+I, [2024-12-25T11:18:25.065051 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/difference.js
+W, [2024-12-25T11:18:25.065394 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/difference.js
+I, [2024-12-25T11:18:25.065502 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/each.js
+W, [2024-12-25T11:18:25.066091 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/each.js
+I, [2024-12-25T11:18:25.066136 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/escape.js
+W, [2024-12-25T11:18:25.066644 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/escape.js
+I, [2024-12-25T11:18:25.066681 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/every.js
+W, [2024-12-25T11:18:25.067041 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/every.js
+I, [2024-12-25T11:18:25.067077 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/extend.js
+W, [2024-12-25T11:18:25.067377 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/extend.js
+I, [2024-12-25T11:18:25.067484 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/extendOwn.js
+W, [2024-12-25T11:18:25.067754 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/extendOwn.js
+I, [2024-12-25T11:18:25.067772 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/filter.js
+W, [2024-12-25T11:18:25.068012 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/filter.js
+I, [2024-12-25T11:18:25.068030 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/find.js
+W, [2024-12-25T11:18:25.068404 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/find.js
+I, [2024-12-25T11:18:25.068487 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/findIndex.js
+W, [2024-12-25T11:18:25.068748 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/findIndex.js
+I, [2024-12-25T11:18:25.068766 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/findKey.js
+W, [2024-12-25T11:18:25.069012 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/findKey.js
+I, [2024-12-25T11:18:25.069030 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/findLastIndex.js
+W, [2024-12-25T11:18:25.069277 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/findLastIndex.js
+I, [2024-12-25T11:18:25.069295 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/findWhere.js
+W, [2024-12-25T11:18:25.070031 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/findWhere.js
+I, [2024-12-25T11:18:25.070052 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/first.js
+W, [2024-12-25T11:18:25.070821 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/first.js
+I, [2024-12-25T11:18:25.070864 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/flatten.js
+W, [2024-12-25T11:18:25.071229 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/flatten.js
+I, [2024-12-25T11:18:25.071263 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/functions.js
+W, [2024-12-25T11:18:25.071555 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/functions.js
+I, [2024-12-25T11:18:25.071581 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/get.js
+W, [2024-12-25T11:18:25.071847 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/get.js
+I, [2024-12-25T11:18:25.071867 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/groupBy.js
+W, [2024-12-25T11:18:25.072108 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/groupBy.js
+I, [2024-12-25T11:18:25.072126 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/has.js
+W, [2024-12-25T11:18:25.072373 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/has.js
+I, [2024-12-25T11:18:25.072391 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/identity.js
+W, [2024-12-25T11:18:25.072841 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/identity.js
+I, [2024-12-25T11:18:25.072871 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/index-all.js
+W, [2024-12-25T11:18:25.073643 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/index-all.js
+I, [2024-12-25T11:18:25.073692 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/index-default.js
+W, [2024-12-25T11:18:25.074085 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/index-default.js
+I, [2024-12-25T11:18:25.074233 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/index.js
+W, [2024-12-25T11:18:25.074630 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/index.js
+I, [2024-12-25T11:18:25.074659 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/indexBy.js
+W, [2024-12-25T11:18:25.075207 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/indexBy.js
+I, [2024-12-25T11:18:25.075236 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/indexOf.js
+W, [2024-12-25T11:18:25.075634 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/indexOf.js
+I, [2024-12-25T11:18:25.075663 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/initial.js
+W, [2024-12-25T11:18:25.076022 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/initial.js
+I, [2024-12-25T11:18:25.076064 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/intersection.js
+W, [2024-12-25T11:18:25.076378 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/intersection.js
+I, [2024-12-25T11:18:25.076478 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/invert.js
+W, [2024-12-25T11:18:25.076871 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/invert.js
+I, [2024-12-25T11:18:25.077024 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/invoke.js
+W, [2024-12-25T11:18:25.077712 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/invoke.js
+I, [2024-12-25T11:18:25.077825 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isArguments.js
+W, [2024-12-25T11:18:25.078957 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isArguments.js
+I, [2024-12-25T11:18:25.079023 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isArray.js
+W, [2024-12-25T11:18:25.080250 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isArray.js
+I, [2024-12-25T11:18:25.080297 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isArrayBuffer.js
+W, [2024-12-25T11:18:25.081032 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isArrayBuffer.js
+I, [2024-12-25T11:18:25.081139 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isBoolean.js
+W, [2024-12-25T11:18:25.081749 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isBoolean.js
+I, [2024-12-25T11:18:25.081784 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isDataView.js
+W, [2024-12-25T11:18:25.082307 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isDataView.js
+I, [2024-12-25T11:18:25.082499 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isDate.js
+W, [2024-12-25T11:18:25.083125 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isDate.js
+I, [2024-12-25T11:18:25.083393 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isElement.js
+W, [2024-12-25T11:18:25.083977 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isElement.js
+I, [2024-12-25T11:18:25.084117 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isEmpty.js
+W, [2024-12-25T11:18:25.084587 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isEmpty.js
+I, [2024-12-25T11:18:25.084634 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isEqual.js
+W, [2024-12-25T11:18:25.085009 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isEqual.js
+I, [2024-12-25T11:18:25.085227 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isError.js
+W, [2024-12-25T11:18:25.085863 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isError.js
+I, [2024-12-25T11:18:25.085902 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isFinite.js
+W, [2024-12-25T11:18:25.086180 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isFinite.js
+I, [2024-12-25T11:18:25.086208 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isFunction.js
+W, [2024-12-25T11:18:25.086654 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isFunction.js
+I, [2024-12-25T11:18:25.086715 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isMap.js
+W, [2024-12-25T11:18:25.086994 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isMap.js
+I, [2024-12-25T11:18:25.087119 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isMatch.js
+W, [2024-12-25T11:18:25.087535 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isMatch.js
+I, [2024-12-25T11:18:25.087599 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isNaN.js
+W, [2024-12-25T11:18:25.087953 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isNaN.js
+I, [2024-12-25T11:18:25.088077 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isNull.js
+W, [2024-12-25T11:18:25.088512 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isNull.js
+I, [2024-12-25T11:18:25.088574 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isNumber.js
+W, [2024-12-25T11:18:25.089080 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isNumber.js
+I, [2024-12-25T11:18:25.089126 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isObject.js
+W, [2024-12-25T11:18:25.089496 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isObject.js
+I, [2024-12-25T11:18:25.089524 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isRegExp.js
+W, [2024-12-25T11:18:25.089876 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isRegExp.js
+I, [2024-12-25T11:18:25.089912 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isSet.js
+W, [2024-12-25T11:18:25.090202 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isSet.js
+I, [2024-12-25T11:18:25.090229 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isString.js
+W, [2024-12-25T11:18:25.090909 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isString.js
+I, [2024-12-25T11:18:25.090952 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isSymbol.js
+W, [2024-12-25T11:18:25.091666 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isSymbol.js
+I, [2024-12-25T11:18:25.091735 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isTypedArray.js
+W, [2024-12-25T11:18:25.092322 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isTypedArray.js
+I, [2024-12-25T11:18:25.092352 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isUndefined.js
+W, [2024-12-25T11:18:25.092797 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isUndefined.js
+I, [2024-12-25T11:18:25.092959 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isWeakMap.js
+W, [2024-12-25T11:18:25.093557 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isWeakMap.js
+I, [2024-12-25T11:18:25.093791 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/isWeakSet.js
+W, [2024-12-25T11:18:25.094514 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/isWeakSet.js
+I, [2024-12-25T11:18:25.094588 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/iteratee.js
+W, [2024-12-25T11:18:25.096140 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/iteratee.js
+I, [2024-12-25T11:18:25.096314 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/keys.js
+W, [2024-12-25T11:18:25.098529 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/keys.js
+I, [2024-12-25T11:18:25.098599 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/last.js
+W, [2024-12-25T11:18:25.099376 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/last.js
+I, [2024-12-25T11:18:25.099508 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/lastIndexOf.js
+W, [2024-12-25T11:18:25.099978 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/lastIndexOf.js
+I, [2024-12-25T11:18:25.100027 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/map.js
+W, [2024-12-25T11:18:25.100712 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/map.js
+I, [2024-12-25T11:18:25.100753 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/mapObject.js
+W, [2024-12-25T11:18:25.101182 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/mapObject.js
+I, [2024-12-25T11:18:25.101217 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/matcher.js
+W, [2024-12-25T11:18:25.101518 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/matcher.js
+I, [2024-12-25T11:18:25.101545 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/max.js
+W, [2024-12-25T11:18:25.101817 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/max.js
+I, [2024-12-25T11:18:25.101835 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/memoize.js
+W, [2024-12-25T11:18:25.102108 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/memoize.js
+I, [2024-12-25T11:18:25.102126 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/min.js
+W, [2024-12-25T11:18:25.102380 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/min.js
+I, [2024-12-25T11:18:25.102473 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/mixin.js
+W, [2024-12-25T11:18:25.102797 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/mixin.js
+I, [2024-12-25T11:18:25.102817 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/negate.js
+W, [2024-12-25T11:18:25.103108 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/negate.js
+I, [2024-12-25T11:18:25.103130 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/noop.js
+W, [2024-12-25T11:18:25.104026 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/noop.js
+I, [2024-12-25T11:18:25.104060 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/now.js
+W, [2024-12-25T11:18:25.104386 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/now.js
+I, [2024-12-25T11:18:25.104461 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/object.js
+W, [2024-12-25T11:18:25.104741 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/object.js
+I, [2024-12-25T11:18:25.104774 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/omit.js
+W, [2024-12-25T11:18:25.105035 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/omit.js
+I, [2024-12-25T11:18:25.105068 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/once.js
+W, [2024-12-25T11:18:25.105349 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/once.js
+I, [2024-12-25T11:18:25.105382 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/pairs.js
+W, [2024-12-25T11:18:25.105669 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/pairs.js
+I, [2024-12-25T11:18:25.105695 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/partial.js
+W, [2024-12-25T11:18:25.105975 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/partial.js
+I, [2024-12-25T11:18:25.106065 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/partition.js
+W, [2024-12-25T11:18:25.106642 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/partition.js
+I, [2024-12-25T11:18:25.106682 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/pick.js
+W, [2024-12-25T11:18:25.107092 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/pick.js
+I, [2024-12-25T11:18:25.107245 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/pluck.js
+W, [2024-12-25T11:18:25.108051 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/pluck.js
+I, [2024-12-25T11:18:25.108131 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/property.js
+W, [2024-12-25T11:18:25.108876 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/property.js
+I, [2024-12-25T11:18:25.108900 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/propertyOf.js
+W, [2024-12-25T11:18:25.109371 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/propertyOf.js
+I, [2024-12-25T11:18:25.109682 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/random.js
+W, [2024-12-25T11:18:25.110341 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/random.js
+I, [2024-12-25T11:18:25.110621 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/range.js
+W, [2024-12-25T11:18:25.112386 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/range.js
+I, [2024-12-25T11:18:25.112551 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/reduce.js
+W, [2024-12-25T11:18:25.113042 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/reduce.js
+I, [2024-12-25T11:18:25.113073 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/reduceRight.js
+W, [2024-12-25T11:18:25.113650 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/reduceRight.js
+I, [2024-12-25T11:18:25.113679 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/reject.js
+W, [2024-12-25T11:18:25.114919 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/reject.js
+I, [2024-12-25T11:18:25.114949 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/rest.js
+W, [2024-12-25T11:18:25.115428 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/rest.js
+I, [2024-12-25T11:18:25.115544 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/restArguments.js
+W, [2024-12-25T11:18:25.116734 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/restArguments.js
+I, [2024-12-25T11:18:25.116835 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/result.js
+W, [2024-12-25T11:18:25.117498 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/result.js
+I, [2024-12-25T11:18:25.117544 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/sample.js
+W, [2024-12-25T11:18:25.117982 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/sample.js
+I, [2024-12-25T11:18:25.118022 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/shuffle.js
+W, [2024-12-25T11:18:25.118391 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/shuffle.js
+I, [2024-12-25T11:18:25.118500 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/size.js
+W, [2024-12-25T11:18:25.118920 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/size.js
+I, [2024-12-25T11:18:25.118976 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/some.js
+W, [2024-12-25T11:18:25.119299 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/some.js
+I, [2024-12-25T11:18:25.119337 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/sortBy.js
+W, [2024-12-25T11:18:25.119617 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/sortBy.js
+I, [2024-12-25T11:18:25.119643 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/sortedIndex.js
+W, [2024-12-25T11:18:25.119999 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/sortedIndex.js
+I, [2024-12-25T11:18:25.120036 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/tap.js
+W, [2024-12-25T11:18:25.120358 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/tap.js
+I, [2024-12-25T11:18:25.120398 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/template.js
+W, [2024-12-25T11:18:25.120777 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/template.js
+I, [2024-12-25T11:18:25.120817 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/templateSettings.js
+W, [2024-12-25T11:18:25.121135 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/templateSettings.js
+I, [2024-12-25T11:18:25.121175 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/throttle.js
+W, [2024-12-25T11:18:25.121515 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/throttle.js
+I, [2024-12-25T11:18:25.121554 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/times.js
+W, [2024-12-25T11:18:25.121864 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/times.js
+I, [2024-12-25T11:18:25.121903 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/toArray.js
+W, [2024-12-25T11:18:25.122212 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/toArray.js
+I, [2024-12-25T11:18:25.122251 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/toPath.js
+W, [2024-12-25T11:18:25.122581 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/toPath.js
+I, [2024-12-25T11:18:25.122620 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/underscore-array-methods.js
+W, [2024-12-25T11:18:25.122887 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/underscore-array-methods.js
+I, [2024-12-25T11:18:25.122914 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/underscore.js
+W, [2024-12-25T11:18:25.123158 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/underscore.js
+I, [2024-12-25T11:18:25.123184 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/unescape.js
+W, [2024-12-25T11:18:25.123545 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/unescape.js
+I, [2024-12-25T11:18:25.123578 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/union.js
+W, [2024-12-25T11:18:25.123917 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/union.js
+I, [2024-12-25T11:18:25.123944 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/uniq.js
+W, [2024-12-25T11:18:25.124373 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/uniq.js
+I, [2024-12-25T11:18:25.124413 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/uniqueId.js
+W, [2024-12-25T11:18:25.124901 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/uniqueId.js
+I, [2024-12-25T11:18:25.124935 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/unzip.js
+W, [2024-12-25T11:18:25.125532 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/unzip.js
+I, [2024-12-25T11:18:25.125705 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/values.js
+W, [2024-12-25T11:18:25.126107 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/values.js
+I, [2024-12-25T11:18:25.126268 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/where.js
+W, [2024-12-25T11:18:25.126702 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/where.js
+I, [2024-12-25T11:18:25.126757 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/without.js
+W, [2024-12-25T11:18:25.127213 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/without.js
+I, [2024-12-25T11:18:25.127425 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/wrap.js
+W, [2024-12-25T11:18:25.128126 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/wrap.js
+I, [2024-12-25T11:18:25.129012 #36268] INFO -- : Processing file: ../../node_modules/underscore/modules/zip.js
+W, [2024-12-25T11:18:25.130699 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/modules/zip.js
+I, [2024-12-25T11:18:25.130736 #36268] INFO -- : Processing file: ../../node_modules/underscore/underscore-esm-min.js
+W, [2024-12-25T11:18:25.131348 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/underscore-esm-min.js
+I, [2024-12-25T11:18:25.131413 #36268] INFO -- : Processing file: ../../node_modules/underscore/underscore-esm.js
+W, [2024-12-25T11:18:25.132389 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/underscore-esm.js
+I, [2024-12-25T11:18:25.132613 #36268] INFO -- : Processing file: ../../node_modules/underscore/underscore-min.js
+W, [2024-12-25T11:18:25.133033 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/underscore-min.js
+I, [2024-12-25T11:18:25.133194 #36268] INFO -- : Processing file: ../../node_modules/underscore/underscore-umd-min.js
+W, [2024-12-25T11:18:25.133974 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/underscore-umd-min.js
+I, [2024-12-25T11:18:25.134205 #36268] INFO -- : Processing file: ../../node_modules/underscore/underscore-umd.js
+W, [2024-12-25T11:18:25.134961 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/underscore-umd.js
+I, [2024-12-25T11:18:25.135088 #36268] INFO -- : Processing file: ../../node_modules/underscore/underscore.js
+W, [2024-12-25T11:18:25.135731 #36268] WARN -- : Copyright string not found in ../../node_modules/underscore/underscore.js
+I, [2024-12-25T11:18:25.136064 #36268] INFO -- : Processing file: ../../node_modules/walk-back/index.js
+W, [2024-12-25T11:18:25.136629 #36268] WARN -- : Copyright string not found in ../../node_modules/walk-back/index.js
+I, [2024-12-25T11:18:25.136837 #36268] INFO -- : Processing file: ../../node_modules/wordwrap/example/center.js
+W, [2024-12-25T11:18:25.137185 #36268] WARN -- : Copyright string not found in ../../node_modules/wordwrap/example/center.js
+I, [2024-12-25T11:18:25.137312 #36268] INFO -- : Processing file: ../../node_modules/wordwrap/example/meat.js
+W, [2024-12-25T11:18:25.137803 #36268] WARN -- : Copyright string not found in ../../node_modules/wordwrap/example/meat.js
+I, [2024-12-25T11:18:25.137927 #36268] INFO -- : Processing file: ../../node_modules/wordwrap/index.js
+W, [2024-12-25T11:18:25.138458 #36268] WARN -- : Copyright string not found in ../../node_modules/wordwrap/index.js
+I, [2024-12-25T11:18:25.138502 #36268] INFO -- : Processing file: ../../node_modules/wordwrap/test/break.js
+W, [2024-12-25T11:18:25.139004 #36268] WARN -- : Copyright string not found in ../../node_modules/wordwrap/test/break.js
+I, [2024-12-25T11:18:25.139129 #36268] INFO -- : Processing file: ../../node_modules/wordwrap/test/wrap.js
+W, [2024-12-25T11:18:25.139692 #36268] WARN -- : Copyright string not found in ../../node_modules/wordwrap/test/wrap.js
+I, [2024-12-25T11:18:25.139814 #36268] INFO -- : Processing file: ../../node_modules/wordwrapjs/dist/index.js
+W, [2024-12-25T11:18:25.140758 #36268] WARN -- : Copyright string not found in ../../node_modules/wordwrapjs/dist/index.js
+I, [2024-12-25T11:18:25.140879 #36268] INFO -- : Processing file: ../../node_modules/wordwrapjs/index.js
+W, [2024-12-25T11:18:25.141310 #36268] WARN -- : Copyright string not found in ../../node_modules/wordwrapjs/index.js
+I, [2024-12-25T11:18:25.141582 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/error.js
+W, [2024-12-25T11:18:25.142182 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/error.js
+I, [2024-12-25T11:18:25.142213 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/escape.js
+W, [2024-12-25T11:18:25.142857 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/escape.js
+I, [2024-12-25T11:18:25.143002 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/main.js
+W, [2024-12-25T11:18:25.143829 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/main.js
+I, [2024-12-25T11:18:25.143921 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlAttribute.js
+W, [2024-12-25T11:18:25.144479 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlAttribute.js
+I, [2024-12-25T11:18:25.144522 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlAttributeText.js
+W, [2024-12-25T11:18:25.145273 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlAttributeText.js
+I, [2024-12-25T11:18:25.145353 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlCdata.js
+W, [2024-12-25T11:18:25.146198 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlCdata.js
+I, [2024-12-25T11:18:25.146238 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlCharData.js
+W, [2024-12-25T11:18:25.147629 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlCharData.js
+I, [2024-12-25T11:18:25.147728 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlCharRef.js
+W, [2024-12-25T11:18:25.148178 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlCharRef.js
+I, [2024-12-25T11:18:25.148200 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlComment.js
+W, [2024-12-25T11:18:25.148655 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlComment.js
+I, [2024-12-25T11:18:25.148716 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlDecl.js
+W, [2024-12-25T11:18:25.149533 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlDecl.js
+I, [2024-12-25T11:18:25.149568 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlDocument.js
+W, [2024-12-25T11:18:25.150120 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlDocument.js
+I, [2024-12-25T11:18:25.150142 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlDtd.js
+W, [2024-12-25T11:18:25.150534 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlDtd.js
+I, [2024-12-25T11:18:25.150556 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlDtdAttlist.js
+W, [2024-12-25T11:18:25.150940 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlDtdAttlist.js
+I, [2024-12-25T11:18:25.150960 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlDtdElement.js
+W, [2024-12-25T11:18:25.151229 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlDtdElement.js
+I, [2024-12-25T11:18:25.151281 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlDtdEntity.js
+W, [2024-12-25T11:18:25.151662 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlDtdEntity.js
+I, [2024-12-25T11:18:25.151681 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlDtdNotation.js
+W, [2024-12-25T11:18:25.151985 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlDtdNotation.js
+I, [2024-12-25T11:18:25.152005 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlDtdParamEntityRef.js
+W, [2024-12-25T11:18:25.152261 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlDtdParamEntityRef.js
+I, [2024-12-25T11:18:25.152280 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlElement.js
+W, [2024-12-25T11:18:25.152586 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlElement.js
+I, [2024-12-25T11:18:25.152604 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlEntityRef.js
+W, [2024-12-25T11:18:25.152847 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlEntityRef.js
+I, [2024-12-25T11:18:25.152865 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/nodes/XmlProcInst.js
+W, [2024-12-25T11:18:25.153138 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/nodes/XmlProcInst.js
+I, [2024-12-25T11:18:25.153159 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/options.js
+W, [2024-12-25T11:18:25.153584 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/options.js
+I, [2024-12-25T11:18:25.153602 #36268] INFO -- : Processing file: ../../node_modules/xmlcreate/lib/validate.js
+W, [2024-12-25T11:18:25.154028 #36268] WARN -- : Copyright string not found in ../../node_modules/xmlcreate/lib/validate.js
+I, [2024-12-25T11:18:25.154047 #36268] INFO -- : Processing file: ../../spec/beef/api/auth_rate_spec.rb
+I, [2024-12-25T11:18:25.154250 #36268] INFO -- : Updated copyright in ../../spec/beef/api/auth_rate_spec.rb
+I, [2024-12-25T11:18:25.154267 #36268] INFO -- : Processing file: ../../spec/beef/core/extensions_spec.rb
+W, [2024-12-25T11:18:25.154346 #36268] WARN -- : Copyright string not found in ../../spec/beef/core/extensions_spec.rb
+I, [2024-12-25T11:18:25.154363 #36268] INFO -- : Processing file: ../../spec/beef/core/filter/filters_spec.rb
+W, [2024-12-25T11:18:25.154502 #36268] WARN -- : Copyright string not found in ../../spec/beef/core/filter/filters_spec.rb
+I, [2024-12-25T11:18:25.154527 #36268] INFO -- : Processing file: ../../spec/beef/core/main/autorun_engine/autorun_engine_spec.rb
+I, [2024-12-25T11:18:25.154713 #36268] INFO -- : Updated copyright in ../../spec/beef/core/main/autorun_engine/autorun_engine_spec.rb
+I, [2024-12-25T11:18:25.154730 #36268] INFO -- : Processing file: ../../spec/beef/core/main/command_spec.rb
+W, [2024-12-25T11:18:25.154817 #36268] WARN -- : Copyright string not found in ../../spec/beef/core/main/command_spec.rb
+I, [2024-12-25T11:18:25.154834 #36268] INFO -- : Processing file: ../../spec/beef/core/main/configuration_spec.rb
+W, [2024-12-25T11:18:25.154900 #36268] WARN -- : Copyright string not found in ../../spec/beef/core/main/configuration_spec.rb
+I, [2024-12-25T11:18:25.154916 #36268] INFO -- : Processing file: ../../spec/beef/core/main/handlers/browser_details_handler_spec.rb
+I, [2024-12-25T11:18:25.155082 #36268] INFO -- : Updated copyright in ../../spec/beef/core/main/handlers/browser_details_handler_spec.rb
+I, [2024-12-25T11:18:25.155100 #36268] INFO -- : Processing file: ../../spec/beef/core/main/models/browser_details_spec.rb
+W, [2024-12-25T11:18:25.155189 #36268] WARN -- : Copyright string not found in ../../spec/beef/core/main/models/browser_details_spec.rb
+I, [2024-12-25T11:18:25.155247 #36268] INFO -- : Processing file: ../../spec/beef/core/main/network_stack/handlers/dynamic_reconstruction_spec.rb
+W, [2024-12-25T11:18:25.155293 #36268] WARN -- : Copyright string not found in ../../spec/beef/core/main/network_stack/handlers/dynamic_reconstruction_spec.rb
+I, [2024-12-25T11:18:25.155310 #36268] INFO -- : Processing file: ../../spec/beef/core/main/network_stack/handlers/redirector_spec.rb
+W, [2024-12-25T11:18:25.155347 #36268] WARN -- : Copyright string not found in ../../spec/beef/core/main/network_stack/handlers/redirector_spec.rb
+I, [2024-12-25T11:18:25.155363 #36268] INFO -- : Processing file: ../../spec/beef/core/modules_spec.rb
+W, [2024-12-25T11:18:25.155397 #36268] WARN -- : Copyright string not found in ../../spec/beef/core/modules_spec.rb
+I, [2024-12-25T11:18:25.155479 #36268] INFO -- : Processing file: ../../spec/beef/extensions/adminui_spec.rb
+I, [2024-12-25T11:18:25.155647 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/adminui_spec.rb
+I, [2024-12-25T11:18:25.155664 #36268] INFO -- : Processing file: ../../spec/beef/extensions/dns_spec.rb
+I, [2024-12-25T11:18:25.155853 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/dns_spec.rb
+I, [2024-12-25T11:18:25.155871 #36268] INFO -- : Processing file: ../../spec/beef/extensions/network_spec.rb
+I, [2024-12-25T11:18:25.156073 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/network_spec.rb
+I, [2024-12-25T11:18:25.156092 #36268] INFO -- : Processing file: ../../spec/beef/extensions/proxy_spec.rb
+I, [2024-12-25T11:18:25.156282 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/proxy_spec.rb
+I, [2024-12-25T11:18:25.156299 #36268] INFO -- : Processing file: ../../spec/beef/extensions/qrcode_spec.rb
+I, [2024-12-25T11:18:25.156515 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/qrcode_spec.rb
+I, [2024-12-25T11:18:25.156572 #36268] INFO -- : Processing file: ../../spec/beef/extensions/requester_spec.rb
+I, [2024-12-25T11:18:25.156709 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/requester_spec.rb
+I, [2024-12-25T11:18:25.156735 #36268] INFO -- : Processing file: ../../spec/beef/extensions/social_engineering_spec.rb
+I, [2024-12-25T11:18:25.156903 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/social_engineering_spec.rb
+I, [2024-12-25T11:18:25.156968 #36268] INFO -- : Processing file: ../../spec/beef/extensions/webrtc_spec.rb
+I, [2024-12-25T11:18:25.157154 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/webrtc_spec.rb
+I, [2024-12-25T11:18:25.157221 #36268] INFO -- : Processing file: ../../spec/beef/extensions/websocket_hooked_browser_spec.rb
+I, [2024-12-25T11:18:25.157679 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/websocket_hooked_browser_spec.rb
+I, [2024-12-25T11:18:25.157756 #36268] INFO -- : Processing file: ../../spec/beef/extensions/websocket_spec.rb
+I, [2024-12-25T11:18:25.158010 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/websocket_spec.rb
+I, [2024-12-25T11:18:25.158075 #36268] INFO -- : Processing file: ../../spec/beef/extensions/xssrays_spec.rb
+I, [2024-12-25T11:18:25.158327 #36268] INFO -- : Updated copyright in ../../spec/beef/extensions/xssrays_spec.rb
+I, [2024-12-25T11:18:25.158524 #36268] INFO -- : Processing file: ../../spec/beef/filesystem_checks_spec.rb
+W, [2024-12-25T11:18:25.158614 #36268] WARN -- : Copyright string not found in ../../spec/beef/filesystem_checks_spec.rb
+I, [2024-12-25T11:18:25.158641 #36268] INFO -- : Processing file: ../../spec/beef/modules/debug/test_beef_debugs_spec.rb
+I, [2024-12-25T11:18:25.158977 #36268] INFO -- : Updated copyright in ../../spec/beef/modules/debug/test_beef_debugs_spec.rb
+I, [2024-12-25T11:18:25.159026 #36268] INFO -- : Processing file: ../../spec/beef/security_checks_spec.rb
+W, [2024-12-25T11:18:25.159127 #36268] WARN -- : Copyright string not found in ../../spec/beef/security_checks_spec.rb
+I, [2024-12-25T11:18:25.159155 #36268] INFO -- : Processing file: ../../spec/features/all_modules_spec.rb
+I, [2024-12-25T11:18:25.160671 #36268] INFO -- : Updated copyright in ../../spec/features/all_modules_spec.rb
+I, [2024-12-25T11:18:25.160743 #36268] INFO -- : Processing file: ../../spec/features/debug_modules_spec.rb
+I, [2024-12-25T11:18:25.161180 #36268] INFO -- : Updated copyright in ../../spec/features/debug_modules_spec.rb
+I, [2024-12-25T11:18:25.161223 #36268] INFO -- : Processing file: ../../spec/requests/beef_test_spec.rb
+I, [2024-12-25T11:18:25.161829 #36268] INFO -- : Updated copyright in ../../spec/requests/beef_test_spec.rb
+I, [2024-12-25T11:18:25.161867 #36268] INFO -- : Processing file: ../../spec/requests/login_spec.rb
+I, [2024-12-25T11:18:25.162281 #36268] INFO -- : Updated copyright in ../../spec/requests/login_spec.rb
+I, [2024-12-25T11:18:25.162337 #36268] INFO -- : Processing file: ../../spec/spec_helper.rb
+I, [2024-12-25T11:18:25.162852 #36268] INFO -- : Updated copyright in ../../spec/spec_helper.rb
+I, [2024-12-25T11:18:25.163185 #36268] INFO -- : Processing file: ../../spec/support/assets/config_new.yaml
+W, [2024-12-25T11:18:25.163979 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../spec/support/assets/config_new.yaml
+I, [2024-12-25T11:18:25.164016 #36268] INFO -- : Processing file: ../../spec/support/assets/config_old.yaml
+W, [2024-12-25T11:18:25.164679 #36268] WARN -- : Copyright string not found or incorrect in YAML file: ../../spec/support/assets/config_old.yaml
+I, [2024-12-25T11:18:25.164714 #36268] INFO -- : Processing file: ../../spec/support/beef_test.rb
+I, [2024-12-25T11:18:25.165189 #36268] INFO -- : Updated copyright in ../../spec/support/beef_test.rb
+I, [2024-12-25T11:18:25.165290 #36268] INFO -- : Processing file: ../../spec/support/constants.rb
+I, [2024-12-25T11:18:25.165773 #36268] INFO -- : Updated copyright in ../../spec/support/constants.rb
+I, [2024-12-25T11:18:25.165899 #36268] INFO -- : Processing file: ../../spec/support/simple_rest_client.rb
+I, [2024-12-25T11:18:25.166130 #36268] INFO -- : Updated copyright in ../../spec/support/simple_rest_client.rb
+I, [2024-12-25T11:18:25.166273 #36268] INFO -- : Processing file: ../../spec/support/ui_support.rb
+I, [2024-12-25T11:18:25.166576 #36268] INFO -- : Updated copyright in ../../spec/support/ui_support.rb
+I, [2024-12-25T11:18:25.166656 #36268] INFO -- : Processing file: ../../test/integration/tc_debug_modules.rb
+I, [2024-12-25T11:18:25.167052 #36268] INFO -- : Updated copyright in ../../test/integration/tc_debug_modules.rb
+I, [2024-12-25T11:18:25.167120 #36268] INFO -- : Processing file: ../../test/integration/tc_dns_rest.rb
+I, [2024-12-25T11:18:25.167983 #36268] INFO -- : Updated copyright in ../../test/integration/tc_dns_rest.rb
+I, [2024-12-25T11:18:25.168142 #36268] INFO -- : Processing file: ../../test/integration/tc_network_rest.rb
+I, [2024-12-25T11:18:25.168879 #36268] INFO -- : Updated copyright in ../../test/integration/tc_network_rest.rb
+I, [2024-12-25T11:18:25.168928 #36268] INFO -- : Processing file: ../../test/integration/tc_proxy.rb
+I, [2024-12-25T11:18:25.169173 #36268] INFO -- : Updated copyright in ../../test/integration/tc_proxy.rb
+I, [2024-12-25T11:18:25.169206 #36268] INFO -- : Processing file: ../../test/integration/tc_social_engineering_rest.rb
+I, [2024-12-25T11:18:25.169391 #36268] INFO -- : Updated copyright in ../../test/integration/tc_social_engineering_rest.rb
+I, [2024-12-25T11:18:25.169415 #36268] INFO -- : Processing file: ../../test/integration/tc_webrtc_rest.rb
+I, [2024-12-25T11:18:25.169638 #36268] INFO -- : Updated copyright in ../../test/integration/tc_webrtc_rest.rb
+I, [2024-12-25T11:18:25.169655 #36268] INFO -- : Processing file: ../../test/integration/ts_integration.rb
+I, [2024-12-25T11:18:25.169844 #36268] INFO -- : Updated copyright in ../../test/integration/ts_integration.rb
+I, [2024-12-25T11:18:25.169861 #36268] INFO -- : Processing file: ../../test/thirdparty/msf/unit/tc_metasploit.rb
+I, [2024-12-25T11:18:25.170056 #36268] INFO -- : Updated copyright in ../../test/thirdparty/msf/unit/tc_metasploit.rb
+I, [2024-12-25T11:18:25.170107 #36268] INFO -- : Processing file: ../../test/thirdparty/msf/unit/ts_metasploit.rb
+I, [2024-12-25T11:18:25.170349 #36268] INFO -- : Updated copyright in ../../test/thirdparty/msf/unit/ts_metasploit.rb
+I, [2024-12-25T11:18:25.170368 #36268] INFO -- : Processing file: ../../tools/csrf_to_beef/lib/module.rb
+I, [2024-12-25T11:18:25.170804 #36268] INFO -- : Updated copyright in ../../tools/csrf_to_beef/lib/module.rb
+I, [2024-12-25T11:18:25.170837 #36268] INFO -- : Processing file: ../../tools/csrf_to_beef/lib/output.rb
+W, [2024-12-25T11:18:25.170901 #36268] WARN -- : Copyright string not found in ../../tools/csrf_to_beef/lib/output.rb
+I, [2024-12-25T11:18:25.171003 #36268] INFO -- : Processing file: ../../tools/maintenance/copyright_update.rb
+I, [2024-12-25T11:18:25.171161 #36268] INFO -- : Updated copyright in ../../tools/maintenance/copyright_update.rb
+I, [2024-12-25T11:18:25.171178 #36268] INFO -- : Processing file: ../../tools/rest_api_examples/lib/beef_rest_api.rb
+W, [2024-12-25T11:18:25.171336 #36268] WARN -- : Copyright string not found in ../../tools/rest_api_examples/lib/beef_rest_api.rb
+I, [2024-12-25T11:18:25.171355 #36268] INFO -- : Processing file: ../../tools/rest_api_examples/lib/print.rb
+W, [2024-12-25T11:18:25.171412 #36268] WARN -- : Copyright string not found in ../../tools/rest_api_examples/lib/print.rb
+I, [2024-12-25T11:18:25.171429 #36268] INFO -- : Processing file: ../../tools/rest_api_examples/lib/string.rb
+W, [2024-12-25T11:18:25.171610 #36268] WARN -- : Copyright string not found in ../../tools/rest_api_examples/lib/string.rb
+I, [2024-12-25T11:18:25.171628 #36268] INFO -- : Copyright update process completed.