Close Menu
  • Home
  • Articles
    • Attacks
      • BEC
      • Data Breach
      • DDoS
      • Evasion Attacks
      • Injection
      • Malware
      • MITM
      • Phishing
      • Ransomware
      • RCE
      • Social Engineering
      • Spoofing
      • Spyware
    • Business and Policy
      • BCP and DRP
      • GRC
      • Regulations
    • Data Protection
      • DLP
      • DRM
      • Encryption
      • IAM
    • Future, Trends and Insight
      • AI
      • Events & Community
      • Emerging Tech
      • Expert Panel
      • Interviews With Experts
      • Insights
      • Study & Research
    • Resources
      • Guides
      • Tools
      • Training & Education
    • Security
      • API
      • Apps
      • Cloud
      • Critical Infrastructure
      • Endpoint
      • Hardware
      • IoT
      • Mobile
      • Network
      • OT
      • Port Security
      • Security Architecture
      • Software Development
      • Supply Chain
      • Zero Trust
    • Threats and Vulnerabilities
      • Emerging Threats
      • Insider Threats
      • Risk Management
      • Threat Intelligence
      • Zero Day
  • News and Exclusives
    • Latest News
    • ISB Exclusive
    • Positive News
  • Who We Are
    • About Us
    • Information Security Buzz Expert Panel​
    • Write for Us
    • Media Pack
  • Contact Us
  • Newsletter
Facebook X (Twitter) LinkedIn
Facebook X (Twitter) LinkedIn
Information Security BuzzInformation Security Buzz
  • Home
  • Articles
    • Attacks
      • BEC
      • Data Breach
      • DDoS
      • Evasion Attacks
      • Injection
      • Malware
      • MITM
      • Phishing
      • Ransomware
      • RCE
      • Social Engineering
      • Spoofing
      • Spyware
    • Business and Policy
      • BCP and DRP
      • GRC
      • Regulations
    • Data Protection
      • DLP
      • DRM
      • Encryption
      • IAM
    • Future, Trends and Insight
      • AI
      • Events & Community
      • Emerging Tech
      • Expert Panel
      • Interviews With Experts
      • Insights
      • Study & Research
    • Resources
      • Guides
      • Tools
      • Training & Education
    • Security
      • API
      • Apps
      • Cloud
      • Critical Infrastructure
      • Endpoint
      • Hardware
      • IoT
      • Mobile
      • Network
      • OT
      • Port Security
      • Security Architecture
      • Software Development
      • Supply Chain
      • Zero Trust
    • Threats and Vulnerabilities
      • Emerging Threats
      • Insider Threats
      • Risk Management
      • Threat Intelligence
      • Zero Day
  • News and Exclusives
    • Latest News
    • ISB Exclusive
    • Positive News
  • Who We Are
    • About Us
    • Information Security Buzz Expert Panel​
    • Write for Us
    • Media Pack
  • Contact Us
  • Newsletter
Subscribe
Information Security BuzzInformation Security Buzz
Home - Software Development Security - Agentic AI vs DevSecOps Vs DevOps: A New Security Challenge
Software Development Security Articles Security Supply Chain Security

Agentic AI vs DevSecOps Vs DevOps: A New Security Challenge

Nnamani ChinwokeBy Nnamani ChinwokeJune 16, 20257 Mins Read
Share LinkedIn Twitter Facebook Copy Link Email
Agentic AI vs DevSecOps Vs DevOps
Share
Facebook Twitter LinkedIn Email Copy Link
Quick AI Summary
ChatGPTClaudeGeminiGrokPerplexityDeepSeekCopilot

Imagine this: an AI assistant picks up a GitHub Issue, generates a code to fix the bug, commits the changes, opens a pull request, and triggers the CI/CD pipeline, and it does all these even before anyone on your team checks Slack or notices there was a bug in the first place.

No manual code review, approvals, or human taking over at any point. Just execution.

This isn’t a prediction or what we hope will happen tomorrow. This is something that’s already emerging in AI-augmented engineering teams.

Agentic AI systems don’t just assist but act autonomously, and they are already making their way into secure software delivery. Unlike tools like GitHub Copilot, whose main input is providing suggestions, these agents perform tasks like writing code, triggering builds, and deploying services. When machines take the initiative, our current models for security start to crack.

