公开论文雷达

公开 arXiv 研究简报 · 2026-08-07T00:49:28.695977+00:00

先看结论和关键数字,再决定要不要读原文。候选只在首次出现时展示;旧候选若后来通过深读门槛,仍会进入重点。

同样动'喂什么'这一步:一个做减法,一个做加法

两张卡都在处理'进入模型或记忆的那一步该保留什么'。密钥检测发现只留字符串字面量、扔掉变量名,输入缩到1/3反而更准(98.74% F1);记忆授权那篇发现整合时扔掉来源权限,会让外部文档冒充用户指令,49种配置里48个崩塌。前者靠减法提鲁棒,后者提醒你减错了东西就是安全漏洞。

推荐阅读顺序

  1. 2608.04523:先看简单的一篇:把输入砍到1/3反而更准,直观体会'输入取舍才是杠杆'这个共同点。
  2. 2608.01679:再看这篇高风险的:同样是取舍输入,扔掉来源权限却成了授权漏洞,正好是反面案例。
共性方法
两篇的杠杆都不在模型架构,而在'哪些信息进入下游'这一步:都不改模型,只调上下文或记忆的写入内容,就拿到大幅改善,并都用对照实验把效果量化(一个98.74% F1,一个未授权率16.9%→0.0%)。
关键分歧
方向正好相反:密钥检测做减法——删掉可混淆的变量名和语法,只留字符串字面量,越精简越稳;记忆授权做加法——补回被整合步骤丢掉的来源权限元数据。一个证明删对了能提准,一个证明删错了会开安全后门。
选择准则
维护密钥或代码安全扫描,先读04523,照着把上下文提取限成字符串字面量;跑带持久化记忆的代理,先读01679,立刻给记忆加来源权限并在执行前校验。两者都别拿完整输入直接喂模型。

重点深读(2 / 2 篇)

形式化与程序验证(0 篇)

本轮没有通过深读证据门的重点论文。

软件工程与仓库智能(1 篇)

软件工程与仓库智能 4/30

Checked-In Secret Detection: Strings Are All You Need

检测代码里的硬编码密钥,只看字符串字面量就够了:如果你在维护密钥扫描工具,这条结论能直接省掉麻烦:不用再喂整段代码给模型,只保留密钥周围的字符串字面量,输入缩到原来的1/3,准确率反而更高。基于这个思路的Secretron在SecretBench上拿到98.74% F1,超过所有LLM基线,还在26个真实应用里挖出48个没人知道的密钥。

两句看懂

现有上下文感知模型把整段代码喂进去,模型因此对可混淆的变量名和语法结构产生依赖,跨语言场景也因训练数据分布不均而退化;StringGroup只提取字符串字面量,把上下文压到原长33.2%。Secretron用这个上下文在SecretBench上达到98.74% F1,混淆和跨语言场景优于LLM基线,并在26个应用中检出48个未知密钥。

核心判断

字符串字面量是代码密钥检测的充分上下文:StringGroup把上下文压到原长33.2%并保留逾80%语义信息,Secretron据此在SecretBench上达到98.74% F1,超过LLM-based基线。

关键要点

1. 旧做法把完整代码片段送进模型,模型对变量名和函数名产生虚假依赖:混淆重命名后性能骤降,主流语言之外泛化退化,冗长上下文还拖慢推理。 2. StringGroup只保留字符串字面量节点,上下文压到原长33.2%且保留逾80%语义信息;Secretron用Transformer分类器在SecretBench的标准、混淆、跨语言三场景设对照组与LLM基线比较。 3. 标准场景F1=98.74%超过全部LLM基线,混淆和跨语言场景更稳,并在26个真实应用检出48个未知密钥;工程上应把上下文提取限定为字符串字面量,但混淆与跨语言场景的具体F1未披露。

证据与结果

数据集是SecretBench,含开源项目的硬编码密钥正样本和非密钥负样本,规模未披露。三类场景:标准场景F1=98.74%,优于LLM-based基线;混淆对抗场景下变量名被重命名后,现有上下文感知模型性能下滑而Secretron保持鲁棒;跨语言场景下LLM基线泛化退化而Secretron更优。后两个场景的具体F1未提供,改善幅度无法量化。实际部署26个应用,检出48个未知密钥。

