惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
GbyAI
GbyAI
M
MIT News - Artificial intelligence
美团技术团队
罗磊的独立博客
雷峰网
雷峰网
量子位
博客园 - 【当耐特】
Last Week in AI
Last Week in AI
D
Docker
小众软件
小众软件
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
WordPress大学
WordPress大学
V
V2EX
博客园_首页
腾讯CDC
The Cloudflare Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - hoophq/hoop: Automated Access and Data Protection
luisfdias · 2026-04-28 · via Hacker News - Newest: "AI"

The gateway between your team and your infrastructure.

Hoop parses wire protocols in real time. It masks sensitive data before it reaches the client, blocks dangerous commands before they execute, and records every session. One gateway covers databases, Kubernetes, SSH, AI agents, and MCP servers.

Website · Docs · Discussions · Open Source

MIT License CNCF Member SOC 2 Type II


What is Hoop?

Hoop is an open-source gateway that sits between users (engineers, AI agents, service accounts) and infrastructure (databases, Kubernetes clusters, servers, APIs). Every query and command passes through the gateway at the wire protocol level, where you can:

  • Mask sensitive data in responses before it reaches the client (ML-powered, not regex)
  • Block dangerous commands before they execute (DROP TABLE, rm -rf, DELETE without WHERE)
  • Require human approval for risky operations via Slack or Teams
  • Record every session with full replay for compliance and incident review
  • Govern AI agent access to production infrastructure with the same controls

No agents on endpoints. No schema discovery. No code changes. Deploy the gateway, connect your identity provider, define your rules.

Who is this for?

Teams where engineers or AI agents access production infrastructure that contains sensitive data. If your developers run queries against databases with customer PII, execute commands on production Kubernetes clusters, or use Claude Code / Cursor against real systems, Hoop gives you visibility and control over what happens inside those sessions.

Used by NYSE-listed companies in production. 5,000+ databases protected through a single deployment.

The problem, concretely

Without Hoop

Debugging a production issue...

SELECT * FROM users WHERE id = 42;

| id | name          | email              | ssn         | card_number      |
|----|---------------|--------------------|-------------|------------------|
| 42 | Jane Thompson | jane@example.com   | 123-45-6789 | 4532-XXXX-XXXX   |

You screenshot the result for Slack. SSNs, emails, and card numbers are now in your team chat.

With Hoop

Same query through Hoop:

SELECT * FROM users WHERE id = 42;

| id | name | email          | ssn         | card_number      |
|----|------|----------------|-------------|------------------|
| 42 | J*** | j***@*****.com | ***-**-6789 | ****-****-****   |

Safe to share. No configuration required. The ML model detected the sensitive fields automatically.

Without Hoop

AI agent fixing a bug at 3AM:

> claude-code: DROP TABLE orders;
> 
> Query OK, 47,291,834 rows affected 💀

With Hoop

Same agent, same intent, through the gateway:

> claude-code: DROP TABLE orders;
> 
> ⛔ Blocked by guardrail: "Prevent destructive DDL in production"
> Event logged. Security team notified.

The command never reached the database.

Quick Start

# create a jwt secret for auth
echo "JWT_SECRET_KEY=$(openssl rand -hex 32)" >> .env

# download and run
curl -sL https://hoop.dev/docker-compose.yml > docker-compose.yml && \
  docker compose up

Gateway running on :8009. OIDC connected. Masking and guardrails active.

Full installation options →

How It Works

Engineers / AI Agents / Service Accounts
              │
              ▼
     ┌────────────────┐
     │   Hoop Gateway │  ← Parses wire protocols in real time
     │                │
     │  • Masks PII   │  (ML-powered, <5ms latency)
     │  • Blocks cmds │  (DROP, DELETE, rm -rf)
     │  • Approvals   │  (Slack / Teams)
     │  • Records all │  (full session replay)
     │  • AI controls │  (per-action governance)
     └────────────────┘
              │
              ▼
    Your Infrastructure
    (Databases, K8s, SSH, APIs, MCP servers)

The gateway parses wire protocols natively: PostgreSQL, MySQL, MSSQL, MongoDB, Kubernetes, SSH, HTTP/gRPC, RDP, and more. Your tools connect through the gateway without knowing it's there. No SDKs, no plugins, no browser extensions.

Key Capabilities

Data Masking

ML-powered detection of PII, PHI, PCI data, and credentials inside database responses, API payloads, and terminal output. Not regex. The model understands context: 555-1234 in a phone column is a phone number, BUILD-555-1234 in a CI log is a build ID. One rule covers thousands of resources. No schema mapping required.

Guardrails

Define dangerous operations and block them at the protocol layer before they reach the target system. DROP TABLE, DELETE without WHERE, kubectl delete namespace, rm -rf, and any custom pattern. Prevention, not detection.

Command Approval

Route risky operations (production writes, schema changes, config mutations) for human approval via Slack or Teams. One command, one decision. The operation waits until approved, denied, or scheduled for a maintenance window.

AI Agent Governance

Claude Code, Cursor, and autonomous agents connect to your infrastructure through the gateway. Agents read freely (with masked responses). Agents write with approval. Destructive operations are blocked outright. Every agent action is logged, risk-scored, and replayable.

MCP Gateway

Not just a proxy. Hoop inspects MCP payloads, masks PII in JSON responses before they reach the agent, blocks dangerous operations, and federates identity so developers never touch real credentials. Auto-generates a sensitive data catalog from MCP traffic.

Session Recording

Full session capture with replay. Every command, every response, every approval and denial. Generates compliance evidence for SOC 2, GDPR, PCI DSS, and HIPAA automatically.

Runbooks

Parameterized templates stored in Git. Your team executes common operations with validated inputs. Guardrails, masking, and approval workflows apply automatically to every run.

No SSO Tax

SSO is included in the open-source license. Connect Okta, JumpCloud, Azure AD, Google Workspace, or any OIDC/SAML provider. For free. Identity is a security primitive, not a revenue lever.

Installation

Docker (Recommended)

touch .env && \
curl -sL https://hoop.dev/docker-compose.yml > docker-compose.yml && \
docker compose up

See Docker Compose documentation →

See Kubernetes deployment documentation →

See AWS deploy & host documentation →

Supported Protocols

Category Protocols
Databases PostgreSQL, MySQL, MSSQL, MongoDB
Infrastructure Kubernetes (exec, port-forward), SSH, RDP
APIs HTTP, gRPC
AI Claude Code, Cursor, MCP servers
Runtimes Rails, Django, Elixir IEx, PHP
Cloud AWS SSM, custom CLIs

Contributing

We welcome contributions. Protocol parsers, masking patterns, guardrail rules, runbook templates, integrations, and documentation improvements. Check out our Development Documentation to get started.

Community

Join our Discussions to ask questions, share ideas, and connect with other users.

License

MIT. The code that touches your data is code you can read.


hoop.dev · Data security in transit. One gateway, every protocol.