So, while the promise is faster delivery and improved productivity, these agents also challenge the very security assumptions that DevSecOps was built on.

To adapt as a DevSecOps professional, you must rethink what it means to secure software delivery when the hands writing code aren’t human.

DevOps and DevSecOps meet autonomous AI: the unseen risk in automation.

Futurum’s IQ DevOps and Application Development 2025 decision-maker research survey data found that 41% of organizations are using AI technologies in software development, and 43% of platform engineering teams are using AI-assisted tools and task agents.

This means that Agentic AI isn’t just helping developers write code. It’s making decisions, initiating deployments and even running tests without waiting for humans to sign it off first.

Compared to coding assistants like GitHub Copilot, which merely suggest or recommend, agentic AI tools like AutoGPT, Devin, or LangChain agents can take those suggested actions by themselves. In addition, they can:

  • Monitor repositories and issue trackers for actionable items
  • Generate code to implement features or fix bugs
  • Initiate builds and test suites
  • Create pull requests and respond to review comments
  • Deploy changes to staging or production environments

Three assumptions that agentic AI breaks in Dev systems

Assumption 1: Human oversight is always present

DevSecOps pipelines typically assume human intervention at critical checkpoints like code reviews, manual approvals, and staged rollouts. These steps are meant to catch errors, enforce policies, and maintain control, but the introduction of agentic AI disrupts this.

For instance, an AI agent is configured to pull work items from a backlog, write bug fixes, and push changes. But unless it is restricted, it can bypass human validation entirely.

The risk to this is that malicious or faulty code can be introduced into production without being reviewed, and attackers could exploit this flow via prompt injection or misconfiguration.

How should you fix this? Implement AI-aware approval gates. Introduce multi-factor policy checks before deployment and restrict what actions the agents can take based on environment criticality.

Assumption 2: Role-Based Access Control (RBAC) is enough

RBAC models are built for humans and services with defined roles. But AI agents often operate under broad service roles without the ability to differentiate between harmful and non-harmful actions.

For instance, an AI system acting under a “DevOps Engineer” role might be prompted to “clean up unused cloud resources.” From this prompt alone, it might delete live environments, thinking they are useless.

Now, the risk? Over-permissioned AI agents can pose risks. They can unintentionally alter infrastructure or exfiltrate data.

The next step? Go beyond RBAC. Consider attribute-based access control (ABAC) or implement policy-as-code frameworks like Open Policy Agent (OPA). Use scoped, time-bound credentials and treat agents as untrusted by default. Just grant only what’s needed, for only as long as required.

Assumption 3: Logs reflect intent

Most DevSecOps monitoring tools track what happened, and not why it happened. They assume that human-driven actions are traceable and that the intent behind what happened can be inferred from the logs.

But AI doesn’t operate that way. An agent AI may misinterpret a prompt and initiate an unplanned performance scan. Logs will show that the scan occurred, but it won’t show that it was a misunderstanding.

Logs only show outcomes, not the intent behind them. This makes investigations harder and anomalies look normal because intent is invisible, which weakens threat detection and post-incident analysis.

How do you change this? Introduce semantic logging to capture prompts, model outputs, and reasoning chains. Invest in emerging tools for AI observability and behavior tracing.

4 new risk vectors introduced by autonomous agents

Autonomous AI doesn’t just change the pace of development. It also creates new categories of risk, such as :

1. Prompt injection

If an AI agent takes prompts from issue trackers, code comments, or chat interfaces, malicious actors can inject adverse instructions. A cleverly crafted comment in a GitHub Issue might instruct an AI agent to leak secrets.

2. Excessive privileges

Many AI agents are over-permitted to “just work.” But broad access to APIs, secrets, and deployment environments means that one misstep can lead to outsized consequences.

3. Supply chain risks

Autonomous agents may fetch dependencies, packages, or tools from public sources without being supervised by a human. This lead to attacks or malware in AI-recommended packages.

4. Looping behaviors and cascade failures

AI agents designed to “self-correct” may enter feedback loops and may get stuck in error-correction cycles, each change introducing more instability. These loops are hard to predict.

A practical framework to secure AI-augmented pipelines

