[Refactor] 리팩터링

This commit is contained in:
tv0924@icloud.com 2025-06-26 10:43:52 +09:00
commit 062552d3d8
12 changed files with 24 additions and 22 deletions

View file

@ -3,8 +3,8 @@ import asyncio
import httpx
from typing import Dict, List
import lib.target as target
from lib.report import save_report
import lib.cur_target_url as cur_target_url
from lib.report_vuln import save_report
class PKCEDowngradeChecker:
@ -170,7 +170,7 @@ class PKCEDowngradeChecker:
self, status: str, title: str, description: str, uri: str
) -> Dict[str, str]:
return {
"target": target.load(),
"target": cur_target_url.load(),
"status": status,
"title": title,
"description": description,