Urgent.News

What's breaking now, across thousands of outlets.

Tech

Repository Agent-Security Gap Study — v2h baseline

.362Z. Harness: /home/ubuntu/hazmat/harness/bench.js (one run, same files, same snapshots, same ground truth for every scanner). Raw rows: bench-v2h.json / bench-v2h.csv . Question. Which classes of agent-directed manipulation in repository content does an agent-facing detector (Sentinel InjectionGate) flag, which do…

A study has examined how different types of malicious content in repository files are detected by various scanning tools. The research focused on agent-directed manipulation in repository content and compared the effectiveness of an agent-facing detector (Sentinel InjectionGate) with current repository scanners such as secret detection and SAST (static application security testing).

The study used a baseline dataset consisting of 192 files, including 118 synthetic agent-directed payloads and 72 clean controls. The agent-facing detector, Sentinel InjectionGate, was able to flag all 118 agent-directed payloads, as well as 13 additional types of malicious content that are not considered agent-directed, bringing the total detection rate to 85%.

In contrast, the secret detection tool gitleaks correctly identified the single planted secret but missed the planted eval/0.0.0.0 file. The SAST tool semgrep detected one of the planted secrets and four code vulnerabilities, but again, missed the other agent-directed payloads.

The study also found that Sentinel InjectionGate was able to sanitize the prompt for 43 out of the 118 hostile files, effectively neutralizing the malicious code. However, 20 of the hostile files still reached the large language model (LLM) without being sanitized, indicating that there is still a risk of the malicious content being executed by the LLM.

Overall, the study highlights the limitations of current repository scanners in detecting agent-directed manipulation and demonstrates the effectiveness of Sentinel InjectionGate in identifying and mitigating these threats.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

Hacking VaultGate: Three Paths to One Flag

Target: http://192.168.122.1:3000 — a local Docker deployment of VaultGate on my lab network (your target IP will differ).

  • Three independent paths lead to the flag CTF{vaultgatethreepathsoneflag}
  • Path 1: Guess admin password, access maintenance console, pivot through helper service
  • Path 2: Exploit outdated dependency to run commands without logging in

Your first ASP.NET App: Controllers

Hello! In this tutorial we continue build your own ASP.NET Service! Requirements IDE like Visual Studio/JetBrains Rider .NET >= 10 Base C# skill Creating controller Lets create our Controller, create…

More from Sunday 13 September →