Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.217.230.80
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
get-caller-file /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE.md
745
B
-rw-rw-r--
2022-08-30 11:49
README.md
1.04
KB
-rw-rw-r--
2022-08-30 11:49
index.d.ts
71
B
-rw-rw-r--
2022-08-30 11:49
index.js
1.08
KB
-rw-rw-r--
2022-08-30 11:49
index.js.map
773
B
-rw-rw-r--
2022-08-30 11:49
package.json
954
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; // Call this function in a another function to find out the file from // which that function was called from. (Inspects the v8 stack trace) // // Inspired by http://stackoverflow.com/questions/13227489 module.exports = function getCallerFile(position) { if (position === void 0) { position = 2; } if (position >= Error.stackTraceLimit) { throw new TypeError('getCallerFile(position) requires position be less then Error.stackTraceLimit but position was: `' + position + '` and Error.stackTraceLimit was: `' + Error.stackTraceLimit + '`'); } var oldPrepareStackTrace = Error.prepareStackTrace; Error.prepareStackTrace = function (_, stack) { return stack; }; var stack = new Error().stack; Error.prepareStackTrace = oldPrepareStackTrace; if (stack !== null && typeof stack === 'object') { // stack[0] holds this file // stack[1] holds where this function was called // stack[2] holds the file we're interested in return stack[position] ? stack[position].getFileName() : undefined; } }; //# sourceMappingURL=index.js.map