Go to your web browser and search "rockyou.txt" on google to download the file from github.
After successful download click on your home file
Select "file system" and select the "usr" file
Select the "share" file
Select the "wordlists" file
Right click on your MENU KEY and select "open terminal here"
Input the command below to switch to root
sudo su
Now input the command below to unzip the file
gzip -d rockyou.txt.gz
The rockyou wordlist has been successfully unzipped.
HOW TO CHECK THE TOTAL AMOUNT OF PASSWORD IN THE FILE
CD into the directory
cd /usr/share/wordlists
input the command
wc -l rockyou.txt
TO SEARCH PASSWORDS CONTAINING A CERTAIN WORD
Input the command
grep girlfriend rockyou.txt
NB- Change girlfriend to any word of your choice
HOW TO SEARCH FOR PASSWORDS CONTAINING SPECIAL CHARACTERS
Input the command
grep -F "*#$" rockyou.txt
NB- Change *#$ to any character of your choice
Top comments (0)