Merge pull request #805 from JensTimmerman/patch-5

Update hackertarget.py
This commit is contained in:
J.Townsend 2021-08-05 19:05:44 +01:00 committed by GitHub
commit 27d7e3a521
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,4 +24,4 @@ async def process(self, proxy=False):
await self.do_search()
async def get_hostnames(self) -> list:
return self.total_results.splitlines()
return [result for result in self.total_results.splitlines() if not 'No PTR records found' in result]