Created
February 14, 2014 03:45
-
-
Save jarrodhroberson/8995420 to your computer and use it in GitHub Desktop.
JSAP Example Configuration File
This file contains hidden or 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
| <jsap> | |
| <parameters> | |
| <switch> | |
| <id>help</id> | |
| <shortFlag>h</shortFlag> | |
| <longFlag>help</longFlag> | |
| <help>Display this help</help> | |
| </switch> | |
| <flaggedOption> | |
| <id>host</id> | |
| <stringParser> | |
| <classname>StringStringParser</classname> | |
| </stringParser> | |
| <required>true</required> | |
| <shortFlag>h</shortFlag> | |
| <longFlag>host</longFlag> | |
| <help>Server to use to scan for open ports</help> | |
| </flaggedOption> | |
| <unflaggedOption> | |
| <id>ports</id> | |
| <stringParser> | |
| <classname>IntegerStringParser</classname> | |
| </stringParser> | |
| <greedy>true</greedy> | |
| <list>true</list> | |
| <listSeparator>,</listSeparator> | |
| <help>List of ports to scan on the server</help> | |
| </unflaggedOption> | |
| </parameters> | |
| </jsap> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment