本帖最后由 一一一2 于 2023-10-31 08:24 编辑
很多时候使用网页 访问 对象 或者网页访问获取不到内容 可能是他的tls没有勾选
1.注册表值SecureProtocols对应的含义
注册表的路径为:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings
Key: SecureProtocols
配置选项及对应10进制几个组合为:
SSL2.0 00000008(8)
SSL3.0 00000020(32)
TLS1.0 00000080(128)
TLS1.1 00000200(512)
TLS1.2 00000800(2048)
TLS1.3 00002000(8192)
TLS1.1 TLS1.2 00000a00(2560)
SSL3.0 TLS1.0 000000a0(160) //32+128=160
SSL3.0 TLS1.0 TLS1.1 000002a0(672)
SSL3.0 TLS1.0 TLS1.2 000008a0(2208)
SSL3.0 TLS1.0 TLS1.1 TLS1.2 00000aa0(2720)
SSL2.0 SSL3.0 TLS1.0 TLS1.1 TLS1.2 00000aa8(2728)
2.批处理修正IE SSL协议,下面的自己保存为bat来双击运行就可以了,其中下面的2720就是数值相加得来,想勾选其他的,可以自己相加,(易语言可以调用 写注册项命令来修改)
REG ADD “HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” /v SecureProtocols /t REG_DWORD /d 2720 /f
3:下面是c#代码
[C#] 纯文本查看 复制代码
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace 勾选tls
{
class Program
{
static void Main(string[] args)
{
//配置选项及对应10进制几个组合为:
//SSL2.0 00000008(8)
//SSL3.0 00000020(32)
//TLS1.0 00000080(128)
//TLS1.1 00000200(512)
//TLS1.2 00000800(2048)
//TLS1.3 00002000(8192)
//TLS1.1 TLS1.2 00000a00(2560)
//SSL3.0 TLS1.0 000000a0(160) //32+128=160
//SSL3.0 TLS1.0 TLS1.1 000002a0(672)
//SSL3.0 TLS1.0 TLS1.2 000008a0(2208)
//SSL3.0 TLS1.0 TLS1.1 TLS1.2 00000aa0(2720)
//SSL2.0 SSL3.0 TLS1.0 TLS1.1 TLS1.2 00000aa8(2728)
Console.WriteLine(“温馨提示:务必请以,右键管理员身份运行,否则不会成功”);
Console.WriteLine(“如果你是右键管理员运行,请忽略本提示!”);
Console.WriteLine(“本程序是勾选SSL3.0 TLS1.0 TLS1.1 TLS1.2″);
// The name of the key must include a valid root.
const string userRoot = @”HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings”;
const string subkey = “SecureProtocols”;
//get the registry value.
string result = (Registry.GetValue(userRoot, subkey, “Return this default if NoSuchName does not exist”)).ToString();
Console.WriteLine(result);
//Enable TLS 1.0 and TLS 1.2
Registry.SetValue(userRoot, subkey, 2720);
Console.WriteLine(“执行完成”);
Console.ReadKey();
}
}
}
来源:https://blog.csdn.net/dong123ohyes/article/details/127983040
|