mirror of https://github.com/CIRCL/AIL-framework
fix: [Global] extend ungzip error catching, catch invalid compressed file
parent
ead24038d9
commit
a92b81034b
|
@ -121,7 +121,7 @@ if __name__ == '__main__':
|
||||||
decoded = base64.standard_b64decode(gzip64encoded)
|
decoded = base64.standard_b64decode(gzip64encoded)
|
||||||
try:
|
try:
|
||||||
new_file_content = gunzip_bytes_obj(decoded)
|
new_file_content = gunzip_bytes_obj(decoded)
|
||||||
except OSError as e:
|
except Exception as e:
|
||||||
print('{}, {}'.format(filename, e))
|
print('{}, {}'.format(filename, e))
|
||||||
publisher.warning('Global; Invalid Gzip file: {}, {}'.format(filename, e))
|
publisher.warning('Global; Invalid Gzip file: {}, {}'.format(filename, e))
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue