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