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 /
doc /
node-undici /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
ca-fingerprint
[ DIR ]
drwxr-xr-x
2024-07-10 10:55
proxy
[ DIR ]
drwxr-xr-x
2024-07-10 10:55
fetch.js
280
B
-rw-r--r--
2023-10-11 19:12
proxy-agent.js
549
B
-rw-r--r--
2023-10-11 19:12
request.js
322
B
-rw-r--r--
2023-10-11 19:12
Save
Rename
'use strict' const { request, setGlobalDispatcher, ProxyAgent } = require('../') setGlobalDispatcher(new ProxyAgent('http://localhost:8000/')) async function main () { const { statusCode, headers, trailers, body // send the request via the http://localhost:8000/ HTTP proxy } = await request('http://localhost:3000/undici') console.log('response received', statusCode) console.log('headers', headers) for await (const data of body) { console.log('data', data) } console.log('trailers', trailers) } main()