You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm trying to set up a standard SSL proxy with MITM for some research work. Say, I'm trying to create a MITM proxy for *.github.com
I've created the local CA as in the example and I see the sockets created in /tmp as per the example ssl proxy. However, I cannot get it to serve data as intended.
Here's my code, see the transSslPort config is set to undefined.
var myProxy = proxy.createProxyServer({
sslCerts: sslCerts,
sslSockDir: '/tmp',
port: 9000,
// transSslPort: 9001,
via: 'my test proxy/1.1' // use false to turn off via
});
In the code, I see the server waits for an upgrade event to start the sslProxy. Do I need to do something to trigger this? Thank you for your amazing code.
The text was updated successfully, but these errors were encountered:
Hi, I'm trying to set up a standard SSL proxy with MITM for some research work. Say, I'm trying to create a MITM proxy for *.github.com
I've created the local CA as in the example and I see the sockets created in /tmp as per the example ssl proxy. However, I cannot get it to serve data as intended.
Here's my code, see the transSslPort config is set to undefined.
In the code, I see the server waits for an
upgrade
event to start the sslProxy. Do I need to do something to trigger this? Thank you for your amazing code.The text was updated successfully, but these errors were encountered: