
Galileo is a free web application auditing framework that can perform various penetration testing tasks, such as information gathering, fingerprinting, bruteforcing, injection test, and exploiting vulnerabilities. Galileo uses different modules to perform these tasks. The modules can be divided into following categories.
- Bruteforce
- Disclosure
- Fingerprint
- Injection
- Scanner
- Tools
- Exploitation
Galileo Installation
Galileo can be cloned from Github repository as follows.git clone https://github.com/m4ll0k/Galileo.git galileo

To install the requirements, follow the following commands.
cd galileo
python2 -m pip install -r requirements.txt
Galileo Working
To run Galileo, simply type the following command in the terminal.python2 galileo.pyThe command loads list of modules categories, as shown in the following screenshot.
In order to view list of modules, use the following command.
show modulesTo use the desired module, type its name in the following format.
use <module name>For example, to use fingerprint/server module, type the following command.
use fingerprint/serverIn order to define the target web application, we need to use the set parameters. The available set parameters can be seen by typing set help command in the terminal.
To define the target web application, we need to use set HOST parameter in the following format.
set HOST <target web application>To execute the selected module, simply type run in the command line.
runThe module runs and displays the results on the screen as shown below.
We can use all the modules in the same way. For instance, to use the SQL injection, we can use the injection/sq_injection module in the following format
use injection/sql_injection set HOST <target web application> runIf the target web application is vulnerable, the module responds with the backend Database Management System (DBMS) information.
What Bunny rating does it get?
Galileo is a simple tool that can perform active and passive security tests. Besides Information gathering and vulnerability analysis, Galileo can be used to exploit the vulnerabilities. However, the scope of vulnerabilities analysis and exploitation is limited. So for this I give it 3 out of 5 bunnies.
Want to learn more about ethical hacking?
We have a networking hacking course that is of a similar level to OSCP, get an exclusive 95% discount HERE
Do you know of another GitHub related hacking tool?
Get in touch with us via the contact form if you would like us to look at any other GitHub ethical hacking tools.
Posted from my blog with SteemPress : https://latesthackingnews.com/2018/11/26/galileo-open-source-web-application-auditing-framework/