Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

c# webclient ssl bypass

try
{
     ServicePointManager.Expect100Continue = true;                
     ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

     ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };

     var webClient = new WebClient();

     var s = webClient.DownloadString("https://jtlplugins.x-volution.de/api.php?apikey=yS5VS7OiG1ukiIqLzCSYuFCjeF1qSskKOQeCtVxh&do=pruefe_app&cappid=123&chardwareid=DC0D-BFEA-6F79-58DE-21E9-BA3A-B288-C46F&clizenzschluessel=123");

     MessageBox.Show("Result" + s);
}
catch(Exception ex)
{ 
  MessageBox.Show(ex.Message); 
}
Comment

PREVIOUS NEXT
Code Example
Csharp :: what is string args in c# 
Csharp :: C# Project File Create 
Csharp :: how to textbox anywhere on chart in c# 
Csharp :: photon2 what is a stream 
Csharp :: Smooth Sentences c# 
Csharp :: regex ip rage detect c# 
Csharp :: c# xamarin forms use AssetManager to get text file 
Csharp :: 2d look at unity 
Csharp :: c# string split by length 
Csharp :: c# online code editor 
Csharp :: c# string contain double quote 
Csharp :: get sites ip in C# 
Csharp :: app rating within game in unity 
Csharp :: how to delete file in c# 
Csharp :: c# second last element 
Csharp :: run as administrator vs 2019 
Csharp :: how to make the player look around in unity 3d 
Csharp :: Responsive Bootstrap 4 Admin Dashboard icon cdn 
Csharp :: c# codebehind Append div 
Html :: html euro symbol 
Html :: enter key vue 
Html :: bootstrap 4 cdn 
Html :: href email in html 
Html :: link email anchor to open up users email address 
Html :: where to use .target command in html 
Html :: js import web3 cdn 
Html :: how to link to an email in html 
Html :: justify content 
Html :: open new tab html 
Html :: language list select html 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =