Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(self):
clearScr()
print(self.menuLogo)
print(" {1}--Cupp - Common User Passwords Profiler")
print(
" {2}--BruteX - Automatically bruteforces all services running on a target\n")
print(" {99}-Back To Main Menu \n")
choice3 = raw_input("passwd ~# ")
clearScr()
if choice3 == "1":
cupp()
elif choice3 == "2":
brutex()
elif choice3 == "99":
fsociety()
else:
self.__init__()
self.completed()