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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
量子位
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
爱范儿
爱范儿
博客园 - 【当耐特】
Vercel News
Vercel News
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
博客园 - 叶小钗
博客园_首页
V
Visual Studio Blog
宝玉的分享
宝玉的分享
B
Blog
MyScale Blog
MyScale Blog
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
V
V2EX

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 - think41/extrasuite: Token-efficient pull/edit/push workflow for AI agents editing Google Workspace files (Sheets, Docs, Slides, Forms) 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
GitHub - 256thFission/mini-mythos: OSS clone of Anthropic...
2026-04-16 · via Hacker News: Show HN

minimythos


A (shoddy) OSS clone of Anthropic's Mythos Preview cybersecurity harness* to locate and verify memory-safety vulnerabilities in C/C++ codebases.

*AGI not included, results may vary, side effects may include the end of all software, ludicrous API bills and/or Anthropic account bans
(probably not but I wouldn't say never ;-;)

Anthropic's Design is Stupidly Simple

  1. Rank every file 1-5
  2. Spin up a Docker container with an ASan-instrumented build
  3. Prompt Claude Code with that file to 'find an exploit bro' and report back a defect with a reproduction script.
  4. Have a Judge critic the finding for BS
  5. Repeat for EVERY FILE

that's it.

Okay, Why remake that? Does it work?

Obviously, I do not have access to Claude Mythos. This project is an experiment in 'baking a cake without flour'.

The hypothesis is that, with a reasonable harness, you don't need it. It doesn't take a genius to realize 'rate every file 1-5' is likely NOT best way to automate zero-day-discovery, and specialized tools + scaffolding might hold the key to better performance. Besides, Long term, big compute + historic CVEs + OSS git checkpoints is a perfect RL sandbox for tuninng agentic cyber-sec tools.

As for it working, early results are positive. View Current Progress to read current progress & yapping.

Quickstart - 1 step setup

Prerequisites

1. Configure your target

Create targets/<name>/target.toml

[project]
name = "myproject"
description = "a short description"

[build]
repo_url = "https://github.com/example/myproject.git"
repo_revision = "abc123"              # pin a commit SHA
workdir = "/opt/myproject"            # inside-container source path
build_dir = "."                       # subdir where commands run
apt_packages = ["libssl-dev"]         # extras on top of the base image

commands = [
    "./configure",
    "make CC=clang CFLAGS='-O1 -g -fno-omit-frame-pointer -fsanitize=address,undefined' LDFLAGS='-fsanitize=address,undefined'",
]

2. Set up the container

python3 harness/setup_cli.py setup myproject

That renders targets/myproject/Dockerfile from docker/Dockerfile.tmpl, builds the image, and starts the container.

WARNING: If your project needs exotic build steps (custom base image, multi-stage build, pre-build patches), Your're on your own. Write to targets/<name>/Dockerfile. The setup CLI detects it, Use --force-render to overwrite.

3. Run

python3 -u harness/orchestrator.py
Flag Purpose
--target NAME Target to audit (auto-detected if only one exists)
--max-runs N Stop after N audit runs
--dry-run Score files and print queue — skips audit runs
--skip-docker Skip Gate A trigger execution
--budget USD Hard cap in USD (default: $50)
--model MODEL Audit model (default: claude-opus-4-6)
# Live color log (run in a second terminal)
python3 watch_run.py --tail

# List completed runs
python3 show_run.py

# View a specific run transcript (any prefix of run_id works)
python3 show_run.py <run_id>

# View the judge transcript for a run
python3 show_run.py --judge <run_id>

Note: re-running the same command resumes from the next unresolved file. To reset fully:

rm runs/targets/myproject/audit.jsonl
rm runs/targets/myproject/scores.json

Current Progress

So far, I've worked with miniupnpd as a test repo, and managed to recreate historic CVEs on older checkouts. For novel work, the $20 opus plan has unearthed a global buffer overflow in miniupnpd.c remotely-triggered if running with a non-default config option.

Notes:

  • Anthropic Models are surprisingly willing to just FIND vulnerabilities and write triggers in this setting. Anccetodally, very low refusal rate when prompting them to find and write trigger scripts inside this automated harness.
  • Wrapping the Claude Code CLI directly is a massive shortcut. It might be too heavy and warrent changes later, but it's a SOTA agent scaffolding for a reason and mirrors what Anthropic reported in their tests.

Experimenting with better harnesses to test current model capabilities seems promising, with Opus [already finding live Firefox vulnerabilities] (https://www.anthropic.com/news/mozilla-firefox-security)

Planned improvements/ experiments

  • Semantic taint analysis before the main agent to focus the search space
  • Joern tools for call-graph analysis and reachability checks
  • AST-Aware context trimming
  • Patch churn targeting
  • Adding wrappers for Codex and OpenCode to benchmark performance against Claude

Obviously, PRs and issues welcome.