Skip to content

Commit

Permalink
'#2095 Adds category to represent app notification messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdalla committed May 13, 2024
1 parent 4753a11 commit 35b7094
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions iped-app/resources/config/conf/CategoriesConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
{"name": "Programs and Libraries", "mimes": ["application/java-archive", "application/x-dosexec", "application/x-msdownload", "application/x-bat", "application/vnd.ms-cab-compressed", "application/x-font-ttf", "application/pkcs7-signature", "application/vnd.ms-htmlhelp", "application/java-vm", "application/vnd.ms-pki.seccat", "application/x-ms-installer", "application/x-ufed-html-apps", "application/x-ufed-installedapplication","application/aleapp-packages"],
"categories":[
{"name": "AppRoles"},
{"name": "App Notifications"},
{"name":"Installed via PlayStore", "mimes":["application/aleapp-installedapps-vending"]},
{"name":"Update information", "mimes":["application/aleapp-installedapps-gms"]},
{"name":"Google User Linked Apps", "mimes":["application/aleapp-installedapps-library"]},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,11 @@ private void processClassificationAndMappings(IItem e) {
Metadata m = e.getMetadata();
String pluginName = m.get(ALEAPP_PLUGIN);

if (pluginName.startsWith("FCMQueueMessages")) {
e.setCategory("APP Notifications");
return;
}

if (pluginName.equals("accounts_ce") || pluginName.equals("accounts_de")) {
e.setCategory("User Accounts");
return;
Expand Down

0 comments on commit 35b7094

Please sign in to comment.