Stories/AI IMPACT
AI IMPACT · 10TechStart AnalysisAI & Automation14 min read

Securing the Agentic Enterprise: The New Risks of AI Agents, Shadow AI, and Connected Tools

When AI can read data, call tools, send messages, change records, or spend money, security must govern identity, intent, permission, action, and recovery—not only model output.

Editorial review copyThis research has been ingested for final human review and is not included in public feeds or search indexing.
AI IMPACT / 10TECHSTART NEWS / AI IMPACT

Key takeaways

  • An AI assistant that drafts text is a different security problem from an agent that can access systems and execute actions.
  • Agent security depends on identity, authorization, data boundaries, tool controls, observability, and recovery—not only on whether the model is “safe.”
  • Prompt injection and malicious content matter because agents may treat external text as instructions while operating with trusted permissions.
  • Shadow AI expands risk when employees connect unapproved tools to company data or accounts outside security and procurement controls.
  • Human approval is effective only when the reviewer has context, time, and a clear understanding of the proposed action.
  • TechStart thesis: The secure agentic enterprise will treat every agent as a nonhuman workforce identity with narrowly scoped authority, explicit objectives, monitored behavior, and revocable access.

Agentic AI security begins with a simple distinction: generating a recommendation is not the same as holding credentials and taking an action.

From content generation to delegated action

The first wave of enterprise generative AI largely focused on producing content: summaries, answers, code suggestions, images, and drafts. Agentic systems go further. They can plan steps, choose tools, retrieve data, communicate with other systems, and take actions toward a goal.

That transition can create substantial value. An agent may reconcile records, prepare a customer case, schedule work, monitor a process, or coordinate software tools. It also creates a qualitative risk jump.

A bad draft can be rejected. A bad action may already have changed a customer record, exposed data, sent a message, initiated a purchase, altered code, or triggered another system.

Security therefore must move from reviewing output to controlling delegated authority.

What makes an agent different

An enterprise agent combines several components:

  • A model that interprets context and generates plans
  • Instructions or policies
  • Memory or state
  • Access to data
  • Tools or APIs
  • An identity and credentials
  • A runtime or orchestration layer
  • Other agents or services
  • Human approval points

Failure can occur in any component or at the connection between them. A well-behaved model can still operate with excessive privileges. A secure API can still be called for the wrong purpose. A human can approve an action without understanding hidden dependencies.

The agentic threat model

OWASP's Top 10 for Agentic Applications for 2026 provides a community-developed framework for risks affecting autonomous, tool-using systems. NIST launched an AI Agent Standards Initiative in 2026 focused on secure, interoperable adoption and has also explored identity and authorization for software and AI agents. CISA and international partners published guidance on careful adoption of agentic services.

Across these efforts, several recurring risk classes appear. The NIST AI Risk Management Framework remains a useful umbrella for connecting these agent-specific controls to wider governance, measurement, and risk ownership.

Goal or instruction hijacking

An agent may encounter content that attempts to redirect its objective. The content could appear in a document, website, email, support ticket, database field, or tool response.

The danger is not merely that the model says something incorrect. The danger is that untrusted content influences a trusted action.

Tool misuse

A legitimate tool can be used in an unintended sequence, with the wrong parameters, or outside the business purpose for which access was granted.

Identity and privilege abuse

An agent may inherit broad user permissions, reuse long-lived credentials, or combine access that would normally be separated across employees.

Memory and context poisoning

Incorrect or malicious information can persist in agent memory, retrieval sources, or shared state and influence future actions.

Cascading failure

One agent's output may trigger another system. Errors can compound across automation chains before a person notices.

Supply-chain risk

Models, plugins, tool servers, libraries, prompts, connectors, and hosted services introduce dependencies. A compromise or update can change behavior.

Inadequate observability

If the organization cannot reconstruct what the agent saw, decided, called, changed, and returned, it cannot investigate incidents or improve controls.