打开论文原文
它要解决什么
只用字符串字面量做上下文,能不能一次解决密钥检测的三个老毛病:怕混淆、跨语言退化、上下文噪声大?
研究路径
StringGroup对源代码做字符串字面量提取:在候选密钥周围定位所有字符串节点,过滤变量名、关键字、注释等可混淆元素,拼接成压缩上下文(原长的33.2%)。压缩后的序列送入预训练Transformer编码器,输出二分类概率判断是否为真实硬编码密钥。字符串字面量本身与语言无关,所以同一条管线可以直接覆盖多种语言。
这对工程意味着什么
第一步:把现有检测管线的上下文模块换成只提取字符串字面量。要避开的捷径:不要直接拿完整代码片段去微调LLM,模型会对变量名形成虚假相关,混淆之后性能骤降。
证据定位
标准场景下Secretron的F1为98.74%,超过所有LLM-based基线。混淆和跨语言场景下它比现有上下文感知方法更稳,但这两个场景的具体F1数值没有披露。实际部署在26个应用中检出48个此前未知的密钥。(筛选维度:可复核评测)
适用边界
摘录未给出混淆和跨语言场景的具体F1数值,鲁棒性改善幅度无法量化;SecretBench的规模和类别分布未披露;实际部署只覆盖26个应用;对周围没有字符串字面量的密钥场景,该策略的覆盖情况未讨论。
方法与英文摘要

StringGroup算法扫描候选密钥周围的代码,只保留字符串字面量节点,丢掉变量名、关键字和语法结构这些容易被混淆的东西,上下文被压缩到原长的33.2%。压缩后的序列送进一个Transformer二分类器(Secretron)。评测用SecretBench数据集,分标准、混淆对抗、跨语言三种场景,和正则及LLM-based基线比F1。最后还部署到26个真实应用里验证。

Hardcoded secrets in source code pose critical security vulnerabilities which can be easily exploited by malicious adversaries. Existing regex-based detection approaches suffer from fundamental limitations, as secrets often lack identifiable patterns, resulting in poor precision and recall. Recent studies have explored context-aware detection methods, as surrounding code can reveal the purpose of candidate strings. However, these methods confront three key challenges: (1) obfuscation robustness where models over-rely on easily obfuscated identifiers, (2) cross-language generalization difficulties due to uneven training data distribution, and (3) lengthy and noisy context that introduces excessive irrelevant tokens and slows inference. We observe that strings serve as a critical information source for code semantics, offering superior contextual density, obfuscation robustness, and language independence. Based on this insight, we propose StringGroup, a novel context extraction algorithm that mines strings surrounding potential secrets. By introducing a relatively simple modification to existing patterns that narrows the analysis specifically to string literals, the method achieves significant gains. With only 33.2% of the original context, it preserves over 80% of semantic information and significantly improves the signal-to-noise ratio for secret detection. We further design a context-aware secret detection tool, Secretron, based on StringGroup methods and Transformer model. Evaluation on the SecretBench dataset demonstrates high accuracy with 98.74% F1-score and strong robustness under obfuscation and cross-language scenarios, outperforming state-of-the-art LLM-based baselines. We deploy our tool in real-world environments and successfully detect 48 previously unknown secret keys from 26 applications, demonstrating the practical effectiveness of our approach.

代码质量与优化(0 篇)

本轮没有通过深读证据门的重点论文。

UI 与 GUI Agent(0 篇)

本轮没有通过深读证据门的重点论文。

个人知识与本体(1 篇)

个人知识与本体 4/30

When Memory Becomes Authority: Benchmarking Authority Collapse at the Memory Consolidation Boundary

持久化记忆丢掉来源权限,外部文档可冒充用户指令执行高权限操作:如果你的LLM代理用了持久化记忆,这条结论直接关系线上安全:记忆整合只保留声明内容、丢掉来源权限,外部文档的声明会被当成用户指令执行,构成系统性授权漏洞。AuthMem-Bench在49种配置中验证,48种出现权限崩塌;写入时自动打上权限标签后,未授权操作率从16.9%降到0.0%。

