We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e0501 commit e1af093Copy full SHA for e1af093
python/ql/test/experimental/query-tests/Security/CWE-409/test.py
@@ -49,6 +49,11 @@ async def bomb(file_path):
49
gzip.open(file_path) # $ result=BAD
50
gzip.GzipFile(file_path) # $ result=BAD
51
52
+ from compression import zstd
53
+
54
+ zstd.open(file_path) # $ result=BAD
55
+ zstd.ZstdFile(file_path).read() # $ result=BAD
56
57
import pandas
58
59
pandas.read_csv(filepath_or_buffer=file_path) # $ result=BAD
0 commit comments