Skip to content

Commit f7c47b6

Browse files
Update python/ql/src/experimental/Security/CWE-327/Azure/UnsafeUsageOfClientSideEncryptionVersion.py
Co-authored-by: Taus <tausbn@github.com>
1 parent 0dbb03f commit f7c47b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/src/experimental/Security/CWE-327/Azure/UnsafeUsageOfClientSideEncryptionVersion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
blob_client.key_encryption_key = kek
44
# GOOD: Must use `encryption_version` set to `2.0`
55
blob_client.encryption_version = '2.0' # Use Version 2.0!
6-
with open(decryptedcontentfile.txt”, “rb) as stream:
6+
with open("decryptedcontentfile.txt", "rb") as stream:
77
blob_client.upload_blob(stream, overwrite=OVERWRITE_EXISTING)

0 commit comments

Comments
 (0)