Skip to content

Commit ed6a960

Browse files
committed
refactor: remove architecture planning document and clean up API and UI implementation files
1 parent ee01714 commit ed6a960

6 files changed

Lines changed: 54 additions & 338 deletions

File tree

Plan

Lines changed: 0 additions & 334 deletions
This file was deleted.

ffuf

Lines changed: 0 additions & 1 deletion
This file was deleted.

internal/api/api.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,7 @@ type ScanRequest struct {
355355
Query *string `json:"query"`
356356
Provider *string `json:"provider"`
357357
APIKey *string `json:"api_key"`
358+
Resolvers *string `json:"resolvers"`
358359
// FFuf options
359360
Target *string `json:"target"` // FFuf target URL
360361
Wordlist *string `json:"wordlist"` // FFuf wordlist path
@@ -580,6 +581,7 @@ func SetupAPI() *gin.Engine {
580581
api.POST("/misconfig", scanMisconfig) // Cloud misconfiguration scan
581582
api.POST("/zerodays", scanZerodays) // Zerodays scan (CVE-2025-55182 React2Shell, CVE-2025-14847 MongoDB)
582583
api.POST("/jwt", scanJWT) // JWT vulnerability scan
584+
api.POST("/asr", scanASR) // Attack Surface Reduction scan
583585
api.POST("/apkx", scanApkX) // APK analysis and MITM patching
584586
api.GET("/:scan_id/status", getScanStatus)
585587
api.GET("/:scan_id/results", getScanResults)

0 commit comments

Comments
 (0)