mitmproxy-node
mitmproxy-node copied to clipboard
A bridge between Python's mitmproxy and Node.JS programs. Rewrite network requests using Node.JS!
When using `mitmproxy` 7.0.3 I see this error intermittently. The `mitmproxy` API seems to have changed and the syntax is now `http.Response.make()`. I'll submit a PR.
Bumps [websockets](https://github.com/aaugustin/websockets) from 6.0.0 to 9.1. Changelog Sourced from websockets's changelog. 9.1 ... May 27, 2021 .. note:: **Version 9.1 fixes a security issue introduced in version 8.0.** Version 8.0...
I'm trying to run BLeak on macOS, but it fails to start MITMProxy through mitmproxy-node. It appears that `waitForPort(8080, 1);` at src/index.ts:361 resolves successfully even though MITMProxy is not running....
Fixes TS error on "install"
Bumps [ws](https://github.com/websockets/ws) from 3.2.0 to 3.3.1. Release notes *Sourced from [ws's releases](https://github.com/websockets/ws/releases).* > ## 3.3.1 > # Bug fixes > > - Fixed a DoS vulnerability (c4fe466). > > A...
Trying to `npm install` BLeak, but am running into an issue with mitmproxy-node failing its postinstall script. Here is the error message: ``` > [email protected] postinstall C:\Users\jforcier\AppData\Roaming\npm\node_modules\mitmproxy > scripts/install_python_deps.py 'scripts'...
`$ npm install --save mitmproxy` ``` > [email protected] postinstall /Users/levi/Desktop/.../mitmproxy > scripts/install_python_deps.py ['version:'] Traceback (most recent call last): File "scripts/install_python_deps.py", line 17, in version[0] = int(version[0]) ValueError: invalid literal for...
Hi, I'm running the following test script ``` import MITMProxy from 'mitmproxy'; async function main() { const interceptPaths = [ '/eval' ] const mitmProxy = await MITMProxy.default.Create(undefined, interceptPaths, false); }...