#49
(19 December, 2025 - 11:02 AM)Authorize101 Wrote: Show More
/$$$$$$ /$$ /$$
/$$__ $$ | $$ |__/
| $$ \ $$ /$$$$$$$ /$$$$$$/$$$$ /$$ /$$$$$$$
| $$$$$$$$ /$$__ $$| $$_ $$_ $$| $$| $$__ $$
| $$__ $$| $$ | $$| $$ \ $$ \ $$| $$| $$ \ $$
| $$ | $$| $$ | $$| $$ | $$ | $$| $$| $$ | $$
| $$ | $$| $$$$$$$| $$ | $$ | $$| $$| $$ | $$
|__/ |__/ \_______/|__/ |__/ |__/|__/|__/ |__/

/$$ /$$
| $$ |__/
| $$ /$$$$$$ /$$$$$$ /$$ /$$$$$$$
| $$ /$$__ $$ /$$__ $$| $$| $$__ $$
| $$ | $$ \ $$| $$ \ $$| $$| $$ \ $$
| $$ | $$ | $$| $$ | $$| $$| $$ | $$
| $$$$$$$$| $$$$$$/| $$$$$$$| $$| $$ | $$
|________/ \______/ \____ $$|__/|__/ |__/
/$$ \ $$
| $$$$$$/
\______/

/$$$$$$$
| $$__ $$
| $$ \ $$ /$$ /$$ /$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$$
| $$$$$$$ | $$ | $$ /$$__ $$ |____ $$ /$$_____//$$_____/
| $$__ $$| $$ | $$| $$ \ $$ /$$$$$$$| $$$$$$| $$$$$$
| $$ \ $$| $$ | $$| $$ | $$ /$$__ $$ \____ $$\____ $$
| $$$$$$$/| $$$$$$$| $$$$$$$/| $$$$$$$ /$$$$$$$//$$$$$$$/
|_______/ \____ $$| $$____/ \_______/|_______/|_______/
/$$ | $$| $$
| $$$$$$/| $$
\______/ |__/

logincrack.py is a tool that helps test if web login pages are vulnerable to certain types of security attacks called SQL injections. These attacks try to trick the website into giving access without the right password.
The main idea behind this tool is that there are many ways hackers can try to break into login pages, beyond the usual methods. Right now, there aren't many free tools that check for these different attack methods, so this tool aims to fill that gap.
Download:

 
How to install it:
  • First, you need to install a program called Selenium that helps with automating web browsers. You can do this easily with this command:
     
    Code:
    pip install selenium
     
How to use it:
  • To run the tool, you use a command like this:
    Code:
    logincrack.py -u USERNAME -t http://vulnerable.com/login_address
    Replace
    Code:
    USERNAME
    with your target username (or leave it blank if not needed), and change
    Code:
    http://vulnerable.com/login_address
    to the website's login page you want to test.
 Extra info:
  • You can add more ways of encrypting or hashing data (called cryptographic functions) to make the script smarter, by editing the list at the start of the code.

Let me know if you'd like a more detailed explanation!
hoooo