Open In App

Bopscrk – Tool To Generate Smart And Powerful Wordlists

Last Updated : 17 Oct, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Bopscrk is also known as Before Outset Password Cracking is the automated tool that aims to generate smart and powerful word lists for performing Brute-force attacks on the target domains. Bopscrk tool supports interactive mode, in which rather than specifying commands all the time the tool asks some questions and the user needs to answer those questions to generate the word lists. Bopscrk tool is developed in the Python Language and is available on the GitHub platform. This tool is free and open-source to use.

How does the Tool Works?

Working with this tool is pretty simple, users need to provide some basic information from which the word-list can be generated. This tool also includes the lyricpass feature in which the too will download the lyrics of the sound of the particular artist. There is a leet mode for creating the word lists with a high rate of getting the complex password brute-forced. You can provide word lists that you have already tested against the target to exclude all these words from the resultant word list.

Note: Make Sure You have Python Installed on your System, as this is a python-based tool. Click to check the Installation process: Python Installation Steps on Linux

Installation of Bopscrk Tool on Kali Linux OS

Step 1: Use the following command to install the tool in your Kali Linux operating system.

git clone https://github.com/r3nt0n/bopscrk.git

Step 2: Now use the following command to move into the directory of the tool. You have to move in the directory in order to run the tool.

cd bopscrk

Step 3: You are in the directory of the Bopscrk. Now you have to install a dependency of the Bopscrk using the following command.

sudo pip3 install -r requirements.txt

Step 4: Run the setup.py file to complete the installation of the tool.

sudo python3 setup.py install

Step 5: All the dependencies have been installed in your Kali Linux operating system. Now use the following command to run the tool and check the help section.

python3 bopscrk.py --help

Working with Bopscrk Tool on Kali Linux OS

Example 1: Interactive mode, the script will ask you about the target

python3 bopscrk.py -i 

As we are using the tool in interactive mode, we need to answer some questions for creating the wordlist.

Our word list is created and the data is stored in the result.txt file.

We are displaying the contents of the result.txt file.

Example 2: Enable leet transformations

python3 bopscrk.py -M 15 -w geeksforgeeks,computer,foo,bar -a geeksforgeeks -l -c -n 5

In this example, we are using leet mode.

We are displaying the contents of the tmp.txt file which contains the words.


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads