singe/thirdparty/openssl/tlsfuzzer/tlsfuzzer/scanner.py
2023-11-16 22:15:24 -06:00

13 lines
303 B
Python

# Author: Hubert Kario, (c) 2015
# Released under Gnu GPL v2.0, see LICENSE file for details
class Fingerprint(object):
def __init__(self, ip, port):
self.ip = ip
self.port = port
class Scanner(object):
def scan(self, ip=None, port=443):
return Fingerprint(ip, port)