This commit is contained in:
Carlos Polop 2021-08-03 12:12:51 +02:00 committed by GitHub
commit 15e52bfd81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ su_brute_user_num (){
su_try_pwd "$BFUSER" "$PASSWORD" & #Try given password
fi
for i in $(seq "$TRIES"); do
su_try_pwd "$BFUSER" "$(echo \"$top2000pwds\" | cut -d ' ' -f \"$i\")" & #Try TOP TRIES of passwords (by default 2000)
su_try_pwd "$BFUSER" "$(echo \"$top2000pwds\" | cut -d ' ' -f $i)" & #Try TOP TRIES of passwords (by default 2000)
sleep 0.007 # To not overload the system
done
wait