Initialize scanner.
(self, hello_gen, host, port=443, hostname=None)
| 65 | """Helper class for scanning a host and returning serialised responses.""" |
| 66 | |
| 67 | def __init__(self, hello_gen, host, port=443, hostname=None): |
| 68 | """Initialize scanner.""" |
| 69 | self.host = host |
| 70 | self.hello_gen = hello_gen |
| 71 | self.port = port |
| 72 | self.hostname = hostname |
| 73 | |
| 74 | def scan(self): |
| 75 | """Perform a scan on server.""" |
nothing calls this directly
no outgoing calls
no test coverage detected