java-topology/defects
russell@unturf.com 1a7022ea83 warzone2100-0001: PROJECTILE::psDamaged std::find O(G*D) per tick, 9.5x
Defect: projectile.cpp line 872, std::find on std::vector<BASE_OBJECT*>
psDamaged inside grid neighbor iteration loop. Every projectile tick,
for each nearby object, does O(D) linear scan to check if already
damaged. Penetrating weapons inherit and grow psDamaged across hits.

Fix: replace std::vector with std::unordered_set for O(1) lookup.
push_back becomes insert, std::find becomes count, remove_if becomes
iterator-based erase loop.

Severity: MEDIUM. Hot path (per projectile per tick), scales with
battle density. D=200 damaged, G=100 grid neighbors: 9.5x speedup.

MOAD 0002-0005 CLEAN:
- 0002: global state is architectural (Eidos-era C game), not coupling defect
- 0003: no thread_local usage found
- 0004: no secrets logged (public keys and IPs only, standard for server logs)
- 0005: no unsynchronized cache patterns (game logic is single-threaded)
2026-03-31 12:25:06 -04:00
..
0ad-0001 0ad: 4 defects, 5-MOAD scan across pathfinding/visibility/templates/lobby 2026-03-31 11:58:37 -04:00
0ad-0002 0ad: 4 defects, 5-MOAD scan across pathfinding/visibility/templates/lobby 2026-03-31 11:58:37 -04:00
0ad-0003 0ad: 4 defects, 5-MOAD scan across pathfinding/visibility/templates/lobby 2026-03-31 11:58:37 -04:00
0ad-0004 0ad: 4 defects, 5-MOAD scan across pathfinding/visibility/templates/lobby 2026-03-31 11:58:37 -04:00
activemq undf: assign 732-733; stamp activemq-0002/0003 2026-03-30 08:02:58 -04:00
activemq-artemis undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
actix bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
actix-web bottle/gorm/axum/actix-web/gin/fiber: CWE-407 scan; 0 new defects, 4 CLEAN 2026-03-29 21:56:05 -04:00
airflow bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
alembic/patch game-engines: allegro5/bullet3/box2d/dry CWE-407 scan 2026-03-29 19:50:49 -04:00
allegro5 undf: repair registry collision; 616 assigned (602-616 new); stamp all agent-added patches 2026-03-29 20:01:56 -04:00
amarok undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
angelscript whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
ansible undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
ant/patch kafka-0009: GraphGraceSearchUtil diamond recursion O(2^D) → O(N); count 621→622 2026-03-29 16:59:50 -04:00
apmonitor undf: assign UNDF numbers, stamp patches; 882 total 2026-03-30 16:57:20 -04:00
argo-cd undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
argo-workflows bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
arrow undf: stamp duckdb/arrow patches; update registry to 767 2026-03-30 10:12:10 -04:00
artemis bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
asterisk undf: assign 731; stamp patches; postgres-0001/asterisk-0001/haproxy-0001/nginx-0001 2026-03-30 07:57:50 -04:00
audacity undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
axum/patch bottle/gorm/axum/actix-web/gin/fiber: CWE-407 scan; 0 new defects, 4 CLEAN 2026-03-29 21:56:05 -04:00
bazel diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
bcoin undf: assign 917; stamp bcoin patch 2026-03-31 09:13:04 -04:00
beam/patch beam+hive: CWE-407 scan — Beam CLEAN, Hive 2 defects (mergeSchema + averageColumnSizes) 2026-03-30 13:05:40 -04:00
bevy wave17: postgres-0001/asterisk-0001/haproxy-0001/nginx-0001; postfix+bevy CLEAN 2026-03-30 07:57:30 -04:00
binutils bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
bird bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
bitcoin undf: repair registry collision; 616 assigned (602-616 new); stamp all agent-added patches 2026-03-29 20:01:56 -04:00
bitcoinjs-lib bitcoinjs-lib CLEAN: 5-MOAD scan, all consensus-bounded 2026-03-31 09:38:24 -04:00
bleach/patch undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
blender undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
bottle bottle/gorm/axum/actix-web/gin/fiber: CWE-407 scan; 0 new defects, 4 CLEAN 2026-03-29 21:56:05 -04:00
box2d undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
btcpayserver-0001 undf: assign 928-930; btcpayserver CWE-407 scan (3 defects) 2026-03-31 09:39:59 -04:00
btcpayserver-0002 undf: assign 928-930; btcpayserver CWE-407 scan (3 defects) 2026-03-31 09:39:59 -04:00
btcpayserver-0003 undf: assign 928-930; btcpayserver CWE-407 scan (3 defects) 2026-03-31 09:39:59 -04:00
buck2/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
buildkit infra-cluster: consul/helm/doris CWE-407 scan; buildkit/containerd/traefik/grafana/victoria-metrics/nifi/samza CLEAN 2026-03-29 19:54:13 -04:00
bullet whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
bullet3 undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
bun undf: assign UNDF-729 to element-web-0001/0002 and bun-0001; stamp patches 2026-03-30 07:38:08 -04:00
caddy undf: assign 681-693; stamp 20 patches; numpy/pandas/scipy/scylladb/clickhouse/cockroachdb/duckdb/moby/simplex-chat new defects 2026-03-29 22:05:46 -04:00
cake_wallet-0001 undf: assign 920-922; stamp wasabi patches 2026-03-31 09:13:59 -04:00
cake_wallet-0002 undf: assign 925-927; stamp cake_wallet patches 2026-03-31 09:16:17 -04:00
cake_wallet-0003 undf: assign 925-927; stamp cake_wallet patches 2026-03-31 09:16:17 -04:00
cake_wallet-0004 undf: assign 925-927; stamp cake_wallet patches 2026-03-31 09:16:17 -04:00
calibre undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
camel cleanup: remove duplicate hibernate-0007/quarkus-0003 patches; correct camel/rabbitmq UNDF stamps 2026-03-29 18:34:26 -04:00
cargo diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
cassandra undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
cataclysm-0001 undf: assign 935-937; cataclysm-dda 3 CWE-407 defects 2026-03-31 10:08:23 -04:00
cataclysm-0002 undf: assign 935-937; cataclysm-dda 3 CWE-407 defects 2026-03-31 10:08:23 -04:00
cataclysm-0003 undf: assign 935-937; cataclysm-dda 3 CWE-407 defects 2026-03-31 10:08:23 -04:00
cayley/patch go-cluster: traefik-0001/nats-server-0001 CWE-407; grafana/consul/containerd/buildkit/helm/cayley CLEAN 2026-03-29 19:47:27 -04:00
celery undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
ceph undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
cfengine whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
chef undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
chromium/patch firefox: 2 CWE-407 defects — Sanitizer ListSet O(N×E) HIGH, DOMTokenList O(T²) MEDIUM; chromium SKIPPED (clone unavailable) 2026-03-30 14:51:20 -04:00
cilium bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
clementine undf: stamp clementine patches (UNDF-2026-000000841..842) 2026-03-30 14:43:28 -04:00
clickhouse undf: assign 681-693; stamp 20 patches; numpy/pandas/scipy/scylladb/clickhouse/cockroachdb/duckdb/moby/simplex-chat new defects 2026-03-29 22:05:46 -04:00
clickhouse-java undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
clojure/patch crystal-0001: collect_ancestors O(2^D) diamond traversal; clojure/elixir/nim/lua CLEAN; count 621→622 2026-03-29 18:28:41 -04:00
cmake diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
cockroach undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
cockroachdb undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
cocos2d-0001 cocos2d-x: 3 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:10:19 -04:00
cocos2d-0002 cocos2d-x: 3 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:10:19 -04:00
cocos2d-0003 cocos2d-x: 3 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:10:19 -04:00
commons-lang/patch dagger-0001 + jackson-0001/0002: Deque.contains O(N×D) + two O(N²) type-hierarchy scans; count 656→659 2026-03-29 19:03:31 -04:00
composer/patch undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
conduit undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
consul undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
containerd infra-cluster: consul/helm/doris CWE-407 scan; buildkit/containerd/traefik/grafana/victoria-metrics/nifi/samza CLEAN 2026-03-29 19:54:13 -04:00
cpython undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
crystal undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
curl undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
cxf/patch dubbo-0001 + cxf-0001: annotation diamond recursion O(2^D); WSDL import O(N²); count 621→623 2026-03-29 18:23:19 -04:00
dagger/patch undf: stamp dagger-0001/jackson-0001/0002 (UNDF-580/596/597); registry 597 assigned 2026-03-29 19:04:09 -04:00
darktable undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
dart undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
dask game-engines: allegro5/bullet3/box2d/dry CWE-407 scan 2026-03-29 19:50:49 -04:00
dask-project undf: assign 908-914; stamp transformers/ray-project/dask-project patches 2026-03-31 07:48:39 -04:00
deluge undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
dendrite game-engines: allegro5/bullet3/box2d/dry CWE-407 scan 2026-03-29 19:50:49 -04:00
deno/patch wave16c: esbuild/deno CWE-407 scan results 2026-03-30 07:39:57 -04:00
dgl/patch game-engines: allegro5/bullet3/box2d/dry CWE-407 scan 2026-03-29 19:50:49 -04:00
dgraph kafka-0009: GraphGraceSearchUtil diamond recursion O(2^D) → O(N); count 621→622 2026-03-29 16:59:50 -04:00
diesel php-cluster: doctrine-orm-0001 + composer-0003 CWE-407 defects; count 668→670 2026-03-29 19:51:31 -04:00
digikam undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
distlib distlib/luigi/zookeeper/mybatis/solc/solana/go-ethereum: CWE-407 patches + unit tests; solana CLEAN 2026-03-30 07:06:26 -04:00
django undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
doctrine diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
doctrine-orm/patch undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
dogecoin-0001 undf: assign 917; stamp bcoin patch 2026-03-31 09:13:04 -04:00
dolibarr undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
dolphin/scan emulator scan: MAME/Dolphin/ScummVM all CLEAN — no CWE-407 defects 2026-03-30 15:23:14 -04:00
doris undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
dosbox-x undf: assign 898-906; stamp dosbox-x/rpcs3/ppsspp patches 2026-03-31 07:33:50 -04:00
dovecot undf: assign UNDF-728 to wave16 defects (nova/keystone/crystal/dovecot/wireshark); stamp patches 2026-03-30 07:34:08 -04:00
dragonfly undf: assign 737-739; stamp dragonfly/valkey/kafka patches; update UNDF count to 739 2026-03-30 08:35:14 -04:00
druid undf: repair registry collision; 616 assigned (602-616 new); stamp all agent-added patches 2026-03-29 20:01:56 -04:00
dry undf: repair registry collision; 616 assigned (602-616 new); stamp all agent-added patches 2026-03-29 20:01:56 -04:00
dubbo undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
duckdb undf: stamp duckdb/arrow patches; update registry to 767 2026-03-30 10:12:10 -04:00
eclipse-jdt undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
efcore diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
ejabberd whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
elasticsearch undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
electrum-0001 undf: assign 920-922; stamp wasabi patches 2026-03-31 09:13:59 -04:00
electrum-0002 undf: assign 920-922; stamp wasabi patches 2026-03-31 09:13:59 -04:00
element-web undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
elixir undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
emacs scan: HandBrake + Emacs CWE-407 — both CLEAN 2026-03-30 11:45:36 -04:00
envoy undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
erlang erlang-0004: edlin_type_suggestion print_type Visited list O(D²); count 642→643 2026-03-29 17:56:37 -04:00
erpnext-0001 erp scan: erpnext-0001/0002, ofbiz-0001/0002; odoo CLEAN; 4/4 PASS 2026-03-30 15:24:39 -04:00
erpnext-0002 erp scan: erpnext-0001/0002, ofbiz-0001/0002; odoo CLEAN; 4/4 PASS 2026-03-30 15:24:39 -04:00
esbuild undf: assign UNDF-730 to esbuild-0001; stamp patch 2026-03-30 07:41:36 -04:00
etcd/patch minio: 3 CWE-407 defects; etcd: CLEAN (deeper scan) 2026-03-30 10:24:48 -04:00
exim undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
exposed kafka-0009: GraphGraceSearchUtil diamond recursion O(2^D) → O(N); count 621→622 2026-03-29 16:59:50 -04:00
express/patch no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
fastapi whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
ffmpeg undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
fiber whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
firefox undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
fish/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
flask/patch diamond-scan: cpython/django O(2^D) hierarchy traversal; flask/rails/ruby/phoenix CLEAN 2026-03-29 20:16:12 -04:00
flink undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
flutter/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
forgejo-0001 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
foundationdb bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
freecad-0001/patch freecad/retroarch/mpv: CWE-407 scan — 3 defects, mpv CLEAN 2026-03-30 14:53:03 -04:00
freecad-0002/patch freecad/retroarch/mpv: CWE-407 scan — 3 defects, mpv CLEAN 2026-03-30 14:53:03 -04:00
freeswitch undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
frrouting bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
gcc diamond-scan: llvm/gcc/swift/webkit O(2^D) type hierarchy traversal 2026-03-29 20:19:38 -04:00
gdb/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
ghc/patch diamond-scan-deeper: kotlin/scala3/groovy/ghc O(2^D) hierarchy traversal — CLEAN + groovy-0001/0002 patches 2026-03-29 20:30:49 -04:00
gimp undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
gin whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
git whitepaper: 366/178 — wave5 defect tables + PDF rebuild 2026-03-27 15:37:42 -04:00
gitea/patch gitlab-foss: 5 CWE-407 defects — Network::Graph find_free_space/overlap O(R*S), NotificationService mentioned_users O(R*M), RefreshService commit_ids O(MR*C), Project#members_among O(U*A); 4/4 PASS 2026-03-30 14:55:33 -04:00
gitlab-foss undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
glib/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
go undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
go-ethereum distlib/luigi/zookeeper/mybatis/solc/solana/go-ethereum: CWE-407 patches + unit tests; solana CLEAN 2026-03-30 07:06:26 -04:00
godot undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
gorm bottle/gorm/axum/actix-web/gin/fiber: CWE-407 scan; 0 new defects, 4 CLEAN 2026-03-29 21:56:05 -04:00
graal/patch undf: stamp graal-0001/0002 (UNDF-599/600); registry 600 assigned 2026-03-29 19:18:05 -04:00
gradle undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
grafana undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
grape whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
graphhopper undf: repair registry collision; 616 assigned (602-616 new); stamp all agent-added patches 2026-03-29 20:01:56 -04:00
groovy undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
grpc cpp-systems: tor CLEAN.md updated to note existing patches tor-0001/0002/0003 2026-03-29 19:54:59 -04:00
grpc-java undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
gstreamer undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
guice/patch cpp-systems: tor CLEAN.md updated to note existing patches tor-0001/0002/0003 2026-03-29 19:54:59 -04:00
gunicorn/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
gyp/patch whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
hadoop undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
hanami whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
handbrake/patch scan: HandBrake + Emacs CWE-407 — both CLEAN 2026-03-30 11:45:36 -04:00
happymon happymon: CWE-407 scan CLEAN — no algorithmic complexity defects 2026-03-30 16:50:02 -04:00
haproxy undf: assign 731; stamp patches; postgres-0001/asterisk-0001/haproxy-0001/nginx-0001 2026-03-30 07:57:50 -04:00
haystack llm-infra scan: litellm-0001 _delete_deployment combined_id_list O(R*C); haystack CLEAN 2026-03-30 16:44:06 -04:00
hazelcast undf: stamp hazelcast-0002/0003 (UNDF-416/601); registry 601 assigned 2026-03-29 19:26:36 -04:00
hbase bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
helm undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
hibernate undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
hibernate-orm/patch undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
hibernate-orm-0001 undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
hibernate-validator/patch undf: assign 671-680 to diamond-scan defects; 680 total assigned 2026-03-29 20:27:09 -04:00
hive undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
httpd bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
httpx openai SDK dependency chain CWE-407 scan: all 5 targets CLEAN 2026-03-30 16:44:33 -04:00
hudi bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
hypercorn/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
iceberg bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
imagemagick undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
influxdb undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
inkscape undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
intellij/patch jvm-langs: intellij platform CLEAN; kotlin/scala3 defects already committed 2026-03-29 19:58:14 -04:00
istio undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
jackson/patch undf: stamp dagger-0001/jackson-0001/0002 (UNDF-580/596/597); registry 597 assigned 2026-03-29 19:04:09 -04:00
jami-daemon whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
janusgraph undf: repair registry collision; 616 assigned (602-616 new); stamp all agent-added patches 2026-03-29 20:01:56 -04:00
javac whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
jax bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
jellyfin-0001 jellyfin-0001/jellyfin-0002: Jellyfin 5-MOAD scan 2026-03-31 11:46:30 -04:00
jellyfin-0002 jellyfin-0001/jellyfin-0002: Jellyfin 5-MOAD scan 2026-03-31 11:46:30 -04:00
jenkins whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
jetty bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
jgit whitepaper: 366/178 — wave5 defect tables + PDF rebuild 2026-03-27 15:37:42 -04:00
jitsi-videobridge whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
jsc undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
julia undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
kafka undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
kdenlive undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
keycloak/patch keycloak+shiro: CWE-407 scan CLEAN — both use HashSet throughout for membership testing 2026-03-30 13:25:06 -04:00
keystone undf: assign UNDF-728 to wave16 defects (nova/keystone/crystal/dovecot/wireshark); stamp patches 2026-03-30 07:34:08 -04:00
kicad godot-0005..0008 whitepaper entries + UNDF stamps; count 611→615 2026-03-27 23:18:59 -04:00
koa/patch no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
kodi wekan-0001/wekan-0002, kodi CLEAN: 5-MOAD scan across PrusaSlicer/Kodi/Wekan 2026-03-31 08:05:29 -04:00
kotlin cpp-systems: tor CLEAN.md updated to note existing patches tor-0001/0002/0003 2026-03-29 19:54:59 -04:00
krita/patch undf: stamp patches, update registry to 792 2026-03-30 11:15:59 -04:00
ktor ktor/undertow: CLEAN markers (no CWE-407 defects found) 2026-03-29 19:34:44 -04:00
kubeflow bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
kubernetes bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
kylin undf: repair registry collision; 616 assigned (602-616 new); stamp all agent-added patches 2026-03-29 20:01:56 -04:00
langchain ml-inference scan: vllm-0001 LoRA convert_mapping list.index O(B*L); ollama+langchain CLEAN 2026-03-30 16:41:47 -04:00
leveldb bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
libevent godot-0005..0008 whitepaper entries + UNDF stamps; count 611→615 2026-03-27 23:18:59 -04:00
libgdx undf: assign UNDF-2026-000000449/746/747 to libgdx-0002/0005/0006; stamp patches 2026-03-30 09:14:21 -04:00
libgit2 whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
libreoffice undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
libtorrent undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
libvirt undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
lighttpd/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
linkerd2 bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
linphone whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
linux bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
linux-kernel/patch no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
liquibase liquibase-0001: fix patch correctness + add unit test (4/4 PASS) 2026-03-29 18:25:38 -04:00
litellm undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
lldb bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
llvm undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
lmdb bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
loki undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
love2d bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
lua undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
lucene/patch no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
luigi distlib/luigi/zookeeper/mybatis/solc/solana/go-ethereum: CWE-407 patches + unit tests; solana CLEAN 2026-03-30 07:06:26 -04:00
make bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
mame/scan emulator scan: MAME/Dolphin/ScummVM all CLEAN — no CWE-407 defects 2026-03-30 15:23:14 -04:00
mariadb whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
mastodon/patch undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
matrix-js-sdk/patch synapse-0001: sync handler newly_joined_rooms List membership O(J*N); matrix-js-sdk CLEAN 2026-03-30 15:23:53 -04:00
mattermost undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
maven whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
mbedtls bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
memcached sync: UNDF stamps, unit classes, 146 outreach briefs, CLAUDE.md #1 priority MOAD-1 2026-03-29 15:56:35 -04:00
mesa whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
meson undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
metabase/patch superset+metabase: CWE-407 scan — 3 defects in Superset, Metabase CLEAN 2026-03-30 13:04:14 -04:00
metaflow bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
micronaut undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
micronaut-core undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
mindustry mindustry CLEAN: all 5 MOADs scanned, no defects found 2026-03-31 10:09:04 -04:00
minecraft undf: assign UNDF-000000354..403 to 8 new defects; 571 total 2026-03-29 16:13:15 -04:00
minetest-0001 minetest: remove compiled test binaries 2026-03-31 10:10:41 -04:00
minetest-0002 minetest: remove compiled test binaries 2026-03-31 10:10:41 -04:00
minetest-0003 minetest: remove compiled test binaries 2026-03-31 10:10:41 -04:00
minetest-0004 minetest: remove compiled test binaries 2026-03-31 10:10:41 -04:00
minetest-0005 minetest: remove compiled test binaries 2026-03-31 10:10:41 -04:00
minio undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
mlflow/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
moby undf: assign 681-693; stamp 20 patches; numpy/pandas/scipy/scylladb/clickhouse/cockroachdb/duckdb/moby/simplex-chat new defects 2026-03-29 22:05:46 -04:00
mongodb bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
monogame-0001 undf: assign 941-943; stamp monogame patches 2026-03-31 10:07:59 -04:00
monogame-0002 undf: assign 941-943; stamp monogame patches 2026-03-31 10:07:59 -04:00
monogame-0003 undf: assign 941-943; stamp monogame patches 2026-03-31 10:07:59 -04:00
mpd/patch clementine: 2 CWE-407 defects; mpd + rhythmbox CLEAN 2026-03-30 14:42:15 -04:00
mpich undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
mpv/patch freecad/retroarch/mpv: CWE-407 scan — 3 defects, mpv CLEAN 2026-03-30 14:53:03 -04:00
mybatis distlib/luigi/zookeeper/mybatis/solc/solana/go-ethereum: CWE-407 patches + unit tests; solana CLEAN 2026-03-30 07:06:26 -04:00
mysql bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
nagioscore-0001 undf: assign 741-880; stamp patches; generate_undf.py sync 2026-03-30 16:52:36 -04:00
nagioscore-0002 undf: assign 741-880; stamp patches; generate_undf.py sync 2026-03-30 16:52:36 -04:00
nats-server undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
neo4j kafka-0009: GraphGraceSearchUtil diamond recursion O(2^D) → O(N); count 621→622 2026-03-29 16:59:50 -04:00
neovim undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
nestjs nestjs-0003: introspectDepsAttribute lookupRegistry string[] O(D²) includes+concat; count 645→646 2026-03-29 18:07:01 -04:00
netdata/patch netdata CLEAN; telegraf-0001 dedup GetField O(F²) — 1 defect, 1/1 PASS 2026-03-30 13:27:58 -04:00
netty undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
netty-0001 undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
netty-0002 undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
networkx undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
neutron whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
nextcloud-server/patch undf: assign 847-849; stamp freecad/retroarch patches 2026-03-30 14:53:28 -04:00
nginx undf: assign 731; stamp patches; postgres-0001/asterisk-0001/haproxy-0001/nginx-0001 2026-03-30 07:57:50 -04:00
nifi cpp-systems: tor CLEAN.md updated to note existing patches tor-0001/0002/0003 2026-03-29 19:54:59 -04:00
nim undf: assign 681-693; stamp 20 patches; numpy/pandas/scipy/scylladb/clickhouse/cockroachdb/duckdb/moby/simplex-chat new defects 2026-03-29 22:05:46 -04:00
ninja undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
nmap undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
nodejs bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
nomad undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
nova undf: assign UNDF-728 to wave16 defects (nova/keystone/crystal/dovecot/wireshark); stamp patches 2026-03-30 07:34:08 -04:00
npm/patch diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
numpy pandas: fix second 0002 collision — rename list-scan stub to pandas-0003 2026-03-29 22:08:05 -04:00
obs-studio undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
octave scala-0002: RefChecks.intersectionIsEmpty O(D²) 100x; julia/octave deeper scan CLEAN 2026-03-29 22:11:30 -04:00
odl whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
odoo erp scan: erpnext-0001/0002, ofbiz-0001/0002; odoo CLEAN; 4/4 PASS 2026-03-30 15:24:39 -04:00
ofbiz-0001 erp scan: erpnext-0001/0002, ofbiz-0001/0002; odoo CLEAN; 4/4 PASS 2026-03-30 15:24:39 -04:00
ofbiz-0002 erp scan: erpnext-0001/0002, ofbiz-0001/0002; odoo CLEAN; 4/4 PASS 2026-03-30 15:24:39 -04:00
ogre undf: stamp panda3d-0001 → UNDF-2026-000000207, ogre-0001 → UNDF-2026-000000193 2026-03-30 09:28:43 -04:00
ollama ml-inference scan: vllm-0001 LoRA convert_mapping list.index O(B*L); ollama+langchain CLEAN 2026-03-30 16:41:47 -04:00
ompi undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
onos undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
open-webui-0001 open-webui-0001: CWE-312 logged secret in PersistentConfig Redis sync 2026-03-31 11:43:57 -04:00
open3d bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
openai-node openai SDK dependency chain CWE-407 scan: all 5 targets CLEAN 2026-03-30 16:44:33 -04:00
openai-python openai SDK dependency chain CWE-407 scan: all 5 targets CLEAN 2026-03-30 16:44:33 -04:00
openbgpd/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
openbsd bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
opencv undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
openfoam-0001 undf: assign 898-906; stamp dosbox-x/rpcs3/ppsspp patches 2026-03-31 07:33:50 -04:00
openmw-0001 openmw: 4 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:11:13 -04:00
openmw-0002 openmw: 4 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:11:13 -04:00
openmw-0003 openmw: 4 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:11:13 -04:00
openmw-0004 openmw: 4 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:11:13 -04:00
openra openra: ALL 5 MOADs CLEAN 2026-03-31 12:23:45 -04:00
openscad undf: assign UNDF numbers, stamp patches; 886 total 2026-03-30 17:21:56 -04:00
opensearch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
opensmtpd opensmtpd-0002: strip stale stamp (UNDF-727 now assigned correctly) 2026-03-30 07:09:37 -04:00
openssh bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
openssl bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
opentofu bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
openttd-0001 undf: assign 967-968; stamp openttd patches 2026-03-31 12:09:45 -04:00
openttd-0002 undf: assign 967-968; stamp openttd patches 2026-03-31 12:09:45 -04:00
openvpn undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
optuna bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
osrm/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
otel-collector undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
ovs whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
panda3d undf: stamp panda3d-0001 → UNDF-2026-000000207, ogre-0001 → UNDF-2026-000000193 2026-03-30 09:28:43 -04:00
pandas pandas: fix second 0002 collision — rename list-scan stub to pandas-0003 2026-03-29 22:08:05 -04:00
pcl undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
pcsx2-0001 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
pcsx2-0002 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
peewee opensmtpd-0001: mta_handle_envelope TAILQ_FOREACH O(N²) task lookup — patch + unit test 2026-03-30 07:00:50 -04:00
perl5 bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
pgbouncer undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
phoenix diamond-scan: cpython/django O(2^D) hierarchy traversal; flask/rails/ruby/phoenix CLEAN 2026-03-29 20:16:12 -04:00
php bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
pinot undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
pip diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
podman bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
poetry poetry-0001: show --tree packages_in_tree list O(N²) membership; UNDF-2026-000000575 2026-03-29 18:09:57 -04:00
postfix wave17: postgres-0001/asterisk-0001/haproxy-0001/nginx-0001; postfix+bevy CLEAN 2026-03-30 07:57:30 -04:00
postgres undf: assign 731; stamp patches; postgres-0001/asterisk-0001/haproxy-0001/nginx-0001 2026-03-30 07:57:50 -04:00
postgresql bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
ppsspp undf: assign 898-906; stamp dosbox-x/rpcs3/ppsspp patches 2026-03-31 07:33:50 -04:00
prefect diamond-recursion deeper scan: CLEAN for pytorch/tensorflow/sklearn/ray/prefect/luigi/numpy 2026-03-29 17:53:36 -04:00
presto hive-0003 2026-03-29 22:19:47 -04:00
prometheus undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
prosody/patch no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
protobuf/patch cpp-systems: tor CLEAN.md updated to note existing patches tor-0001/0002/0003 2026-03-29 19:54:59 -04:00
proton undf: assign 893-894; stamp proton patches 2026-03-30 17:39:33 -04:00
proxysql undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
prusaslicer-0001 wekan-0001/wekan-0002, kodi CLEAN: 5-MOAD scan across PrusaSlicer/Kodi/Wekan 2026-03-31 08:05:29 -04:00
prusaslicer-0002 wekan-0001/wekan-0002, kodi CLEAN: 5-MOAD scan across PrusaSlicer/Kodi/Wekan 2026-03-31 08:05:29 -04:00
prusaslicer-0003 wekan-0001/wekan-0002, kodi CLEAN: 5-MOAD scan across PrusaSlicer/Kodi/Wekan 2026-03-31 08:05:29 -04:00
pulsar undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
pulumi bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
puppet undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
pydantic openai SDK dependency chain CWE-407 scan: all 5 targets CLEAN 2026-03-30 16:44:33 -04:00
pygame pygame/libgdx: CWE-407 findings 2026-03-30 09:13:34 -04:00
pylons whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
pyramid game-engines: allegro5/bullet3/box2d/dry CWE-407 scan 2026-03-29 19:50:49 -04:00
python-igraph bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
pytorch diamond-recursion deeper scan: CLEAN for pytorch/tensorflow/sklearn/ray/prefect/luigi/numpy 2026-03-29 17:53:36 -04:00
pytorch-geometric bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
qbittorrent/patch libtorrent-0001/qbittorrent: CWE-407 scan — 1 defect, 1 CLEAN 2026-03-30 10:39:32 -04:00
qemu bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
quarkus undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
r-source undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
rabbitmq undf: assign 734-736; stamp rabbitmq-0001/0002 2026-03-30 08:26:11 -04:00
rails undf: assign 671-680 to diamond-scan defects; 680 total assigned 2026-03-29 20:27:09 -04:00
ray diamond-recursion deeper scan: CLEAN for pytorch/tensorflow/sklearn/ray/prefect/luigi/numpy 2026-03-29 17:53:36 -04:00
ray-project undf: assign 908-914; stamp transformers/ray-project/dask-project patches 2026-03-31 07:48:39 -04:00
raylib game-engines: raylib-0001 GetGlyphIndex O(T×G), sdl3-0001 TRACK_RESOURCE O(N²); 2 new defects 2026-03-29 22:04:06 -04:00
redis undf: stamp redis-0001 patch with UNDF-260 2026-03-30 07:47:03 -04:00
redmine undf: assign UNDF numbers, stamp patches; 878 total 2026-03-30 16:46:38 -04:00
renpy-0001 renpy-0001: ShownImageInfo.choose_image() list membership O(I*A*(R+O)), 5.9x 2026-03-31 12:17:11 -04:00
retroarch-0001/patch freecad/retroarch/mpv: CWE-407 scan — 3 defects, mpv CLEAN 2026-03-30 14:53:03 -04:00
rhythmbox/patch clementine: 2 CWE-407 defects; mpd + rhythmbox CLEAN 2026-03-30 14:42:15 -04:00
rocketchat whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
rocksdb bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
roda/patch no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
ros2 bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
rpcs3 undf: assign 898-906; stamp dosbox-x/rpcs3/ppsspp patches 2026-03-31 07:33:50 -04:00
ruby undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
rubygems/patch diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
rust/patch no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
rust-bitcoin rust-bitcoin CLEAN: 5-MOAD scan, no defects found 2026-03-31 09:39:15 -04:00
rustc undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
salt undf: assign 721-726; salt-0001/0002/0003 CWE-407 list→set patches 2026-03-30 06:59:11 -04:00
saltstack/patch whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
samza/patch infra-cluster: consul/helm/doris CWE-407 scan; buildkit/containerd/traefik/grafana/victoria-metrics/nifi/samza CLEAN 2026-03-29 19:54:13 -04:00
scala cleanup: remove artifact .class and .go test files from defects/scala and defects/victoria-metrics 2026-03-29 22:28:42 -04:00
scala3 cpp-systems: tor CLEAN.md updated to note existing patches tor-0001/0002/0003 2026-03-29 19:54:59 -04:00
scipy undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
scribus undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
scummvm/scan emulator scan: MAME/Dolphin/ScummVM all CLEAN — no CWE-407 defects 2026-03-30 15:23:14 -04:00
scylladb tidb/scylladb: CWE-407 scan — renumber tidb patches, stamp UNDF 2026-03-30 10:13:33 -04:00
sdl undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
sdl2 whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
sdl3 game-engines: raylib-0001 GetGlyphIndex O(T×G), sdl3-0001 TRACK_RESOURCE O(N²); 2 new defects 2026-03-29 22:04:06 -04:00
sea-orm/patch undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
seaorm diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
sequelize whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
setuptools/patch poetry-0001: show --tree packages_in_tree list O(N²) membership; UNDF-2026-000000575 2026-03-29 18:09:57 -04:00
sfml whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
shiro/patch keycloak+shiro: CWE-407 scan CLEAN — both use HashSet throughout for membership testing 2026-03-30 13:25:06 -04:00
shotcut undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
signal-server no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
simplex-chat undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
sinatra whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
sklearn undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
snort3-0001 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
solana/patch distlib/luigi/zookeeper/mybatis/solc/solana/go-ethereum: CWE-407 patches + unit tests; solana CLEAN 2026-03-30 07:06:26 -04:00
solang/patch undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
solc distlib/luigi/zookeeper/mybatis/solc/solana/go-ethereum: CWE-407 patches + unit tests; solana CLEAN 2026-03-30 07:06:26 -04:00
solr bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
spark bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
sparrow-0001 sparrow-0001/sparrow-0002: Sparrow Wallet CWE-407 scan, 2 defects 2026-03-31 09:41:11 -04:00
sparrow-0002 sparrow-0001/sparrow-0002: Sparrow Wallet CWE-407 scan, 2 defects 2026-03-31 09:41:11 -04:00
spidermonkey undf: assign 721; stamp spidermonkey-0005 2026-03-30 06:47:50 -04:00
spirv-cross whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
spring undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
spring-framework spring-framework: 3 CWE-407 defects (UNDF-2026-000000734 through UNDF-2026-000000736) 2026-03-30 08:27:16 -04:00
sqlalchemy diamond hunt: godot-0009/0010 + meson-0002 + typeorm-0004/0005 + ts-0003; count 629→635 2026-03-29 16:52:04 -04:00
sqlite bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
squid-0001 undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
starrocks starrocks-0002 + diamond tests: hibernate-0007/threejs-0007 unit tests PASS; starrocks-0002 LockManager O(D²) onStack scan; count 639→640 2026-03-29 17:26:27 -04:00
storm undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
strawberry undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
strongswan bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
struts/patch dubbo-0001 + cxf-0001: annotation diamond recursion O(2^D); WSDL import O(N²); count 621→623 2026-03-29 18:23:19 -04:00
substrate substrate-0003: npos-elections Node::root visited Vec O(D²); 436x speedup at D=300 2026-03-29 17:50:40 -04:00
suitecrm undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
superset undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
supertuxkart-0001 supertuxkart-0001: item_manager randomItemsForArena O(N^2) invalid_location scan 2026-03-31 10:09:46 -04:00
suricata-0001 undf: assign UNDF numbers, stamp patches; 875 total 2026-03-30 16:45:00 -04:00
swift undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
synapse undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
syncthing undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
systemd bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
tcl bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
tcpdump/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
telegraf undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
tensorflow diamond-recursion deeper scan: CLEAN for pytorch/tensorflow/sklearn/ray/prefect/luigi/numpy 2026-03-29 17:53:36 -04:00
terraform undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
three.js undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
threejs undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
thrift thrift: remove thrift-0002 duplicate (same defect as thrift-0001 is_struct_storage_not_throwing) 2026-03-29 22:27:35 -04:00
thunderbird-0001 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
thunderbird-0002 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
thunderbird-0003 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
thunderbird-0004 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
thunderbird-0005 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
thunderbird-0006 undf: assign 895-897; stamp forgejo/snort3/tryton patches 2026-03-30 18:46:58 -04:00
tidb undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
tiktoken openai SDK dependency chain CWE-407 scan: all 5 targets CLEAN 2026-03-30 16:44:33 -04:00
tikv/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
tiled-0001 undf: assign 949-951; tiled map editor 3 CWE-407 defects 2026-03-31 11:44:37 -04:00
tiled-0002 undf: assign 949-951; tiled map editor 3 CWE-407 defects 2026-03-31 11:44:37 -04:00
tiled-0003 undf: assign 949-951; tiled map editor 3 CWE-407 defects 2026-03-31 11:44:37 -04:00
tinkerpop undf: repair registry collision; 616 assigned (602-616 new); stamp all agent-added patches 2026-03-29 20:01:56 -04:00
tokio php-cluster: doctrine-orm-0001 + composer-0003 CWE-407 defects; count 668→670 2026-03-29 19:51:31 -04:00
tomcat undf: stamp tomcat-0001/0002 (UNDF-315/556); registry 600 assigned 2026-03-29 19:31:50 -04:00
tomcat-0001 undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
tonic/patch php-cluster: doctrine-orm-0001 + composer-0003 CWE-407 defects; count 668→670 2026-03-29 19:51:31 -04:00
tor undf: repair registry collision; 616 assigned (602-616 new); stamp all agent-added patches 2026-03-29 20:01:56 -04:00
traefik undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
transformers undf: assign 908-914; stamp transformers/ray-project/dask-project patches 2026-03-31 07:48:39 -04:00
transmission/patch game-engines: allegro5/bullet3/box2d/dry CWE-407 scan 2026-03-29 19:50:49 -04:00
trezor-0001 CLAUDE.md: update UNDF count to 934 2026-03-31 09:40:19 -04:00
trezor-0002 CLAUDE.md: update UNDF count to 934 2026-03-31 09:40:19 -04:00
trino undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
tryton-0001 undf: assign 898-906; stamp dosbox-x/rpcs3/ppsspp patches 2026-03-31 07:33:50 -04:00
typeorm undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
typescript undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
undertow ktor/undertow: CLEAN markers (no CWE-407 defects found) 2026-03-29 19:34:44 -04:00
unreal/patch unreal/godot-deeper: CWE-407 findings 2026-03-30 09:50:15 -04:00
unrealircd whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
uvicorn/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
uwsgi bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
v8 undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
valhalla threejs-0007: Node.traverse() diamond recursion O(2^D); CLEAN for webpack/valhalla/traefik/wasmer/wasmtime; count 621->622 2026-03-29 17:07:25 -04:00
valkey undf: assign 737-739; stamp dragonfly/valkey/kafka patches; update UNDF count to 739 2026-03-30 08:35:14 -04:00
varnish bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
vault bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
veloren-0001 undf: assign 954-955; veloren-0001 TradePricing O(N^2) CWE-407, veloren-0002 auth token logged CWE-312 2026-03-31 11:48:12 -04:00
veloren-0002 undf: assign 954-955; veloren-0001 TradePricing O(N^2) CWE-407, veloren-0002 auth token logged CWE-312 2026-03-31 11:48:12 -04:00
vertx undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
vertx-core/patch undf: assign 828-832; stamp patches; tomcat-0001/hibernate-orm-0001/netty-0001/netty-0002 2026-03-30 13:55:42 -04:00
victoria-metrics cleanup: remove artifact .class and .go test files from defects/scala and defects/victoria-metrics 2026-03-29 22:28:42 -04:00
vim undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
vlc undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
vllm undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
vscode undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
vtk whitepaper: re-add 10 missing entries + 11 new defects this session, count 578→590; rebuild PDF 2026-03-27 22:18:31 -04:00
waitress/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
warzone2100-0001 warzone2100-0001: PROJECTILE::psDamaged std::find O(G*D) per tick, 9.5x 2026-03-31 12:25:06 -04:00
wasabi-0001 undf: assign 917; stamp bcoin patch 2026-03-31 09:13:04 -04:00
wasabi-0002 undf: assign 917; stamp bcoin patch 2026-03-31 09:13:04 -04:00
wasabi-0003 undf: assign 917; stamp bcoin patch 2026-03-31 09:13:04 -04:00
wasmer php-cluster: doctrine-orm-0001 + composer-0003 CWE-407 defects; count 668→670 2026-03-29 19:51:31 -04:00
wasmtime php-cluster: doctrine-orm-0001 + composer-0003 CWE-407 defects; count 668→670 2026-03-29 19:51:31 -04:00
webkit/patch diamond-scan: llvm/gcc/swift/webkit O(2^D) type hierarchy traversal 2026-03-29 20:19:38 -04:00
webpack threejs-0007: Node.traverse() diamond recursion O(2^D); CLEAN for webpack/valhalla/traefik/wasmer/wasmtime; count 621->622 2026-03-29 17:07:25 -04:00
weechat undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
weechat-0001 undf: assign 907; stamp weechat-0001 patch 2026-03-31 07:38:34 -04:00
wekan-0001 undf: assign 915-916; stamp wekan patches 2026-03-31 08:06:03 -04:00
wekan-0002 undf: assign 915-916; stamp wekan patches 2026-03-31 08:06:03 -04:00
weld/patch undf: assign 671-680 to diamond-scan defects; 680 total assigned 2026-03-29 20:27:09 -04:00
wesnoth-0001 wesnoth: 3 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:14:20 -04:00
wesnoth-0002 wesnoth: 3 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:14:20 -04:00
wesnoth-0003 wesnoth: 3 CWE-407 defects, MOAD 0002-0005 CLEAN 2026-03-31 12:14:20 -04:00
widelands-0001 openra: ALL 5 MOADs CLEAN 2026-03-31 12:23:45 -04:00
widelands-0002 openra: ALL 5 MOADs CLEAN 2026-03-31 12:23:45 -04:00
widelands-0003 openra: ALL 5 MOADs CLEAN 2026-03-31 12:23:45 -04:00
wine-0001 5-MOAD scan: pcsx2 2 defects, wine 1 defect + 1 MOAD-0004, thunderbird unavailable 2026-03-30 17:25:38 -04:00
wiredtiger/patch no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
wireguard-tools/patch no-stone-unturned wave: 8 new defects, 15 CLEAN confirmations; count 621→629 2026-03-29 16:11:50 -04:00
wireshark undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
wolfssl bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
xen undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
yugabyte bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
zabbix-0001 undf: assign UNDF numbers, stamp patches; 882 total 2026-03-30 16:57:20 -04:00
zabbix-0002 undf: assign UNDF numbers, stamp patches; 882 total 2026-03-30 16:57:20 -04:00
zed undf: assign UNDF-2026-000000874; stamp vllm-0001 patch 2026-03-30 16:42:12 -04:00
zeek undf: assign 694-720; stamp patches; ruby-0003/elixir-0002/r-source-0002/victoria-metrics-0002 2026-03-29 22:28:31 -04:00
zenoss monitoring scan: nagioscore 2 defects, zabbix 2 defects, zenoss CLEAN 2026-03-30 16:56:56 -04:00
zig/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
zookeeper distlib/luigi/zookeeper/mybatis/solc/solana/go-ethereum: CWE-407 patches + unit tests; solana CLEAN 2026-03-30 07:06:26 -04:00
zsh/patch bazel-0003 + kicad-0002: build toolchain feature check + PCB zone filler O(Z²×L²); count 601→603 2026-03-27 22:38:32 -04:00
zulip/patch game-engines: allegro5/bullet3/box2d/dry CWE-407 scan 2026-03-29 19:50:49 -04:00