Skip to content

Commit

Permalink
Merge pull request #2033 from joaomfbh/tor_exception_handling
Browse files Browse the repository at this point in the history
Add exception handling for Tor option
  • Loading branch information
ppfeister committed May 13, 2024
2 parents 0d953ff + dc5d6d6 commit f2090bd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sherlock/sherlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,12 @@ def sherlock(
# Create session based on request methodology
if tor or unique_tor:
# Requests using Tor obfuscation
underlying_request = TorRequest()
try:
underlying_request = TorRequest()
except OSError:
print("Tor not found in system path. Unable to continue.\n")
sys.exit(query_notify.finish())

underlying_session = underlying_request.session
else:
# Normal requests
Expand Down

0 comments on commit f2090bd

Please sign in to comment.