Hello, http.client.ts has this: ``` this.axios = axios.create({ httpsAgent: proxyConfig ? new tunnel.HttpsProxyAgent(proxyConfig) : new https.Agent({ rejectUnauthorized: false }) }); ``` doesn't this make the app susceptible to MITM attacks?
Hello, http.client.ts has this:
doesn't this make the app susceptible to MITM attacks?