Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Fixed Load websites from txt file :)
  • Loading branch information
dragonked2 committed Sep 25, 2023
1 parent 87542b1 commit bc9804b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions egy.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
def get_target_url():
while True:
user_input = input(
"Enter the target URL (e.g., https://example.com or naruto-arena.net): "
"Enter the target URL (e.g., https://example.com): "
)

if not re.match(r"https?://", user_input):
Expand Down Expand Up @@ -2328,7 +2328,7 @@ def print_info(message):
print_colorful("[Info]" + message, Fore.MAGENTA)


def load_websites_from_file(file_path):
def collect_urls_from_file(file_path):
try:
with open(file_path, "r") as file:
websites = file.read().splitlines()
Expand Down
4 changes: 2 additions & 2 deletions egyscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
def get_target_url():
while True:
user_input = input(
"Enter the target URL (e.g., https://example.com or naruto-arena.net): "
"Enter the target URL (e.g., https://example.com): "
)

if not re.match(r"https?://", user_input):
Expand Down Expand Up @@ -2328,7 +2328,7 @@ def print_info(message):
print_colorful("[Info]" + message, Fore.MAGENTA)


def load_websites_from_file(file_path):
def collect_urls_from_file(file_path):
try:
with open(file_path, "r") as file:
websites = file.read().splitlines()
Expand Down

0 comments on commit bc9804b

Please sign in to comment.