Open In App

Labsecurity – Framework for ethical hacking and computer security

Last Updated : 21 Feb, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Labsecurity is a free and open-source tool available on GitHub. Labsecurity Is a framework that is used by security researchers and pen-testers in the early stages of reconnaissance. Labsecurity is used for scanning IP and extracting useful information from the website. Labsecurity is a framework that uses different modules such as scanweb, scanIP, etc. In Labsecurity first, you have to set the target of the domain and then you can use the modules to perform reconnaissance. It is written in python so, you must have python installed in your kali Linux operating system. The user interface of Labsecurity is very similar to metasploitable 1 and metasploitable 2 which makes it easy to use. 

Installation

Step 1: Use the following command to download the tool from GitHub. Use the second command to move into the directory of the tool. 

git clone https://github.com/dylanmeca/labsecurity
cd labsecurity

Step 2: Now use the following command to install the tool in the operating system.

python3 setup.py install

Step 3: Now use the following command to run the tool.

labsecurity -help

The tool has been downloaded and running successfully. Now we will see examples to use the tool.

Usage

Example 1: Use the labsecurity tool to set the target domain and to find the security header.

set target <domain>
use scanweb
run

Example 2: Use the labsecurity tool to set the target IP and to find open and closed ports with the associated protocol.

set target <IP>
use scanports
run


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads