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.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
@fastify /
busboy /
lib /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
Decoder.js
1.39
KB
-rw-r--r--
2023-10-14 10:49
basename.js
420
B
-rw-r--r--
2023-10-14 10:49
decodeText.js
660
B
-rw-r--r--
2023-10-14 10:49
getLimit.js
359
B
-rw-r--r--
2023-10-14 10:49
parseParams.js
2.22
KB
-rw-r--r--
2023-10-14 10:49
Save
Rename
'use strict' // Node has always utf-8 const utf8Decoder = new TextDecoder('utf-8') const textDecoders = new Map([ ['utf-8', utf8Decoder], ['utf8', utf8Decoder] ]) function decodeText (text, textEncoding, destEncoding) { if (text) { if (textDecoders.has(destEncoding)) { try { return textDecoders.get(destEncoding).decode(Buffer.from(text, textEncoding)) } catch (e) { } } else { try { textDecoders.set(destEncoding, new TextDecoder(destEncoding)) return textDecoders.get(destEncoding).decode(Buffer.from(text, textEncoding)) } catch (e) { } } } return text } module.exports = decodeText