diff --git a/setup.py b/setup.py index 22f5278..b439b21 100644 --- a/setup.py +++ b/setup.py @@ -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."), diff --git a/takeover/takeover.py b/takeover/takeover.py index 4079189..610c11b 100644 --- a/takeover/takeover.py +++ b/takeover/takeover.py @@ -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)