JsonWebHelper.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Net;
  6. using System.Net.Security;
  7. using System.Security.Cryptography.X509Certificates;
  8. using System.Text;
  9. using System.Text.RegularExpressions;
  10. namespace TimedUpload
  11. {
  12. /// <summary>
  13. /// Web操作
  14. /// </summary>
  15. public static class JsonWebHelper
  16. {
  17. #region Host(获取主机名)
  18. /// <summary>
  19. /// 获取主机名,即域名,
  20. /// 范例:用户输入网址http://www.a.com/b.htm?a=1&amp;b=2,
  21. /// 返回值为: www.a.com
  22. /// </summary>
  23. //public static string Host
  24. //{
  25. // get
  26. // {
  27. // return HttpContext.Current.Request.Url.Host;
  28. // }
  29. //}
  30. #endregion
  31. #region HttpWebRequest(请求网络资源)
  32. /// <summary>
  33. /// 请求网络资源,返回响应的文本
  34. /// </summary>
  35. /// <param name="url">网络资源地址</param>
  36. public static string HttpWebRequest(string url)
  37. {
  38. return HttpWebRequest(url, string.Empty, Encoding.GetEncoding("utf-8"));
  39. }
  40. /// <summary>
  41. /// 请求网络资源,返回响应的文本
  42. /// </summary>
  43. /// <param name="url">网络资源Url地址</param>
  44. /// <param name="parameters">提交的参数,格式:参数1=参数值1&amp;参数2=参数值2</param>
  45. public static string HttpWebRequest(string url, string parameters)
  46. {
  47. return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), "POST");
  48. }
  49. /// <summary>
  50. /// 请求网络资源,返回响应的文本
  51. /// </summary>
  52. /// <param name="url">网络资源Url地址</param>
  53. /// <param name="parameters"></param>
  54. public static string HttpWebRequest(string url, string parameters, string contentType, string Authorization, string app_key)
  55. {
  56. return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), "POST", contentType, Authorization, app_key);
  57. }
  58. /// <summary>
  59. /// 请求网络资源,返回响应的文本
  60. /// </summary>
  61. /// <param name="url">网络资源Url地址</param>
  62. /// <param name="parameters"></param>
  63. public static string HttpWebRequest(string url, string parameters, string mehtod, string contentType, string Authorization, string app_key)
  64. {
  65. return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), mehtod, contentType, Authorization, app_key);
  66. }
  67. /// <summary>
  68. /// 请求网络资源,返回响应的文本
  69. /// </summary>
  70. /// <param name="url">网络资源地址</param>
  71. /// <param name="parameters">提交的参数,格式:参数1=参数值1&amp;参数2=参数值2</param>
  72. /// <param name="encoding">字符编码</param>
  73. /// <param name="isPost">是否Post提交</param>
  74. /// <param name="contentType">内容类型</param>
  75. /// <param name="cookie">Cookie容器</param>
  76. /// <param name="timeout">超时时间</param>
  77. public static string HttpWebRequest(string url, string parameters, Encoding encoding, string mehtod = "POST",
  78. string contentType = "application/json", string Authorization = null, string app_key = null, CookieContainer cookie = null, int timeout = 120000)
  79. {
  80. HttpWebRequest request = null;
  81. try
  82. {
  83. //如果是发送HTTPS请求
  84. //if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
  85. //{
  86. // ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11;
  87. // ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
  88. // //X509Certificate cerCaiShang = new X509Certificate(System.Web.HttpContext.Current.Server.MapPath(Config.GetValue("NB_PfxPath")), Config.GetValue("NB_PfxKey"));
  89. // //X509Certificate2 cerCaiShang = GetSentosaCertificate();
  90. // X509Certificate2 cerCaiShang = new X509Certificate2(Config.GetValue("NB_PfxPath"), Config.GetValue("NB_PfxKey"));
  91. // request = WebRequest.Create(url) as HttpWebRequest;
  92. // request.ClientCertificates.Add(cerCaiShang);
  93. // request.ProtocolVersion = HttpVersion.Version10;
  94. //}
  95. //else
  96. //{
  97. //始终验证服务器证书
  98. ServicePointManager.ServerCertificateValidationCallback =
  99. (object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) => { return true; };
  100. //设置协议
  101. ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 |
  102. SecurityProtocolType.Tls |
  103. (SecurityProtocolType)192 |
  104. (SecurityProtocolType)768 |
  105. (SecurityProtocolType)3072;
  106. request = WebRequest.Create(url) as HttpWebRequest;
  107. //}
  108. request.Timeout = timeout;
  109. if (!string.IsNullOrEmpty(Authorization))
  110. {
  111. request.Headers["Authorization"] = Authorization;
  112. }
  113. if (!string.IsNullOrEmpty(app_key))
  114. {
  115. request.Headers["app_key"] = app_key;
  116. }
  117. request.CookieContainer = cookie;
  118. request.ContentType = contentType;
  119. request.Method = mehtod;
  120. if (mehtod == "POST")
  121. {
  122. byte[] postData = encoding.GetBytes(parameters);
  123. request.Method = "POST";
  124. request.ContentType = contentType;
  125. request.ContentLength = postData.Length;
  126. using (Stream stream = request.GetRequestStream())
  127. {
  128. stream.Write(postData, 0, postData.Length);
  129. }
  130. }
  131. if (mehtod == "PUT")
  132. {
  133. using (StreamWriter requestStream = new StreamWriter(request.GetRequestStream()))
  134. {
  135. requestStream.Write(parameters);
  136. }
  137. }
  138. var response = (HttpWebResponse)request.GetResponse();
  139. string result;
  140. using (Stream stream = response.GetResponseStream())
  141. {
  142. if (stream == null)
  143. return string.Empty;
  144. using (var reader = new StreamReader(stream, encoding))
  145. {
  146. result = reader.ReadToEnd();
  147. }
  148. }
  149. return result;
  150. }
  151. catch (Exception ex)
  152. {
  153. throw ex;
  154. }
  155. }
  156. private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
  157. {
  158. return true;
  159. }
  160. private static X509Certificate2 GetSentosaCertificate()
  161. {
  162. X509Store userCaStore = new X509Store(StoreName.My, StoreLocation.LocalMachine);
  163. try
  164. {
  165. userCaStore.Open(OpenFlags.ReadOnly);
  166. X509Certificate2Collection certificatesInStore = userCaStore.Certificates;
  167. X509Certificate2Collection findResult = certificatesInStore.Find(X509FindType.FindBySubjectName, "server", true);
  168. X509Certificate2 clientCertificate = null;
  169. if (findResult.Count == 1)
  170. {
  171. clientCertificate = findResult[0];
  172. }
  173. else
  174. {
  175. throw new Exception("Unable to locate the correct client certificate.");
  176. }
  177. return clientCertificate;
  178. }
  179. catch
  180. {
  181. throw;
  182. }
  183. finally
  184. {
  185. userCaStore.Close();
  186. }
  187. }
  188. #endregion
  189. #region 去除HTML标记
  190. /// <summary>
  191. /// 去除HTML标记
  192. /// </summary>
  193. /// <param name="NoHTML">包括HTML的源码 </param>
  194. /// <returns>已经去除后的文字</returns>
  195. //public static string NoHtml(string Htmlstring)
  196. //{
  197. // //删除脚本
  198. // Htmlstring = Regex.Replace(Htmlstring, @"<script[^>]*?>.*?</script>", "", RegexOptions.IgnoreCase);
  199. // //删除HTML
  200. // Htmlstring = Regex.Replace(Htmlstring, @"<(.[^>]*)>", "", RegexOptions.IgnoreCase);
  201. // Htmlstring = Regex.Replace(Htmlstring, @"([\r\n])[\s]+", "", RegexOptions.IgnoreCase);
  202. // Htmlstring = Regex.Replace(Htmlstring, @"-->", "", RegexOptions.IgnoreCase);
  203. // Htmlstring = Regex.Replace(Htmlstring, @"<!--.*", "", RegexOptions.IgnoreCase);
  204. // Htmlstring = Regex.Replace(Htmlstring, @"&(quot|#34);", "\"", RegexOptions.IgnoreCase);
  205. // Htmlstring = Regex.Replace(Htmlstring, @"&(amp|#38);", "&", RegexOptions.IgnoreCase);
  206. // Htmlstring = Regex.Replace(Htmlstring, @"&(lt|#60);", "<", RegexOptions.IgnoreCase);
  207. // Htmlstring = Regex.Replace(Htmlstring, @"&(gt|#62);", ">", RegexOptions.IgnoreCase);
  208. // Htmlstring = Regex.Replace(Htmlstring, @"&(nbsp|#160);", " ", RegexOptions.IgnoreCase);
  209. // Htmlstring = Regex.Replace(Htmlstring, @"&(iexcl|#161);", "\xa1", RegexOptions.IgnoreCase);
  210. // Htmlstring = Regex.Replace(Htmlstring, @"&(cent|#162);", "\xa2", RegexOptions.IgnoreCase);
  211. // Htmlstring = Regex.Replace(Htmlstring, @"&(pound|#163);", "\xa3", RegexOptions.IgnoreCase);
  212. // Htmlstring = Regex.Replace(Htmlstring, @"&(copy|#169);", "\xa9", RegexOptions.IgnoreCase);
  213. // Htmlstring = Regex.Replace(Htmlstring, @"&#(\d+);", "", RegexOptions.IgnoreCase);
  214. // Htmlstring = Regex.Replace(Htmlstring, @"&hellip;", "", RegexOptions.IgnoreCase);
  215. // Htmlstring = Regex.Replace(Htmlstring, @"&mdash;", "", RegexOptions.IgnoreCase);
  216. // Htmlstring = Regex.Replace(Htmlstring, @"&ldquo;", "", RegexOptions.IgnoreCase);
  217. // Htmlstring.Replace("<", "");
  218. // Htmlstring = Regex.Replace(Htmlstring, @"&rdquo;", "", RegexOptions.IgnoreCase);
  219. // Htmlstring.Replace(">", "");
  220. // Htmlstring.Replace("\r\n", "");
  221. // Htmlstring = HttpContext.Current.Server.HtmlEncode(Htmlstring).Trim();
  222. // return Htmlstring;
  223. //}
  224. #endregion
  225. #region 格式化文本(防止SQL注入)
  226. /// <summary>
  227. /// 格式化文本(防止SQL注入)
  228. /// </summary>
  229. /// <param name="str"></param>
  230. /// <returns></returns>
  231. public static string Formatstr(string html)
  232. {
  233. System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"<script[\s\S]+</script *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  234. System.Text.RegularExpressions.Regex regex2 = new System.Text.RegularExpressions.Regex(@" href *= *[\s\S]*script *:", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  235. System.Text.RegularExpressions.Regex regex3 = new System.Text.RegularExpressions.Regex(@" on[\s\S]*=", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  236. System.Text.RegularExpressions.Regex regex4 = new System.Text.RegularExpressions.Regex(@"<iframe[\s\S]+</iframe *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  237. System.Text.RegularExpressions.Regex regex5 = new System.Text.RegularExpressions.Regex(@"<frameset[\s\S]+</frameset *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  238. System.Text.RegularExpressions.Regex regex10 = new System.Text.RegularExpressions.Regex(@"select", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  239. System.Text.RegularExpressions.Regex regex11 = new System.Text.RegularExpressions.Regex(@"update", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  240. System.Text.RegularExpressions.Regex regex12 = new System.Text.RegularExpressions.Regex(@"delete", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  241. html = regex1.Replace(html, ""); //过滤<script></script>标记
  242. html = regex2.Replace(html, ""); //过滤href=javascript: (<A>) 属性
  243. html = regex3.Replace(html, " _disibledevent="); //过滤其它控件的on...事件
  244. html = regex4.Replace(html, ""); //过滤iframe
  245. html = regex10.Replace(html, "s_elect");
  246. html = regex11.Replace(html, "u_pudate");
  247. html = regex12.Replace(html, "d_elete");
  248. html = html.Replace("'", "’");
  249. html = html.Replace("&nbsp;", " ");
  250. return html;
  251. }
  252. #endregion
  253. }
  254. }