Imagine you're sorting mail into labeled bins, and you decide to add color-coded stickers based on neighborhood clusters on each envelope. The stickers help you sort known addresses faster — but when a letter arrives from a zip code you've never seen, the stickers don't help you recognize it as foreign. That's the core finding here: community-level graph summaries improve classification geometry for known malware families but do not create a reliable "this is unknown" signal. The committed claim is a negative one, and that's what makes this paper worth reading. The authors ask whether Louvain-community summaries of function call graphs (FCGs) add useful open-set rejection information on top of a Graph Isomorphism Network (GIN) embedding. The answer, tested across five held-out malware families with three optimization seeds, is no. Community features do not produce stable held-out-family rejection. Ranking effects reverse across families, the false-positive rate at 95% unknown recall worsens for every held-out family, and a validation-fitted threshold rejects only 4.48% of unknown samples. The methodology is notably disciplined for a 6-page paper. The FCG-MFD corpus is deduplicated and conflict-audited — meaning the authors took care to remove near-duplicate samples and samples with conflicting family labels, two common sources of inflated results in malware research. Community features are residualized against generic topology (graph density, degree stats) using known-family training data before nearest-prototype scoring. This is the "matched topology control" the paper advocates: if you're going to claim community structure adds signal, you need to prove it isn't just proxying for graph size. Here, the score remains associated with graph scale even after residualization. The statistical honesty is refreshing. Accepted-known macro F1 improves in every family — but with only five independent family units, the exact two-sided sign-flip p-value is 0.0625, the smallest attainable value, and the authors say so plainly rather than claiming significance. This is the kind of statistical transparency that most ML security papers lack entirely. They could have tested more families and might have reached significance, but they chose a clean held-out design over a larger but messier one. The ladder comparison is internal but informative: simple classifier uncertainty (entropy or max-softmax from the GIN alone) outperforms community-enriched prototypes on ranking, high-recall rejection, and OSCR (Open-Set Classification Rate). The baseline wins. The paper does not compare against external SOTA open-set malware detectors (OpenMax, ARPL, etc.), which limits its generality — but the core lesson holds for anyone building prototype-based open-set systems on graph data. The architectural takeaway is specific and useful: in a GIN/FCG-MFD setting, nearest-prototype scoring with community-enriched embeddings changes known-class geometry without creating a stable unknown margin. The community features shift where known clusters sit but don't push unknown samples further away. This is a structural insight about the information content of community detection on FCGs — not just a methods failure. The paper's practical recommendation is the most transferable piece: graph open-set evaluations should pair structural features with matched topology controls, operational thresholds, and held-out-family analysis. If you're building open-set malware detection and thinking about bolting on community features, this paper just saved you the experiment.