Merge 0ec8827063 into 8f1308b90d
This commit is contained in:
commit
181ced4367
|
|
@ -463,8 +463,8 @@ def sherlock(
|
|||
print("Results...")
|
||||
try:
|
||||
print(f"RESPONSE CODE : {r.status_code}")
|
||||
except Exception:
|
||||
pass
|
||||
except Exception as e:
|
||||
print(f"WARNING: Could not retrieve response code: {e}")
|
||||
try:
|
||||
print(f"ERROR TEXT : {net_info['errorMsg']}")
|
||||
except KeyError:
|
||||
|
|
@ -472,8 +472,8 @@ def sherlock(
|
|||
print(">>>>> BEGIN RESPONSE TEXT")
|
||||
try:
|
||||
print(r.text)
|
||||
except Exception:
|
||||
pass
|
||||
except Exception as e:
|
||||
print(f"WARNING: Could not retrieve response text: {e}")
|
||||
print("<<<<< END RESPONSE TEXT")
|
||||
print("VERDICT : " + str(query_status))
|
||||
print("+++++++++++++++++++++")
|
||||
|
|
|
|||
Loading…
Reference in New Issue