fase(6): fuzzing module complete
This commit is contained in:
@@ -89,40 +89,40 @@ Spec: `.ralph/specs/phase-04-crawling-infrastructure.md`
|
||||
|
||||
---
|
||||
|
||||
## Phase 5: Findings Module [PENDIENTE]
|
||||
## Phase 5: Findings Module [COMPLETO]
|
||||
Spec: `.ralph/specs/phase-05-findings-module.md`
|
||||
|
||||
- [ ] 5.1: Crear `domain/entities/Finding.ts` — AggregateRoot con severity, type, evidence, status, actionTrace
|
||||
- [ ] 5.2: Crear value objects: `Severity.ts` (low/medium/high/critical), `FindingType.ts`, `Evidence.ts`, `FindingStatus.ts` (open/investigating/resolved/closed)
|
||||
- [ ] 5.3: Crear events: `FindingCreated.ts`, `FindingResolved.ts`, `FindingEnriched.ts`
|
||||
- [ ] 5.4: Crear ports: `IFindingRepository.ts`, `IAIEnricher.ts`
|
||||
- [ ] 5.5: Crear commands: `CreateFindingCommand.ts`, `EnrichFindingCommand.ts`, `ResolveFindingCommand.ts`
|
||||
- [ ] 5.6: Crear queries: `GetFindingQuery.ts`, `ListFindingsQuery.ts` (filtros: severity, type, session, status, search), `FindingStatsQuery.ts`
|
||||
- [ ] 5.7: Crear `event-handlers/OnAnomalyDetected.ts` — escucha eventos crawling → crea Finding
|
||||
- [ ] 5.8: Crear `infrastructure/repositories/KyselyFindingRepository.ts`
|
||||
- [ ] 5.9: Migrar exporters existentes → `infrastructure/exporters/` (MarkdownExporter, JSONExporter)
|
||||
- [ ] 5.10: Crear `infrastructure/exporters/PlaywrightScriptExporter.ts` — genera test Playwright reproducible desde actionTrace
|
||||
- [ ] 5.11: Crear `infrastructure/http/FindingsController.ts` — routes para anomalies existentes + nuevas
|
||||
- [ ] 5.12: Migración Kysely: tabla findings con columnas status, browser, ai_enrichment_json
|
||||
- [ ] 5.13: Tests: Finding aggregate, CreateFinding, ListFindings con filtros
|
||||
- [ ] 5.14: Verificar build + commit: `fase(5): findings module complete`
|
||||
- [x] 5.1: Crear `domain/entities/Finding.ts` — AggregateRoot con severity, type, evidence, status, actionTrace
|
||||
- [x] 5.2: Crear value objects: `Severity.ts` (low/medium/high/critical), `FindingType.ts`, `Evidence.ts`, `FindingStatus.ts` (open/investigating/resolved/closed)
|
||||
- [x] 5.3: Crear events: `FindingCreated.ts`, `FindingResolved.ts`, `FindingEnriched.ts`
|
||||
- [x] 5.4: Crear ports: `IFindingRepository.ts`, `IAIEnricher.ts`
|
||||
- [x] 5.5: Crear commands: `CreateFindingCommand.ts`, `EnrichFindingCommand.ts`, `ResolveFindingCommand.ts`
|
||||
- [x] 5.6: Crear queries: `GetFindingQuery.ts`, `ListFindingsQuery.ts` (filtros: severity, type, session, status, search), `FindingStatsQuery.ts`
|
||||
- [x] 5.7: Crear `event-handlers/OnAnomalyDetected.ts` — escucha eventos crawling → crea Finding
|
||||
- [x] 5.8: Crear `infrastructure/repositories/KyselyFindingRepository.ts`
|
||||
- [x] 5.9: Migrar exporters existentes → `infrastructure/exporters/` (MarkdownExporter, JSONExporter)
|
||||
- [x] 5.10: Crear `infrastructure/exporters/PlaywrightScriptExporter.ts` — genera test Playwright reproducible desde actionTrace
|
||||
- [x] 5.11: Crear `infrastructure/http/FindingsController.ts` — routes para anomalies existentes + nuevas
|
||||
- [x] 5.12: Migración Kysely: tabla findings con columnas status, browser, ai_enrichment_json
|
||||
- [x] 5.13: Tests: Finding aggregate, CreateFinding, ListFindings con filtros
|
||||
- [x] 5.14: Verificar build + commit: `fase(5): findings module complete`
|
||||
|
||||
---
|
||||
|
||||
## Phase 6: Fuzzing Module [PENDIENTE]
|
||||
## Phase 6: Fuzzing Module [COMPLETO]
|
||||
Spec: `.ralph/specs/phase-06-fuzzing-module.md`
|
||||
|
||||
- [ ] 6.1: Crear domain: `FuzzSession.ts` (AggregateRoot), `FuzzResult.ts` (Entity)
|
||||
- [ ] 6.2: Crear value objects: `FuzzStrategy.ts`, `FuzzPayload.ts`, `Seed.ts`, `FuzzIntensity.ts`
|
||||
- [ ] 6.3: Crear events: `FuzzStarted.ts`, `VulnerabilityDetected.ts`, `FuzzCompleted.ts`
|
||||
- [ ] 6.4: Crear port: `IFuzzerEngine.ts`
|
||||
- [ ] 6.5: Crear `commands/RunFuzzCommand.ts`
|
||||
- [ ] 6.6: Crear `event-handlers/OnActionExecuted.ts` — escucha crawling → trigger fuzzing
|
||||
- [ ] 6.7: Migrar las 5 estrategias existentes → `infrastructure/strategies/` (Empty, Oversized, SpecialChars, TypeMismatch, Boundary)
|
||||
- [ ] 6.8: Migrar `FuzzingEngine.ts` y `InputTypeDetector.ts` → `infrastructure/adapters/`
|
||||
- [ ] 6.9: Crear `infrastructure/http/FuzzingController.ts`
|
||||
- [ ] 6.10: Tests: cada estrategia de fuzzing genera payloads válidos
|
||||
- [ ] 6.11: Verificar build + commit: `fase(6): fuzzing module complete`
|
||||
- [x] 6.1: Crear domain: `FuzzSession.ts` (AggregateRoot), `FuzzResult.ts` (Entity)
|
||||
- [x] 6.2: Crear value objects: `FuzzStrategy.ts`, `FuzzPayload.ts`, `Seed.ts`, `FuzzIntensity.ts`
|
||||
- [x] 6.3: Crear events: `FuzzStarted.ts`, `VulnerabilityDetected.ts`, `FuzzCompleted.ts`
|
||||
- [x] 6.4: Crear port: `IFuzzerEngine.ts`
|
||||
- [x] 6.5: Crear `commands/RunFuzzCommand.ts`
|
||||
- [x] 6.6: Crear `event-handlers/OnActionExecuted.ts` — escucha crawling → trigger fuzzing
|
||||
- [x] 6.7: Migrar las 5 estrategias existentes → `infrastructure/strategies/` (Empty, Oversized, SpecialChars, TypeMismatch, Boundary)
|
||||
- [x] 6.8: Migrar `FuzzingEngine.ts` y `InputTypeDetector.ts` → `infrastructure/adapters/`
|
||||
- [x] 6.9: Crear `infrastructure/http/FuzzingController.ts`
|
||||
- [x] 6.10: Tests: cada estrategia de fuzzing genera payloads válidos
|
||||
- [x] 6.11: Verificar build + commit: `fase(6): fuzzing module complete`
|
||||
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user