[Update] 라우터 반환 형태

This commit is contained in:
tv0924@icloud.com 2025-06-26 15:45:39 +09:00
commit 58d5deb435
3 changed files with 24 additions and 4 deletions

View file

@ -44,6 +44,19 @@ async def start(url: str = Query(..., description="The URL to target for vulnera
description="""
엔드포인트는 시스템에 오탐 검증 작업이 시작되었음을 알립니다.
또한 시스템은 미리 준비된 오탐 검증 작업 목록을 반환합니다.
```json
{
"payload": [
{
"task_name": "pkce_task", # 검증 작업의 이름
"initial_uri": "http://auth.example.com", # browser가 처음 접속할 URI
"data": any # 추가 데이터
},
...
]
}
```
""",
tags=["2nd STEP"]
)