Exemplo n.º 1
0
def process(url):
    header = Header(url)
    header.reader()
    print("Scanning: " + color.blue + url + color.end)
    if header.status:
        scanObj = Scan(url)
        scanObj._start()
    else:
        print(color.blue + url + color.red + " is Unreachable")
    sleep(3)