proxy-agents
proxy-agents copied to clipboard
Node.js HTTP Proxy Agents Monorepo
When im using https.agent, setting secureOptions works fine. But in HttpsProxyAgent it does just nothing and I'm still getting "unsafe legacy renegotiation disabled" error. Please fix it, i need to...
It's normal that some proxied requests fail, so I have simple error handling, the issue is that the error is not being caught and instead crashing the script, ```js import...
If a system defined proxy and an explicit proxy config, requests failed using axios. I'm not sure if it's an Axios or a httpsAgent issue (or that I don't use...
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically....
This PR fixes two issues: https://github.com/TooTallNate/proxy-agents/issues/194 https://github.com/TooTallNate/proxy-agents/issues/234 The background is that the TLS connection established by the proxy agents do not add the required parameters for mTLS / self-signed CAs....
- [ ] add test
https://github.com/TooTallNate/proxy-agents/blob/b5f94e3222c0aaa3bc56218ff125e2c56417c86e/packages/socks-proxy-agent/package.json#L112C17-L112C21 Socks has released the new version and removed the ip package because of having a vulnerability mentioned here: https://github.com/advisories/GHSA-78xj-cgh5-2h22
socks 2.8.1 addresses [GHSA-78xj-cgh5-2h22](https://github.com/advisories/GHSA-78xj-cgh5-2h22) by removing `ip` as a dependancy
Hi, Tried the CLI ``` npx proxy@1 -l 192.168.0.40 HTTP(s) proxy server listening on port 3128 ``` Still going through the primary interface set in the OS. I also tried...
agent-base exports an agent that extends http.Agent. The secureEndpoint property works to make instances almost functionally equivalent to what you would get from https.Agent (defaultPort, protocol, getName, etc). But the...