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.1
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
/
var /
www /
html /
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.d.ts
/** * Wrap words to a specified length. */ export = wrap; declare function wrap(str: string, options?: wrap.IOptions): string; declare namespace wrap { export interface IOptions { /** * The width of the text before wrapping to a new line. * @default ´50´ */ width?: number; /** * The string to use at the beginning of each line. * @default ´ ´ (two spaces) */ indent?: string; /** * The string to use at the end of each line. * @default ´\n´ */ newline?: string; /** * An escape function to run on each line after splitting them. * @default (str: string) => string; */ escape?: (str: string) => string; /** * Trim trailing whitespace from the returned string. * This option is included since .trim() would also strip * the leading indentation from the first line. * @default true */ trim?: boolean; /** * Break a word between any two letters when the word is longer * than the specified width. * @default false */ cut?: boolean; } }
Close