Skip to content

Commit

Permalink
Merge pull request #26 from Keyfactor/release-2.2
Browse files Browse the repository at this point in the history
Merge 2.2.1 to main
  • Loading branch information
fiddlermikey authored Jul 25, 2024
2 parents 303acbe + 9d21b2c commit ee5e648
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.2.1
* Fixed URL Encoding on Palo Username and Pwd that caused invalid credentials error

2.2.0
* Removed support for binding cert to new binding location, can only update certs that are previously bound
* Support for replacing certs on all binding locations both Panorama and Firewalls as long as it was there before
Expand Down
4 changes: 2 additions & 2 deletions PaloAlto/Client/PaloAltoClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public class PaloAltoClient
public PaloAltoClient(string url, string userName, string password)
{
_logger = LogHandler.GetClassLogger<PaloAltoClient>();
ServerUserName = userName;
ServerPassword = password;
ServerUserName = Uri.EscapeDataString(userName);
ServerPassword = Uri.EscapeDataString(password);
var httpClientHandler = new HttpClientHandler
{
ServerCertificateCustomValidationCallback = (message, cert, chain, sslPolicyErrors) => true
Expand Down

0 comments on commit ee5e648

Please sign in to comment.