How to Install sqlsus on Kali Linux? Last Updated : 27 Jan, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report Sqlsus tool is an automated cyber security tool developed in the Perl Language which has the capability of detecting SQL Injection and Takeover the access of the database if the web application is vulnerable. Sqlsus tool is a command-line-based tool so you can pass the flags or tags in the command itself. Sqlsus can retrieve the structure of the database, inject your custom SQL payload for more assurance to exploitation, download files for the webserver or crawl the website. Many offensive tasks can be done through this. So let's move to the installation of the tool on Kali Linux Machine Note: Make Sure You have Perl Installed on your System, as this is a Perl-based tool. Click to check the Installation process: Perl Installation Steps on Linux Installation of Sqlsus on Kali Linux Step 1: Update apt database with apt using the following command. sudo apt update Step 2: After updating the apt database, We can install sqlsus tool by using apt manager. Use the following command to install the tool. sudo apt -y install sqlsus Step 3: Run the following command to verify the installation of the tool and also check the help section of the tool. sudo sqlsus -hWorking with Sqlsus Tool on Kali Linux Example/Usage: 1) Firstly, generate a configuration file by using the following command sudo sqlsus -g sql.cfg 2) Now, Enter the target URL in sql.cfg file. Use a text editor to open the file. mousepad sql.cfg 3) Run the sql.cfg file along with the tool. sudo sqlsus ./sql.cfg 4) Now, we are onto the database, we can retrieve the data from the database. We have got the database details of the target web application. We have retrieved the table names of the target database. Comment More infoAdvertise with us Next Article How to Install Python 3 on Kali Linux G gauravgandal Follow Improve Article Tags : Linux-Unix How To Kali-Linux Linux-Tools Similar Reads How to Install SQLplus on Linux? Oracle database is a popular database commonly used in transaction processing, data warehousing, and various other applications. SQLplus is an interface that Oracle itself develops. The main purpose of SQLplus is to interact with the Oracle DB and run various queries or code. We can say SQLplus is a 3 min read How to Install Git on Kali Linux Git is an important version control system that is renowned for its reliability and cooperation capabilities. The process of installing Git on Kali Linux is straightforward and efficient, guaranteeing that it works seamlessly with your development process. We'll carefully walk you through each step 7 min read How To Install Splunk on Linux Splunk is a software that helps organizations work with large amounts of data. The latest version 9.0.4.1 has new abilities. It can search data faster and use less memory. This makes it easier to look at and understand the data. Splunk 9.0.4.1 can now store old data in the cloud. This frees up space 5 min read How to Install Sqlninja in Kali Linux SQL Injection is one of the most severe attacks on web applications that exploit the SQL Database and provide unauthorized access to the Database. This attack can be done through different techniques like Manual and Automated. The manual approach requires more effort as all the steps are to be carri 6 min read How to Install Python 3 on Kali Linux Python 3 is a powerful and versatile programming language widely used for various tasks, from web development to data science, security automation, and AI and ML. Recent versions of Kali Linux come with Python 3 pre-installed. For some reason if you want a different version than the one already inst 3 min read How to Install Kali Linux on Windows? Kali Linux is an open-source Linux distribution based on Debian, designed for sophisticated penetration testing and security auditing. Kali Linux includes hundreds of tools for diverse information security activities such as penetration testing, security research, computer forensics, and reverse eng 2 min read Like