deer-workflow
An open-source Dynamic Workflow runtime that combines deterministic TypeScript orchestration with replaceable Agent runtimes.
它把安全公告之后难以回答的问题变成有序的调查流程:先确定暴露窗口,再寻找利用痕迹;检测器只需分段读取即可识别构造文件,扫描器可在生产环境运行,并有 37signals 真实调查背景。
Tooling and method for answering two questions about a Rails application and CVE-2026-66066, the Active Storage and libvips arbitrary file read known as KindaRails2Shell:
The advisory explains the vulnerability and names the patched versions. It does
not tell you how to find out whether anyone used it against you. That question
decides whether secret_key_base and everything it signs have to be rotated,
and it is harder than it looks. The evidence is spread across your object store
and three Active Storage tables, application logs expire long before the
exposure window does, and a scheduled purge of unattached blobs destroys
precisely the records the answer depends on.
If you are going to ask, ask soon. Every one of those is a clock that is already running.
This is a documentation and skill repository rather than a library. Nothing here is installed into your application. An agent reads it and works against your application checked out somewhere else, and the one script that runs in production is a single self-contained file you copy into a container.
Rails decides a blob may be image-processed by reading a content_type column
that a direct upload lets the client set without the bytes ever being examined.
libvips then decides what the file actually is by sniffing magic bytes. A file
whose first ten bytes claim MATLAB 5.0 is routed to libvips' MATLAB loader,
which hands it to libmatio, which dispatches on a different byte range and
finds MAT 7.3, which is HDF5. HDF5's External File List lets a dataset's bytes
live in another file named by path and offset, so rendering the "image" reads an
attacker-chosen file off the server and returns its contents as pixels. The same
confusion, twice, at two layers that cannot see each other's fields.
reference/the-attack.md traces the whole call chain, from the inbound request
to the point where libmatio opens the target file, with the four load-bearing
junctions marked. reference/the-investigation.md then explains why the attack
is investigable at all: it leaves three artifacts of increasing strength, and
the strongest of them is the rendered variant, which holds the stolen bytes as
pixel values in your own object store.
根据分类、Topic 和编程语言匹配的相似项目。
An open-source Dynamic Workflow runtime that combines deterministic TypeScript orchestration with replaceable Agent runtimes.
Deltafin is a research project that runs the 2.8-trillion-parameter Mixture-of-Experts model Kimi K3 on a single Apple Silicon Mac (e.g., M1 Max with 64 GB) at about 16 seconds per token, using exact, reproducible inference with local or streaming expert loading.

A collection of notes on building coding agents, derived from the production development of the desktop agent Reina, with each mechanism simplified into a zero-dependency, single-file Node.js demo.