hoxy icon indicating copy to clipboard operation
hoxy copied to clipboard

Web-hacking proxy API for node

Results 44 hoxy issues
Sort by recently updated
recently updated
newest added

i'm using hoxy proxy for intercepting a certain url that is provided by some internal utility software for the company that i work at. the same server call is intercepting...

During all search that I've made through web-sniffer to run on Node environment, Hoxy was the one the closest reached all my necessities. Sadly, it's no longer supported. Given this...

Is there a way to stop requests from being send to their destination?

I am making a proxy with Electron and I use this code ``` var proxy = hoxy.createServer({ certAuthority: { key: localhost.key, cert: localhost.cert }, tls: { key: localhost.key, cert: localhost.cert...

This PR passes socket errors from the SSL MITM code path up to the the top level Proxy object so they may be handled externally. Without this fix, I was...

Not sure what the reason for it is but I sometimes get the error `{ [Error: socket hang up] code: 'ECONNRESET' }` but I cannot simply reproduce it. I have...

* Updated dependencies to remove npm audit warnings * Updated tests to account for differences with new dependencies and generators in node 10 * Update eslintrc to account for new...

I've been trying to use hoxy for testing a webpage using jest framework. Everytime I run it my testing framework refuses to quit warning me that there's an open handle....

With an `as: 'json'` interceptor, Proxy attempts to `JSON.parse` the response body, regardless of `response.statusCode`. Ideally, this would be skipped and the interceptor callback would be called with some indication...

This is more of a question than a bug report. Maybe it is a feature request. When the target URL (my term for "the server on the other side") points...