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.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
ajv /
lib /
runtime /
Delete
Unzip
Name
Size
Permission
Date
Action
equal.ts
236
B
-rw-r--r--
2023-12-16 08:36
parseJson.ts
4.34
KB
-rw-r--r--
2023-12-16 08:36
quote.ts
802
B
-rw-r--r--
2023-12-16 08:36
re2.ts
157
B
-rw-r--r--
2023-12-16 08:36
timestamp.ts
1.46
KB
-rw-r--r--
2023-12-16 08:36
ucs2length.ts
629
B
-rw-r--r--
2023-12-16 08:36
uri.ts
160
B
-rw-r--r--
2023-12-16 08:36
validation_error.ts
336
B
-rw-r--r--
2023-12-16 08:36
Save
Rename
const rxEscapable = // eslint-disable-next-line no-control-regex, no-misleading-character-class /[\\"\u0000-\u001f\u007f-\u009f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g const escaped: {[K in string]?: string} = { "\b": "\\b", "\t": "\\t", "\n": "\\n", "\f": "\\f", "\r": "\\r", '"': '\\"', "\\": "\\\\", } export default function quote(s: string): string { rxEscapable.lastIndex = 0 return ( '"' + (rxEscapable.test(s) ? s.replace(rxEscapable, (a) => { const c = escaped[a] return typeof c === "string" ? c : "\\u" + ("0000" + a.charCodeAt(0).toString(16)).slice(-4) }) : s) + '"' ) } quote.code = 'require("ajv/dist/runtime/quote").default'