Ejemplo n.º 1
0
                      "very glorious", "adorable", "excellent", "amazing"
                  ], [".", "..", "...", "!", "!!", "!!!"]],
    # Use unwanted_username_list to block usernames containing a string
    ## Will do partial matches; i.e. 'mozart' will block 'legend_mozart'
    ### 'free_followers' will be blocked because it contains 'free'
    unwanted_username_list=[
        'second', 'stuff', 'art', 'project', 'love', 'life', 'food', 'blog',
        'free', 'keren', 'photo', 'graphy', 'indo', 'travel', 'art', 'shop',
        'store', 'sex', 'toko', 'jual', 'online', 'murah', 'jam', 'kaos',
        'case', 'baju', 'fashion', 'corp', 'tas', 'butik', 'grosir', 'karpet',
        'sosis', 'salon', 'skin', 'care', 'cloth', 'tech', 'rental', 'kamera',
        'beauty', 'express', 'kredit', 'collection', 'impor', 'preloved',
        'follow', 'follower', 'gain', '.id', '_id', 'bags'
    ],
    unfollow_whitelist=['example_user_1', 'example_user_2'])
while True:

    mode = 1
    if mode == 1:
        client = (
            3550066610
        )  #the client is the instagram ID for whoever you want your botnet to follow you can just google find ig id
        bot = InstaBot(login="******", password="******")
        bot.follow(client)
        bot.logout()
        time.sleep(30)
        bot = InstaBot(login="******", password="******")
        bot.follow(client)
        bot.logout()
        #basically your repeating the same code except each time your inputting a different username and pass, this way you can login with multiple accounts and follow one account
Ejemplo n.º 2
0
with open("login.txt") as file:
    logg = [row.strip() for row in file]
bot = InstaBot(
    login=logg[0],
    password=logg[1],


    )

with open("fl.txt") as file:
    us = [row.strip() for row in file]
print(us)


ui = UserInfo() 
for x in us:
    try:
        rand =random.randint(45, 60)
        print('time rand:===='+ str(rand))
        ss=ui.get_user_id_by_login(x)
        print(ss)
        bot.follow(ss)
        time.sleep(rand)
       
        
    except ValueError:
            print ("not user")

raw_input()
Ejemplo n.º 3
0
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys, os
sys.path.append(os.path.join(sys.path[0], 'src'))

from instabot import InstaBot
from check_status import check_status
from feed_scanner import feed_scanner
from unfollow_protocol import unfollow_protocol
from follow_protocol import follow_protocol
import time

bot = InstaBot('erikovich.a', 'rugufu111')
bot.follow('user_id')

while True:

    #print("# MODE 0 = ORIGINAL MODE BY LEVPASHA")
    #print("## MODE 1 = MODIFIED MODE BY KEMONG")
    #print("### MODE 2 = ORIGINAL MODE + UNFOLLOW WHO DON'T FOLLOW BACK")
    #print("#### MODE 3 = MODIFIED MODE : UNFOLLOW PEOPLE WHO DON'T FOLLOW BACK BASED ON RECENT FEED ONLY")
    #print("##### MODE 4 = MODIFIED MODE : FOLLOW PEOPLE BASED ON RECENT FEED ONLY")
    #print("###### MODE 5 = MODIFIED MODE : JUST UNFOLLOW EVERYBODY, EITHER YOUR FOLLOWER OR NOT")

    ################################
    ##  WARNING   ###
    ################################

    # DON'T USE MODE 5 FOR A LONG PERIOD. YOU RISK YOUR ACCOUNT FROM GETTING BANNED
    ## USE MODE 5 IN BURST MODE, USE IT TO UNFOLLOW PEOPLE AS MANY AS YOU WANT IN SHORT TIME PERIOD
Ejemplo n.º 4
0
bot = InstaBot(login="******",
               password="******",
               like_per_day=0,
               comments_per_day=0,
               tag_list=[],
               max_like_for_one_tag=50,
               follow_per_day=10000,
               follow_time=12 * 60 * 60,
               unfollow_per_day=0,
               unfollow_break_min=10000,
               unfollow_break_max=100000,
               log_mod=0)

os.system("touch users.txt")

users = getUsers.getUsers()

f = open("users.txt", "w")

for user in users.keys():
    bot.like(users[user])
    sec = 2 + random.random()
    time.sleep(sec)
    print("Following: " + user)
    bot.follow(getId(user))
    f.write(user + "\n")
    pause = random.randint(23, 25)
    pause += random.random()
    time.sleep(pause)
Ejemplo n.º 5
0
from instabot import InstaBot
import os
import time

# --------CONSTANTNS--------
username = os.environ.get("username")
password = os.environ.get("password")
INSTA_ACC_TO_GET_FOLLOWERS = "ANY INSTA ACCOUNT"
# -----Bot-goes brrrr----
bot = InstaBot()
bot.login(username, password)
time.sleep(2)
bot.find_followers(INSTA_ACC_TO_GET_FOLLOWERS)
time.sleep(2)
bot.follow()
Ejemplo n.º 6
0
response = bot.like('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)  # if the response code is 200 that means ok

response = bot.unlike('https://www.instagram.com/p/CH5qV6-so6Y/')
print(response)  # if the response code is 200 that means ok

response = bot.like_recent('instagram')
print(response)  # if the response code is 200 that means ok

response = bot.comment('https://www.instagram.com/p/CH5qV6-so6Y/', comment_text='Nice Post!')
print(response)  # if the response code is 200 that means ok

response = bot.comment_recent('instagram', comment_text='Nice Post!')
print(response)  # if the response code is 200 that means ok

response = bot.follow('instagram')
print(response)  # if the response code is 200 that means ok

response = bot.unfollow('instagram')
print(response)  # if the response code is 200 that means ok

response = bot.story_view('b31ngdev')
print(response)  # if the response code is 200 that means ok

response = bot.upload_post('image.png', caption='Image 1')
print(response)  # if the response code is 200 that means ok

response = bot.upload_story('image2.png')
print(response)  # if the response code is 200 that means ok

response = bot.hashtag_posts('tbt', limit=50)
Ejemplo n.º 7
0
from follow_protocol import follow_protocol
from instabot import InstaBot
from unfollow_protocol import unfollow_protocol
from userinfo import UserInfo

with open("login.txt") as file:
    logg = [row.strip() for row in file]
bot = InstaBot(
    login=logg[0],
    password=logg[1],
)

with open("fl.txt") as file:
    us = [row.strip() for row in file]
print(us)

ui = UserInfo()
for x in us:
    try:
        rand = random.randint(45, 60)
        print('time rand:====' + str(rand))
        ss = ui.get_user_id_by_login(x)
        print(ss)
        bot.follow(ss)
        time.sleep(rand)

    except ValueError:
        print("not user")

raw_input()