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

推荐订阅源

有赞技术团队
有赞技术团队
G
Google Developers Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
J
Java Code Geeks
P
Proofpoint News Feed
V
Visual Studio Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 叶小钗
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
H
Help Net Security
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
量子位
宝玉的分享
宝玉的分享
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 - The-CISO-Network/pqc: Post-Quantum Cryptography
cs02rm0 · 2026-05-22 · via Hacker News: Show HN

PQC Tools

Post-Quantum Cryptography readiness scanner and connection monitor.

Quantum computers will soon break the RSA and elliptic-curve cryptography that protects almost all internet traffic. Adversaries are already harvesting encrypted data today to decrypt later — the "harvest now, decrypt later" threat. Governments are now mandating the shift to post-quantum cryptography: the U.S. has set aggressive timelines through NSA CNSA 2.0 and NIST standardization of ML-KEM and ML-DSA; the UK NCSC requires government and critical national infrastructure to begin PQC migration; and the EU's ENISA guidance and NIS2 framework are pushing operators to audit and upgrade their cryptographic estates. These tools give you a fast, automated way to aid verifying whether your endpoints are ready.

Checks whether TLS, SSH, and VPN endpoints support post-quantum cryptographic algorithms (ML-KEM / Kyber, ML-DSA / Dilithium, FALCON, SPHINCS+, NTRU, …) and gives a binary verdict:

Agent tool

Status Meaning
🔴 NO PQC No post-quantum algorithms detected. Vulnerable to harvest-now-decrypt-later.
🟢 PQC OK At least one post-quantum algorithm was detected.

In the future, we expect to extend these statuses so that green represents only PQC algorithms being available.


Installation

brew tap The-CISO-Network/pqc https://github.com/The-CISO-Network/pqc
brew install pqc

Part 1 — Scanner

Probe a single endpoint:

# Auto-detect protocol
pqc scan example.com 443
pqc scan github.com 22
pqc scan vpn.example.com 500

# Force protocol
pqc scan example.com 8443 --protocol tls
pqc scan bastion.internal 22 --protocol ssh

# JSON output (machine-readable / pipe to jq)
pqc scan example.com 443 --json

# Verbose — show all classical algorithms too
pqc scan example.com 443 -v

Example output:

────────────────────────────────────────────────────────────
  🟢  PQC OK
  Post-quantum algorithms detected.
────────────────────────────────────────────────────────────
  Host:     example.com:443
  Protocol: TLS

  PQC algorithms detected (1):
    ✓ x25519kyber768draft00

Protocol support

Protocol Default port Probe method
TLS 443 (+ common HTTPS-ish ports) sslyze (deep) or stdlib ssl (stdlib)
SSH 22 Raw TCP KEXINIT parse (no creds) or asyncssh
IKEv2 / VPN 500, 4500 Raw UDP SA_INIT / SA response parse

Part 2 — Agent

The agent daemon watches your host's active TCP connections and proactively scans any observed endpoint, logging results.

# Watch specific targets
pqc agent example.com:443 github.com:22

# Watch ALL observed connections
pqc agent --scan-all

# With logging to NDJSON
pqc agent example.com:443 --log-file /var/log/pqc.json

# CSV log, 10-second poll, 60-second cooldown
pqc agent --scan-all \
  --poll-interval 10 \
  --cooldown 60 \
  --log-file pqc-results.csv

How it works

The probe is independent of the observed connection — the agent opens its own socket to enumerate algorithms without intercepting or modifying traffic.

Log format

NDJSON (.json):

{
  "timestamp": "2025-01-15T10:23:01+00:00",
  "host": "example.com",
  "port": 443,
  "protocol": "tls",
  "status": "pqc_available",
  "label": "PQC OK",
  "pqc_algorithms": ["x25519kyber768draft00"],
  "classical_algorithms": ["..."],
  "error": null
}

CSV (.csv): one row per scan, same fields.


Optional dependencies

Extra Package Benefit
sslyze sslyze Deep TLS enumeration — all cipher suites, all KEX groups
agent psutil Reliable cross-platform connection table
asyncssh asyncssh Richer SSH probing with negotiation details

Without any extras, the tool works using only Python's stdlib — connections are still probed; just with slightly less detail.


Algorithm coverage

PQC algorithms tracked (see src/pqc/algorithms.py for full list):

  • Key encapsulation: ML-KEM (Kyber), FrodoKEM, BIKE, HQC, NTRU, NTRU Prime
  • Signatures: ML-DSA (Dilithium), FN-DSA (FALCON), SLH-DSA (SPHINCS+)
  • Hybrids: X25519+ML-KEM, P-256+ML-KEM, secp384r1+ML-KEM-1024

Contributions to expand coverage welcome.


Contributing

PRs welcome. Areas of particular interest:

  • Additional protocol probers (QUIC/HTTP3, WireGuard, OpenVPN)
  • DTLS support
  • Web dashboard / Prometheus exporter
  • Package for apt / rpm

License

MIT