C#如何使用Socket发送HTTPHTTPS请求实例详解

C#如何使用Socket发送HTTPHTTPS请求实例详解,第1张

概述C#如何使用Socket发送HTTP/HTTPS请求实例详解 这篇文章主要介绍了c#使用Socket发送http/httpS请求的实现代码,需要的朋友可以参考下

C# 自带的httpWebRequest效率太低,对于自组http封包不好 *** 作。

在写超级SQL注入工具时,研究了很长一段时间如何使用Socket来发送http、httpS请求。

经过一年的修改和测试,可完美、高效发送并解析http/httpS请求。修改过无数次BUG。

在这里把核心代码分享出来,供大家学习或做开发参考。

用这个代码写了一个简单的http发包工具。供大家参考。

工具下载:

httpTool.rar

核心类:http.cs


using System;using System.Collections.Generic;using System.Text;using tools;using System.Net;using System.Net.sockets;using System.IO.Compression;using System.IO;using System.Net.Security;using System.Text.RegularExpressions;using System.Threading;using System.Diagnostics;using System.Security.Authentication;using System.Security.Cryptography.X509Certificates;using httpTool; namespace tools{  public class http  {    public const char T = '';    public const String CT = "";    public const String CTRL = " ";    public const String Content_Length_Str = "content-length: ";    public const String Content_Length_Str_M = "Content-Length: ";    public const String Content_Length = "content-length";    public const String Content_EnCoding = "content-encoding";    public const String Transfer_EnCoding = "transfer-encoding";    public const String Connection = "connection";    public static Main main = null;    public static long index = 0;    public voID initMain(Main m)    {      main = m;    }     /**     *      发生异常尝试重连      *     */    public static ServerInfo sendRequestRetry(Boolean isSSL, int tryCount, String host, int port, String payload, String request, int timeout, String enCoding, Boolean foward_302)    {      int count = 0;      Interlocked.Increment(ref index);      ServerInfo server = new ServerInfo();      timeout = timeout * 1000;      while (true)      {        if (count >= tryCount) break;         try        {          if (!isSSL)          {            server = sendhttpRequest(count, host, port, payload, request, timeout, enCoding, foward_302);            return server;          }          else          {             server = sendhttpSRequest(count, host, port, payload, request, timeout, enCoding, foward_302);            return server;           }        }        catch (Exception e)        {          Tools.SysLog("发包发生异常,正在重试----" + e.Message);          server.timeout = true;          continue;        }        finally        {          count++;        }       }      return server;     }     private static voID checkContentLength(ref ServerInfo server, ref String request)    {       //重新计算并设置Content-length      int sindex = request.IndexOf(CTRL);      server.reuqestheader = request;      if (sindex != -1)      {        server.reuqestheader = request.Substring(0, sindex);        server.reuqestbody = request.Substring(sindex + 4, request.Length - sindex - 4);        int contentLength = EnCoding.UTF8.GetBytes(server.reuqestbody).Length;        String newContentLength = Content_Length_Str_M + contentLength;         if (request.IndexOf(Content_Length_Str_M) != -1)        {          request = Regex.Replace(request, Content_Length_Str_M + "d+", newContentLength);        }        else        {          request = request.Insert(sindex, "" + newContentLength);        }      }      else      {        request = Regex.Replace(request, Content_Length_Str + "d+", Content_Length_Str_M + "0");        request += CTRL;      }      }     private static voID doheader(ref ServerInfo server, ref String[] headers)    {       for (int i = 0; i < headers.Length; i++)      {        if (i == 0)        {           server.code = Tools.convertToInt(headers[i].Split(' ')[1]);         }        else        {          String[] kv = Regex.Split(headers[i], ": ");          String key = kv[0].Tolower();          if (!server.headers.ContainsKey(key))          {            //自动识别编码            if ("content-type".Equals(key))            {              String hecnode = getHTMLEnCoding(kv[1], "");              if (!String.IsNullOrEmpty(hecnode))              {                server.enCoding = hecnode;              }            }            if (kv.Length > 1)            {              server.headers.Add(key, kv[1]);            }            else            {              server.headers.Add(key, "");            }          }        }      }     }      private static ServerInfo sendhttpRequest(int count, String host, int port, String payload, String request, int timeout, String enCoding, Boolean foward_302)    {       String index = Thread.CurrentThread.name + http.index;      Stopwatch sw = new Stopwatch();      sw.Start();      ServerInfo server = new ServerInfo();      TcpClIEnt clIEntSocket = null;      int sum = 0;      try      {        if (port > 0 && port <= 65556)        {          //编码处理          server.request = request;          TimeOutSocket tos = new TimeOutSocket();          clIEntSocket = tos.Connect(host, port, timeout);          if (sw.ElapsedMilliseconds >= timeout)          {            return server;          }          clIEntSocket.SendTimeout = timeout - tos.useTime;          if (clIEntSocket.Connected)          {            checkContentLength(ref server, ref request);            server.request = request;             byte[] requestByte = EnCoding.UTF8.GetBytes(request);            clIEntSocket.ClIEnt.Send(requestByte);            byte[] responseBody = new byte[1024 * 1000];            int len = 0;            //获取header头            String tmp = "";            StringBuilder sb = new StringBuilder();            clIEntSocket.ReceiveTimeout = timeout - (int)sw.ElapsedMilliseconds;            do            {              byte[] responseheader = new byte[1];              len = clIEntSocket.ClIEnt.Receive(responseheader, 1, SocketFlags.None);              if (len == 1)              {                 char c = (char)responseheader[0];                sb.Append(c);                if (c.Equals(T))                {                  tmp = String.Concat(sb[sb.Length - 4], sb[sb.Length - 3], sb[sb.Length - 2], c);                }              }            } while (!tmp.Equals(CTRL) && sw.ElapsedMilliseconds < timeout);             server.header = sb.ToString().Replace(CTRL, "");            String[] headers = Regex.Split(server.header, CT);            if (headers != null && headers.Length > 0)            {              //处理header              doheader(ref server, ref headers);              //自动修正编码              if (!String.IsNullOrEmpty(server.enCoding))              {                enCoding = server.enCoding;              }              EnCoding encod = EnCoding.GetEnCoding(enCoding);               //302 301跳转              if ((server.code == 302 || server.code == 301) && foward_302)              {                StringBuilder rsb = new StringBuilder(server.request);                int urlStart = server.request.IndexOf(" ") + 1;                int urlEnd = server.request.IndexOf(" http");                if (urlStart != -1 && urlEnd != -1)                {                  String url = server.request.Substring(urlStart, urlEnd - urlStart);                  rsb.Remove(urlStart, url.Length);                  String location = server.headers["location"];                  if (!server.headers["location"].StartsWith("/") && !server.headers["location"].StartsWith("http"))                  {                    location = Tools.getCurrentPath(url) + location;                  }                  rsb.Insert(urlStart, location);                   return sendhttpRequest(count, host, port, payload, rsb.ToString(), timeout, enCoding, false);                }               }                //根据请求头解析              if (server.headers.ContainsKey(Content_Length))              {                int length = int.Parse(server.headers[Content_Length]);                 while (sum < length && sw.ElapsedMilliseconds < timeout)                {                  int readsize = length - sum;                  len = clIEntSocket.ClIEnt.Receive(responseBody, sum, readsize, SocketFlags.None);                  if (len > 0)                  {                    sum += len;                  }                }              }              //解析chunked传输              else if (server.headers.ContainsKey(Transfer_EnCoding))              {                //读取长度                int chunkedSize = 0;                byte[] chunkedByte = new byte[1];                //读取总长度                sum = 0;                do                {                  String ctmp = "";                  do                  {                    len = clIEntSocket.ClIEnt.Receive(chunkedByte, 1, SocketFlags.None);                    ctmp += EnCoding.UTF8.GetString(chunkedByte);                   } while ((ctmp.IndexOf(CT) == -1) && (sw.ElapsedMilliseconds < timeout));                   chunkedSize = Tools.convertToIntBy16(ctmp.Replace(CT, ""));                   //chunked的结束0 是结束标志,单个chunked块结束                  if (ctmp.Equals(CT))                  {                    continue;                  }                  if (chunkedSize == 0)                  {                    //结束了                    break;                  }                  int onechunkLen = 0;                  while (onechunkLen < chunkedSize && sw.ElapsedMilliseconds < timeout)                  {                    len = clIEntSocket.ClIEnt.Receive(responseBody, sum, chunkedSize - onechunkLen, SocketFlags.None);                    if (len > 0)                    {                      onechunkLen += len;                      sum += len;                    }                  }                   //判断                } while (sw.ElapsedMilliseconds < timeout);              }              //connection close方式或未知body长度              else              {                while (sw.ElapsedMilliseconds < timeout)                {                  if (clIEntSocket.ClIEnt.Poll(timeout, SelectMode.SelectRead))                  {                    if (clIEntSocket.Available > 0)                    {                      len = clIEntSocket.ClIEnt.Receive(responseBody, sum, (1024 * 200) - sum, SocketFlags.None);                      if (len > 0)                      {                        sum += len;                      }                    }                    else                    {                      break;                    }                  }                }              }              //判断是否gzip              if (server.headers.ContainsKey(Content_EnCoding))              {                server.body = unGzip(responseBody, sum, encod);              }              else              {                server.body = encod.GetString(responseBody, 0, sum);              }              }          }         }      }      catch (Exception e)      {        Exception ee = new Exception("http发包错误!错误消息:" + e.Message + e.TargetSite.name + "----发包编号:" + index);        throw ee;      }      finally      {        sw.Stop();        server.length = sum;        server.runTime = (int)sw.ElapsedMilliseconds;        if (clIEntSocket != null)        {          clIEntSocket.Close();        }      }      return server;     }     private static bool ValIDateServerCertificate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)    {      return true;    }    private static ServerInfo sendhttpSRequest(int count, String host, int port, String payload, String request, int timeout, String enCoding, Boolean foward_302)    {      String index = Thread.CurrentThread.name + http.index;      Stopwatch sw = new Stopwatch();      sw.Start();      ServerInfo server = new ServerInfo();       int sum = 0;       TcpClIEnt clIEntSocket = null; ;       try      {         if (port > 0 && port <= 65556)        {           TimeOutSocket tos = new TimeOutSocket();          clIEntSocket = tos.Connect(host, port, timeout);          if (sw.ElapsedMilliseconds >= timeout)          {            return server;          }          clIEntSocket.SendTimeout = timeout - tos.useTime;           SslStream ssl = null;          if (clIEntSocket.Connected)          {            ssl = new SslStream(clIEntSocket.GetStream(), false, new RemoteCertificateValIDationCallback(ValIDateServerCertificate));            SslProtocols protocol = SslProtocols.Ssl3 | SslProtocols.Ssl2 | SslProtocols.Tls;            ssl.AuthenticateAsClIEnt(host, null, protocol, false);            if (ssl.IsAuthenticated)            {              checkContentLength(ref server, ref request);              server.request = request;              byte[] requestByte = EnCoding.UTF8.GetBytes(request);              ssl.Write(requestByte);              ssl.Flush();            }          }          server.request = request;          byte[] responseBody = new byte[1024 * 1000];          int len = 0;          //获取header头          String tmp = "";           StringBuilder sb = new StringBuilder();          StringBuilder bulIDer = new StringBuilder();          clIEntSocket.ReceiveTimeout = timeout - (int)sw.ElapsedMilliseconds;          do          {            byte[] responseheader = new byte[1];            int read = ssl.ReadByte();             char c = (char)read;            sb.Append(c);            if (c.Equals(T))            {              tmp = String.Concat(sb[sb.Length - 4], sb[sb.Length - 3], sb[sb.Length - 2], c);            }           } while (!tmp.Equals(CTRL) && sw.ElapsedMilliseconds < timeout);           server.header = sb.ToString().Replace(CTRL, "");          String[] headers = Regex.Split(server.header, CT);          //处理header          doheader(ref server, ref headers);          //自动修正编码          if (!String.IsNullOrEmpty(server.enCoding))          {            enCoding = server.enCoding;          }          EnCoding encod = EnCoding.GetEnCoding(enCoding);          //302 301跳转          if ((server.code == 302 || server.code == 301) && foward_302)          {             int urlStart = server.request.IndexOf(" ");            int urlEnd = server.request.IndexOf(" http");            if (urlStart != -1 && urlEnd != -1)            {              String url = server.request.Substring(urlStart + 1, urlEnd - urlStart - 1);              if (!server.headers["location"].StartsWith("/") && !server.headers["location"].StartsWith("https"))              {                server.request = server.request.Replace(url, Tools.getCurrentPath(url) + server.headers["location"]);              }              else              {                server.request = server.request.Replace(url, server.headers["location"]);              }               return sendhttpSRequest(count, host, port, payload, server.request, timeout, enCoding, false);            }           }            //根据请求头解析          if (server.headers.ContainsKey(Content_Length))          {            int length = int.Parse(server.headers[Content_Length]);            while (sum < length && sw.ElapsedMilliseconds < timeout)            {              len = ssl.Read(responseBody, sum, length - sum);              if (len > 0)              {                sum += len;              }            }          }          //解析chunked传输          else if (server.headers.ContainsKey(Transfer_EnCoding))          {            //读取长度            int chunkedSize = 0;            byte[] chunkedByte = new byte[1];            //读取总长度            sum = 0;            do            {              String ctmp = "";              do              {                len = ssl.Read(chunkedByte, 0, 1);                ctmp += EnCoding.UTF8.GetString(chunkedByte);               } while (ctmp.IndexOf(CT) == -1 && sw.ElapsedMilliseconds < timeout);               chunkedSize = Tools.convertToIntBy16(ctmp.Replace(CT, ""));               //chunked的结束0 是结束标志,单个chunked块结束              if (ctmp.Equals(CT))              {                continue;              }              if (chunkedSize == 0)              {                //结束了                break;              }              int onechunkLen = 0;               while (onechunkLen < chunkedSize && sw.ElapsedMilliseconds < timeout)              {                len = ssl.Read(responseBody, sum, chunkedSize - onechunkLen);                if (len > 0)                {                  onechunkLen += len;                  sum += len;                }              }               //判断            } while (sw.ElapsedMilliseconds < timeout);          }          //connection close方式或未知body长度          else          {            while (sw.ElapsedMilliseconds < timeout)            {              if (clIEntSocket.ClIEnt.Poll(timeout, SelectMode.SelectRead))              {                if (clIEntSocket.Available > 0)                {                  len = ssl.Read(responseBody, sum, (1024 * 200) - sum);                  if (len > 0)                  {                    sum += len;                  }                }                else                {                  break;                }              }            }          }          //判断是否gzip          if (server.headers.ContainsKey(Content_EnCoding))          {            server.body = unGzip(responseBody, sum, encod);          }          else          {            server.body = encod.GetString(responseBody, 0, sum);          }        }       }      catch (Exception e)      {        Exception ee = new Exception("httpS发包错误!错误消息:" + e.Message + "----发包编号:" + index);        throw ee;      }      finally      {        sw.Stop();        server.length = sum;        server.runTime = (int)sw.ElapsedMilliseconds;         if (clIEntSocket != null)        {          clIEntSocket.Close();        }      }      return server;     }     public static String unGzip(byte[] data, int len, EnCoding enCoding)    {       String str = "";      MemoryStream ms = new MemoryStream(data, 0, len);      GZipStream gs = new GZipStream(ms, CompressionMode.Decompress);      MemoryStream outbuf = new MemoryStream();      byte[] block = new byte[1024];       try      {         while (true)        {          int bytesRead = gs.Read(block, 0, block.Length);          if (bytesRead <= 0)          {            break;          }          else          {            outbuf.Write(block, 0, bytesRead);          }        }        str = enCoding.GetString(outbuf.ToArray());      }      catch (Exception e)      {        Tools.SysLog("解压Gzip发生异常----" + e.Message);      }      finally      {        outbuf.Close();        gs.Close();        ms.Close();       }      return str;     }    public static String getHTMLEnCoding(String header, String body)    {      if (String.IsNullOrEmpty(header) && String.IsNullOrEmpty(body))      {        return "";      }      body = body.toupper();      Match m = Regex.Match(header, @"charsets*=s*""?(?<charset>[^""]*)", RegexOptions.IgnoreCase);      if (m.Success)      {        return m.Groups["charset"].Value.toupper();      }      else      {        if (String.IsNullOrEmpty(body))        {          return "";        }        m = Regex.Match(body, @"charsets*=s*""?(?<charset>[^""]*)", RegexOptions.IgnoreCase);        if (m.Success)        {          return m.Groups["charset"].Value.toupper();        }      }      return "";    }  }}
总结

以上是内存溢出为你收集整理的C#如何使用Socket发送HTTP/HTTPS请求实例详解全部内容,希望文章能够帮你解决C#如何使用Socket发送HTTP/HTTPS请求实例详解所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1210889.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存