Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.24 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.24 KB

Neutr1no

Neutr1no is a python-based network vulnerability assessment tool in script form.

How to set up

  1. Download and install Nmap:
    Nmap website

  2. Register for an API key with Vulners

  3. Clone repo and install dependencies:

    # clone the repository
    git clone https://github.com/Ar1t/Neutr1no.git
    
    # or download the zipped project folder and extract the files
    
    # Navigate to the project directory
    cd Desktop/security_projects/Neutr1no/
    
    # create a virtual environment to isolate the project dependencies
    python3 -m venv my_venv
    
    # activate the virtual environment.
    my_venv\Scripts\activate # Windows
    
    source my_venv/bin/activate # macOS/Linux
    
    # install the required dependencies
    pip install -r requirements.txt
  4. Run the program:

    python main.py

How to use

  • After running the code, follow prompts,
  • After port scanning, it will take about 2 mins (max) to return a list of vulnerabilities.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.