I have yet to find any responses to the CloudFlare challenge in C#.
How would I construct and send a SSL Heartbeat request from a C# Console Application to a given URL? (Should work with https://www.cloudflarechallenge.com )
I'm not even sure where to begin in constructing the request.
I would then want to get the response in some usable format, like a byte[]
.
Here's basically the method I need to complete the application:
private byte[] ExploitHeartBleed(string pURL, string pToSend, int pLength, int pPort = 443)
{
byte[] response = new byte[];
//Make TCP Request
TcpClient client = new TcpClient(pURL, pPort);
// Form Heartbeat Request
// Read Response, save to 'response'
//Return Response
return response;
}
Any help would be appreciated!