Click here to Skip to main content
15,881,850 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralRe: C++ expression(s) Pin
C3D129-Oct-15 21:21
professionalC3D129-Oct-15 21:21 
GeneralRe: C++ expression(s) Pin
CDP180213-Oct-15 4:21
CDP180213-Oct-15 4:21 
GeneralRe: C++ expression(s) Pin
k505413-Oct-15 6:47
mvek505413-Oct-15 6:47 
GeneralRe: C++ expression(s) Pin
PIEBALDconsult16-Oct-15 7:58
mvePIEBALDconsult16-Oct-15 7:58 
GeneralRe: C++ expression(s) Pin
Dan Neely16-Oct-15 8:55
Dan Neely16-Oct-15 8:55 
GeneralRe: C++ expression(s) Pin
C3D129-Oct-15 21:26
professionalC3D129-Oct-15 21:26 
JokeAmazon's rules, Amazon's fail Pin
Tibor Blazko8-Oct-15 8:11
Tibor Blazko8-Oct-15 8:11 
GeneralMan-in-the-middle SSL-Streams Pin
Dr Gadgit30-Sep-15 8:53
Dr Gadgit30-Sep-15 8:53 
if you have ever wrote a proxy server and just wanted to relay SSL data then you just need to read the HTTPS connect to get the host name and then join the client socket to a server socket and pump the data between sockets.

Doing MITM after first installing a CA certificate on the client machine so that it works in stealth mode is not so easy and you need to use a SSL-Stream to authenticate with both the client and server to decrypt the data.

Trouble is a SSL-Stream in stealth mode won't give you the host name and if you read the socket that the SSL-Stream is conncted to so you can parse the host name from the stream then the SSL-Stream won't work, it's read forwards only.

So how did i patch this up to work using .NET 3.5 ?

Well i used something like two proxy servers and the first one read the socket stream to extract the host-name and then relayed the data to a second proxy that connected a SSL-Stream to the incoming net.socket and then asked the first proxy for the host name.

browser->host-name-proxy->MITM Proxy->Internet

OK i wrapped it up inside a single class so that it all worked inside a single proxy server on the same process id but i must be very cleaver for thinking outside the box and getting something to work or went about it all wrong and must be very stupi.

Maybe I needed to use some other network base class.

shoot away, it's code Jim but not as we know it Smile | :)

GeneralIt's alive.....! Pin
Duncan Edwards Jones18-Sep-15 4:42
professionalDuncan Edwards Jones18-Sep-15 4:42 
GeneralRe: It's alive.....! Pin
Richard Deeming18-Sep-15 4:52
mveRichard Deeming18-Sep-15 4:52 
GeneralRe: It's alive.....! Pin
Palash Mondal_18-Sep-15 5:12
professionalPalash Mondal_18-Sep-15 5:12 
GeneralRe: It's alive.....! Pin
phil.o13-Oct-15 1:57
professionalphil.o13-Oct-15 1:57 
GeneralRe: It's alive.....! Pin
Duncan Edwards Jones13-Oct-15 2:18
professionalDuncan Edwards Jones13-Oct-15 2:18 
GeneralRe: It's alive.....! Pin
phil.o15-Oct-15 0:01
professionalphil.o15-Oct-15 0:01 
GeneralWTF Pin
Brisingr Aerowing15-Aug-15 11:46
professionalBrisingr Aerowing15-Aug-15 11:46 
GeneralRe: WTF Pin
Sander Rossel15-Aug-15 13:29
professionalSander Rossel15-Aug-15 13:29 
GeneralRe: WTF Pin
kmoorevs15-Aug-15 14:22
kmoorevs15-Aug-15 14:22 
GeneralRe: WTF Pin
Amarnath S15-Aug-15 18:13
professionalAmarnath S15-Aug-15 18:13 
GeneralRe: WTF Pin
Weylyn Cadwell17-Aug-15 11:31
Weylyn Cadwell17-Aug-15 11:31 
GeneralRe: WTF Pin
User 1013254618-Sep-15 5:38
User 1013254618-Sep-15 5:38 
GeneralIs this the worst code in the world? Pin
Sean McPoland12-Aug-15 20:12
Sean McPoland12-Aug-15 20:12 
GeneralRe: Is this the worst code in the world? Pin
ravikhoda13-Aug-15 0:07
professionalravikhoda13-Aug-15 0:07 
GeneralRe: Is this the worst code in the world? Pin
Tim Carmichael13-Aug-15 3:24
Tim Carmichael13-Aug-15 3:24 
GeneralRe: Is this the worst code in the world? PinPopular
Power Puff Boy13-Aug-15 3:28
Power Puff Boy13-Aug-15 3:28 
GeneralRe: Is this the worst code in the world? Pin
Mark Whybird13-Aug-15 20:26
Mark Whybird13-Aug-15 20:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.