An open API service indexing awesome lists of open source software.

https://github.com/idiothacker/SignChecker

SignChecker is a simple Python script that uses NMAP NSE SMB scripts to check for SMB signing and outputs the results of IPs where SMB Signing is disabled to a CSV file.
https://github.com/idiothacker/SignChecker

nmap-scripts smb

Last synced: 4 months ago
JSON representation

SignChecker is a simple Python script that uses NMAP NSE SMB scripts to check for SMB signing and outputs the results of IPs where SMB Signing is disabled to a CSV file.

Awesome Lists containing this project

README

          

# SignChecker
SignChecker is a simple Python script that uses NMAP NSE SMB scripts to check for SMB signing and outputs the results of IPs where SMB Signing is disabled to a CSV file.

## Installation
Clone the repository, navigate into the `SignChecker` folder and then run the following command.

``` python
pip3 install -r requirements.txt
```

## How to Use
```
-h, --help show this help message and exit
-i --infile The location of your input file, 1 IP per line. (-i ips.txt)
-o --outfile The name of the output csv file (-o results.csv)
```

### Run Example:
``` bash
python3 SignChecker.py -i ip_addresses.txt -o results.csv
```