Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xcrypto committed May 11, 2021
1 parent 60b2e22 commit 9af6fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def read(fname):

setup(
name = "takeover.py",
version = "0.0.4",
version = "0.0.5",
author = "Vikrant Singh Chauhan",
author_email = "vi@hackberry.xyz",
description = ("This small script tries to detect subdomain takeovers from a list of domains. Fingerprints are taken from https://github.com/EdOverflow/can-i-take-over-xyz."),
Expand Down
2 changes: 1 addition & 1 deletion takeover/takeover.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async def checkHosts(self, args=[]):
exit(1)
except KeyboardInterrupt:
print("[x] KeyboardInterrupt occurred.")
[thread.join() for thread in totalthreads]
[thread.join() for thread in self.allthreads]
exit(1)


Expand Down

0 comments on commit 9af6fd7

Please sign in to comment.