-
Notifications
You must be signed in to change notification settings - Fork 237
Open
Description
Description:
When processing large iOS extractions (especially with many photos/videos), iLEAPP can consume excessive memory and potentially crash. This is particularly evident in media-heavy artifacts like photosMetadata.py and BeReal.py.
Technical Details:
- Memory usage grows linearly with dataset size without proper cleanup
- Large SQLite databases are loaded entirely into memory
- Media file processing doesn't use streaming/chunked processing
- No memory usage monitoring or limits
Evidence from Code:
### In photosMetadata.py and similar modules
all_rows = cursor.fetchall() ### Loads entire dataset into memoryReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels