Esempio n. 1
0
    PrintBanner()
    PrintStatus("Kullanıcılar yükleniyor!")
    USERS = LoadUsers("./kullanicilar.txt")
    PrintStatus("Proxler yükleniyor!")
    PROXIES = LoadProxies("./proxyler.txt")
    print("")

    username = GetInput("Şikayet etmek istediğiniz hesap kullanıcı adı:")
    userid = GetInput("Şikayet etmek istediğiniz hesap numarası:")
    useproxy = GetInput("Proxy kullanmak ister misin? [Evet/Hayır]:")
    if (useproxy == "Evet"):
        useproxy = True
    elif (useproxy == "Hayır"):
        useproxy = False
    else:
        PrintFatalError("Lütfen sadece 'Evet' yada 'Hayır' girin!")
        exit(0)
    usemultithread = GetInput("Multithreading kullanmak ister misin? [Evet/Hayır] (Çok fazla kullanıcınız varsa veya bilgisayarınız yavaşsa bu özelliği kullanmayın!):")
    
    if (usemultithread == "Evet"):
        usemultithread = True
    elif (usemultithread == "Hayır"):
        usemultithread = False
    else:
        PrintFatalError("Lütfen sadece 'Evet' yada 'Hayır' girin!")
        exit(0)
    
    PrintChoices()
    reasonid = GetInput("Lütfen üstteki şikayet nedenlerinden birini seçin (örn: spam için 1):")

    
Esempio n. 2
0
    PrintBanner()
    PrintStatus("Loading users!")
    USERS = LoadUsers("./users.txt")
    PrintStatus("Loading Proxes!")
    PROXIES = LoadProxies("./proxy.txt")
    print("")

    username = GetInput("The account username you want to complain about:")
    userid = GetInput("The account number you want to complain about:")
    useproxy = GetInput("Do you want to use proxy? [Yes No]:")
    if (useproxy == "Yes"):
        useproxy = True
    elif (useproxy == "No"):
        useproxy = False
    else:
        PrintFatalError("Please just enter 'Yes' or 'No'!")
        exit(0)
    usemultithread = GetInput("Do you want to use multithreading? [Yes / No] (Do not use this feature if you have too many users or if your computer is slow!):")
    
    if (usemultithread == "Yes"):
        usemultithread = True
    elif (usemultithread == "No"):
        usemultithread = False
    else:
        PrintFatalError("Please just enter 'Yes' or 'No'!")
        exit(0)
    
    PrintChoices()
    reasonid = GetInput("Please select one of the reasons for the above complaint (ex: 1 for spam):")

    
Esempio n. 3
0
    PrintBanner()
    PrintStatus("Loading users!")
    USERS = LoadUsers("./users.txt")
    PrintStatus("Loading Proxy!")
    PROXIES = LoadProxies("./proxy.txt")
    print("")

    username = GetInput("Name the target account:")
    userid = GetInput("Place the id number of the target account:")
    useproxy = GetInput("Do you want to use the proxy? [Yes/No]:")
    if (useproxy == "Yes"):
        useproxy = True
    elif (useproxy == "No"):
        useproxy = False
    else:
        PrintFatalError("Please enter 'Yes' or 'No only!")
        exit(0)
    usemultithread = GetInput(
        "Do you want to use more than one account place [Yes]:")

    if (usemultithread == "Yes"):
        usemultithread = True
    elif (usemultithread == "No"):
        usemultithread = False
    else:
        PrintFatalError("Please enter 'Yes' only!")
        exit(0)

    PrintChoices()
    reasonid = GetInput("Put a complaint number:")