From 5cb4c916ae988b230672a1427511a5a773c9fca3 Mon Sep 17 00:00:00 2001 From: SOOS-JAlvarez Date: Thu, 2 Mar 2023 15:22:58 -0300 Subject: [PATCH] obfuscation oauth fix --- VERSION.txt | 2 +- main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index c787b21..154b9fc 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -1.0.22 +1.0.23 diff --git a/main.py b/main.py index 9a155de..8528b74 100644 --- a/main.py +++ b/main.py @@ -460,7 +460,7 @@ def __make_soos_start_analysis_request__(self, command: str) -> DASTStartAnalysi if self.auth_username is not None: obfuscated_command = obfuscated_command.replace(self.auth_username, "********") if self.oauth_token_url is not None: - obfuscated_command = obfuscated_command.replace + obfuscated_command = obfuscated_command.replace(self.oauth_token_url, "********") param_values: dict = dict( projectName=self.project_name,