Example #1
0
                user["user"],
                user["password"],
                None,
                None
            )
        
        client.Connect()
        client.Login()
        client.Spam(userid, username, reasonid)
        print("")


if __name__ == "__main__":
    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!):")
Example #2
0
                user["user"],
                user["password"],
                None,
                None
            )
        
        client.Connect()
        client.Login()
        client.Spam(userid, username, reasonid)
        print("")


if __name__ == "__main__":
    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!):")