Feed aggregator
Google Pixel 11 Rumor Roundup: New Colors, Higher Prices and Lots of Leaks
Least privilege for AI agents: Identity, access, and tool binding
AI agents aren’t only smarter API callers. They plan, chain actions across systems, and invoke tools in sequences while no single human explicitly approves each step. The architectural reality may introduce identity and authorization challenges that organizations are still evolving to address.
When an agent operates without a managed identity and least-privilege role-based access controls (RBAC), it can access or modify sensitive data beyond intended permissions if controls are not properly configured. Since agents can operate across multiple systems within a single workflow, a misconfigured permission may increase the potential impact compared to traditional service account scenarios, depending on how the system is configured and scoped. Organizations are deploying agentic capabilities (multi-step automation, delegated actions, tool use) faster than their identity and authorization models are evolving to safely constrain them.
The resulting exposure can be significant and may include risks such as unauthorized data access, unintended writes or deletions, and potential privilege escalation arising from overly broad role assignments. In some cases, these conditions can also contribute to gaps in auditability, which may make cyberattack detection, incident response, and regulatory inquiries more complex than necessary.
The right mental model is to treat every agent as a first-class principal: give it a lifecycle-managed identity, assign explicit roles, scope its permissions tightly, and scope tool usage to a preconfigured tools manifest or configuration.
Real-world scenariosThe risk can occur in real-world implementations. Consider a common pattern: a team provisions an agent with a broad “Reader” role because it’s quick and the initial use case seems read-only. Then the workflow expands to include fixing issues it finds, and suddenly the agent needs write access too. Rather than rethinking the role design, teams grant something broader than intended and move on.
The scope creep is quiet, incremental, and rarely revisited. A related problem emerges when agents work across multiple tools. An agent with access to email, files, a ticketing system, and a code repository may look low-risk at each individual integration, but the combination lets it correlate data across systems and take actions no one explicitly authorized as a whole. Combined access across systems may result in broader effective permissions than evaluated individually.
Underneath both scenarios is a question that teams consistently fail to answer cleanly: is the agent acting under its own identity, a delegated user scope, or some mix of both? That ambiguity matters because it determines who’s accountable when something goes wrong, and what approvals were actually required.
When the answer isn’t documented and enforced upfront, it shows up later in the worst possible context: an incident where logs might capture what tool was called but can’t answer key questions such as: who authorized the action, under what role, or whether it was within intended scope. Sensitive data may be retrieved or summarized beyond its intended audiences if controls are not properly scoped.
An agent helpfully automates a remediation step and modifies or deletes something it shouldn’t have. Then the investigation stalls not because logs are missing, but because the identity model was never coherent enough to make them meaningful. This leaves organizations in the firefighting mood to resolve and solve questions their leadership cannot fully answer to customers, press, or auditors.
Best Practices: Identity + RBAC + Scope + Safe Tool BindingFor best practices in designing agentic identity and authorization, implementing multiple controls is intended to help reduce the potential impact of agent actions when configured and applied appropriately, while helping make privilege decisions explicit and supporting accountability in the event of unexpected or unintended outcomes.
Recommended practices for teams are generally to establish and document:
(1) a unique, dedicated agent principal with a named owner and an explicit purpose
(2) least-privilege, task-based roles that are scoped to the specific resources and data the agent needs
(3) Controlled tool access intended to limit the agent to approved actions
(4) end-to-end auditability so you can answer “what happened, under what authority, and what changed?” quickly.
In practice, the time-limited aspect should typically apply to entitlements (role activation, tokens, or approvals) rather than trying to create a new identity for every task. Most real-world deployments keep the agent identity stable for lifecycle management, while using just-in-time (JIT) elevation to grant narrowly scoped privileges only for the duration of a specific workflow.
Start by making the agent afirst-class principal. Create a dedicated agent identity (not a shared secret or reused service account), document its purpose statement (“what it is allowed to do and why”), and assign clear human ownership for approvals and incident response.
Build in lifecycle management from day one: onboarding checks, credential rotation, suspension/decommissioning procedures, and a fast shutdown mechanism that actually invalidates credentials and tokens. Then design role-based access controls (RBAC) around discrete tasks, not teams or org charts.
Model roles that match the smallest meaningful units of work, such as “Read-only knowledge retrieval,” “Summarize labeled documents,” “Create a draft ticket.” Avoid bundling unrelated permissions to reduce operational friction. When the workflow includes both evidence gathering and remediation, separate duties: use different roles (or different tools) for read versus write, and gate high-impact actions like delete, export, or privilege changes behind step-up approvals.
Scope everything and do it multiple times. Constrain permissions by resource boundary (tenant/subscription/workspace/site), by data boundary (collection, label, sensitivity), and by operation boundary (read/write/export/admin).
The goal is to help make the where and what of access as explicit as the who. Pair this with safe tool binding by exposing a curated and approved set of tools/actions to the agent, and require explicit allowlists for high-impact operations.
This is where JIT for agents can help manage privilege exposure when implemented appropriately, such as, keep the baseline role minimal, use time-limited entitlements (temporary role activation, short-lived tokens, or per-action approvals) when the workflow genuinely requires higher privilege—and automatically drop back to the baseline when the workflow completes.
Finally, design systems to verify explicitly at every step whenever feasible. Downstream tools and services must re-check claims, roles, and scope on each call rather than trusting the orchestrator implicitly; otherwise, the “weakest link” becomes any integration that assumes upstream validation is sufficient.
Consider incorporating accountability controls as a core product feature, not an afterthought. Instrument agent actions end-to-end so logs capture the agent identity, role used, effective scope, resource accessed, action taken, “on behalf of” user (if applicable), timestamps, and correlation IDs that stitch together orchestrator → tool call → downstream system.
Without those fields, teams can’t reliably reconstruct intent or containment boundaries during an incident. Build and test revocation and recovery paths the same way you test feature reliability: practice disabling the agent identity, rotating credentials, and executing rollback/compensating actions for common failure cases (e.g., bulk ticket creation gone wrong, unintended writes, or export attempts). Operationalize governance with regular access reviews, removal of stale permissions, and mandatory re-approval when workflows change materially. And don’t stop at individual roles—deploy tools and processes that analyze aggregate permissions, because the real risk often emerges when multiple “reasonable” roles combine to enable a high-impact chain of actions.
Common pitfalls tend to undermine these controls in predictable ways. The fastest way to create long-term risk is granting broad Owner/Admin roles to unblock a pilot, then never coming back to refactor permissions once the workflow “works.” Shared secrets across multiple agents erase accountability and make revocation slow and incomplete.
Relying on prompts or “the agent will only do X” narratives instead of hard authorization boundaries invites prompt injection and workflow drift. Without the underlying tool invocations, scopes, and downstream authorization decisions, logging only the LLM response creates an audit trail that looks present but is useless for forensics.
Temporary access that lacks an expiry mechanism becomes permanent access in practice. Teams can avoid these anti-patterns by defaulting to task-based roles, enforcing explicit scopes and tool allowlists, using JIT time-limited entitlements for elevation, re-checking authorization in every downstream system, and treating access review and revocation testing as required operational hygiene—not optional maturity work.
Looking AheadAgents are quickly moving from helpers to autonomous actors across email, files, tickets, and cloud resources; driving tighter coupling between identity governance, fine-grained authorization, and tool/action policy.
In the next 30–90 days, inventory your agent identities, remove broad roles, introduce task-scoped RBAC, and require safe tool binding plus end-to-end audit logs (with monitoring) before expanding deployments—especially for cross-tenant/guest agents, B2C agents, and agent ecosystems.
Read the Pattern & Practice (PnP): Least Privilege for Agents and use it as a checklist to close the gaps that most reduce impact: ownership, scope, tool allowlists, and fast revocation.
The post Least privilege for AI agents: Identity, access, and tool binding appeared first on Microsoft Security Blog.
SnippAI – Screenshot, speak, straight into your Claude Code session
Article URL: https://snippai.dev
Comments URL: https://news.ycombinator.com/item?id=48936307
Points: 1
# Comments: 1
Akamai (Linode) Changed How It Bills New Compute – What It Meant for Our Dataset
Pong Wars on the Commodore 64
Article URL: https://imrannazar.com/articles/c64-pongwars
Comments URL: https://news.ycombinator.com/item?id=48936299
Points: 1
# Comments: 1
Slashfriends – A Directory of /Friends Pages
Article URL: https://slashfriends.org/
Comments URL: https://news.ycombinator.com/item?id=48936250
Points: 1
# Comments: 0
#1 Standup on my projet progress
Article URL: https://twitter.com/ab44997/status/2077782776275718429
Comments URL: https://news.ycombinator.com/item?id=48936239
Points: 1
# Comments: 1
Show HN: Open-source AI app builder you can embed into your own SaaS
We just open sourced a first class our AI web app builder.
Instead of using another hosted AI coding platform, you can fork this project and build your own AI app builder, fully customized and running under your own brand.
It includes:
Next.js + TypeScript AI chat with streaming Artifact generation File explorer Code editor Live preview Databases Sandboxes to be used by AI agents Versions Responsive production-ready UI And a lot more...
The only required dependency is the Totalum API, which exposes the AI generation engine through a simple REST API. You can replace or extend the backend however you want.
It's designed for developers, SaaS companies and agencies that want to:
Build their own AI app builder Add AI app generation to an existing product Create a white label AI builder Customize every part of the UI and workflow Self host the frontend
We use the same frontend in production, and decided to open source it so others don't have to start from scratch.
Repository: https://github.com/totalumlabs/ai-app-builder-open
I'd love feedback, feature requests, or ideas from the HN community.
Comments URL: https://news.ycombinator.com/item?id=48936225
Points: 1
# Comments: 0
Show HN: PokeTokenBar – Raise a Pokémon with your AI token usage
Article URL: https://github.com/chattymin/PokeTokenBar
Comments URL: https://news.ycombinator.com/item?id=48936171
Points: 1
# Comments: 1
Chip Motors
Article URL: https://chipmotors.com/
Comments URL: https://news.ycombinator.com/item?id=48936155
Points: 1
# Comments: 0
Everything I googled in a week as a professional software engineer (2019)
Article URL: https://localghost.dev/blog/everything-i-googled-in-a-week-as-a-professional-software-engineer/
Comments URL: https://news.ycombinator.com/item?id=48936143
Points: 1
# Comments: 0
Legacy Systems, Real-World Impacts: The Reality of OT Security
Legacy systems, safety concerns, and critical infrastructure risks make OT vulnerability disclosure one of cybersecurity's most challenging balancing acts.
The post Legacy Systems, Real-World Impacts: The Reality of OT Security appeared first on SecurityWeek.
US Sanctions First VPN in Crackdown on Ransomware Criminals
Scientists discovered the brain doesn't make decisions the way we thought
Article URL: https://www.sciencedaily.com/releases/2026/07/260712011757.htm
Comments URL: https://news.ycombinator.com/item?id=48935618
Points: 1
# Comments: 0
Security incident disclosure – July 2026
Article URL: https://huggingface.co/blog/security-incident-july-2026
Comments URL: https://news.ycombinator.com/item?id=48935615
Points: 1
# Comments: 0
Truth Social launches service to give traders an edge with real-time service
Article URL: https://www.cnbc.com/2026/07/16/trump-truth-social-wall-street-traders-api.html
Comments URL: https://news.ycombinator.com/item?id=48935614
Points: 1
# Comments: 0
Foursmith VR –– Another Way to Watch VR, Like TikTok
Article URL: https://cdn.jsdelivr.net/gh/foursmith/vr@main/doc/demo.mp4
Comments URL: https://news.ycombinator.com/item?id=48935603
Points: 1
# Comments: 0
I monitor 99 free public APIs hourly so you don't integrate dead ones
Article URL: https://freeapi.watch/
Comments URL: https://news.ycombinator.com/item?id=48935577
Points: 1
# Comments: 0
Introducing Kimi K3
Article URL: https://platform.kimi.ai/docs/guide/kimi-k3-quickstart
Comments URL: https://news.ycombinator.com/item?id=48935573
Points: 1
# Comments: 0