两句看懂

现有LLM记忆整合系统只保存声明内容、不记录来源权限,外部文档声明整合后和用户自述等价,可以触发同等权限的操作;论文提出在整合阶段自动预测来源权限类别并以元数据持久化。在7整合器×7骨干共49种配置上验证,48种出现权限崩塌,加权限标签后未授权操作率从16.9%降到0.0%,正常任务成功率维持不变(39.7%→40.0%)。

核心判断

记忆整合在保留声明内容的同时擦除来源权限,使非授权来源声明可触发高权限操作;自动预测并持久化权限标签可将未授权操作率从16.9%降至0.0%,正常任务成功率不受影响。

关键要点

1. 旧假设认为声明文本足以决定记忆可用性,忽略来源权限;用户自述、工具验证、外部文档整合后产生文本相同的记忆条目,操作模型无法区分,非授权来源也能触发同等下游动作。2. AuthMem-Bench用H+/H-配对样本固定声明和任务、只改来源权限,在7整合器×7骨干共49种配置上测三层指标:写入时崩塌率、行动层未授权率、端到端自动标签效果;配对设计让整合器和骨干的效果可以分开看。3. 结果是48/49配置写入时即崩塌,无元数据时未授权操作率均值50.3%,自动权限标签把未授权操作率从16.9%降到0.0%且正常成功率39.7%→40.0%;工程上必须在记忆写入时持久化权限元数据并在执行前校验。

证据与结果

AuthMem-Bench构造配对样本,每对固定核心声明与下游任务,只改变来源权限(用户自述H+对外部文档H-)。评估7种整合器×7种骨干共49种配置,分三层:(1) 写入时崩塌率:48/49出现崩塌,唯一例外是该配置对非授权历史不写入含核心声明的记忆;(2) 行动层:无元数据时7种操作模型未授权操作率均值50.3%;(3) 端到端:自动权限标签把未授权操作率从16.9%降到0.0%,正常任务成功率39.7%→40.0%

打开论文原文
它要解决什么
LLM代理的记忆整合步骤会不会丢失来源权限约束,让非授权来源的声明在下游获得和用户指令同等的操作权限?
研究路径
整合器把带角色标记的对话历史转成持久化记忆条目时,只保留声明文本,丢掉来源权限约束。H+和H-两种来源产生文本相同的记忆,操作模型分不出来,H-就能触发和H+等价的下游动作。修复方法是在写入阶段自动给每条记忆分类来源权限并附加元数据,执行阶段按元数据拦截低权限来源触发的高权限操作。
这对工程意味着什么
第一步:给记忆整合层加来源权限元数据,并在操作执行前校验。要避免的捷径:别以为内容无害的记忆自然不会越权执行——内容可信和来源授权是两个独立维度,绕过后者,即使声明为真也会留下授权漏洞。
证据定位
49种配置中48种出现写入时权限崩塌,唯一例外是该配置对非授权历史干脆不写入含核心声明的记忆。无权限元数据时,7种操作模型未授权操作率均值50.3%。自动权限标签把端到端未授权操作率从16.9%降到0.0%,正常任务成功率几乎不变(39.7%40.0%)。(筛选维度:可复核评测)
适用边界
基准只覆盖内容可信但来源权限不足的声明,不覆盖虚假声明或显式提示注入场景;端到端评估用固定流水线,样本数量和来源类型分布在现有公开片段中未完整披露,代表性边界不明。
方法与英文摘要

构建AuthMem-Bench配对基准:每对样本固定核心声明和下游任务,只改来源权限——授权历史H+(用户自述)对非授权历史H-(外部文档)。在7种整合器×7种LLM骨干共49种配置上分三层评估:写入时权限崩塌检测、行动层未授权操作率、端到端自动权限标签效果,并用冻结流水线验证权限元数据能否挡住越权操作。