Human overreliance

Reviewers can become a ceremonial approval layer, especially when actions arrive quickly and explanations are persuasive.

The agent permission envelope

Every production agent should have a documented permission envelope.

DimensionRequired questionSafer default
IdentityWhat distinct identity does the agent use?Never hide behind a shared employee account
ObjectiveWhat outcome is it authorized to pursue?Narrow, testable purpose rather than open-ended goals
DataWhich sources may it read or write?Minimum necessary, with field- and record-level limits where possible
ToolsWhich actions may it call?Allowlist specific tools and operations
TimeWhen may it operate?Short-lived sessions and credentials
MoneyWhat may it purchase or commit?Zero or low limits; human approval above threshold
CommunicationWho may it contact and as whom?Disclose automation; restrict recipients and templates
ChangeWhat systems may it modify?Prefer draft or staged changes before production writes
EscalationWhen must it stop and ask?Ambiguity, high consequence, policy conflict, low confidence
RecoveryHow is access revoked and work reversed?Kill switch, rollback, backup, and incident owner

The permission envelope should be enforceable by systems, not only written in a prompt.

Identity is the foundation

A secure agent should be identifiable as an agent. It should not borrow a human's full account or appear indistinguishable in logs.

The National Cybersecurity Center of Excellence has highlighted the need to apply identity, authentication, authorization, and policy controls to software and AI agents. Existing standards and practices—such as scoped tokens, policy-based access control, credential rotation, and separation of duties—remain relevant.

Key principles:

  • Unique identity for each production agent or tightly defined service
  • Least privilege
  • Short-lived credentials
  • Strong secret management
  • Context-aware authorization
  • Separation between development, test, and production
  • No credential exposure to model context
  • Rapid revocation
  • Attribution in every action log

An agent should not gain the combined access of a finance analyst, system administrator, customer-service manager, and executive merely because it coordinates their workflow.

Prompt injection is a trust-boundary problem

Prompt injection is often described as a clever phrase that “tricks” a model. In enterprise systems, the deeper issue is trust.

An agent may receive instructions from its developer, its user, a retrieved document, a website, an email, and a tool. Those inputs do not deserve equal authority.

Security design should:

  • Separate trusted instructions from untrusted content
  • Label provenance
  • Prevent documents from redefining permissions
  • Validate tool calls independently of model text
  • Restrict data returned to the model
  • Require approval for high-impact actions
  • Test with adversarial and malformed inputs
  • Treat external content as data, not authority

No prompt can compensate for unconstrained permissions.

Shadow AI: the ungoverned agent problem

Shadow AI includes unapproved assistants, browser extensions, automation tools, local models, custom agents, and employee-created integrations used with company information.

Employees often adopt them because they solve a real problem faster than official systems. A purely punitive response drives usage underground.

A better program combines:

  • A fast path for approving low-risk tools
  • Clear data rules
  • Approved alternatives that are actually usable
  • Discovery of connected applications and tokens
  • Education about sensitive data and permissions
  • A disclosure process for employee-built workflows
  • Proportionate review based on consequence
  • Removal of unsafe integrations

The goal is to convert useful experimentation into governed capability.

Human approval must be designed

“Human in the loop” is not a complete control. Approval fails when:

  • The reviewer receives too many requests
  • The explanation is incomplete
  • The interface emphasizes speed over scrutiny
  • The reviewer assumes the system already checked policy
  • The action is difficult to reverse
  • The person lacks domain expertise
  • Organizational incentives reward approval

A meaningful approval should show:

  • The requested action
  • Source and destination
  • Data affected
  • Expected consequence
  • Model or rule rationale
  • Uncertainty or anomaly
  • Policy checks performed
  • Changes from prior state
  • Reversal method

Use two-person approval for especially consequential actions.

Observe behavior, not only outputs

