Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
•
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
•••
IT Security NachrichtenBetrüger phishen mit vermeintlicher Reisebestätigung - IT-Markt(24.09.2026 um 23:41 Uhr)
••
Sicherheitslücken (CVE)IT Security News Daily Summary 2026-09-24(24.09.2026 um 23:55 Uhr)
•
Sicherheitslücken (CVE)IT Security News Roundup: 2026-09-24(24.09.2026 um 23:57 Uhr)
•
Sicherheitslücken (CVE)IT Security News Hourly Summary 2026-09-25 00h : 9 posts(25.09.2026 um 00:00 Uhr)
•••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
••
Intelligence View
⚡ tsecurity.de Intelligence

LLM reviewers are useful, but some PR checks should stay deterministic

AI coding agents are getting better at opening pull requests. That changes the review problem. A normal review asks whether the code looks correct, whether the design makes sense, and whether the edge cases were considered. Those…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

AI coding agents are getting better at opening pull requests.



That changes the review problem.



A normal review asks whether the code looks correct, whether the design makes sense, and whether the edge cases were considered.



Those questions still matter.



But an AI-generated pull request also raises a different kind of question:




Did the agent change something outside the intended task, and is there enough repeatable evidence to merge?




I have started thinking about this as a split between judgment and evidence.



LLM reviewers help with judgment. Agent Gate verifies deterministic merge evidence.



I do not think every review question should become a hard CI gate. Some parts of code review need human context. Some parts benefit from an LLM noticing suspicious patterns. But a few checks are mechanical enough that I want them to be deterministic, repeatable, and visible before merge.



This is the checklist I currently use when thinking about AI-generated PRs.






1. Did the PR stay in scope?



The first question is not whether the code is good.



It is whether the PR changed the files it was supposed to change.



For a human PR, an unrelated edit may be easy to explain in review. For an agent PR, unrelated edits are more suspicious because they may reflect an instruction drift, a tool mistake, or a broad refactor the maintainer did not ask for.



A simple contract can help:




This PR is allowed to touch:
- src/auth/**
- tests/auth/**






Then the review can ask a deterministic question:




Did the PR touch anything outside those paths?






That does not prove the code is correct. It only proves the PR stayed inside its declared boundary.



That boundary still matters.






2. Did workflow permissions escalate?



GitHub Actions workflows are one of the highest-risk places for an agent to edit.



A small source change and a workflow permission change do not have the same risk profile.



For example, I would want a very visible warning if a PR adds or changes this:




permissions:
contents: write






or starts using secrets.* in a new workflow path.



This is not a semantic code review problem. It is a policy boundary problem.



The question is deterministic:




Did this PR increase workflow privileges or introduce a dangerous workflow pattern?






That kind of check should not depend on whether an LLM happened to notice it in a comment.






3. Did agent-control-plane files change?



AI coding agents often depend on files that shape future behavior:




AGENTS.md
CLAUDE.md
.github/copilot-instructions.md
.cursor/rules/**
.mcp.json






A change to these files can affect future agent runs, tool access, or repo-specific instructions.



That makes them different from normal documentation changes.



If an AI-generated PR edits .mcp.json or AGENTS.md, I want that surfaced clearly before merge, even if the source code diff looks harmless.



The deterministic question is:




Did the PR change files that control future agent behavior?






This is especially important for teams adopting coding agents across repositories, because the control plane can drift quietly.






4. Is there matching test evidence?



Test evidence is tricky.



A changed test file does not prove the behavior is correct. It does not prove the test is meaningful. It does not prove coverage.



But for risky areas, the absence of any matching test change is still useful evidence.



If a PR changes auth logic, payment handling, session middleware, or a migration, I want to know whether the PR also changed a related test file.



The check should be phrased carefully:




There is no matching test-file evidence.






Not:




This PR is untested.






That distinction matters. Deterministic checks should say exactly what they know, and no more.






5. Did package scripts or dependencies drift?



This is not always the first rule I would add, but it is one I keep coming back to.



Package manifests and lockfiles can hide meaningful risk:




package.json
pnpm-lock.yaml
yarn.lock
package-lock.json






Some changes are normal dependency maintenance. Others deserve more attention:




{
"scripts": {
"postinstall": "node scripts/setup.js"
}
}






For AI-generated PRs, I would want to know:




Did a lifecycle script appear?
Did an existing package script change?
Did dependencies change without an expected lockfile change?






Again, not every finding should block. But these changes should be easy to see.






6. Did the right human reviewer approve?



This is where deterministic evidence meets human ownership.



A PR can stay in scope, avoid workflow escalation, and include test evidence, but still need the right reviewer.



Examples:




src/auth/** changed -> security reviewer expected
.github/workflows/** changed -> platform reviewer expected
.mcp.json changed -> maintainer/platform approval expected






I do not think this should always block by default, especially for solo maintainers. But for teams, reviewer evidence may be one of the most useful signals.



The question is:




Did the right human approve the risky part of this PR?






That is not a replacement for review. It is a way to make ownership visible.






What should stay human?



A lot.



I would not want deterministic CI to answer questions like:




Is this design good?
Is this abstraction worth it?
Will users understand this behavior?
Is this bug fix actually correct?






Those are judgment questions.



LLM reviewers can help with judgment. Human reviewers own judgment. Deterministic gates should focus on evidence that can be checked the same way every time.






What should be deterministic?



The best candidates are checks that are:




  • explainable

  • repeatable

  • hard to miss

  • tied to merge risk

  • not dependent on executing PR code



For me, that currently includes:




  • PR scope boundaries

  • workflow permission escalation

  • dangerous workflow patterns

  • agent-control-plane drift

  • missing test-file evidence for high-risk paths

  • package script and dependency drift

  • reviewer evidence for sensitive paths



These checks do not make an AI-generated PR safe.



They make the risk easier to inspect before merge.






Start in warn mode



The safest adoption path is not to block everything on day one.



I would start with warnings:




mode: warn
fail-on-block: false






Then observe real PRs.



Which findings are useful?

Which ones are noisy?

Which ones would you trust as merge gates?



Only after that would I promote low-noise findings to blocking checks.






Closing thought



I think AI-generated PR review will need both judgment and evidence.



LLM reviewers can help with judgment.



Deterministic CI checks should verify merge evidence.



I’m exploring this idea in Agent Gate, a small GitHub Action for deterministic merge evidence in AI-generated PRs.



Disclosure: I used AI assistance to help draft and edit this article, and I reviewed the technical claims before publishing.

SOC Incident Playbook: Remote Code Execution (RCE) Defense
Syntax validiert (0 Fehler)
title: Detect Exploitation - LLM reviewers are useful, but some PR checks should stay deterministic
id: a245bf6b-1f81-45fc-943f-f20a93087bc9
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-25
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-25"
        description = "YARA Signature for "
    strings:
        $str = "LLM reviewers are useful, but " ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("LLM reviewers are useful but some PR che")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*LLM reviewers are useful but some PR che*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "LLM reviewers are useful but some PR che"
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc
🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich LLM reviewers are useful, but some PR ch.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten LLM reviewers are useful, but some PR checks should stay deterministic

Thematisch verwandte Begriffe: reviewers, useful, some, checks · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-87722 | Uncontrolled Resource Consumption (CWE-400 / CWE-1333) in regex search q…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...
↗ Original-Quelle