How to use the fsociety.cupp function in fsociety

To help you get started, we’ve selected a few fsociety examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Manisso / fsociety / fsociety.py View on Github external
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()