Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.149.26.47
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
usr /
lib /
node_modules /
npm /
node_modules /
socks-proxy-agent /
node_modules /
agent-base /
[ HOME SHELL ]
Name
Size
Permission
Action
.travis.yml
300
B
-rw-r--r--
History.md
3.13
KB
-rw-r--r--
README.md
4.91
KB
-rw-r--r--
index.js
4.3
KB
-rw-r--r--
package.json
1.65
KB
-rw-r--r--
patch-core.js
962
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : patch-core.js
'use strict'; const url = require('url'); const https = require('https'); /** * This currently needs to be applied to all Node.js versions * in order to determine if the `req` is an HTTP or HTTPS request. * * There is currently no PR attempting to move this property upstream. */ https.request = (function(request) { return function(_options, cb) { let options; if (typeof _options === 'string') { options = url.parse(_options); } else { options = Object.assign({}, _options); } if (null == options.port) { options.port = 443; } options.secureEndpoint = true; return request.call(https, options, cb); }; })(https.request); /** * This is needed for Node.js >= 9.0.0 to make sure `https.get()` uses the * patched `https.request()`. * * Ref: https://github.com/nodejs/node/commit/5118f31 */ https.get = function(options, cb) { const req = https.request(options, cb); req.end(); return req; };
Close