Skip to content

Commit

Permalink
Data reorder + wiki https
Browse files Browse the repository at this point in the history
  • Loading branch information
khast3x committed Jan 30, 2020
1 parent 7d64b83 commit 24d4b8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions h8mail/utils/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,9 @@ def get_leaklookup_priv(self, api_key, user_query):
b_counter = 0
for db, data in response["message"].items():
for d in data:
if "username" in d.keys():
self.pwned += 1
self.data.append(("LKLP_USERNAME", d["username"]))
if "email_address" in d.keys() and self.not_exists(
d["email_address"]
):
Expand All @@ -573,9 +576,6 @@ def get_leaklookup_priv(self, api_key, user_query):
self.pwned += 1
self.data.append(("LKLP_PASSWORD", d["password"]))
b_counter += 1
if "username" in d.keys():
self.pwned += 1
self.data.append(("LKLP_USERNAME", d["username"]))
if "ipaddress" in d.keys():
self.pwned += 1
self.data.append(("LKLP_LASTIP", d["ipaddress"]))
Expand Down
2 changes: 1 addition & 1 deletion h8mail/utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def print_banner(b_type="intro"):
elif "warn" in b_type:
print(
c.fg.pink,
"\t Check out the new wiki!\n\t http:https://bit.ly/37xaQVh\n\n",
"\t Check out the new wiki!\n\t https:https://bit.ly/37xaQVh\n\n",
c.reset,
)
elif "version" in b_type:
Expand Down

0 comments on commit 24d4b8f

Please sign in to comment.