$ for i in $(cat dict.txt);do unrar e -p$i protected.rar; if [ $? = 0 ];then echo "Passwd Found: $i";break;fi;done
Cracking a password protected .rar file in a line, by dictionary attack method. All you need is a good dictionary (dict.txt).
(by ksaver)by David Winterbottom (codeinthehole.com)
0sem comentários ainda