Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
http2-wrapper /
source /
proxies /
Delete
Unzip
Name
Size
Permission
Date
Action
get-auth-headers.js
334
B
-rw-r--r--
2023-01-15 03:21
h1-over-h2.js
2.04
KB
-rw-r--r--
2023-01-15 03:21
h2-over-h1.js
1.16
KB
-rw-r--r--
2023-01-15 03:21
h2-over-h2.js
849
B
-rw-r--r--
2023-01-15 03:21
h2-over-hx.js
1023
B
-rw-r--r--
2023-01-15 03:21
initialize.js
672
B
-rw-r--r--
2023-01-15 03:21
unexpected-status-code-error.js
253
B
-rw-r--r--
2023-01-15 03:21
Save
Rename
'use strict'; const {Agent} = require('../agent.js'); const JSStreamSocket = require('../utils/js-stream-socket.js'); const UnexpectedStatusCodeError = require('./unexpected-status-code-error.js'); const initialize = require('./initialize.js'); class Http2OverHttpX extends Agent { constructor(options) { super(options); initialize(this, options.proxyOptions); } async createConnection(origin, options) { const authority = `${origin.hostname}:${origin.port || 443}`; const [stream, statusCode] = await this._getProxyStream(authority); if (statusCode !== 200) { throw new UnexpectedStatusCodeError(statusCode); } if (this.proxyOptions.raw) { options.socket = stream; } else { const socket = new JSStreamSocket(stream); socket.encrypted = false; socket._handle.getpeername = out => { out.family = undefined; out.address = undefined; out.port = undefined; }; return socket; } return super.createConnection(origin, options); } } module.exports = Http2OverHttpX;