Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.140.201.179
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
type /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
is-to-string-tag-supported.js
104
B
-rw-rw-r--
2022-08-30 11:49
resolve-exception.js
782
B
-rw-rw-r--
2022-08-30 11:49
safe-to-string.js
176
B
-rw-rw-r--
2022-08-30 11:49
to-short-string.js
686
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var safeToString = require("./safe-to-string"); var reNewLine = /[\n\r\u2028\u2029]/g; module.exports = function (value) { var string = safeToString(value); if (string === null) return "<Non-coercible to string value>"; // Trim if too long if (string.length > 100) string = string.slice(0, 99) + "…"; // Replace eventual new lines string = string.replace(reNewLine, function (char) { switch (char) { case "\n": return "\\n"; case "\r": return "\\r"; case "\u2028": return "\\u2028"; case "\u2029": return "\\u2029"; /* istanbul ignore next */ default: throw new Error("Unexpected character"); } }); return string; };