CRFeb 11, 2020

Hidden in Plain Sight: Obfuscated Strings Threatening Your Privacy

arXiv:2002.04540v20.1025 citationsHas Code
AI Analysis50

This addresses privacy and security risks for Android users and developers by exposing hidden threats in apps, though it is incremental as it builds on existing deobfuscation methods.

The paper tackled the problem of string obfuscation in Android apps, which can hide privacy threats, and developed StringHound, a tool that deobfuscates almost 30 times more strings than existing tools and identified vulnerabilities in 100,000 apps.

String obfuscation is an established technique used by proprietary, closed-source applications to protect intellectual property. Furthermore, it is also frequently used to hide spyware or malware in applications. In both cases, the techniques range from bit-manipulation over XOR operations to AES encryption. However, string obfuscation techniques/tools suffer from one shared weakness: They generally have to embed the necessary logic to deobfuscate strings into the app code. In this paper, we show that most of the string obfuscation techniques found in malicious and benign applications for Android can easily be broken in an automated fashion. We developed StringHound, an open-source tool that uses novel techniques that identify obfuscated strings and reconstruct the originals using slicing. We evaluated StringHound on both benign and malicious Android apps. In summary, we deobfuscate almost 30 times more obfuscated strings than other string deobfuscation tools. Additionally, we analyzed 100,000 Google Play Store apps and found multiple obfuscated strings that hide vulnerable cryptographic usages, insecure internet accesses, API keys, hard-coded passwords, and exploitation of privileges without the awareness of the developer. Furthermore, our analysis reveals that not only malware uses string obfuscation but also benign apps make extensive use of string obfuscation.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes