from time import sleep
Pass = 'YouSuccCracked'
print('----------')
print('Welcome To Crack Tool')
print('Options \n 1.Register')
exc = input('Select Option ')
if exc == '1':
print(f'''You Selected {exc} Option''')
else:
print('You Dont Select Any Option')
sleep(3)
exit()
opt1_function_name = input('Enter Your Name ')
opt1_function_obf = input('Enter Password ')
if opt1_function_obf != Pass:
print('Incorrect Password!')
sleep(3)
exit()
elif opt1_function_obf == Pass:
print(f'''Correct! You Successfuly Registered as {opt1_function_name}''')
sleep(3)
exit()
else:
print('Error')
|
==> |