Created
July 22, 2016 07:44
-
-
Save Sinkmanu/9a43bf3d4903e83cdab792ec0403b1a7 to your computer and use it in GitHub Desktop.
Script to find nmap scripts by name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# vim /usr/bin/findnmapscripts | |
# chmod +x /usr/bin/findnmapscripts | |
# findnmapscripts http | |
find /usr/share/nmap/scripts/ -name "*$1*" | cut -d "/" -f 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment