mirror of
https://github.com/ChronosX88/PyNesca.git
synced 2024-11-22 13:12:18 +00:00
11 lines
261 B
Python
11 lines
261 B
Python
from core.prototypes.AbstractScanner import AbstractScanner
|
|
import requests
|
|
|
|
class URLScanner(AbstractScanner):
|
|
|
|
def __init__(self, timeout):
|
|
pass
|
|
|
|
def scan_address(self, url:"url") -> {"response"}:
|
|
return {'response':requests.get(url)}
|