Pipal is an open source tool built in Ruby for password analysis. It can come in handy while analyzing large passwords dumps that we may come across on the internet or during a pentest activity.
Using Pipal
How to do it...
Let's perform the following steps:
- First, we clone the Git repository using the following command:
git clone https://github.com/digininja/pipal.git
Once we run the preceding command, we get the following output:
- Now we move into the pipal directory and give execute permission to the pipal.rb file using the following command:
chmod +x pipal.rb
- We can now run the tool using the following command:
./pipal.rb
Once we run the preceding command, we get the following output:
- Let's now give the...