Agent monitoring should capture:

  • Identity and version
  • User or system that initiated the job
  • Objective and policy version
  • Data sources accessed
  • Tool calls and parameters
  • Permissions used
  • Human approvals
  • State changes
  • Errors and retries
  • Cost and latency
  • Final outcome

Logs should support investigation without unnecessarily retaining sensitive content. Integrity, access, and retention must be governed.

Behavioral monitoring can identify unusual action sequences, scope expansion, repeated failures, access outside normal patterns, or sudden cost increases.

Design for failure and recovery

Agents will fail. The objective is to keep failure bounded and recoverable.

Use:

  • Sandboxed environments
  • Dry-run or preview modes
  • Staged writes
  • Transaction limits
  • Rate limits
  • Idempotency controls
  • Checkpoints
  • Rollback
  • Circuit breakers
  • Human escalation
  • Tested shutdown procedures

For irreversible actions, consider whether an agent should be allowed to act at all.

A maturity model for agentic adoption

Level 0: ungoverned experimentation

Employees use public tools and connectors without inventory or policy.

Level 1: approved assistants

AI generates content inside approved environments. No autonomous production actions.

Level 2: bounded agents

Agents use a small allowlist of tools and data with preview, human approval, and logging.

Level 3: controlled production workflows

Agents have distinct identities, policy enforcement, evaluation, monitoring, rollback, and incident procedures.

Level 4: multi-agent operations

Multiple agents coordinate across workflows with formal trust boundaries, separation of duties, simulation, continuous assurance, and executive risk governance.

Organizations should not skip levels because a vendor demonstration appears mature.

A pre-production agent review

Before deployment, require evidence for:

  1. Business owner and purpose
  2. Process map and exception paths
  3. Threat model
  4. Data inventory and rights
  5. Identity and permission envelope
  6. Tool allowlist
  7. Evaluation results
  8. Adversarial testing
  9. Human approval design
  10. Logging and alerting
  11. Rollback and kill switch
  12. Incident owner
  13. Vendor and dependency inventory
  14. Cost and rate controls
  15. Scheduled reauthorization

A production agent is a privileged software system, not a clever prompt.

What boards should ask about agents

  • How many agents can take action in production?
  • Does each have a distinct identity and owner?
  • What is the most consequential action any agent can take?
  • Can an external document or message influence that action?
  • Which agents can communicate externally or spend money?
  • Can the company reconstruct every action?
  • When were permissions last reviewed?
  • How quickly can all agent access be revoked?
  • What shadow AI has been discovered?
  • Which business outcome justifies the risk?

Conclusion: govern delegated authority

AI agents can reduce coordination cost and make complex digital workflows more responsive. They can also combine the ambiguity of language models with the power of enterprise credentials.

The secure design principle is straightforward: never trust intelligence with more authority than the organization can observe, constrain, and revoke.

Give agents identities. Narrow their objectives. Limit their tools. Separate untrusted content from instructions. Require informed approval. Log actions. Test failure. Preserve a human chain of accountability.

The agentic enterprise should not be built on the hope that the model behaves. It should be built so that unsafe behavior cannot travel far.

Explore the AI directory

Sources and further reading

  1. OWASP, Top 10 for Agentic Applications for 2026
  2. OWASP, Agentic Security Initiative
  3. NIST, AI Agent Standards Initiative
  4. NIST, Announcing the AI Agent Standards Initiative
  5. NCCoE, Software and AI Agent Identity and Authorization
  6. CISA, Careful Adoption of Agentic AI Services
  7. CISA, International Partners Release Guide to Secure Adoption of Agentic AI
  8. MITRE ATLAS
  9. NIST, Artificial Intelligence Risk Management Framework

Editorial note

Agentic standards and threat taxonomies are evolving rapidly. This article should be reviewed monthly. It provides defensive governance guidance and omits exploit procedures.

Keep exploring

Continue the AI IMPACT series

Continue

TechStart News preserves editorial control over every published story. Community submissions and commercial relationships are labeled so readers can understand the source.