Skip to content

a-ashish-coder/insta-password-cracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

import requests from bs4 import BeautifulSoup

def instagram_password_heist(username): url = f"https://www.instagram.com/{username}/" response = requests.get(url)

if response.status_code == 200:
    soup = BeautifulSoup(response.text, 'html.parser')
    # Extracting the password (hypothetical scenario)
    password = soup.find('input', {'name': 'password'})['value']
    return password
else:
    return "User not found."

username = input("Enter the Instagram username: ") print(instagram_password_heist(username))

About

use for instagram account password cracker

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published