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 /
memory-fs /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
MemoryFileSystem.js
8.26
KB
-rw-r--r--
2022-12-08 00:07
MemoryFileSystemError.js
799
B
-rw-r--r--
2022-12-08 00:07
join.js
662
B
-rw-r--r--
2022-12-08 00:07
normalize.js
2.34
KB
-rw-r--r--
2022-12-08 00:07
Save
Rename
"use strict"; class MemoryFileSystemError extends Error { constructor(err, path, operation) { super(err, path); // Set `name` and `message` before call `Error.captureStackTrace` \ // so that we will obtain the correct 1st line of stack, like: // [Error]: [Message] this.name = this.constructor.name; var message = [`${err.code}:`, `${err.description},`]; // Add operation name and path into message, similar to node `fs` style. if(operation) { message.push(operation); } message.push(`\'${path}\'`); this.message = message.join(' '); this.code = err.code; this.errno = err.errno; this.path = path; this.operation = operation; if(Error.captureStackTrace) { Error.captureStackTrace(this, this.constructor); } } } module.exports = MemoryFileSystemError;