Papers for

information security teams

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.

Efficient heuristic improves defense of computer networks from stealthy hackers

Tractable Defense against Advanced Persistent Threats in Networked Settings

Abstract: Recently, the theory of Boolean Dynamical Systems was proposed to study the decision theory surrounding the defense of computer networks against Advanced Persistent Threats (APTs). Boolean Dynamical Systems naturally capture four first principle primitives of APTs: the stealthy nature of attacks, limited and noisy information from automated systems like intrusion detection systems, lateral movement after the attacker penetrates into the network, and the defender's ability to secure a subset of computers at any time at the loss of resources such as system uptime. Currently, doing optimal/heuristic control in a computationally tractable manner is not possible because the emergent value function is computationally intractable (with respect to the network size). To resolve this, we propose a mean-field analysis inspired heuristic value function. We prove that our proposed heuristic is based on an exact computation of the value function under the assumption that the underlying state estimate distribution maximizes entropy. We numerically evaluate the quality of our heuristic as parameterized by the degree to which the entropy assumptions are violated.

Mon 14 SeptCryptography and Security
The gist
Stopping sneaky hackers who quietly move through computer networks is very hard because defenders have limited information and resources. The authors study this problem using a mathematical model called Boolean Dynamical Systems that captures key challenges in these attacks. They create a new, simpler method to help defenders decide which computers to protect, making the problem easier to solve even for large networks. Their method is based on an assumption about the uncertainty of the system state, and they show it works well when this assumption roughly holds.
Open 2609.15614v1

Glyph uses multiple AI agents to tag and describe enterprise data columns

Glyph: A Multi-Strategy Agentic System for Column Description and Sensitivity-Ontology Tagging of Enterprise Data Catalogs

Abstract: Enterprise data lakes accumulate tables faster than human stewards can document or classify them, leaving columns with missing descriptions and unassigned governance labels. This documentation debt undermines data discovery, access control, and regulatory compliance. We present Glyph, a production system that frames two coupled problems, column description generation and column type annotation for data classification, as cooperating LLM agents orchestrated as stateful graphs. The Descriptor grounds generation in the pipeline source code that produces each column, retrieved on demand from an enterprise GitHub via a reasoning--acting tool loop (active Retrieval-Augmented Generation). The Tagger assigns labels from a governed 275-leaf Data Classification Ontology by running three complementary strategies in parallel (a description tagger, a line-of-business regex tagger, and a metadata tagger backed by a fine-tuned contrastive encoder over a vector database), then fuses their ranked outputs with Reciprocal Rank Fusion (RRF). We fine-tune a 6-layer MiniLM metadata encoder with an in-batch contrastive objective, lifting same-tag retrieval on an in-distribution held-out split from NDCG@10 0.55 to 0.92 (MAP@100 $0.19 \rightarrow 0.90$) relative to the stock base encoder. We report end-to-end multi-label tagging quality under a recall-weighted F2 objective across three evaluation groups, an ablation isolating each strategy and the RRF fusion, and the engineering decisions that distinguish Glyph from prior column-type-annotation work and from commercial value/regex sensitivity scanners: value-free and code-grounded design, per-tag provenance, and graceful degradation. Together these make multi-agent LLM cataloging auditable and operable as a production service.

Wed 9 SeptMultiagent SystemsInformation Retrieval
The gist
Big companies collect huge amounts of data with many columns in tables, but keeping track of what each column means and how to classify it is hard and slow. The authors created Glyph, a system that uses several AI programs working together to describe and label these columns automatically. One AI reads the code that creates the data to write descriptions, while others label columns using patterns, metadata, and a classification guide. Glyph combines these methods, improving accuracy and making the process traceable and reliable.
Open 2609.10430v1