SShortSingh.
Back to feed

AI Agents Often Run on Human Credentials, Creating Enterprise Security Blind Spots

0
·1 views

Many AI agents deployed in enterprises lack their own distinct identities and instead operate using API keys, tokens, and credentials originally issued to humans or workloads. Because no enterprise identity provider typically mediates these exchanges, agent activity can fall outside standard governance and access reviews. Security experts warn that the problem is fundamentally about unmanaged secrets before it becomes an identity issue. Organizations are advised to first locate where agent credentials reside and who owns them, while simultaneously blocking new credential exposure. The recommended end state is replacing reusable, standing credentials with agent-specific or delegated identities backed by scoped, short-lived tokens that limit the damage if compromised.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Why Distributed Systems Are Hard: Space, Time, and Consensus Explained

Distributed systems arise when multiple machines must cooperate to complete a single task, and that requirement strips away the shared memory, unified clock, and single lock that a solo machine provides for free. The core difficulties trace back to three root problems: space, meaning no single node holds the complete picture; time, meaning there is no global clock and networks reorder messages unpredictably; and consensus, which emerges when the first two problems collide. Replication strategies such as single-leader, multi-leader, and leaderless designs each resolve the write-conflict problem differently but introduce their own failure modes, while partitioning by key range or hash creates further trade-offs between write balance and query efficiency. Because there is no reliable wall clock across machines, engineers use logical and vector clocks to track causality rather than absolute time, though vector clocks grow costly at scale. These compounding challenges explain why distributed systems offer a spectrum of consistency models — from strict linearizability to eventual consistency — each trading correctness guarantees for performance or availability.

0
ProgrammingHacker News ·

Chamilo 3.0 Released: Open-Source LMS Gains Native MCP Server Support

Chamilo, an open-source learning management system, has released version 3.0.0, marking a significant update to the platform. The new release introduces a native MCP server with support for PAuth 2.1, a modern authentication protocol. The update was announced via the project's official GitHub repository. Chamilo LMS is widely used by educational institutions and organizations to deliver and manage online learning content.

0
ProgrammingDEV Community ·

How a 4TB-to-500GB table join triggered a $4,000/hour cloud bill and outage

A data engineering team incurred roughly $4,000 in a single hour after a production join between a 4TB events table and a 500GB user_metadata table caused out-of-memory failures on both BigQuery and Databricks. The query had completed in 42 seconds on a 10% staging sample but hung for 45 minutes in production, spiking BigQuery slot usage above 10,000 and crashing a Databricks SQL Warehouse with a Java heap error. The root cause was each engine attempting a broadcast join on a table far too large to fit in a single worker's memory, compounded by a Databricks configuration that had raised the auto-broadcast threshold to 1GB from its 10MB default. The team resolved the BigQuery issue by rewriting the query to select specific columns and pre-filter join keys, cutting shuffle volume from 12TB to 800GB. On Databricks, they overrode the optimizer with a MERGE hint to force a Shuffle Sort-Merge Join, which spilled to disk rather than crashing, completing the query in 12 minutes.

0
ProgrammingDEV Community ·

Hyperiux Vault CLI Lets Developers Add Cursor Effects to Next.js Projects

Hyperiux Vault is a source-first tool that installs creative UI effects, such as cursor interactions, scroll animations, and page transitions, directly into React and Next.js projects via a CLI. Rather than importing from a runtime package, the CLI copies effect source files into the developer's own codebase, giving full control over customization and implementation. The tool supports Next.js 14 and 15, React 18+, Tailwind CSS v3 and v4, and works with both App Router and Pages Router setups. A tutorial walkthrough demonstrates installing the GSAP-powered Phantom Image Trail cursor effect, covering initialization, file inspection, rendering, and accessibility adjustments. Because the source lives in the project repository, developers take on responsibility for ongoing maintenance, upgrades, and performance of the installed effects.