Skip to content

Commit

Permalink
Update to v1.1.0.0 (251223-1230)
Browse files Browse the repository at this point in the history
1. More detailed logging
2. Logo added
  • Loading branch information
rzc0d3r committed Dec 25, 2023
1 parent c9592b5 commit 7ec8b79
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 9 deletions.
Binary file modified img/account_run_win.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/key_run_win.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 16 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# v1.0.5 (011223-1716)
# v1.0.6 (251223-1227)
LOGO = """
███████╗███████╗███████╗████████╗ ██╗ ██╗███████╗██╗ ██╗ ██████╗ ███████╗███╗ ██╗
██╔════╝██╔════╝██╔════╝╚══██╔══╝ ██║ ██╔╝██╔════╝╚██╗ ██╔╝██╔════╝ ██╔════╝████╗ ██║
█████╗ ███████╗█████╗ ██║ █████╔╝ █████╗ ╚████╔╝ ██║ ███╗█████╗ ██╔██╗ ██║
██╔══╝ ╚════██║██╔══╝ ██║ ██╔═██╗ ██╔══╝ ╚██╔╝ ██║ ██║██╔══╝ ██║╚██╗██║
███████╗███████║███████╗ ██║ ██║ ██╗███████╗ ██║ ╚██████╔╝███████╗██║ ╚████║
╚══════╝╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝
Project Version: v1.1.0.0 (251223-1230)
Project Devs: rzc0d3r, AdityaGarg8, k0re,
Fasjeit, alejanpa17
"""

import modules.chrome_driver_installer as chrome_driver_installer
import modules.logger as logger

Expand Down Expand Up @@ -63,6 +75,7 @@ def chrome_driver_installer_menu(): # auto updating or installing chrome driver
return chromedriver_path

if __name__ == '__main__':
print(LOGO)
try:
if '--cli' in sys.argv:
sys.argv.append('--force')
Expand All @@ -76,11 +89,10 @@ def chrome_driver_installer_menu(): # auto updating or installing chrome driver
driver = shared_tools.initSeleniumWebDriver('chrome', chromedriver_path)
only_account = False
if '--account' in sys.argv:
logger.console_log('\n-- ESET Account Generator {0} --\n'.format(eset_register.VERSION))
logger.console_log('\n-- Account Generator {0} --\n'.format(eset_register.VERSION))
only_account = True
else:
logger.console_log('\n-- ESET KeyGen {0} --\n'.format(eset_keygen.VERSION))

logger.console_log('\n-- KeyGen {0} --\n'.format(eset_keygen.VERSION))
email_obj = sec_email_api.SecEmail()
logger.console_log('Mail registration...', logger.INFO)
email_obj.register()
Expand Down
2 changes: 1 addition & 1 deletion modules/chrome_driver_installer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# v1.1.4 (171123-1640)
VERSION = 'v1.1.4 (171123-1640) by rzc0d3r'
VERSION = 'v1.1.4 (171123-1640)'
import sys

from platform import processor
Expand Down
2 changes: 1 addition & 1 deletion modules/eset_keygen.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# v1.0.9.2 (211123-1059)
VERSION = 'v1.0.9.2 (211123-1059) by rzc0d3r'
VERSION = 'v1.0.9.2 (211123-1059)'

from modules.logger import *
from modules.shared_tools import *
Expand Down
7 changes: 4 additions & 3 deletions modules/eset_register.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# v1.1.0.0 (211223-1312)
VERSION = 'v1.1.0.0 (211223-1312) by rzc0d3r'
# v1.1.0.0 (251223-1230)
VERSION = 'v1.1.0.0 (251223-1230)'

from modules.logger import *
from modules.shared_tools import *
Expand Down Expand Up @@ -68,8 +68,9 @@ def createAccount(self):
def confirmAccount(self):
uCE = untilConditionExecute

console_log(f'\nESET-Token interception...', INFO)
token = self.getToken()
console_log(f'\nESET Token: {token}', OK)
console_log(f'ESET-Token: {token}', OK)
console_log('\nAccount confirmation is in progress...', INFO)
self.driver.get(f'https://login.eset.com/link/confirmregistration?token={token}')
uCE(self.driver, 'return document.title === "ESET HOME"')
Expand Down

0 comments on commit 7ec8b79

Please sign in to comment.