Esempio n. 1
0
def report():  #line:231
    clearConsole()  #line:232
    print_logo()  #line:233
    O00O000OOOOOOOO0O = input(
        "Would you like to use a proxy? (Recommended Yes) [Y/N] : ")  #line:234
    OO0OOO00OOO00OOOO = []  #line:235
    if (O00O000OOOOOOOO0O == "Y" or O00O000OOOOOOOO0O == "y"):  #line:237
        O00O000OOOOOOOO0O = input(
            "Would you like to collect your proxies from the internet? [Y/N] : "
        )  #line:239
        if (O00O000OOOOOOOO0O == "Y" or O00O000OOOOOOOO0O == "y"):  #line:241
            print_status(
                "Gathering proxy from the Internet! This may take a while.\n"
            )  #line:243
            time.sleep(2)  #line:244
            OO0OOO00OOO00OOOO = find_proxies()  #line:245
        elif (O00O000OOOOOOOO0O == "N" or O00O000OOOOOOOO0O == "n"):  #line:247
            print_status(
                "Please have a maximum of 50 proxies in a file!")  #line:248
            OOO00OO0000OOOO0O = input(
                "Enter the path to your proxy list")  #line:249
            OO0OOO00OOO00OOOO = parse_proxy_file(OOO00OO0000OOOO0O)  #line:250
        else:  #line:251
            print_error("Answer not understood, exiting!")  #line:252
            exit()  #line:253
        print_success(
            str(len(OO0OOO00OOO00OOOO)) +
            " Number of proxy found!\n")  #line:255
        print(OO0OOO00OOO00OOOO)  #line:256
    elif (O00O000OOOOOOOO0O == "N" or O00O000OOOOOOOO0O == "n"):  #line:257
        pass  #line:258
    else:  #line:259
        print_error("Answer not understood, exiting!")  #line:260
        exit()  #line:261
    print("")  #line:263
    print_status("1 - Report Profile.")  #line:264
    print_status("2 - Report a video.")  #line:265
    O0O0O0OO000OO0O0O = input(
        "Please select the complaint method :- ")  #line:266
    print("")  #line:267
    if (O0O0O0OO000OO0O0O.isdigit() == False):  #line:269
        print_error("The answer is not understood.")  #line:270
        main()  #line:271
    if (int(O0O0O0OO000OO0O0O) > 2 or int(O0O0O0OO000OO0O0O) == 0):  #line:273
        print_error("The answer is not understood.")  #line:274
        main()  #line:275
    if (int(O0O0O0OO000OO0O0O) == 1):  #line:277
        profile_attack(OO0OOO00OOO00OOOO)  #line:278
    elif (int(O0O0O0OO000OO0O0O) == 2):  #line:279
        video_attack(OO0OOO00OOO00OOOO)  #line:280
Esempio n. 2
0
def main():
    print_success("Modules loaded!\n")

    ret = ask_question("Would you like to use a proxy? [Y / N]")

    proxies = []

    if ret == "Y" or ret == "y":
        ret = ask_question(
            "Would you like to collect your proxies from the internet? [Y / N]"
        )

        if ret == "Y" or ret == "y":
            print_status(
                "Gathering proxy from the Internet! This may take a while.\n")
            proxies = find_proxies()
        elif ret == "N" or ret == "n":
            print_status("Please have a maximum of 50 proxies in a file!")
            file_path = ask_question("Enter the path to your proxy list")
            proxies = parse_proxy_file(file_path)
        else:
            print_error("Answer not understood, exiting!")
            exit()

        print_success(str(len(proxies)) + " Number of proxy found!\n")
    elif ret == "N" or ret == "n":
        pass
    else:
        print_error("Answer not understood, exiting!")
        exit()

    print("")
    print_status("1 - Report Profile.")
    print_status("2 - Report a video.")
    report_choice = ask_question("Please select the complaint method")
    print("")

    if report_choice.isdigit() == False:
        print_error("The answer is not understood.")
        exit(0)

    if int(report_choice) > 2 or int(report_choice) == 0:
        print_error("The answer is not understood.")
        exit(0)

    if int(report_choice) == 1:
        profile_attack(proxies)
    elif int(report_choice) == 2:
        video_attack(proxies)
Esempio n. 3
0
def main():
    print_success("Modüller yüklendi!\n")

    ret = ask_question("Proxy kullanmak ister misiniz? [E/H]")

    proxies = []

    if (ret == "E" or ret == "e"):
        ret = ask_question("Proxylerinizi internetten toplamak ister misiniz? [E/H]")

        if (ret == "E" or ret == "e"):
            print_status("Internetten proxy toplanıyor! Bu biraz uzun sürebilir.\n")
            proxies = find_proxies()
        elif (ret == "H" or ret == "h"):
            print_status("Lütfen bir dosyada maksimum 50 proxy bulunsun!")
            file_path = ask_question("Proxy listenizin yolunu giriniz")
            proxies = parse_proxy_file(file_path)
        else:
            print_error("Cevap anlaşılamadı, çıkılıyor!")
            exit()

        print_success(str(len(proxies)) + " Adet proxy bulundu!\n")
    elif (ret == "H" or ret == "h"):
        pass
    else:
        print_error("Cevap anlaşılamadı, çıkılıyor!")
        exit()

    

    print("")
    print_status("1 - Profili şikayet et.")
    print_status("2 - Bir videoyu şikayet et.")
    report_choice = ask_question("Lütfen şikayet yöntemini seçin")
    print("")

    if (report_choice.isdigit() == False):
        print_error("Cevap anlaşılmadı.")
        exit(0)
    
    if (int(report_choice) > 2 or int(report_choice) == 0):
        print_error("Cevap anlaşılmadı.")
        exit(0)

    if (int(report_choice) == 1):
        profile_attack(proxies)
    elif (int(report_choice) == 2):
        video_attack(proxies)