Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
parent-module /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
654
B
-rw-r--r--
2019-04-30 14:04
index.js
656
B
-rw-r--r--
2019-04-30 14:04
package.json
745
B
-rw-r--r--
2019-04-30 14:04
Save
Rename
'use strict'; const callsites = require('callsites'); module.exports = filePath => { const stacks = callsites(); if (!filePath) { return stacks[2].getFileName(); } let hasSeenValue = false; // Skip the first stack as it's this function stacks.shift(); for (const stack of stacks) { const parentFilePath = stack.getFileName(); if (typeof parentFilePath !== 'string') { continue; } if (parentFilePath === filePath) { hasSeenValue = true; continue; } // Skip native modules if (parentFilePath === 'module.js') { continue; } if (hasSeenValue && parentFilePath !== filePath) { return parentFilePath; } } };