forked from rzc0d3r/ESET-KeyGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
451 lines (427 loc) · 22.4 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
from modules.EmailAPIs import *
import sys
# ---- Quick settings [for Developers to quickly change behavior without changing all files] ----
VERSION = ['v1.5.2.3', 1523]
LOGO = f"""
███████╗███████╗███████╗████████╗ ██╗ ██╗███████╗██╗ ██╗ ██████╗ ███████╗███╗ ██╗
██╔════╝██╔════╝██╔════╝╚══██╔══╝ ██║ ██╔╝██╔════╝╚██╗ ██╔╝██╔════╝ ██╔════╝████╗ ██║
█████╗ ███████╗█████╗ ██║ █████╔╝ █████╗ ╚████╔╝ ██║ ███╗█████╗ ██╔██╗ ██║
██╔══╝ ╚════██║██╔══╝ ██║ ██╔═██╗ ██╔══╝ ╚██╔╝ ██║ ██║██╔══╝ ██║╚██╗██║
███████╗███████║███████╗ ██║ ██║ ██╗███████╗ ██║ ╚██████╔╝███████╗██║ ╚████║
╚══════╝╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝
Project Version: {VERSION[0]}
Project Devs: rzc0d3r, AdityaGarg8, k0re,
Fasjeit, alejanpa17, Ischunddu,
soladify, AngryBonk, Xoncia,
Anteneh13
"""
if '--no-logo' in sys.argv:
LOGO = f"ESET KeyGen {VERSION[0]} by rzc0d3r\n"
DEFAULT_EMAIL_API = 'developermail'
AVAILABLE_EMAIL_APIS = ('1secmail', 'guerrillamail', 'developermail', 'mailticking', 'fakemail')
WEB_WRAPPER_EMAIL_APIS = ('guerrillamail', 'mailticking', 'fakemail')
EMAIL_API_CLASSES = {
'guerrillamail': GuerRillaMailAPI,
'1secmail': OneSecEmailAPI,
'developermail': DeveloperMailAPI,
'mailticking': MailTickingAPI,
'fakemail': FakeMailAPI
}
MAX_REPEATS_LIMIT = 10
args = {
'chrome': True,
'firefox': False,
'edge': False,
'key': True,
'small_business_key': False,
'advanced_key': False,
'vpn_codes': False,
'account': False,
'protecthub_account': False,
'only_webdriver_update': False,
'update': False,
'skip_webdriver_menu': False,
'no_headless': False,
'custom_browser_location': '',
'email_api': DEFAULT_EMAIL_API,
'custom_email_api': False,
'skip_update_check': False,
'no_logo': False,
'disable_progress_bar': False,
'disable_output_file': False,
'repeat': 1
}
# -----------------------------------------------------------------------------------------------
from modules.WebDriverInstaller import *
# Bypassing ESET antivirus detection
from modules.EsetTools import EsetRegister as ER
from modules.EsetTools import EsetKeygen as EK
from modules.EsetTools import EsetVPN as EV
from modules.EsetTools import EsetProtectHubRegister as EPHR
from modules.EsetTools import EsetProtectHubKeygen as EPHK
from modules.SharedTools import *
from modules.Updater import get_assets_from_version, parse_update_json, updater_main
from modules.MBCI import *
import traceback
import colorama
import platform
import datetime
import argparse
import time
import re
# -----------------------------------------------------------------------------------------------
def RunMenu():
MainMenu = ViewMenu(LOGO+'\n---- Main Menu ----')
SettingMenu = ViewMenu(LOGO+'\n---- Settings Menu ----')
SettingMenu.add_item(
OptionAction(
args,
title='Browsers',
action='store_true',
args_names=['chrome', 'firefox', 'edge'],
default_value='chrome'
)
)
SettingMenu.add_item(
OptionAction(
args,
title='Modes of operation',
action='store_true',
args_names=['key', 'small-business-key', 'advanced-key', 'vpn-codes', 'account', 'protecthub-account', 'only-webdriver-update', 'update'],
default_value='key')
)
SettingMenu.add_item(
OptionAction(
args,
title='Email APIs',
action='choice',
args_names='email-api',
choices=AVAILABLE_EMAIL_APIS,
default_value=DEFAULT_EMAIL_API
)
)
SettingMenu.add_item(
OptionAction(
args,
title='--skip-webdriver-menu',
action='bool_switch',
args_names='skip-webdriver-menu'
)
)
SettingMenu.add_item(
OptionAction(
args,
title='--no-headless',
action='bool_switch',
args_names='no-headless'
)
)
SettingMenu.add_item(
OptionAction(
args,
title='--custom-browser-location',
action='manual_input',
args_names='custom-browser-location',
default_value=''
)
)
SettingMenu.add_item(
OptionAction(
args,
title='--custom-email-api',
action='bool_switch',
args_names='custom-email-api'
)
)
SettingMenu.add_item(
OptionAction(
args,
title='--skip-update-check',
action='bool_switch',
args_names='skip_update_check'
)
)
SettingMenu.add_item(
OptionAction(
args,
title='--disable-progress-bar',
action='bool_switch',
args_names='disable_progress_bar'
)
)
SettingMenu.add_item(
OptionAction(
args,
title='--disable-output-file',
action='bool_switch',
args_names='disable_output_file'
)
)
SettingMenu.add_item(
OptionAction(
args,
title='--repeat',
action='manual_input',
args_names='repeat',
default_value=1,
data_type=int,
data_range=list(range(1, MAX_REPEATS_LIMIT))
)
)
SettingMenu.add_item(MenuAction('Back', SettingMenu.close))
MainMenu.add_item(MenuAction('Settings', SettingMenu))
MainMenu.add_item(MenuAction('Start', MainMenu.close))
MainMenu.add_item(MenuAction('Exit', sys.exit))
MainMenu.view()
def parse_argv():
print(LOGO)
if len(sys.argv) == 1: # for MBCI mode
RunMenu()
else: # CLI
args_parser = argparse.ArgumentParser()
# Required
## Browsers
args_browsers = args_parser.add_mutually_exclusive_group(required=('--update' not in sys.argv))
args_browsers.add_argument('--chrome', action='store_true', help='Launching the project via Google Chrome browser')
args_browsers.add_argument('--firefox', action='store_true', help='Launching the project via Mozilla Firefox browser')
args_browsers.add_argument('--edge', action='store_true', help='Launching the project via Microsoft Edge browser')
## Modes of operation
args_modes = args_parser.add_mutually_exclusive_group(required=True)
args_modes.add_argument('--key', action='store_true', help='Creating a license key for ESET Smart Security Premium')
args_modes.add_argument('--small-business-key', action='store_true', help='Creating a license key for ESET Small Business Security (1 key - 5 devices)')
args_modes.add_argument('--advanced-key', action='store_true', help='Creating a license key for ESET PROTECT Advanced (1 key - 25 devices)')
args_modes.add_argument('--vpn-codes', action='store_true', help='Creating 10 codes for ESET VPN + 1 ESET Small Business Security key')
args_modes.add_argument('--account', action='store_true', help='Creating a ESET HOME Account (To activate the free trial version)')
args_modes.add_argument('--protecthub-account', action='store_true', help='Creating a ESET ProtectHub Account (To activate the free trial version)')
args_modes.add_argument('--only-webdriver-update', action='store_true', help='Updates/installs webdrivers and browsers without generating account and license key')
args_modes.add_argument('--update', action='store_true', help='Switching to program update mode - Overrides all arguments that are available!!!')
# Optional
args_parser.add_argument('--skip-webdriver-menu', action='store_true', help='Skips installation/upgrade webdrivers through the my custom wrapper (The built-in selenium-manager will be used)')
args_parser.add_argument('--no-headless', action='store_true', help='Shows the browser at runtime (The browser is hidden by default, but on Windows 7 this option is enabled by itself)')
args_parser.add_argument('--custom-browser-location', type=str, default='', help='Set path to the custom browser (to the binary file, useful when using non-standard releases, for example, Firefox Developer Edition)')
args_parser.add_argument('--email-api', choices=AVAILABLE_EMAIL_APIS, default=DEFAULT_EMAIL_API, help='Specify which api to use for mail')
args_parser.add_argument('--custom-email-api', action='store_true', help='Allows you to manually specify any email, and all work will go through it. But you will also have to manually read inbox and do what is described in the documentation for this argument')
args_parser.add_argument('--skip-update-check', action='store_true', help='Skips checking for program updates')
args_parser.add_argument('--no-logo', action='store_true', help='Replaces ASCII-Art with plain text')
args_parser.add_argument('--disable-progress-bar', action='store_true', help='Disables the webdriver download progress bar')
args_parser.add_argument('--disable-output-file', action='store_true', help='Disables the output txt file generation')
args_parser.add_argument('--repeat', type=int, default=1, help=f'Specifies how many times to repeat generation (Accepts numbers from 1 to {MAX_REPEATS_LIMIT})')
try:
global args
args = vars(args_parser.parse_args())
if args['repeat'] < 1 or args['repeat'] > MAX_REPEATS_LIMIT:
print(f'--repeat argument accepts numbers only from 1 to {MAX_REPEATS_LIMIT}!!!')
raise
except:
time.sleep(3)
sys.exit(-1)
def main(disable_exit=False):
if len(sys.argv) == 1 and not disable_exit: # for MBCI mode
print()
try:
# changing input arguments for special cases
if not args['update']:
if platform.release() == '7' and sys.platform.startswith('win'): # fix for Windows 7
args['no_headless'] = True
elif args['advanced_key'] or args['protecthub_account']:
args['no_headless'] = True
if not args['custom_email_api']:
if args['email_api'] not in ['mailticking', 'fakemail']:
raise RuntimeError('--advanced-key, --protecthub-account works ONLY if you use the --custom-email-api argument or the following Email APIs: mailticking, fakemail!!!')
# check program updates
if args['update']:
print(f'{Fore.LIGHTMAGENTA_EX}-- Updater --{Fore.RESET}\n')
updater_main(from_main=True) # from_main - changes the behavior in Updater so that everything works correctly from under main.py
if len(sys.argv) == 1:
input('\nPress Enter to exit...')
else:
time.sleep(3) # exit-delay
sys.exit(0)
if not args['skip_update_check'] and not args['update']:
try:
if parse_update_json(from_main=True) is not None:
print(f'{Fore.LIGHTMAGENTA_EX}-- Updater --{Fore.RESET}\n')
latest_cloud_version = get_assets_from_version(parse_update_json(from_main=True), 'latest')['version']
latest_cloud_version_int = latest_cloud_version[1:].split('.')
latest_cloud_version_int = int(''.join(latest_cloud_version_int[:-1])+latest_cloud_version_int[-1][0])
if VERSION[1] > latest_cloud_version_int:
console_log(f'The project has an unreleased version, maybe you are using a build from the developer?\n', WARN, True)
elif latest_cloud_version_int > VERSION[1]:
console_log(f'Project update is available up to version: {colorama.Fore.GREEN}{latest_cloud_version}{colorama.Fore.RESET}', WARN)
console_log('If you want to download the update run this file with --update argument\n', WARN)
else:
console_log('Project up to date!!!\n', OK)
except:
pass
# initialization and configuration of everything necessary for work
driver = None
webdriver_path = None
browser_name = GOOGLE_CHROME
if args['firefox']:
browser_name = MOZILLA_FIREFOX
if args['edge']:
browser_name = MICROSOFT_EDGE
if not args['skip_webdriver_menu']: # updating or installing webdriver
if args['custom_browser_location'] != '':
webdriver_installer = WebDriverInstaller(browser_name, args['custom_browser_location'])
else:
webdriver_installer = WebDriverInstaller(browser_name)
webdriver_path, args['custom_browser_location'] = webdriver_installer.menu(args['disable_progress_bar'])
if not args['only_webdriver_update']:
driver = initSeleniumWebDriver(browser_name, webdriver_path, args['custom_browser_location'], (not args['no_headless']))
if driver is None:
raise RuntimeError(f'{browser_name} initialization error!')
else:
sys.exit(0)
# main part of the program
console_log(f'\n{Fore.LIGHTMAGENTA_EX}-- KeyGen --{Fore.RESET}\n')
if not args['custom_email_api']:
console_log(f'[{args["email_api"]}] Mail registration...', INFO)
if args['email_api'] in WEB_WRAPPER_EMAIL_APIS: # WebWrapper API, need to pass the selenium object to the class initialization
email_obj = EMAIL_API_CLASSES[args['email_api']](driver)
else: # real APIs without the need for a browser
email_obj = EMAIL_API_CLASSES[args['email_api']]()
try:
email_obj.init()
console_log('Mail registration completed successfully!', OK)
except:
pass
else:
email_obj = CustomEmailAPI()
while True:
email = input(f'[ {colorama.Fore.YELLOW}INPT{colorama.Fore.RESET} ] {colorama.Fore.CYAN}Enter the email address you have access to: {colorama.Fore.RESET}').strip()
try:
matched_email = re.match(r'[-a-z0-9+.]+@[a-z]+(\.[a-z]+)+', email).group()
if matched_email == email:
email_obj.email = matched_email
console_log('Mail has the correct syntax!', OK)
break
else:
raise RuntimeError
except:
console_log('Invalid email syntax!!!', ERROR)
if email_obj.email is not None:
eset_password = dataGenerator(10)
# ESET HOME
if args['account'] or args['key'] or args['small_business_key'] or args['vpn_codes']:
ER_obj = ER(email_obj, eset_password, driver)
ER_obj.createAccount()
ER_obj.confirmAccount()
output_line = '\n'.join([
'',
'-------------------------------------------------',
f'Account Email: {email_obj.email}',
f'Account Password: {eset_password}',
'-------------------------------------------------',
''
])
output_filename = 'ESET ACCOUNTS.txt'
if args['key'] or args['small_business_key'] or args['vpn_codes']:
output_filename = 'ESET KEYS.txt'
EK_obj = EK(email_obj, driver, 'ESET HOME' if args['key'] else 'SMALL BUSINESS')
EK_obj.sendRequestForKey()
license_name, license_key, license_out_date = EK_obj.getLicenseData()
output_line = '\n'.join([
'',
'-------------------------------------------------',
f'Account Email: {email_obj.email}',
f'Account Password: {eset_password}',
'',
f'License Name: {license_name}',
f'License Key: {license_key}',
f'License Out Date: {license_out_date}',
'-------------------------------------------------',
''
])
if args['vpn_codes']:
EV_obj = EV(email_obj, driver, ER_obj.window_handle)
EV_obj.sendRequestForVPNCodes()
vpn_codes = EV_obj.getVPNCodes()
if not args['custom_email_api']:
vpn_codes_line = ', '.join(vpn_codes)
output_line = '\n'.join([
'',
'-------------------------------------------------',
f'Account Email: {email_obj.email}',
f'Account Password: {eset_password}',
'',
f'License Name: {license_name}',
f'License Key: {license_key}',
f'License Out Date: {license_out_date}',
'',
f'VPN Codes: {vpn_codes_line}',
'-------------------------------------------------',
''
])
# ESET ProtectHub
elif args['protecthub_account'] or args['advanced_key']:
EPHR_obj = EPHR(email_obj, eset_password, driver)
EPHR_obj.createAccount()
EPHR_obj.confirmAccount()
EPHR_obj.activateAccount()
output_line = '\n'.join([
'',
'---------------------------------------------------------------------',
f'ESET ProtectHub Account Email: {email_obj.email}',
f'ESET ProtectHub Account Password: {eset_password}',
'---------------------------------------------------------------------',
''
])
output_filename = 'ESET ACCOUNTS.txt'
if args['advanced_key']:
output_filename = 'ESET KEYS.txt'
EPHK_obj = EPHK(email_obj, eset_password, driver)
license_name, license_key, license_out_date = EPHK_obj.getLicenseData()
if license_name is not None:
output_line = '\n'.join([
'',
'---------------------------------------------------------------------',
f'ESET ProtectHub Account Email: {email_obj.email}',
f'ESET ProtectHub Account Password: {eset_password}',
'',
f'License Name: {license_name}',
f'License Key: {license_key}',
f'License Out Date: {license_out_date}',
'---------------------------------------------------------------------',
''
])
# end
console_log(output_line)
if not args['disable_output_file']:
date = datetime.datetime.now()
f = open(f"{str(date.day)}.{str(date.month)}.{str(date.year)} - "+output_filename, 'a')
f.write(output_line)
f.close()
else:
console_log('Mail registration was not completed, try using a different Email API!\n', ERROR)
except Exception as E:
traceback_string = traceback.format_exc()
if str(type(E)).find('selenium') and traceback_string.find('Stacktrace:') != -1: # disabling stacktrace output
traceback_string = traceback_string.split('Stacktrace:', 1)[0]
console_log(traceback_string, ERROR)
if not disable_exit:
if len(sys.argv) == 1:
input('Press Enter to exit...')
else:
time.sleep(3) # exit-delay
if globals().get('driver', None) is not None:
driver.quit()
if not disable_exit:
sys.exit()
if __name__ == '__main__':
parse_argv()
if args['repeat'] == 1:
main()
else:
for i in range(args['repeat']):
try:
print(f'\n{Fore.MAGENTA}------------ Initializing of {Fore.YELLOW}{i+1} {Fore.MAGENTA}start ------------{Fore.RESET}\n')
if i == 0: # the first run sets up the environment for subsequent runs, speeding them up
main(disable_exit=True)
args['skip_update_check'] = True
elif i+1 == args['repeat']:
main()
else:
main(disable_exit=True)
except KeyboardInterrupt:
continue