Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I have MITM SSL Proxy server in Java, but I have some confusion in some parts of my project.

So, Is there any full code (ProxyServer, Client,attacker ) for this project because I wanna understand it and create my own code.

Thanks

Abdul
Posted

1 solution

Fiddler allows you to implement a man in the middle attack against yourself to see what is inside the SSL tunnel.

Fiddler generates a unique root SSL certificate for your computer, and then creates a session certificate signed by the root. When you configure Fiddler to decrypt SSL for you it acts as a proxy between you and the destination, decrypting the traffic using the site's SSL certificate and then re-encrypting it using its own certificate.

Your browser/application will see an untrusted certificate error. You can get around this error by choosing to trust Fiddler's root certificate.

.Net Rocks did a great podcast episode at on using Fiddler to sniff your traffic
http://www.dotnetrocks.com/default.aspx?shownum=509[^]
 
Share this answer
 
Comments
RaisKazi 13-Mar-12 22:03pm    
My 5.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900