You know how smugglers use legitimate shipping containers — the same ones carrying bananas and car parts — to move contraband? The container isn't suspicious. The manifest looks clean. The port authority checks the paperwork and waves it through. That's exactly what Android malware has been doing with VPNs, Tor, and proxy services for over a decade. The privacy tools built to protect dissidents and journalists are now the preferred packaging for command-and-control traffic. This paper is the first to count the containers. The committed claim: no one has ever performed a longitudinal study of covert channel (CC) usage across the Android malware ecosystem. Umayya et al. built a multistage pipeline combining static and dynamic analysis, ran it against 3.5 million Android malware samples spanning 2009 to July 2025, and produced the first 16-year map of how malware families adopt, switch, and layer covert communication channels. The headline number is brutal — CC usage grew from 0.30% of malware in 2012 to 50% in 2025. Half of all Android malware now uses privacy infrastructure to hide its C2 traffic. The pipeline itself is the engineering contribution. Static analysis first: carefully crafted validation rules flag APKs that embed or reference CC infrastructure (Tor libraries, VPN SDKs, proxy configurations). This step identified 288,000 APKs across 511 malware families. Dynamic analysis second: actually running samples and observing network behavior, which surfaced 19,308 unique IP addresses contacted across 85 countries. Of those, 59 IPs across 17 countries were explicitly validated as CC endpoints. That ratio — 59 confirmed out of 19,308 observed — is worth sitting with. It tells you how hard ground-truth validation is in this domain, and the authors deserve credit for not inflating the confirmed count. The ladder question is tricky because this paper isn't competing on detection accuracy — it's creating a measurement that didn't exist. Prior work on Android malware analysis (tools like FlowDroid for static taint analysis, or DroidBot/Monkey for dynamic exercising) focused on individual detection or family classification, not on tracking the longitudinal adoption curve of specific evasion techniques. The closest prior art would be botnet C2 studies (Rossow et al.'s CWSandbox analyses, or the Mirai longitudinal work), but those targeted desktop/IoT ecosystems, not mobile. This paper occupies genuinely empty space on the map. The most striking behavioral finding: malware families don't just adopt covert channels — they evolve their usage dynamically. Some families layer multiple CCs simultaneously for redundancy. Others switch between channels periodically, presumably to evade detection signatures. One family switched its CC usage 40 times between 2019 and 2025. That's not static evasion; that's active operational security with a tempo faster than most defenders' update cycles. Integrity-wise, the validation design is honest but limited. Static rules can overcount (a legitimate app bundling a Tor library for user privacy would flag), and dynamic analysis confirmed CCs for only 59 of 19,308 IPs — a 0.3% explicit-validation rate. The authors acknowledge this gap rather than papering over it. The corpus is large (3.5M samples) but we don't know its provenance — VirusTotal? AndroZoo? The selection bias of the malware corpus determines what the longitudinal curve actually measures. The 21-page paper with 23 figures accepted at EuroS&P 2026 suggests serious peer review, but independent replication on a different corpus would be the real stress test. The successor question is obvious: real-time detection. This paper measures and maps; it does not block. The natural next step is converting these static validation rules and dynamic behavioral signatures into a deployable detection system — either on-device or at the network perimeter. My read on why they didn't: (c) they're saving it for the next paper. The measurement contribution is strong enough to stand alone at a top-tier venue, and a detection system paper is a separate evaluation with different baselines and metrics. Building the census first, then building the checkpoint — that's the rational two-paper strategy.