mirror of
https://github.com/thewhiteh4t/pwnedOrNot.git
synced 2026-08-17 18:35:40 +02:00
Merge branch 'master' into master
This commit is contained in:
+3
-3
@@ -44,11 +44,11 @@ def main():
|
||||
domains_list()
|
||||
elif check_domain:
|
||||
domain_check()
|
||||
elif addr != None and domain != None:
|
||||
elif addr is not None and domain is not None:
|
||||
filtered_check()
|
||||
elif addr != None and domain == None:
|
||||
elif addr is not None and domain is None:
|
||||
check()
|
||||
elif file != None and domain == None:
|
||||
elif file is not None and domain is None:
|
||||
print (G + '[+]' + C + ' Reading Emails Addresses from ' + W + '{}'.format(file) + '\n')
|
||||
with open(file) as dict:
|
||||
for line in dict:
|
||||
|
||||
Reference in New Issue
Block a user