Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yusuf-daglioglu/mitmproxy_redirector
Redirect your web browser to your any enviroment
https://github.com/yusuf-daglioglu/mitmproxy_redirector
http local-development man-in-the-middle mitmproxy productivity proxy security ssl websocket
Last synced: about 12 hours ago
JSON representation
Redirect your web browser to your any enviroment
- Host: GitHub
- URL: https://github.com/yusuf-daglioglu/mitmproxy_redirector
- Owner: yusuf-daglioglu
- Created: 2021-09-12T11:11:34.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T11:27:20.000Z (2 months ago)
- Last Synced: 2024-09-12T06:22:33.843Z (2 months ago)
- Topics: http, local-development, man-in-the-middle, mitmproxy, productivity, proxy, security, ssl, websocket
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 29
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mitmproxy redirector
With this script you can redirect only specific HTTP and Web-socket requests of your web browser to your local (or any other) web applications.# Why do I need this? I can already change "hosts" file.
You can also edit "hosts" file of your OS. But:
- manipulation "hosts" file requires admin privileges.
- using "hosts" file you can only change "domain" part of URL. You can not do below example with "hosts" file:> http://api-gateway.mydomain.com/service2 (you don't want redirect the service2)
> http://api-gateway.mydomain.com/service1 (you want to redirect service1 to localhost)
- If you have multiple browsers or browser-profiles with that script you can redirect only 1 browser instance. With "hosts" file you can only redirect whole system to same direction. For example: you may want to check "service1" both remote and localhost environment at the same time from different web browsers (or web browser profiles).
# Requirements
- This script can be run only with user privileges.
- Mitmproxy has standalone executable for all OSes. You don't have to install it.## Usage
- ### Certificate
Add $HOME/.mitmproxy/mitmproxy-ca-cert.cert file to web browser (only current browser profile is enough). This certificate file is creating after the first run of mitmproxy.
For Firefox:
- Settings
- View Certificates
- Authorities
- Import
- Choose $HOME/.mitmproxy/mitmproxy-ca-cert.cert file only.OS based certificate formats exist. Read this: https://docs.mitmproxy.org/stable/concepts-certificates/#the-mitmproxy-certificate-authority
- ### Defining the proxy to web browser
Add proxy for http and https: localhost:44700
- ### Run mitmproxy
Linux
> ./mitmweb -s mitm-redirect-url.py --listen-port 44700
MS Windows
> mitmweb.exe -s mitm-redirect-url.py --listen-port 44700
- ### Ignore CORS (Optional)
Optionally you can ignore CORS for your current browser profile. You can use below extension for Firefox:
https://addons.mozilla.org/en-US/firefox/addon/cors-everywhere/