Skip to content

Commit

Permalink
'#2095 includes all zip files as potential dump to check, as Graykey
Browse files Browse the repository at this point in the history
creates the dump as zip file.
  • Loading branch information
patrickdalla committed Jul 2, 2024
1 parent eeeac5f commit 3497efd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,8 @@ public void process(IItem evidence) throws Exception {
// first rule to check a supposed android Dump folder or android backup
if (dumpStartFolderNames.contains(realName)
|| AndroidBackupParser.SUPPORTED_TYPES.contains(evidence.getMediaType())
|| (realExt != null && realExt.toLowerCase().equals("ufdr"))) {
|| (realExt != null && realExt.toLowerCase().equals("ufdr"))
|| (realExt != null && realExt.toLowerCase().equals("zip"))) {
// if true, creates a subitem to represent the ALeapp report
Item subItem = (Item) evidence.createChildItem();
ParentInfo parentInfo = new ParentInfo(evidence);
Expand Down

0 comments on commit 3497efd

Please sign in to comment.