https://github.com/moolen/mitmdump
https hijacker
https://github.com/moolen/mitmdump
Last synced: 2 days ago
JSON representation
https hijacker
- Host: GitHub
- URL: https://github.com/moolen/mitmdump
- Owner: moolen
- Created: 2017-08-31T21:11:49.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-02T15:04:25.000Z (almost 9 years ago)
- Last Synced: 2025-02-23T19:46:26.982Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mitmdump
This is a HTTP proxy that acts as a man-in-the-mittle that hijacks https connections instead of transparently forwarding them to you.
## Testing with curl (easy)
Run the proxy with `go run cmd/main.go` and issue an http using curl: `curl -vikx http://localhost:8080 https://github.com`.
## Testing with a browser (you trust me?)
First, import [this certificate](https://github.com/elazarl/goproxy/blob/master/ca.pem) into your browser certificate chain. Start the proxy with `go run cmd/main.go` and start your browser: `google-chrome-stable --proxy-server=http://localhost:8080 https://github.com`