mirror of
https://github.com/ChronosX88/PyNesca.git
synced 2024-11-26 06:32:19 +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)}
|