Book Image

Mastering the Nmap Scripting Engine

By : Paulino Calderon
Book Image

Mastering the Nmap Scripting Engine

By: Paulino Calderon

Overview of this book

Table of Contents (23 chapters)
Mastering the Nmap Scripting Engine
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Scan Phases
Script Categories
Nmap Options Mind Map
References
Index

Other NSE data files


Now we will briefly cover other interesting NSE data files that do not fall under the previous categories.

mygroupnames.db

This file contains 450 strings used as multicast group names by the broadcast-igmp-discovery script. Remember that you can also use the broadcast-igmp-discovery.mygroupnamesdb script argument to use a different database:

$nmap --script broadcast-igmp-discovery --script-args broadcast-igmp-discovery.mygroupnamesdb=/pentest/groups.txt<target>

Tip

The official documentation of the broadcast-igmp-discovery script can be found at http://nmap.org/nsedoc/scripts/broadcast-igmp-discovery.html.

rtsp-urls.txt

This database is used by the rtsp-url-brute script to store 74 common media URLs in surveillance IP cameras. You may set an alternate data file using the rtsp-url-brute.urlfile script argument from the command line:

#nmap -p- -sV --script rtsp-url-brute --script-args rtsp-url-brute.urlfile=/pentest/urls-media.txt<target>

Tip

The official documentation...