We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
config = {'api': True, 'api_keys': {'STH': None}, 'greppable': True, 'hashcat': False, ...} def crack(config): to_del = [] url = "https://av5b81zg3k.execute-api.us-east-2.amazonaws.com/prod/lookup" payload = json.dumps({"Hash": list(config["hashes"].keys())}) headers = {"Content-Type": "application/json"} try: response = requests.request( "GET", url, headers=headers, data=payload, timeout=config["timeout"] ) > except ReadTimeout: E NameError: name 'ReadTimeout' is not defined search_that_hash/cracker/sth_mod/sth.py:23: NameError
Also, set it to 3 seconds -- 2 seconds seems to be breaking it :)
The text was updated successfully, but these errors were encountered:
This is fixed.
Sorry, something went wrong.
No branches or pull requests
Also, set it to 3 seconds -- 2 seconds seems to be breaking it :)
The text was updated successfully, but these errors were encountered: