{"id":250,"date":"2026-04-13T08:05:18","date_gmt":"2026-04-13T08:05:18","guid":{"rendered":"https:\/\/www.hifitoolkit.com\/tech-news\/?p=250"},"modified":"2026-04-13T08:05:19","modified_gmt":"2026-04-13T08:05:19","slug":"ai-writing-code-security-responsibility","status":"publish","type":"post","link":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/","title":{"rendered":"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026"},"content":{"rendered":"\n<p>AI-generated code security: Not anymore! The question for 2026 isn\u2019t whether \u201cAI can author production code.\u201d<br>The question is: \u201cWho is going to review, validate, and secure the 40% \u2013 60% of your code that the LLM produced in ten seconds?\u201d<\/p>\n\n\n\n<p>Developers are building at breakneck speed. Copilot, Cursor, Cody, and CodeWhisperer are not optional tools; they\u2019re essential components. But in the quest to accelerate software development using AI, security will be the hidden liability\u2014slowly growing and ignored until it becomes exploited.<\/p>\n\n\n\n<p>One thing is certain: AI is great at writing code. But AI doesn\u2019t reason about threats the way humans do.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Silent Shift: From Human Bugs to AI-Generated Vulnerabilities<\/strong><\/h2>\n\n\n\n<p>Software security, traditionally, was based on the idea that all code had been written by humans who were susceptible to fatigue, biases, and human errors. Today, a novice programmer can easily write thousands of lines of functional code by using artificial intelligence tools without knowing the impact of a function.<\/p>\n\n\n\n<p>Here are some actual patterns discovered during 2025-2026 audits of AI-generated codebases:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Insecure deserialization using Python Pickle and Java ObjectInputStream \u2013 since that was part of the learning experience for the AI.<\/li>\n\n\n\n<li>SQL injection through dynamically generated queries \u2013 since the coder forgot to request parameterization.<\/li>\n\n\n\n<li>Use of hardcoded secrets such as API keys and JWT secrets \u2013 as the AI was exposed to open repositories.<\/li>\n\n\n\n<li>Lack of access control for API endpoints \u2013 as the AI optimizes for performance over permissions.<\/li>\n\n\n\n<li>Outdated or vulnerable third-party libraries \u2013 as the AI relies on popular packages rather than secure ones.<\/li>\n<\/ul>\n\n\n\n<p><strong>\ud83d\udd0d Main takeaway from Snyk\u2019s 2025 report on AI security issues:<\/strong><br>Code produced by AI assistants had twice as many security vulnerabilities as human-produced code in similar scenarios.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Who is Actually Responsible? (No, not \u201cthe AI\u201d)<\/strong><\/h2>\n\n\n\n<p>The uncomfortable answer:&nbsp;<strong>Everyone and no one.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\">Role<\/th><th class=\"has-text-align-left\" data-align=\"left\">Current Reality<\/th><\/tr><\/thead><tbody><tr><td><strong>Developer<\/strong><\/td><td>Assumes the AI is safe because it\u2019s \u201cintelligent.\u201d Rarely audits generated code.<\/td><\/tr><tr><td><strong>Security Team<\/strong><\/td><td>Cannot keep up with 10x faster code output. Reviews are bottlenecked.<\/td><\/tr><tr><td><strong>AI Vendor<\/strong><\/td><td>Explicitly disclaims liability for security in terms of service.<\/td><\/tr><tr><td><strong>CISO<\/strong><\/td><td>Has no budget for \u201cAI code review\u201d because it\u2019s still seen as a dev productivity line item.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The problem lies in the organization. The AI creates the code. The developer relies on it. The security team never receives it. And the attack occurs.<\/p>\n\n\n\n<p>This is the Accountability Gap \u2013 the most significant threat to today\u2019s software supply chain.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Three Layers of Securing AI-Generated Code<\/strong><\/h2>\n\n\n\n<p>To actually get a tangible answer to who will be responsible for securing AI \u2014 here&#8217;s the actual architecture of security from DevSecOps experts in 2026.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Layer 1: Real-time guardrails (when code comes in)<\/strong><\/h4>\n\n\n\n<p>Constraint for LLMs (no hardcoded secrets, no unsafe deserialization, and no eval()).<\/p>\n\n\n\n<p>Scan by the client (via IDEs which detect any potential vulnerabilities suggested by an AI before the developer accepts it).<\/p>\n\n\n\n<p>AI specific pattern detection (for instance, patches for imaginary vulnerabilities like CVE fixes).<\/p>\n\n\n\n<p>\ud83d\udccc So who will manage this? \u2013 Platform engineering and dev experience team.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Layer 2: Post-Generation Scanning of Code by Automation System (PR)<\/strong><\/h4>\n\n\n\n<p>SAST \u2013 configured to detect code generated by AI in specific patterns (not static legacy rules).<br>AI-generated blocks to be scanned under secrecy.<br>Vulnerabilities in dependencies detected, including whether the dependency is suggested by AI.<\/p>\n\n\n\n<p>\ud83d\udccc Who operates? \u2013 Security automation.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Layer 3: Humans-in-the-Loop for Important Code Paths<\/strong><\/h4>\n\n\n\n<p>For any code that affects authentication, payments, personal info, or infrastructural elements \u2013 human security analysis mandatory.<br>AI to analyze (point out risks), but final approval required by human.<\/p>\n\n\n\n<p>\ud83d\udccc Who operates? \u2013 Application security engineers &amp; senior developers.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>The Hard Truth: Most Organizations Are Not Ready<\/strong><\/h3>\n\n\n\n<p>A 2026 survey by Palo Alto Networks\/Unit 42 of 500 CISOs found:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>78% use AI-produced code in production environments.<\/li>\n\n\n\n<li>19% have a policy to review code written by AI.<\/li>\n\n\n\n<li>12% have automated guardrails before AI recommendations make it into code.<\/li>\n<\/ul>\n\n\n\n<p>We are, in effect, running a global experiment in which AI enables vulnerabilities to be inserted more quickly than they can be detected or fixed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What Actually Works Right Now<\/strong><\/h3>\n\n\n\n<p>From actual implementation in the wild (FinTech, SaaS, HealthTech):<\/p>\n\n\n\n<p>Code reviews must detect contributions from AI \u2014 git commit history must have \u201cGenerated by Copilot\/Cursor\/Claude.\u201d<\/p>\n\n\n\n<p>Security guardians within development teams \u2014 one developer per team who is tasked with reviewing AI code in pull requests.<\/p>\n\n\n\n<p>Scan for bias due to overgeneration of specific categories of vulnerabilities (injection, weak encryption, insecurity-by-default).<\/p>\n\n\n\n<p>No AI use for secure components \u2014 organizations prohibit AI use in cryptography, identity management, audit logging, or secret rotation logic.<\/p>\n\n\n\n<p>Detect at runtime \u2014 since even an insecure code generated by AI may be detected through RASP\/eBPF runtime instrumentation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>The Future: AI vs AI Security<\/strong><\/h3>\n\n\n\n<p>The only long-term solution is asymmetric defense.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>AI attacks will create polymorphic exploits targeting AI-created software (this already happens in red team experiments).<\/li>\n\n\n\n<li>AI defenses will have to perform reverse engineering on AI software to uncover logic flaws.<\/li>\n\n\n\n<li>AI log monitoring will be required for compliance purposes (SOC2\/ISO 27001 will ask: \u201cHow do you protect your AI code?\u201d).<\/li>\n<\/ul>\n\n\n\n<p>But right now, the human security engineer remains the ultimate decision-maker \u2013 exhausted, overstressed, and outnumbered 100:1 by AI agents.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Conclusion: The Buck Stops With Engineering Leadership<\/strong><\/h4>\n\n\n\n<p>The AI didn\u2019t merge the pull request. The developer did.<br>The developer didn\u2019t skip the security review \u2014 their manager did when they prioritized velocity over verification.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Who secures AI-written code?<\/strong><br>Not the AI vendor. Not the model. Not the tool.<br><strong>Engineering leadership<\/strong>&nbsp;\u2014 by mandating guardrails, tooling, reviews, and accountability.<\/p>\n<\/blockquote>\n\n\n\n<p>Until we treat AI-generated code as&nbsp;<strong>high-risk third-party code<\/strong>&nbsp;written by an intern who never sleeps, we will keep shipping vulnerabilities faster than we can patch them.<\/p>\n\n\n\n<p><strong>Check Out<\/strong>\u00a0\u2013\u00a0<a href=\"https:\/\/www.hifitoolkit.com\/ai\/\">Smart AI toolkit<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>AI-generated code security: Not anymore! The question for 2026 isn\u2019t whether \u201cAI can author production code.\u201dThe question is: \u201cWho is<a class=\"read-more ml-1 main-read-more\" href=\"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":251,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24],"tags":[153,154,155],"class_list":["post-250","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-artificial-intelligence","tag-ai-generated-code-security","tag-code","tag-security"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026 - HiFi Toolkit<\/title>\n<meta name=\"description\" content=\"AI writes 40%+ of code in 2026. But vulnerabilities are rising 2x faster. Learn who is responsible for securing AI-generated code and how to fix the broken DevSecOps loop.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026 - HiFi Toolkit\" \/>\n<meta property=\"og:description\" content=\"AI writes 40%+ of code in 2026. But vulnerabilities are rising 2x faster. Learn who is responsible for securing AI-generated code and how to fix the broken DevSecOps loop.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/\" \/>\n<meta property=\"og:site_name\" content=\"HiFi Toolkit\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hifitoolkit\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-13T08:05:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-13T08:05:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.hifitoolkit.com\/tech-news\/wp-content\/uploads\/2026\/04\/AI-generated-code-security.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1654\" \/>\n\t<meta property=\"og:image:height\" content=\"951\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Pradeep Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pradeep Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/\"},\"author\":{\"name\":\"Pradeep Kumar\",\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/#\\\/schema\\\/person\\\/efe865292c1ec682af776b63498dc77c\"},\"headline\":\"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026\",\"datePublished\":\"2026-04-13T08:05:18+00:00\",\"dateModified\":\"2026-04-13T08:05:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/\"},\"wordCount\":940,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/AI-generated-code-security.jpg\",\"keywords\":[\"AI-generated code security\",\"code\",\"security\"],\"articleSection\":[\"Artificial intelligence\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/\",\"url\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/\",\"name\":\"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026 - HiFi Toolkit\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/AI-generated-code-security.jpg\",\"datePublished\":\"2026-04-13T08:05:18+00:00\",\"dateModified\":\"2026-04-13T08:05:19+00:00\",\"description\":\"AI writes 40%+ of code in 2026. But vulnerabilities are rising 2x faster. Learn who is responsible for securing AI-generated code and how to fix the broken DevSecOps loop.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/AI-generated-code-security.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/AI-generated-code-security.jpg\",\"width\":1654,\"height\":951,\"caption\":\"AI-generated code security\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/ai-writing-code-security-responsibility\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/#website\",\"url\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/\",\"name\":\"HiFi Toolkit\",\"description\":\"Free Online Tools &amp; Converters for Developers, Designers &amp; Productivity\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/#organization\",\"name\":\"HiFi Toolkit\",\"url\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cropped-higilogo.png\",\"contentUrl\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cropped-higilogo.png\",\"width\":865,\"height\":230,\"caption\":\"HiFi Toolkit\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hifitoolkit\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/#\\\/schema\\\/person\\\/efe865292c1ec682af776b63498dc77c\",\"name\":\"Pradeep Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/56f307c4c166ea13e81e3fa35c21fccdc554249f4e3fd31b6d47dfc755670dcc?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/56f307c4c166ea13e81e3fa35c21fccdc554249f4e3fd31b6d47dfc755670dcc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/56f307c4c166ea13e81e3fa35c21fccdc554249f4e3fd31b6d47dfc755670dcc?s=96&d=mm&r=g\",\"caption\":\"Pradeep Kumar\"},\"sameAs\":[\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\"],\"url\":\"https:\\\/\\\/www.hifitoolkit.com\\\/tech-news\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026 - HiFi Toolkit","description":"AI writes 40%+ of code in 2026. But vulnerabilities are rising 2x faster. Learn who is responsible for securing AI-generated code and how to fix the broken DevSecOps loop.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/","og_locale":"en_US","og_type":"article","og_title":"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026 - HiFi Toolkit","og_description":"AI writes 40%+ of code in 2026. But vulnerabilities are rising 2x faster. Learn who is responsible for securing AI-generated code and how to fix the broken DevSecOps loop.","og_url":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/","og_site_name":"HiFi Toolkit","article_publisher":"https:\/\/www.facebook.com\/hifitoolkit","article_published_time":"2026-04-13T08:05:18+00:00","article_modified_time":"2026-04-13T08:05:19+00:00","og_image":[{"width":1654,"height":951,"url":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-content\/uploads\/2026\/04\/AI-generated-code-security.jpg","type":"image\/jpeg"}],"author":"Pradeep Kumar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Pradeep Kumar","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/#article","isPartOf":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/"},"author":{"name":"Pradeep Kumar","@id":"https:\/\/www.hifitoolkit.com\/tech-news\/#\/schema\/person\/efe865292c1ec682af776b63498dc77c"},"headline":"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026","datePublished":"2026-04-13T08:05:18+00:00","dateModified":"2026-04-13T08:05:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/"},"wordCount":940,"commentCount":0,"publisher":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/#organization"},"image":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/#primaryimage"},"thumbnailUrl":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-content\/uploads\/2026\/04\/AI-generated-code-security.jpg","keywords":["AI-generated code security","code","security"],"articleSection":["Artificial intelligence"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/","url":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/","name":"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026 - HiFi Toolkit","isPartOf":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/#primaryimage"},"image":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/#primaryimage"},"thumbnailUrl":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-content\/uploads\/2026\/04\/AI-generated-code-security.jpg","datePublished":"2026-04-13T08:05:18+00:00","dateModified":"2026-04-13T08:05:19+00:00","description":"AI writes 40%+ of code in 2026. But vulnerabilities are rising 2x faster. Learn who is responsible for securing AI-generated code and how to fix the broken DevSecOps loop.","breadcrumb":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/#primaryimage","url":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-content\/uploads\/2026\/04\/AI-generated-code-security.jpg","contentUrl":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-content\/uploads\/2026\/04\/AI-generated-code-security.jpg","width":1654,"height":951,"caption":"AI-generated code security"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hifitoolkit.com\/tech-news\/ai-writing-code-security-responsibility\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hifitoolkit.com\/tech-news\/"},{"@type":"ListItem","position":2,"name":"AI is Writing Code \u2014 But Who is Securing It? | DevSecOps 2026"}]},{"@type":"WebSite","@id":"https:\/\/www.hifitoolkit.com\/tech-news\/#website","url":"https:\/\/www.hifitoolkit.com\/tech-news\/","name":"HiFi Toolkit","description":"Free Online Tools &amp; Converters for Developers, Designers &amp; Productivity","publisher":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hifitoolkit.com\/tech-news\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hifitoolkit.com\/tech-news\/#organization","name":"HiFi Toolkit","url":"https:\/\/www.hifitoolkit.com\/tech-news\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hifitoolkit.com\/tech-news\/#\/schema\/logo\/image\/","url":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-content\/uploads\/2025\/08\/cropped-higilogo.png","contentUrl":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-content\/uploads\/2025\/08\/cropped-higilogo.png","width":865,"height":230,"caption":"HiFi Toolkit"},"image":{"@id":"https:\/\/www.hifitoolkit.com\/tech-news\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hifitoolkit"]},{"@type":"Person","@id":"https:\/\/www.hifitoolkit.com\/tech-news\/#\/schema\/person\/efe865292c1ec682af776b63498dc77c","name":"Pradeep Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/56f307c4c166ea13e81e3fa35c21fccdc554249f4e3fd31b6d47dfc755670dcc?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/56f307c4c166ea13e81e3fa35c21fccdc554249f4e3fd31b6d47dfc755670dcc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/56f307c4c166ea13e81e3fa35c21fccdc554249f4e3fd31b6d47dfc755670dcc?s=96&d=mm&r=g","caption":"Pradeep Kumar"},"sameAs":["https:\/\/www.hifitoolkit.com\/tech-news"],"url":"https:\/\/www.hifitoolkit.com\/tech-news\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/posts\/250","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/comments?post=250"}],"version-history":[{"count":1,"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/posts\/250\/revisions"}],"predecessor-version":[{"id":252,"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/posts\/250\/revisions\/252"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/media\/251"}],"wp:attachment":[{"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/media?parent=250"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/categories?post=250"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hifitoolkit.com\/tech-news\/wp-json\/wp\/v2\/tags?post=250"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}