How To Install bbqsql on Debian 10

Learn how to install bbqsql on Debian 10 with this tutorial. bbqsql is SQL Injection Exploitation Tool

Introduction

In this tutorial we learn how to install bbqsql on Debian 10.

What is bbqsql

bbqsql is:

BBQSQL is a blind SQL injection framework written in Python. It is extremely useful when attacking tricky SQL injection vulnerabilities. BBQSQL is also a semi-automatic tool, allowing quite a bit of customization for those hard to trigger SQL injection findings. The tool is built to be database agnostic and is extremely versatile. It also has an intuitive UI to make setting up attacks much easier. Python gevent is also implemented, making BBQSQL extremely fast.

There are three methods to install bbqsql on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install bbqsql Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install bbqsql using apt-get by running the following command:

sudo apt-get -y install bbqsql

Install bbqsql Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install bbqsql using apt by running the following command:

sudo apt -y install bbqsql

Install bbqsql Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install bbqsql using aptitude by running the following command:

sudo aptitude -y install bbqsql

How To Uninstall bbqsql on Debian 10

To uninstall only the bbqsql package we can use the following command:

sudo apt-get remove bbqsql

Uninstall bbqsql And Its Dependencies

To uninstall bbqsql and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove bbqsql

Remove bbqsql Configurations and Data

To remove bbqsql configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge bbqsql

Remove bbqsql configuration, data, and all of its dependencies

We can use the following command to remove bbqsql configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge bbqsql

Dependencies

bbqsql have the following dependencies:

References

Summary

In this tutorial we learn how to install bbqsql package on Debian 10 using different package management tools: apt, apt-get and aptitude.