Skip to content

Commit

Permalink
Merge pull request #2 from sublime-security/cd.exif-all
Browse files Browse the repository at this point in the history
Return all ExifTool tags, aka ignore input
  • Loading branch information
cameron-dunn-sublime authored Oct 27, 2021
2 parents 3abbf1d + 895d514 commit c6b7dff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/python/strelka/scanners/scan_exiftool.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ def scan(self, data, file, options, expire_at):

self.event['keys'] = []
for k, v in exiftool_dictionary.items():
if keys and k not in keys:
continue
# Include all, at least to start and see what's available.
# if keys and k not in keys:
# continue

if isinstance(v, str):
v = v.strip()
Expand Down

0 comments on commit c6b7dff

Please sign in to comment.