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'; // See https://github.com/facebook/jest/issues/2549 // eslint-disable-next-line node/prefer-global/url const {URL} = require('url'); const checkType = require('../utils/check-type.js'); module.exports = (self, proxyOptions) => { checkType('proxyOptions', proxyOptions, ['object']); checkType('proxyOptions.headers', proxyOptions.headers, ['object', 'undefined']); checkType('proxyOptions.raw', proxyOptions.raw, ['boolean', 'undefined']); checkType('proxyOptions.url', proxyOptions.url, [URL, 'string']); const url = new URL(proxyOptions.url); self.proxyOptions = { raw: true, ...proxyOptions, headers: {...proxyOptions.headers}, url }; };