Skip to content

Commit

Permalink
Merge pull request #355 from jekh/add-mitm-links-to-readme
Browse files Browse the repository at this point in the history
1.1.2 doc update & MITM links
  • Loading branch information
jekh committed Mar 5, 2017
2 parents 47bee7b + 9630e71 commit ac8a466
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Expand Up @@ -16,7 +16,7 @@ You can embed LittleProxy in your own projects through Maven with the following:
<dependency>
<groupId>org.littleshoot</groupId>
<artifactId>littleproxy</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
</dependency>
```

Expand All @@ -29,6 +29,12 @@ HttpProxyServer server =
.start();
```

To intercept and manipulate HTTPS traffic, LittleProxy uses a man-in-the-middle (MITM) manager. LittleProxy's default
implementation (`SelfSignedMitmManager`) has a fairly limited feature set. For greater control over certificate impersonation,
browser trust, the TLS handshake, and more, use a the LittleProxy-compatible MITM extension:
- [LittleProxy-mitm](https://github.com/ganskef/LittleProxy-mitm) - A LittleProxy MITM extension that aims to support every Java platform including Android
- [mitm](https://github.com/lightbody/browsermob-proxy/tree/master/mitm) - A LittleProxy MITM extension that supports elliptic curve cryptography and custom trust stores

To filter HTTP traffic, you can add request and response filters using a
`HttpFiltersSource(Adapter)`, for example:

Expand Down

0 comments on commit ac8a466

Please sign in to comment.