From 5c12a5524bf3e7e83551ebc8a72ec287366efcb3 Mon Sep 17 00:00:00 2001 From: Alexander Neff Date: Sun, 23 Apr 2023 14:12:01 +0200 Subject: [PATCH] Creds from db now not owned per default - logic flaw --- cme/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cme/connection.py b/cme/connection.py index a55c7da5..0cc81917 100755 --- a/cme/connection.py +++ b/cme/connection.py @@ -212,7 +212,7 @@ class connection(object): c_id, domain_single, username_single, secret_single, cred_type_single, pillaged_from = cred domain.append(domain_single) username.append(username_single) - owned.append(True) # We assume that credentials stored in the db are valid + owned.append(False) # As these are likely valid we still want to test them if they are specified in the command line secret.append(secret_single) cred_type.append(cred_type_single)