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.47
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 /
@types /
picomatch /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
constants.d.ts
3.22
KB
-rw-r--r--
parse.d.ts
691
B
-rw-r--r--
picomatch.d.ts
9.33
KB
-rw-r--r--
scan.d.ts
1.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : scan.d.ts
declare function scan(input: string, options?: scan.Options): scan.State; declare namespace scan { interface Options { /** * When `true`, the returned object will include an array of strings representing each path "segment" * in the scanned glob pattern. This is automatically enabled when `options.tokens` is true */ parts?: boolean | undefined; scanToEnd?: boolean | undefined; noext?: boolean | undefined; nonegate?: boolean | undefined; noparen?: boolean | undefined; unescape?: boolean | undefined; /** * When `true`, the returned object will include an array of tokens (objects), * representing each path "segment" in the scanned glob pattern */ tokens?: boolean | undefined; } interface Token { value: string; depth: number; isGlob: boolean; backslashes?: boolean | undefined; isBrace?: boolean | undefined; isExtglob?: boolean | undefined; isGlobstar?: boolean | undefined; negated?: boolean | undefined; } interface State { prefix: string; input: string; start: number; base: string; glob: string; isBrace: boolean; isBracket: boolean; isGlob: boolean; isExtglob: boolean; isGlobstar: boolean; negated: boolean; maxDepth?: number | undefined; tokens?: Token[] | undefined; slashes?: number[] | undefined; parts?: string[] | undefined; } } export = scan;
Close