sudo apt-get install uniscan
The command installs Uniscan tool along with its dependencies. Alternatively, we can also clone Uniscan from github using the following path.
git clone https://github.com/poerschke/Uniscan
Dynamic search is the most comprehensive option in Uniscan. The following command can be used to do the dynamic search of the target domain.
uniscan -u http://testphp.vulnweb.com/listproducts.php?cat=4 -dThe tool loads all the available plugins to perform a comprehensive analysis of the target web application. The tool crawls the urls of the target domain and checks for possible vulnerabilities, such as backdoors, SQL injections, blind SQL injections, Cross Site Scripting, Remote command execution, Remote file inclusion, web shells, directories, and source code disclosure. If any vulnerable urls are found, they are displayed on the screen as shown in the following screenshot.
Uniscan can also be used for scanning the web applications for specific vulnerabilities/goals using the available options. The optional flags are appended with the scanning command in the following way.
uniscan –u <target web application> -<available option>For instance, the following command can be used to do the web fingerprinting,.
uniscan -u http://testphp.vulnweb.com/listproducts.php?cat=4 -gUniscan web fingerprinting fetches hosting server information, installed plugins and modules, web services, Whois information, and some interesting strings.
Similarly, -j flag can be used to do the server fingerprinting of the web application.
uniscan -u http://testphp.vulnweb.com/listproducts.php?cat=4 -j
Uniscan performs pings and trace route operations to get information about the server. The type of information that is extracted during the scan includes server type, server version, server IP addresses, server origin, mailing addresses etc.
Uniscan is capable of finding the critical web application vulnerabilities. The tool can be used for cross verifying vulnerabilities found using other penetration testing frameworks. The best feature of the tool is the ability of finding additional vulnerable urls beside the one that is fed into the tool for scanning purpose. The tool however becomes slow while crawling a large number of urls in the target web applications. As a result we will be awarding this tool a rating of 4 out of 5 bunnies.