Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
fast-glob /
out /
tests /
utils /
[ HOME SHELL ]
Name
Size
Permission
Action
entry.d.ts
368
B
-rw-r--r--
entry.js
1.32
KB
-rw-r--r--
errno.d.ts
151
B
-rw-r--r--
errno.js
538
B
-rw-r--r--
pattern.d.ts
615
B
-rw-r--r--
pattern.js
1.74
KB
-rw-r--r--
task.d.ts
346
B
-rw-r--r--
task.js
872
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : entry.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.builder = void 0; const path = require("path"); const fs_macchiato_1 = require("@nodelib/fs.macchiato"); class EntryBuilder { constructor() { this._isFile = true; this._isDirectory = false; this._isSymbolicLink = false; this._entry = { name: '', path: '', dirent: new fs_macchiato_1.Dirent() }; } path(filepath) { this._entry.name = path.basename(filepath); this._entry.path = filepath; return this; } file() { this._isFile = true; this._isDirectory = false; return this; } directory() { this._isDirectory = true; this._isFile = false; return this; } symlink() { this._isSymbolicLink = true; return this; } stats() { this._entry.stats = new fs_macchiato_1.Stats(); return this; } build() { this._entry.dirent = new fs_macchiato_1.Dirent({ name: this._entry.name, isFile: this._isFile, isDirectory: this._isDirectory, isSymbolicLink: this._isSymbolicLink }); return this._entry; } } function builder() { return new EntryBuilder(); } exports.builder = builder;
Close