mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-01-11 19:21:11 +03:00
11 lines
269 B
Python
11 lines
269 B
Python
from typing import List, Dict, Optional, TypedDict
|
|
from datetime import datetime
|
|
|
|
|
|
class ScanResult(TypedDict):
|
|
total_tests: int
|
|
vulnerabilities: List[Dict[str, str]]
|
|
start_time: Optional[datetime]
|
|
end_time: Optional[datetime]
|
|
target: Optional[str]
|