Overview
This report focuses on the CVE-2025-32323 vulnerability found in the getCallingAppName function of Shared.java. This vulnerability allows malicious actors to deceive users into granting file access by manipulating the text in a permission popup. This could lead to local escalation of privilege, potentially compromising the system and leading to data leakage. As no additional execution privileges are needed and user interaction isn’t required for exploitation, this vulnerability poses a substantial threat to any systems utilizing affected versions of this file.
Vulnerability Summary
CVE ID: CVE-2025-32323
Severity: High (7.8)
Attack Vector: Local
Privileges Required: None
User Interaction: None
Impact: System compromise and potential data leakage
Affected Products
Escape the Surveillance Era
Most apps won’t tell you the truth.
They’re part of the problem.
Phone numbers. Emails. Profiles. Logs.
It’s all fuel for surveillance.
Ameeba Chat gives you a way out.
- • No phone number
- • No email
- • No personal info
- • Anonymous aliases
- • End-to-end encrypted
Chat without a trace.
Product | Affected Versions
Shared.java | All versions prior to patch update
How the Exploit Works
The exploit works by manipulating the text presented in a permission popup. The vulnerability stems from improper input validation in the getCallingAppName function of Shared.java. An attacker can craft deceptive text that can trick a user into granting file access, thus leading to a local privilege escalation. This escalation can potentially compromise the system and leak sensitive data.
Conceptual Example Code
A conceptual exploit might involve injecting malicious code into the permission popup. However, actual exploit code cannot be provided to prevent misuse. Here is a simplified example of a deceptive text payload:
String maliciousPayload = "Your system requires an update. Grant access to proceed";
PopupWindow popup = new PopupWindow();
popup.setTitle("System Update Required");
popup.setMessage(maliciousPayload);
popup.show();
In this example, the malicious payload is a deceptive message that tricks the user into believing that a system update is required and prompts them to grant file access.
Mitigation Guidance
To mitigate this vulnerability, users should apply the vendor-provided patch as soon as it becomes available. In the meantime, implementing a Web Application Firewall (WAF) or Intrusion Detection System (IDS) can provide temporary mitigation. These solutions can help detect and prevent attempted exploits of this vulnerability.