Security teams can’t eliminate agentic AI, but they can control how it interacts with the delivery pipeline.

1. Restrict permissions:

Use least-privilege principles for agent identities. According to paloalto, the Principle of Least Privilege (PoLP) is an information security concept that maintains that a user or entity should only have access to the specific data, resources and applications needed to complete a required task. So you should grant read-only access where possible and use scoped API keys and short-lived tokens.

2. Insert approval gates:

Make sure to require manual review for sensitive operations like deploying to production. Introduce policy-based checks before deployments and also require human validation for code that affects critical systems or infrastructure.

3. Track intent + behavior:

Log AI prompts and their interpreted actions for accountability’s sake. Tag commits that were generated by AI so they can be traced. Store reasoning chains and use them for incident response and continuous improvement.

4. Harden your APIs:

Monitor AI-driven usage and don’t forget to add rate-limiting and protect configuration endpoints with anomaly detection.

5. Validate outputs:

Use Static Application Security Testing tools (SAST) and linters to analyze your source code and identify vulnerabilities before deploying your app. Don’t assume everything is correct without verifying.

Security steps to take

Even if your team isn’t fully deploying AI agents yet, chances are, tools like GitHub Copilot or AI-enhanced CI/CD bots are already part of your workflow. Here’s where to begin:

  • Identify where agentic AI is in your stack, from code gen to infra updates, GitHub Copilot, AutoGPT, or internal LLM agents may be interacting with your production pipelines or infrastructure.
  • Identify overly-permissive roles and put policy-as-code gates in place. For example, pair Open Policy Agent (OPA) with your CI/CD system to enforce rule-based checks on all AI-generated actions. This will reject deployments that don’t meet code quality or conditions that are context-aware.
  • Implement prompt logging, apply runtime validation, and restrict high-impact actions to just human approval if possible.
  • Confine agentic tasks to lower environments or tightly controlled workflows.

Agencies like NIST and ENISA are developing AI assurance frameworks to guide secure adoption of agentic AI. As a DevOps/CyberSecurity Engineer, it is important to stay ahead of evolving best practices in AI behavior modeling and secure autonomy as soon as and as often as you can.

AI is no longer helping you build software; it is building it. This means DevSecOps must evolve by rethinking your assumptions, hardening your pipelines, and designing it for the era of autonomous agents.

Nnamani Chinwoke
Nnamani Chinwoke

Chinwoke Nnamani is an experienced B2B cybersecurity and SaaS writer. He has been featured in top cybersecurity publications like Tripwire, eSecurity Planet, and Tech Republic and has written for B2B brands in marketing, CRM, partnerships, and data management verticals. When he’s not writing, he’s watching football, binge-reading health technology research studies, or reading books.

  • Nnamani Chinwoke
    https://informationsecuritybuzz.com/author/nnamani-chinwoke/
    How to Protect Your VoIP System from DDoS Attacks

The opinions expressed in this post belong to the individual contributors and do not necessarily reflect the views of Information Security Buzz.

Share. Facebook Twitter LinkedIn Email Copy Link

Related Posts

Closing the Cross-Platform Security Gap in Citizen Developer Apps

February 13, 20265 Mins Read

UK Businesses Hit by Wave of Breaches Caused by Insecure Code

August 19, 20253 Mins Read

Empowering Citizen Developers Without Compromising Security

August 13, 20254 Mins Read
ISB-Bora-Side-Bar

 
ISB-Bora-Side-Bar
Black ISB Logo

Information Security Buzz is an independent resource that provides the experts’ comments, analysis, and opinion on the latest Cybersecurity news and topics

X (Twitter) LinkedIn Facebook RSS

Working With Us

  • About Us
  • Advertise With Us
  • Contact Us

Write For Us

  • How To Contribute

The Pages

  • Privacy Policy
  • Cookie Policy
  • AI Policy
  • Terms & Conditions
  • Copyright Notice

Information Security Buzz and all its contents are copyright © 2014-2025. All rights reserved. All third-party trademarks are recognized.

Type above and press Enter to search. Press Esc to cancel.

Manage Consent
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
  • Manage options
  • Manage services
  • Manage {vendor_count} vendors
  • Read more about these purposes
View preferences
  • {title}
  • {title}
  • {title}