Reputation: 1487
I currently have some SSL packets captured with Wireshark, and I want to know how can I send them to a certain IP address using C#.
The problem is that C# has no native support for SSL packets, so I can't do it without a certain library.
I don't want to modify the packet at all, just send it after I captured it.
Is it possible?
Upvotes: 0
Views: 486
Reputation: 437854
Third parties with no access to the internal state of the software communicating through SSL cannot do much that is meaningful with the captured packets.
You can derive some information regarding the length of the data being passed around, but you cannot decrypt it (of course) and you cannot replay it (SSL has built-in protection against replay attacks).
Sorry, but it seems you are out of luck.
Upvotes: 2