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.
- Host: GitHub
- URL: https://github.com/idiothacker/SignChecker
- Owner: idiothacker
- License: mit
- Created: 2021-05-13T16:32:27.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-26T13:30:35.000Z (over 4 years ago)
- Last Synced: 2024-11-21T18:39:21.313Z (12 months ago)
- Topics: nmap-scripts, smb
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - 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. (Python)
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
```