Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
amatya /
quiz1 /
node_modules /
word-wrap /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.06
KB
-rw-rw-rw-
README.md
6.19
KB
-rw-rw-rw-
index.d.ts
1.21
KB
-rw-rw-rw-
index.js
1.42
KB
-rw-rw-rw-
package.json
1.68
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
/*! * word-wrap <https://github.com/jonschlinkert/word-wrap> * * Copyright (c) 2014-2023, Jon Schlinkert. * Released under the MIT License. */ function trimEnd(str) { let lastCharPos = str.length - 1; let lastChar = str[lastCharPos]; while(lastChar === ' ' || lastChar === '\t') { lastChar = str[--lastCharPos]; } return str.substring(0, lastCharPos + 1); } function trimTabAndSpaces(str) { const lines = str.split('\n'); const trimmedLines = lines.map((line) => trimEnd(line)); return trimmedLines.join('\n'); } 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 = trimTabAndSpaces(result); } return result; }; function identity(str) { return str; }
Close