Updated httpmitm: Made it so that it needs to run python3 srver manually for testing
This commit is contained in:
parent
17d80ead85
commit
98e5d71b07
@ -19,7 +19,7 @@ function filter(f) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
async function startServerIfNeeded() {
|
async function startServerIfNeeded() {
|
||||||
if (state.pid) return;
|
return; // run the python3 srv manually for now
|
||||||
let realpath = path.resolve('.', 'dmbackend', 'start_server.sh')
|
let realpath = path.resolve('.', 'dmbackend', 'start_server.sh')
|
||||||
let prc = child_proc.spawn("/bin/bash", [path.resolve('.', 'dmbackend', 'start_server.sh'), realpath], {stdio: "pipe"});
|
let prc = child_proc.spawn("/bin/bash", [path.resolve('.', 'dmbackend', 'start_server.sh'), realpath], {stdio: "pipe"});
|
||||||
let wstream = fs.createWriteStream("./int_server.log");
|
let wstream = fs.createWriteStream("./int_server.log");
|
||||||
@ -68,7 +68,7 @@ app.post("/*", async function (req, res) {
|
|||||||
fetch = (await import('node-fetch')).default;
|
fetch = (await import('node-fetch')).default;
|
||||||
await startServerIfNeeded();
|
await startServerIfNeeded();
|
||||||
|
|
||||||
const resFromRev = await fetch('http://localhost:3040/' + url.parse(req.url).search, {
|
const resFromRev = await fetch('http://127.0.0.1:3040/' + url.parse(req.url).search, {
|
||||||
body: dat,
|
body: dat,
|
||||||
"headers": req.headers,
|
"headers": req.headers,
|
||||||
method: "POST"
|
method: "POST"
|
||||||
@ -121,7 +121,7 @@ function proxy(config, sock) {
|
|||||||
}, path.resolve(__dirname, "public", "google.com.pem"), path.resolve(__dirname, "public", "google.com.key"))
|
}, path.resolve(__dirname, "public", "google.com.pem"), path.resolve(__dirname, "public", "google.com.key"))
|
||||||
|
|
||||||
const socks = net.createConnection({
|
const socks = net.createConnection({
|
||||||
host: "localhost",
|
host: "127.0.0.1",
|
||||||
port: ms.port
|
port: ms.port
|
||||||
}, function () {
|
}, function () {
|
||||||
sock.write('HTTP/1.1 200 OK\r\n\n');
|
sock.write('HTTP/1.1 200 OK\r\n\n');
|
||||||
|
Reference in New Issue
Block a user