Persistent memory allows (self-evolving) LLM agents to adapt across tasks by consolidating heterogeneous interaction histories into reusable facts, preferences, observations, and rules. Yet consolidation also imposes an implicit authorization boundary: it determines whether stored information may later be consumed as a user fact, an attested observation, or a standing instruction. We identify authority collapse, in which consolidation preserves a claim while erasing the source constraints governing its authorized use, causing the stored memory to imply greater authority than its source permits. We introduce AuthMem-Bench, a controlled paired benchmark that holds the focal claim and downstream task fixed while varying only source authority. It evaluates write-time collapse, downstream authorization errors, and automatic authority preservation. Across seven consolidators based on widely used agent-memory systems and seven LLM backbones, we observe authority collapse in 48 of 49 evaluated configurations. In a controlled action-grounded evaluation, collapsed memories without authority metadata yield a mean unauthorized-action rate of 50.3%. In an end-to-end evaluation, automatically predicted and persisted authority labels reduce the observed unauthorized-action rate from 16.9% to 0.0%, while benign task success remains essentially unchanged. These findings show that memory-driven adaptation must preserve not only what was learned, but also the authority under which it may be reused.

人机协同与对齐(0 篇)

本轮没有通过深读证据门的重点论文。

本轮分类概览

同一论文只归入一个最先命中的赛道,避免重复计数;“新增候选”只统计首次展示的论文。

赛道新增候选重点
形式化与程序验证00
软件工程与仓库智能11
代码质量与优化00
UI 与 GUI Agent10
个人知识与本体21
人机协同与对齐00

近一个季度监测日历

北京时间。绿色表示有可阅读的新候选,灰蓝表示已监测但无新增,橙色表示部分降级;“无记录”不等于失败。

2026 年 6 月

1无记录2无记录3无记录4无记录5无记录6无记录7无记录8无记录9无记录10无记录11无记录12无记录13无记录14无记录15无记录16无记录17无记录18无记录19无记录20无记录21无记录22无记录23无记录24无记录25无记录26无记录27无记录28无记录29无记录30无记录

近 14 次监测窗口

仅展示公开源的聚合运行状态,不含提示词、全文或个人数据。

本轮新增候选(4 篇)

按赛道、评分和日期展开;中文标签用于导航,英文摘要用于核验。已展示过的旧候选不会每日重复。

形式化与程序验证(0 篇)

本轮该赛道没有候选论文。

软件工程与仓库智能(1 篇)

软件工程与仓库智能 · 4/30 · 2026-08-05面向硬编码密钥检测的字符串语义方法指出现有正则检测缺陷,提出以字符串为核心语义线索检测提交的密钥;摘要截断,证据有限。Checked-In Secret Detection: Strings Are All You Need

Hardcoded secrets in source code pose critical security vulnerabilities which can be easily exploited by malicious adversaries. Existing regex-based detection approaches suffer from fundamental limitations, as secrets often lack identifiable patterns, resulting in poor precision and recall. Recent studies have explored context-aware detection methods, as surrounding code can reveal the purpose of candidate strings. However, these methods confront three key challenges: (1) obfuscation robustness where models over-rely on easily obfuscated identifiers, (2) cross-language generalization difficulties due to uneven training data distribution, and (3) lengthy and noisy context that introduces excessive irrelevant tokens and slows inference. We observe that strings serve as a critical information source for code semantics, offering superior contextual density, obfuscation robustness, and language independence. Based on this insight, we propose StringGroup, a novel context extraction algorithm that mines strings surrounding potential secrets. By introducing a relatively simple modification to existing patterns that narrows the analysis specifically to string literals, the method achieves significant gains. With only 33.2% of the original context, it preserves over 80% of semantic information and significantly improves the signal-to-noise ratio for secret detection. We further design a context-aware secret detection tool, Secretron, based on StringGroup methods and Transformer model. Evaluation on the SecretBench dataset demonstrates high accuracy with 98.74% F1-score and strong robustness under obfuscation and cross-language scenarios, outperforming state-of-the-art LLM-based baselines. We deploy our tool in real-world environments and successfully detect 48 previously unknown secret keys from 26 applications, demonstrating the practical effectiveness of our approach.

阅读 arXiv 原文

代码质量与优化(0 篇)

本轮该赛道没有候选论文。

UI 与 GUI Agent(1 篇)

UI 与 GUI Agent · 0/30 · 2026-08-04面向长期开放式任务的智能体编排框架将开放式请求拆解为有界子任务并维护执行记忆,在104项长时任务上评测;摘要截断,证据有限。OneDayAgent: Towards a Long-Horizon Harness for Autonomous Agents

