Skip to content

Commit a4789df

Browse files
Naming and SSL assert update
1 parent 291139e commit a4789df

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Console/KeyAuth.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ private static string req(NameValueCollection post_data)
996996

997997
private static bool assertSSL(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
998998
{
999-
if ((!certificate.Issuer.Contains("Cloudflare Inc") && !certificate.Issuer.Contains("Google Trust Services") && !certificate.Issuer.Contains("Let's Encrypt")) || sslPolicyErrors != SslPolicyErrors.None)
999+
if ((!certificate.Issuer.Contains("Google Trust Services") && !certificate.Issuer.Contains("Let's Encrypt")) || sslPolicyErrors != SslPolicyErrors.None)
10001000
{
10011001
error("SSL assertion fail, make sure you're not debugging Network. Disable internet firewall on router if possible. & echo: & echo If not, ask the developer of the program to use custom domains to fix this.");
10021002
LogEvent("SSL assertion fail, make sure you're not debugging Network. Disable internet firewall on router if possible. If not, ask the developer of the program to use custom domains to fix this.");

Console/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyTitle("Loader")]
1010
[assembly: AssemblyDescription("KeyAuth Loader Example")]
1111
[assembly: AssemblyConfiguration("retail")]
12-
[assembly: AssemblyCompany("Nelson Cybersecurity LLC")]
12+
[assembly: AssemblyCompany("KeyAuth LLC")]
1313
[assembly: AssemblyProduct("Loader")]
1414
[assembly: AssemblyCopyright("Copyright © KeyAuth.cc")]
1515
[assembly: AssemblyTrademark("KeyAuth")]

Form/KeyAuth.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,7 @@ private static string req(NameValueCollection post_data)
997997

998998
private static bool assertSSL(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
999999
{
1000-
if ((!certificate.Issuer.Contains("Cloudflare Inc") && !certificate.Issuer.Contains("Google Trust Services") && !certificate.Issuer.Contains("Let's Encrypt")) || sslPolicyErrors != SslPolicyErrors.None)
1000+
if ((!certificate.Issuer.Contains("Google Trust Services") && !certificate.Issuer.Contains("Let's Encrypt")) || sslPolicyErrors != SslPolicyErrors.None)
10011001
{
10021002
error("SSL assertion fail, make sure you're not debugging Network. Disable internet firewall on router if possible. & echo: & echo If not, ask the developer of the program to use custom domains to fix this.");
10031003
LogEvent("SSL assertion fail, make sure you're not debugging Network. Disable internet firewall on router if possible. If not, ask the developer of the program to use custom domains to fix this.");

Form/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyTitle("Loader")]
1010
[assembly: AssemblyDescription("KeyAuth Loader Winform Example")]
1111
[assembly: AssemblyConfiguration("retail")]
12-
[assembly: AssemblyCompany("Nelson Cybersecurity LLC")]
12+
[assembly: AssemblyCompany("KeyAuth LLC")]
1313
[assembly: AssemblyProduct("Loader")]
1414
[assembly: AssemblyCopyright("Copyright © KeyAuth.cc")]
1515
[assembly: AssemblyTrademark("")]

0 commit comments

Comments
 (0)