Skip to content

Commit 18563da

Browse files
authored
Merge pull request #69 from khast3x/2.5.2
2.5.2 Pull request is the funny number 👀
2 parents cd94173 + 52c87fc commit 18563da

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

h8mail/utils/helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def print_banner(b_type="intro"):
7171
print(
7272
"\t",
7373
c.fg.lightgrey,
74-
"Version " + __version__ + ' - "ROCKSMASSON.1" ',
74+
"Version " + __version__ + ' - "ROCKSMASSON.2" ',
7575
c.reset,
7676
)
7777

h8mail/utils/run.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,11 @@ def target_factory(targets, user_args):
7474
# ):
7575
# current_target.get_emailrepio(api_keys["emailrep"])
7676

77-
if scylla_up:
78-
current_target.get_scylla(query)
79-
8077
if api_keys is not None:
8178
if "hibp" in api_keys and query == "email":
8279
current_target.get_hibp3(api_keys["hibp"])
83-
80+
if "emailrep" in api_keys and query == "email":
81+
current_target.get_emailrepio(api_keys["emailrep"])
8482
if "hunterio" in api_keys and query == "email":
8583
current_target.get_hunterio_private(api_keys["hunterio"])
8684
if "snusbase_token" in api_keys:
@@ -106,6 +104,9 @@ def target_factory(targets, user_args):
106104
)
107105
else:
108106
c.bad_news("Missing Dehashed email")
107+
if scylla_up:
108+
current_target.get_scylla(query)
109+
109110
# Chasing
110111
if user_args.chase_limit and counter <= init_targets_len:
111112
user_args_force_email = user_args

h8mail/utils/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.5.1"
1+
__version__ = "2.5.2"

0 commit comments

Comments
 (0)