What program should I use for SSL stripping and re-encrypting
- by Sparksis
I'm trying to strip a HTTP over SSL connection down to SSL and then re-encrypt the channel (with a signed certificate(s) I can provide).
Of course I want to be able to store captures of all the un-encrypted data. The purpose of this is to reverse engineer a HTTP handshake that is used by a SIP program on my machine.
I've tried SSLstrip but it doesn't support what I need it too.
Edit:
I want something to this effect
https://github.com/applidium/Cracking-Siri/blob/master/tcpProxy.rb
only more generic and able to write to a pcap stream that wireshark will understand (I'm not sure if this does that).
Edit2: upon further inspection this does not create pcap streams. I guess if need be I can write a compatible version but that is not the desired choice.