Papers for

email spam filter developers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Lightweight malware screening uses app name and package name mismatch

Name2Pkg: Lightweight One-Class Android Malware Screening via Name-Package Correspondence Modeling

Abstract: Deep learning-based malware detection has been widely adopted in security-critical services. Most detection methods rely on internal features extracted from APK files or runtime behavior. However, extracting these features is computationally expensive. This limits their use in large-scale, early-stage screening. Malicious apps may exhibit weak correspondence between their user-facing app names and package names, providing a low-cost screening signal. We present Name2Pkg, a lightweight one-class classification method. It leverages only the app name and the package name. We formulate malware screening as a sequence anomaly detection problem. A character-level sequence-to-sequence model estimates the conditional likelihood of a package name given the app name. The length-normalized negative log-likelihood serves as the anomaly score. We train the model and calibrate the threshold using only benign data. Using a dataset of 67,129 real-world applications, Name2Pkg achieves an area under the receiver operating characteristic curve (ROC-AUC) of 0.982 and malware recall of 0.885 at an achieved false-positive rate of 0.044 on held-out test data. It has a 3.57 MiB checkpoint and a CPU inference latency of 28.20 ms per sample. Name2Pkg provides an efficient and effective pre-filtering signal for large-scale security systems.

Mon 21 SeptCryptography and Security
The gist
Detecting malware on Android devices often requires complex and slow analysis of the app's contents or behavior. The authors propose a simpler way by checking if the app's public name matches its package name, since malware often uses mismatched names to hide. They built a model that learns patterns from safe apps, then spots unusual name-package pairs that may signal malware. Their approach is much faster and still effective at catching malicious apps early.
Open 2609.24389v1