Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
••
IT Nachrichten25. September(25.09.2026 um 00:05 Uhr)
•
IT NachrichtenCI-Solution GmbH von Crossware übernommen(25.09.2026 um 00:01 Uhr)
•
IT NachrichtenInsta360 GO Ultra erhält KI-Sprachassistenten mit Gemini(24.09.2026 um 21:30 Uhr)
••
AI & KI NachrichtenMaryland Governor Draws New Boundaries for Data Centers(25.09.2026 um 00:04 Uhr)
••••
IT NachrichtenMicrosoft puts Brad Smith in charge of communications(25.09.2026 um 00:08 Uhr)
••
IT Nachrichten25. September(25.09.2026 um 00:05 Uhr)
•
IT NachrichtenCI-Solution GmbH von Crossware übernommen(25.09.2026 um 00:01 Uhr)
•
IT NachrichtenInsta360 GO Ultra erhält KI-Sprachassistenten mit Gemini(24.09.2026 um 21:30 Uhr)
••
AI & KI NachrichtenMaryland Governor Draws New Boundaries for Data Centers(25.09.2026 um 00:04 Uhr)
••
Intelligence View
⚡ tsecurity.de Intelligence

AI Coding Assistants Are Secretly Making Your Code Less Secure

AI coding assistants are everywhere. Cursor, Copilot, Lovable, and Bolt are transforming how we write code. Developers who could not build a full-stack app three years ago are shipping products in days. But there is a cost. A hidden…

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

AI coding assistants are everywhere. Cursor, Copilot, Lovable, and Bolt are transforming how we write code. Developers who could not build a full-stack app three years ago are shipping products in days.



But there is a cost. A hidden one.



AI learned from public repositories. And public repositories are full of security mistakes. The AI does not know that an API key should be in an environment variable. It does not know that CORS should not be set to *. It does not know that a dependency should be pinned.



It writes what you ask for. It does not write what you need for security.



Here is what we found scanning AI-generated code with 9 security engines.









The 5 Patterns We Found in Every AI-Generated Project






1. Hardcoded Secrets



API keys, tokens, and passwords in source files. Every AI generated project we scanned had at least one.



Why it happens: The AI does not know that keys should be stored in environment variables. It provides a working example, and the developer commits it.



The fix: Never commit API keys. Use environment variables. Every platform (Vercel, Render, DigitalOcean, AWS) provides secure environment variable storage.



How to catch it: Gitleaks and TruffleHog scan for secret patterns. Debuggix includes both engines and filters false positives by reading your documentation.









2. Exposed Firebase Configurations



Firebase config objects containing apiKey, authDomain, and databaseURL committed directly to source files.



Why it happens: Firebase is popular because it provides a complete backend without additional code. The AI generates the config, and the developer has a working database.



The fix: Review Firebase security rules before deploying. Ensure reads and writes require authentication unless you specifically intend public access.



How to catch it: ESLint with security plugins flags Firebase config objects. The AI filter checks whether your documentation indicates intentional public access.









3. Missing Input Validation



Forms that accept anything. Email fields that accept non-email strings. Number fields that accept letters. No validation unless you explicitly ask.



Why it happens: The AI does not add validation unless explicitly asked. It builds a working form. Validation is a separate concern.



The fix: Add validation to every form. Use both client-side and server-side validation. Never rely on client-side validation alone.



How to catch it: Semgrep rules flag input handlers that lack validation logic. The AI filter understands context and ignores validation that appears in client-side code if server-side validation is present.









4. Wildcard CORS



Access-Control-Allow-Origin: * in production APIs.



Why it happens: The AI sets CORS to * because it works for local testing. The developer deploys without changing it.



The fix: Set CORS to specific domains your frontend uses. Never use * in production.



How to catch it: ESLint and Semgrep flag CORS headers set to *. The AI filter checks whether the project is explicitly documented as a public API.









5. Unpinned Dependency Versions



Version ranges like ^1.2.3 or >=2.0.0 in package.json and requirements.txt.



Why it happens: The AI generates version ranges because they are common in public repositories. The developer does not change them.



The fix: Pin dependency versions. Use exact version numbers. Commit your lock files.



How to catch it: OSV-Scanner and Trivy check for unpinned dependencies. The AI filter prioritizes findings in production dependencies over development dependencies.









The Common Thread



The AI is not malicious. It is not careless. It is a pattern matcher trained on millions of public repositories. The problem is that most public repositories contain these security gaps. The AI learned from them. Now it reproduces them. The solution is not to stop using AI coding tools. The solution is to add automated security review to the workflow.



The workflow should be:




  1. AI writes the code

  2. A scanner checks the code

  3. You review only what matters









What We Built to Solve This



I built Debuggix to catch these issues before they reach production.



How it works:




  • Runs 9 security engines in parallel (Semgrep, Gitleaks, Trivy, TruffleHog, Bandit, ESLint, Hadolint, Checkov, OSV-Scanner)

  • Uses AI to read your README and SECURITY.md to understand what is intentional

  • Filters out false positives from test files, build artifacts, and documented patterns

  • Surfaces only real issues — a scan that produces 134 raw findings might surface only 6 real issues



Pricing: Free for 10 public scans per month. Pro is $29/month for 100 private scans. Pro+ is $50/month with team seats and API access.



Try it: Debuggix









The Bottom Line



AI is a tool, not a security expert. It writes code. You are responsible for securing it.



Scan before you ship. Your future self will thank you.






Disclosure: I build Debuggix, a security scanner that runs 9 engines in parallel and uses AI to filter false positives. It is free for open source. Scan your repo at debuggix.space.









Discussion Question




What is the worst security issue you have found in AI-generated code? Let me know in the comments.


SOC Incident Playbook: Remote Code Execution (RCE) Defense
Syntax validiert (0 Fehler)
title: Detect Exploitation - AI Coding Assistants Are Secretly Making Your Code Less Secure
id: f7e25d8b-bd58-4a3d-b9cc-27a2b27b7e1f
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 = "AI Coding Assistants Are Secre" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("AI Coding Assistants Are Secretly Making")
| 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: "*AI Coding Assistants Are Secretly Making*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "AI Coding Assistants Are Secretly Making"
| 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 AI Coding Assistants Are Secretly Making.... 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 AI Coding Assistants Are Secretly Making Your Code Less Secure

Thematisch verwandte Begriffe: Coding, Assistants, Secretly, Making · 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-82585 | The Botslab G980H dash camera firmware transmits sensitive information o…
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