holehe
holehe copied to clipboard
timeout argument is not configured with type=int
In core.py maincore function
parser.add_argument("-T","--timeout", default=10, required=False,dest="timeout", should be parser.add_argument("-T","--timeout", type=int, default=10, required=False,dest="timeout",
or otherwise the argument is considered a string and then "client = httpx.AsyncClient(timeout=timeout)" produces a client which fails on all requests.