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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
J
Java Code Geeks
I
InfoQ
V
Visual Studio Blog
M
MIT News - Artificial intelligence
H
Help Net Security
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
A
About on SuperTechFans
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
WordPress大学
WordPress大学

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - Dan-J-D/kblocker: Linux Kernel-level internet bl...
dan-j-d · 2026-06-14 · via Hacker News: 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.