Bug Audit — Dissect, Then Verify Do NOT run a generic checklist. Instead: read the code, extract every auditable entity, then exhaustively question each one. Phase 1: Dissect (10-15 min) Read all project files. Build 7 tables. These tables ARE the audit — everything found here gets verified in Phase 2. Table 1: API Endpoints For every route in server-side code: For each endpoint, ask: - Can I call this without authentication? - Can I pass 0, negative, NaN, huge numbers, arrays, objects? - Can I skip a prerequisite API and call this directly? - What happens if I call this 100 times per second?…