Creds from db now not owned per default - logic flaw

This commit is contained in:
Alexander Neff
2023-04-23 14:12:01 +02:00
parent 05f7e244cb
commit 5c12a5524b
+1 -1
View File
@@ -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)