mirror of
https://github.com/ail-project/ail-framework.git
synced 2025-01-18 16:36:13 +00:00
fix: [exifs module] Mp4 UnidentifiedImageError
This commit is contained in:
parent
f4584f7e98
commit
6f964d7f8b
1 changed files with 20 additions and 17 deletions
|
@ -12,7 +12,7 @@ The Exif Module
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from PIL import Image, ExifTags
|
from PIL import Image, ExifTags, UnidentifiedImageError
|
||||||
|
|
||||||
sys.path.append(os.environ['AIL_BIN'])
|
sys.path.append(os.environ['AIL_BIN'])
|
||||||
##################################
|
##################################
|
||||||
|
@ -38,6 +38,7 @@ class Exif(AbstractModule):
|
||||||
def compute(self, message):
|
def compute(self, message):
|
||||||
image = self.get_obj()
|
image = self.get_obj()
|
||||||
print(image)
|
print(image)
|
||||||
|
try:
|
||||||
img = Image.open(image.get_filepath())
|
img = Image.open(image.get_filepath())
|
||||||
img_exif = img.getexif()
|
img_exif = img.getexif()
|
||||||
print(img_exif)
|
print(img_exif)
|
||||||
|
@ -54,6 +55,8 @@ class Exif(AbstractModule):
|
||||||
print(f'{key}:{val}')
|
print(f'{key}:{val}')
|
||||||
self.logger.critical(f'{key}:{val}')
|
self.logger.critical(f'{key}:{val}')
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
except UnidentifiedImageError:
|
||||||
|
self.logger.info(f'Invalid image: {image.get_filepath()}')
|
||||||
|
|
||||||
# tag = 'infoleak:automatic-detection="cve"'
|
# tag = 'infoleak:automatic-detection="cve"'
|
||||||
# Send to Tags Queue
|
# Send to Tags Queue
|
||||||
|
|
Loading…
Add table
Reference in a new issue