Skip to content

Commit

Permalink
ignore certificate problems in tailing URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
janwilmans committed Aug 22, 2017
1 parent c837ad0 commit 4e8d421
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DebugView++/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#define VERSION 1,8,0,5
#define VERSION_STR "1.8.0.5"
#define VERSION 1,8,0,7
#define VERSION_STR "1.8.0.7"
4 changes: 2 additions & 2 deletions DebugView++/version.wxi
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<?define ProductVersion.Major="1" ?>
<?define ProductVersion.Minor="8" ?>
<?define ProductVersion.Revision="0" ?>
<?define ProductVersion.Build="5" ?>
<?define ProductVersion="1.8.0.5" ?>
<?define ProductVersion.Build="7" ?>
<?define ProductVersion="1.8.0.7" ?>
</Include>
4 changes: 4 additions & 0 deletions plugins/cs/HttpMonitor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,10 @@ static void Main(string[] args)
Console.WriteLine("URL: " + url);
Console.WriteLine("Monitoring...");

//Trust all certificates
System.Net.ServicePointManager.ServerCertificateValidationCallback =
((sender, certificate, chain, sslPolicyErrors) => true);

Log log = new Log(url);

try
Expand Down

0 comments on commit 4e8d421

Please sign in to comment.