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 /
amdefine /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
2.76
KB
-rw-r--r--
README.md
5.99
KB
-rw-r--r--
amdefine.js
9.68
KB
-rw-r--r--
intercept.js
1.04
KB
-rw-r--r--
package.json
495
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : intercept.js
/*jshint node: true */ var inserted, Module = require('module'), fs = require('fs'), existingExtFn = Module._extensions['.js'], amdefineRegExp = /amdefine\.js/; inserted = "if (typeof define !== 'function') {var define = require('amdefine')(module)}"; //From the node/lib/module.js source: function stripBOM(content) { // Remove byte order marker. This catches EF BB BF (the UTF-8 BOM) // because the buffer-to-string conversion in `fs.readFileSync()` // translates it to FEFF, the UTF-16 BOM. if (content.charCodeAt(0) === 0xFEFF) { content = content.slice(1); } return content; } //Also adapted from the node/lib/module.js source: function intercept(module, filename) { var content = stripBOM(fs.readFileSync(filename, 'utf8')); if (!amdefineRegExp.test(module.id)) { content = inserted + content; } module._compile(content, filename); } intercept._id = 'amdefine/intercept'; if (!existingExtFn._id || existingExtFn._id !== intercept._id) { Module._extensions['.js'] = intercept; }
Close