LLM agents are increasingly applied to open-ended everyday requests that span work, study, and life. These tasks are long-horizon, cross-environment, and multimodal, forcing the agent to preserve goals and constraints across many steps while navigating heterogeneous tools and attachments. While prior work has addressed individual failure modes such as goals drift, states loss, and context overflow, whether a single harness can manage them jointly and remain effective across backends has received less study. We present OneDayAgent, a long-horizon harness for autonomous agents. OneDayAgent turns an open-ended request into a managed execution process that decomposes tasks into bounded subtasks, maintains execution memory under context pressure, and verifies and repairs the final deliverable. We evaluate OneDayAgent on AgentIF-OneDay across 104 tasks. With the GLM-5.2 backend, OneDayAgent sets a new state of the art with an overall score of 0.821. The same harness runs across five backend LLMs from three model families, indicating the harness generalizes across backends without tuning, even as different models induce distinct execution styles under the same workflow.

阅读 arXiv 原文

个人知识与本体(2 篇)

个人知识与本体 · 3/30 · 2026-08-05面向成本性能权衡的智能体记忆框架提出端到端可训练记忆流水线,分查询无关蒸馏与查询感知检索两阶段;摘要被截断,证据有限。MemoryCPT: An End-to-End Agent Memory Framework for Cost-Performance Trade-off

Long-horizon LLM agents require memory systems that recover useful evidence from large interaction histories without passing excessive context to downstream models. Existing memory pipelines often rely on hand-crafted heuristics and repeated LLM calls, which can introduce redundant context and high inference cost. We propose MemoryCPT, an end-to-end trainable agent memory pipeline that spans offline memory construction and online query-conditioned context generation. MemoryCPT consists of two stages: Query-agnostic Distillation (QAD), which distills a modular memory-construction pipeline into a compact model using explicit reasoning traces; and Query-aware Retrieval and Summarization (QAR), which combines reciprocal rank fusion (RRF) with a LoRA-based summarizer trained via Group Relative Policy Optimization (GRPO) under a cost-aware reward. We further introduce Quality per Cost (QPC) to quantify answer quality per unit inference cost. Experiments on LoCoMo and LongMemEval show that MemoryCPT improves the cost-performance trade-off over the evaluated baselines, while ablation and sensitivity analyses characterize the contributions of its components and the effects of key design choices.

阅读 arXiv 原文
个人知识与本体 · 4/30 · 2026-08-05借鉴灌丛鸦情景记忆原理的智能体记忆缓存按内容类型赋予记忆差异化时间衰减,并引入TGT基准与泛化差距指标;结果部分截断,证据有限。Caching for the Future: Scrub Jay Episodic Memory Principles for Agent Memory Systems

LLM agents that persist across sessions accumulate stored memories whose validity varies enormously by content type, yet existing memory architectures treat all memories as equally persistent and systematically contaminate retrieved context with outdated facts. We show that per-memory, type-conditioned temporal decay, a property of western scrub jay episodic memory, can be operationalized as an auto-classified coefficient $π_i$ in an external LLM-agent memory store, yielding ScrubJay-MEM: each memory is encoded as a jointly-bound What--Where--When tuple with an estimated perishability $π_i$ and utility horizon $τ_i$, retrieved by query-adaptive scoring, and revised retroactively at $O(1)$ LLM calls per update. We introduce the Temporal Generalization Test (TGT), a benchmark with held-out retention intervals and a Generalization Gap (GenGap) metric. On TGT, ScrubJay-MEM is the only retrieval-based system with substantially positive GenGap ($+0.108$); on MemoryAgentBench EventQA-64k it improves F1 by $+2.66$ over Mem0 and $+3.09$ over Qwen3-Embedding-4B under a llm backbone. A decay ablation collapses GenGap by $5.7\times$, establishing type-conditioned decay as necessary for the result. Gains narrow under stronger backbones and reverse on fact-consolidation tasks, scoping the contribution to temporal reasoning over perishable facts.

阅读 arXiv 原文

人机协同与对齐(0 篇)

本轮该赛道没有候选论文。