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 /
blessed /
example /
[ HOME SHELL ]
Name
Size
Permission
Action
ansi-viewer
[ DIR ]
drwxrwxr-x
blessed-telnet.js
3.07
KB
-rwxrwxr-x
index.js
1.98
KB
-rw-rw-r--
multiplex.js
2.4
KB
-rwxrwxr-x
ping
9.8
KB
-rwxrwxr-x
simple-form.js
1.19
KB
-rw-rw-r--
time.js
14.24
KB
-rwxrwxr-x
widget.js
1.13
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : multiplex.js
#!/usr/bin/env node /** * multiplex.js * https://github.com/chjj/blessed * Copyright (c) 2013-2015, Christopher Jeffrey (MIT License) * A terminal multiplexer created by blessed. */ process.title = 'multiplex.js'; var blessed = require('blessed') , screen; screen = blessed.screen({ smartCSR: true, log: process.env.HOME + '/blessed-terminal.log', fullUnicode: true, dockBorders: true, ignoreDockContrast: true }); var topleft = blessed.terminal({ parent: screen, cursor: 'line', cursorBlink: true, screenKeys: false, label: ' multiplex.js ', left: 0, top: 0, width: '50%', height: '50%', border: 'line', style: { fg: 'default', bg: 'default', focus: { border: { fg: 'green' } } } }); topleft.pty.on('data', function(data) { screen.log(JSON.stringify(data)); }); var topright = blessed.terminal({ parent: screen, cursor: 'block', cursorBlink: true, screenKeys: false, label: ' multiplex.js ', left: '50%-1', top: 0, width: '50%+1', height: '50%', border: 'line', style: { fg: 'red', bg: 'black', focus: { border: { fg: 'green' } } } }); var bottomleft = blessed.terminal({ parent: screen, cursor: 'block', cursorBlink: true, screenKeys: false, label: ' multiplex.js ', left: 0, top: '50%-1', width: '50%', height: '50%+1', border: 'line', style: { fg: 'default', bg: 'default', focus: { border: { fg: 'green' } } } }); var bottomright = blessed.terminal({ parent: screen, cursor: 'block', cursorBlink: true, screenKeys: false, label: ' multiplex.js ', left: '50%-1', top: '50%-1', width: '50%+1', height: '50%+1', border: 'line', style: { fg: 'default', bg: 'default', focus: { border: { fg: 'green' } } } }); [topleft, topright, bottomleft, bottomright].forEach(function(term) { term.enableDrag(function(mouse) { return !!mouse.ctrl; }); term.on('title', function(title) { screen.title = title; term.setLabel(' ' + title + ' '); screen.render(); }); term.on('click', term.focus.bind(term)); }); topleft.focus(); screen.key('C-q', function() { topleft.kill(); topright.kill(); bottomleft.kill(); bottomright.kill(); return screen.destroy(); }); screen.program.key('S-tab', function() { screen.focusNext(); screen.render(); }); screen.render();
Close