File tree Expand file tree Collapse file tree 1 file changed +28
-4
lines changed Expand file tree Collapse file tree 1 file changed +28
-4
lines changed Original file line number Diff line number Diff line change 11---
2- GzipHeaderFields :
2+ GzipHeaderMtime :
33 issue :
4- code : GZIP_HEADER_DATA
4+ code : GZIP_HEADER_MTIME
55 message : |
6- The gzip header contains a non-zero timestamp or a non-empty filename and/or comment field .
7- These may leak sensitive information or indicate a non-reproducible conversion process.
6+ The gzip header contains a non-zero timestamp.
7+ This may leak sensitive information or indicate a non-reproducible conversion process.
88 level : warning
99 selectors :
1010 - match(extension, ".gz$")
1111 - gzip != null
1212 checks :
1313 - gzip.timestamp == 0
14+
15+ GzipHeaderFilename :
16+ issue :
17+ code : GZIP_HEADER_FILENAME
18+ message : |
19+ The gzip header contains a non-empty filename.
20+ This may leak sensitive information or indicate a non-reproducible conversion process.
21+ level : warning
22+ selectors :
23+ - match(extension, ".gz$")
24+ - gzip.filename
25+ checks :
1426 - gzip.filename == ""
27+
28+ GzipHeaderComment :
29+ issue :
30+ code : GZIP_HEADER_COMMENT
31+ message : |
32+ The gzip header contains a non-empty comment field.
33+ This may leak sensitive information or indicate a non-reproducible conversion process.
34+ level : warning
35+ selectors :
36+ - match(extension, ".gz$")
37+ - gzip.comment
38+ checks :
1539 - gzip.comment == ""
1640
1741CheckAge89 :
You can’t perform that action at this time.
0 commit comments