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

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
博客园_首页
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Y
Y Combinator Blog

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 - UMAI-Community/umai-core-ce: The open-source Ker...
ENTELIJAN · 2026-05-19 · via Hacker News - Newest: "AI"

UMAI

UMAI Core — animated terminal demo showing kernel-resident XDP drops

UMAI Core (Community Edition)

The Open-Source Kernel Semantic Firewall (KSF) for the AI Ecosystem

UMAI Core is not a traditional firewall. It is a lightweight, open-source network validation and enforcement agent that runs directly inside the Linux kernel space using eBPF (Extended Berkeley Packet Filter) and XDP (eXpress Data Path).

By hooking straight into the earliest possible stage of the network driver's packet entry gate, UMAI Core evaluates and enforces AI application protocols at raw line speed. It inspects conversational structures, tools, and machine identities the exact microsecond they arrive, dropping unauthorized or malicious requests before the main operating system spends memory or CPU cycles processing the packet.

⚡ The 60-Second Kernel Sandbox

Watch UMAI Core actually drop a live exploit attempt against a mock MCP server in three commands:

git clone https://github.com/UMAI-Community/umai-core-ce.git
cd umai-core-ce/playground
sudo ./demo-exploit.sh

You'll see the three stages run end-to-end:

  1. Defenseless — a mock unauthenticated MCP server starts in a container; an attacker container fires curl POST /mcp/exec and gets a fake shell.exec root leak back. Real RCE shape.
  2. Kernel armedumai-loader attaches the XDP program to the playground's Docker bridge interface; the attacker's IP is injected into umai_intel_map.
  3. The drop — same exploit, same source, same target — this time the packet is dropped at the bridge by XDP_DROP. bpftool map dump name umai_counters confirms the drop counter rose; the mock server's process logs show it never saw the second request.

Requires Linux 5.10+, Docker, and bpftool on the host. First run: ~3–5 minutes (image pulls + loader build). Re-runs: ~30 seconds. Won't work on macOS / Windows Docker Desktop — the VM kernel doesn't expose XDP attach to containers. See playground/README.md for full details.

🔌 AI-Exclusive Protocol Target Matrix

Unlike legacy network appliances or software WAFs, UMAI Core features deep-packet parsing engines optimized specifically to inspect and enforce the structured signatures of the autonomous AI ecosystem:

Vendor Interoperability Rails: MCP (Anthropic), A2A (Google), FCP (OpenAI), and ACP (IBM).

Framework & Orchestration Schemas: TAP (LangChain), AGP (Industry Standards), and OAP (Community Core).

Planning & Knowledge Graph Frameworks: TDF (Stanford), RDF-Agent (W3C), and AgentOS runtimes.

🛠️ Core Capabilities

Kernel-Resident Tracking: Zero dependency on slow, high-latency user-space application proxies, sidecars, container wrappers, or software gateways.

Line-Speed Interception: Operates at the network interface card (NIC) driver level via XDP, resolving security constraints in microseconds rather than milliseconds.

Rust Terminal User Interface (TUI): A blazing-fast, keyboard-driven command-line dashboard mapping real-time allowed/dropped packets and protocol distribution graphs with near-zero computing overhead.

Local Hardening (umai.toml): Complete file-based rules configuration. Save your parameters, and the local Rust daemon immediately updates active in-kernel memory maps (BPF_MAP_TYPE_HASH).

🚀 Quick Start

1. Installation

Clone the repository and compile the user-space loader daemon:

git clone https://github.com/UMAI-Community/umai-core-ce.git
cd umai-core-ce
cargo build --release -p umai-loader --no-default-features --features ce

2. Build or Fetch the Kernel Bytecode

The umai-loader expects a pre-compiled eBPF object file. You can compile the kernel-space bytecode using our pinned Docker configuration:

# Build the specialized eBPF object builder
docker build -f Dockerfile.ebpf -t umai-core-ebpf:0.1 .

# Extract the compiled ELF asset into your directory
docker run --rm -v $PWD/dist:/out umai-core-ebpf:0.1

3. Run UMAI Core

Load the compiled eBPF program directly into the network interface driver's receive path. (If testing inside a development VM or virtual network namespace where native driver XDP isn't supported, pass the --xdpgeneric flag to fall back gracefully):

sudo ./target/release/umai-loader --iface eth0 --kernel-object dist/umai-kernel --xdpgeneric

About Us

Our mission is to build the technology that helps the world understand, navigate, and secure the AI ecosystem.

The internet is evolving past a static collection of pages into a high-computational landscape of self-healing networks, predictive personalization, and an autonomous agent economy. UMAI Intelligence provides the technical clarity this infrastructure demands. We surface the entire public AI ecosystem—from model servers and capability protocols to agentic payment endpoints—providing the ground truth for an environment expanding faster than it can be secured.

UMAI Core is our open-source contribution to this mission. We build the bare-metal software plumbing, secure data pipelines, and hardware isolation platforms required to protect, validate, and stabilize AI systems. Our goal is to transform network visibility, turning probabilistic AI conversational states into hard, deterministic infrastructure defense.

Local Configuration & Automation

UMAI Core's intel map (umai_intel_map) is fully writable from userspace, so you can feed it with rules from a static config file, a log-parser cron job, your existing IDS hook, or whatever upstream system already knows what to block. The examples/ directory ships two starting points.

examples/umai-core.toml

Sample configuration showing the intended schema for v0.2's TOML config loader — interface defaults, ANS-protection blocklists with operator audit notes, and (for paid tiers) cloud-sync wiring. v0.1.0's loader doesn't yet parse this file directly, but it serves today as a documented source of truth that scripts and operators can read against.

examples/umai-sync.sh

A small bash wrapper around bpftool map update / delete that lets any upstream tool inject or remove IPv4 signatures at runtime — no loader recompile, no daemon restart:

sudo ./examples/umai-sync.sh 198.51.100.42 block     # add to intel map
sudo ./examples/umai-sync.sh 198.51.100.42 unblock   # remove from intel map
sudo ./examples/umai-sync.sh list                    # dump current entries
sudo ./examples/umai-sync.sh stats                   # per-CPU drop / pass counters

Wire this into:

  • fail2ban action scripts — escalate from iptables → kernel-level XDP_DROP
  • Suricata / Snort eve.json parsers — auto-block IPs above a noise threshold
  • Honeypot tooling — promote attacking IPs into the live map automatically
  • CI / GitOps — deploy blocklist changes as code alongside the rest of your infrastructure

📄 License

UMAI Core (Community Edition) is dual-licensed:

  • Userspace crates (umai-loader, umai-tui, umai-common) — Apache License 2.0. See LICENSE.
  • Kernel crate (umai-kernel) — GNU General Public License v2.0 (required by the Linux eBPF verifier). See umai-kernel/LICENSE.

See NOTICE for the rationale behind the split and trademark guidance.