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.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
@fastify /
busboy /
lib /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
Decoder.js
1.39
KB
-rw-r--r--
2023-10-14 10:49
basename.js
420
B
-rw-r--r--
2023-10-14 10:49
decodeText.js
660
B
-rw-r--r--
2023-10-14 10:49
getLimit.js
359
B
-rw-r--r--
2023-10-14 10:49
parseParams.js
2.22
KB
-rw-r--r--
2023-10-14 10:49
Save
Rename
'use strict' module.exports = function basename (path) { if (typeof path !== 'string') { return '' } for (var i = path.length - 1; i >= 0; --i) { // eslint-disable-line no-var switch (path.charCodeAt(i)) { case 0x2F: // '/' case 0x5C: // '\' path = path.slice(i + 1) return (path === '..' || path === '.' ? '' : path) } } return (path === '..' || path === '.' ? '' : path) }