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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
N
Netflix TechBlog - Medium
Vercel News
Vercel News
F
Fortinet All Blogs
量子位
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
月光博客
月光博客
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
D
Docker
WordPress大学
WordPress大学

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - Dan-J-D/kblocker: Linux Kernel-level internet bl...
dan-j-d · 2026-06-14 · via Show HN

A kernel-level internet blocker designed to remove your ability to break your own focus. Once enabled, it blocks access to configured domains by dropping matching TCP connections via netfilter and null-routing them via /etc/hosts. The key needed to disable or unload the module can be encrypted to trusted recipients and erased from kernel memory, making the decision to unblock a deliberate, collaborative act rather than an impulse.

Use case

You want to block distracting sites and make it genuinely hard to disable the blocker even for yourself. The goal isn't just to block, but to remove your own agency to undo it in a moment of weakness.

  • The kernel module hooks NF_INET_LOCAL_OUT and NF_INET_FORWARD, inspects TLS SNI, and drops matching connections
  • Disabling or unloading requires a 128-bit key, validated against a SHA-256 hash stored in the kernel
  • With PGP mode, the key is encrypted to your trusted recipients' GPG public keys and then erased from kernel memory. The only way to retrieve it is to have someone else PGP-decrypt it. You've outsourced your willpower.
  • The module file, auto-load config, hosts file, and domains config are protected with chattr +i (immutable) and inode_operations overrides, re-applied every second

Quick start

# build and install
sudo make install

# register a PGP key (do this first)
sudo kblockerctl add-pgp alice.pub

# block YouTube for 60 minutes
sudo kblockerctl enable 60

# check status
sudo kblockerctl status

# disable blocking (module stays loaded)
sudo kblockerctl unblock

# remove module entirely
sudo kblockerctl unload

PGP mode

Without PGP, the unload key is readable from /sys/kernel/kblocker/key. Anyone with root can retrieve it and disable the blocker. PGP mode encrypts the key to trusted recipients so that:

  1. On enable, kblockerctl reads the key from sysfs, GPG-encrypts it for all registered public keys, and signals the kernel to zero the key from memory
  2. The key sysfs attribute returns "encrypted" instead of the raw hex
  3. unblock and unload require the decrypted key (PGP-decrypt the ciphertext, write the plain hex to the kernel)
# register a PGP public key
sudo kblockerctl add-pgp alice.pub

# enable with PGP protection
sudo kblockerctl enable 60

# disable (needs PGP private key to decrypt)
sudo kblockerctl unblock

# unload (needs the key too)
sudo kblockerctl unload

Web UI: Browser-based PGP key management

Generate PGP keys entirely in your browser (using OpenPGP.js). The private key never touches the server:

# start web UI for key generation
sudo kblockerctl add-pgp-web
# Opens on http://127.0.0.1:<random-port>

The unblock-web UI lets you decrypt the PGP ciphertext client-side in the browser and submit the key:

sudo kblockerctl unblock-web
# Opens on http://127.0.0.1:<random-port>

Insecure mode

Without any key registered, --insecure mode prints the key to stdout instead:

sudo kblockerctl enable 60 --insecure

Commands

Command Description
enable <minutes> [--insecure] Enable blocking. Requires PGP unless --insecure
disable / unblock [--key <hex>] Disable blocking. Needs PGP key when PGP mode is active
unload [--key <hex>] Permanently remove the module. Needs the unblock key
status Show blocking state, remaining time, protected files
block <domain>... Write domains to kernel and config file (does not enable)
add <domain> Add a domain to the persistent config
remove <domain> Remove a domain
reload Re-write domains to kernel, refresh PGP ciphertexts, restore persisted state
block-ip <ip>... Set blocked IPs directly (replaces existing list)
list Show blocked IPs and configured domains
key Show the current unload key and PGP key fingerprints
add-pgp <pubkey.asc> [name] Register a PGP public key
remove-pgp <fingerprint> Remove a registered PGP key
list-pgp List registered PGP keys
pgp-cipher <fingerprint> Print the PGP-encrypted unload key for a recipient
add-pgp-web [--port <port>] [--bind <ip>] Start web UI for browser-based PGP key generation
unblock-web [--port <port>] [--bind <ip>] Start web UI to decrypt and submit unblock key via browser
crash Force-remove module (triggers kernel panic)

Architecture

┌──────────────────────────────────────────────────────────┐
│                    Userspace                             │
│                                                          │
│  kblockerctl                                             │
│      │ writes                                            │
│      ▼                                                   │
│  /sys/kernel/kblocker/{enabled,blocked_ips,              │
│                        blocked_domains,unblock,          │
│                        disable,pgp_active,...}            │
│                                                          │
│  PGP keys: /etc/kblocker/keys/                           │
│  Ciphertexts: /var/lib/kblocker/unlock-pgp/              │
│  Persisted state: /var/lib/kblocker/state                │
│  Domain config: /etc/kblocker/domains.conf               │
│                                                          │
│  Web UIs: add-pgp-web (key gen)                          │
│           unblock-web (browser PGP decrypt)              │
└──────────────────────┬───────────────────────────────────┘
                       │ sysfs
┌──────────────────────▼───────────────────────────────────┐
│                    Kernel                                │
│                                                          │
│  netfilter hooks (LOCAL_OUT, FORWARD)                    │
│    ├─ IPv4/IPv6 IP blacklist check                       │
│    ├─ TLS SNI inspection (domain blacklist)              │
│    └─ TLS ECH (0xFE0A) drop to force SNI fallback        │
│                                                          │
│  File protection (inode_operations override + immut)     │
│    ├─ kblocker.ko                                        │
│    ├─ /etc/modules-load.d/kblocker.conf                  │
│    └─ /etc/hosts                                         │
│                                                          │
│  Key management                                          │
│    ├─ 128-bit random key at module init                  │
│    ├─ SHA-256 hash stored for verification               │
│    ├─ PGP mode: key zeroed on pgp_active=1               │
│    └─ disable: regenerates key + clears pgp_active       │
│                                                          │
│  Timer: auto-disable on expiry (checks every 1s)         │
│  Workqueue: file protection re-check (every 1s)          │
└──────────────────────────────────────────────────────────┘

Build

Requires kernel headers (linux-headers-$(uname -r)) and Go 1.21+.

Install / Uninstall

# install
sudo ./install

# uninstall
sudo ./uninstall

Or via the deb package: ./build-deb.sh produces a .deb in build/.

Testing

Runs integration tests against the live kernel module via sysfs.