Skip to content
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions plaso/data/formatters/generic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,26 @@ short_source: 'JAVA_IDX'
source: 'Java Cache IDX'
---
type: 'conditional'
data_type: 'jpeg:exif'
message:
- 'Width: {image_width}'
- 'Height: {image_height}'
- 'Manufacturer: {manufacturer}'
- 'Model: {model}'
- 'Serial number: {body_serial_number}'
- 'Software: {software}'
- 'Latitude: {latitude}'
- 'Longitude: {longitude}'
short_message:
- 'Width: {image_width}'
- 'Height: {image_height}'
- 'Manufacturer: {manufacturer}'
- 'Model: {model}'
- 'Software: {software}'
short_source: 'JPEG_EXIF'
source: 'JPEG EXIF Metadata'
---
type: 'conditional'
data_type: 'kodi:videos:viewing'
message:
- 'Video: {filename}'
Expand Down
6 changes: 6 additions & 0 deletions plaso/data/timeliner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,12 @@ attribute_mappings:
description: 'Content Modification Time'
place_holder_event: true
---
data_type: 'jpeg:exif'
attribute_mappings:
- name: 'exif_datetime'
description: 'EXIF datetime'
place_holder_event: true
---
data_type: 'kodi:videos:viewing'
attribute_mappings:
- name: 'last_played_time'
Expand Down
1 change: 1 addition & 0 deletions plaso/parsers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from plaso.parsers import fseventsd
from plaso.parsers import ios_discord
from plaso.parsers import java_idx
from plaso.parsers import jpeg_exif
from plaso.parsers import jsonl_parser
from plaso.parsers import locate
from plaso.parsers import macos_keychain
Expand Down
Loading
Loading