Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.17
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
syrihapj /
public_html /
node_modules /
word-wrap /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.06
KB
-rw-r--r--
README.md
5.33
KB
-rw-r--r--
index.d.ts
1.21
KB
-rw-r--r--
index.js
1.04
KB
-rw-r--r--
package.json
1.68
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
/*! * word-wrap <https://github.com/jonschlinkert/word-wrap> * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. */ module.exports = function(str, options) { options = options || {}; if (str == null) { return str; } var width = options.width || 50; var indent = (typeof options.indent === 'string') ? options.indent : ' '; var newline = options.newline || '\n' + indent; var escape = typeof options.escape === 'function' ? options.escape : identity; var regexString = '.{1,' + width + '}'; if (options.cut !== true) { regexString += '([\\s\u200B]+|$)|[^\\s\u200B]+?([\\s\u200B]+|$)'; } var re = new RegExp(regexString, 'g'); var lines = str.match(re) || []; var result = indent + lines.map(function(line) { if (line.slice(-1) === '\n') { line = line.slice(0, line.length - 1); } return escape(line); }).join(newline); if (options.trim === true) { result = result.replace(/[ \t]*$/gm, ''); } return result; }; function identity(str) { return str; }
Close