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.189.184.208
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
get-caller-file /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE.md
745
B
-rw-r--r--
1985-10-26 08:15
README.md
334
B
-rw-r--r--
1985-10-26 08:15
index.js
725
B
-rw-r--r--
1985-10-26 08:15
package.json
1.82
KB
-rw-r--r--
2021-02-04 21:24
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) { var oldPrepareStackTrace = Error.prepareStackTrace; Error.prepareStackTrace = function(err, stack) { return stack; }; var stack = new Error().stack; Error.prepareStackTrace = oldPrepareStackTrace; var position = _position ? _position : 2; // 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; };