This post is by a banned member (nhgcfbhjkn) - Unhide
30 December, 2025 - 10:25 PM
Reply
(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
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!
nbmvm
This post is by a banned member (elnovatn3) - Unhide
31 December, 2025 - 02:20 AM
Reply
I'll try and give fedback
This post is by a banned member (xstan4) - Unhide
31 December, 2025 - 04:12 AM
Reply
This post is by a banned member (Deadpool13) - Unhide
06 January, 2026 - 06:56 AM
Reply
(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
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!
This post is by a banned member (SMC44) - Unhide
06 January, 2026 - 07:26 AM
Reply
(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
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! gg
This post is by a banned member (Foxlen) - Unhide
11 January, 2026 - 07:44 PM
Reply
(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
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!
thx
This post is by a banned member (Elmehdi779) - Unhide
11 January, 2026 - 08:11 PM
Reply
This post is by a banned member (anesco) - Unhide
15 January, 2026 - 03:51 AM
Reply
(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
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!
asda asdas
|