Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #47
Browse files Browse the repository at this point in the history
Fix wording for CLI option
  • Loading branch information
0snap authored Sep 29, 2020
2 parents 87a5704 + 3651dcd commit dcb85f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/vast/vast-bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,14 +421,14 @@ def main():
"-T",
dest="transform",
default=None,
help="Forward the context of each sighting (only the contents without the Threat Bus specific sighting structure) via a UNIX pipe. This flag takes a command line string to use and invokes it as direct subprocess without shell / globbing support. Note: Treated as template string. Occurrences of '%%ioc' get replaced with the matched IoC.",
help="Forward the context of each sighting (only the contents without the Threat Bus specific sighting structure) via a UNIX pipe. This option takes a command line string to use and invokes it as direct subprocess without shell / globbing support. Note: Treated as template string. Occurrences of '%%ioc' get replaced with the matched IoC.",
)
parser.add_argument(
"--sink",
"-S",
dest="sink",
default=None,
help="If sink is specified, sightings are not reported back to Threat Bus. Instead, the context of a sighting (only the contents without the Threat Bus specific sighting structure) is forwarded to the specified sink via a UNIX pipe. This flag takes a command line string to use and invokes it as direct subprocess without shell / globbing support.",
help="If sink is specified, sightings are not reported back to Threat Bus. Instead, the context of a sighting (only the contents without the Threat Bus specific sighting structure) is forwarded to the specified sink via a UNIX pipe. This option takes a command line string to use and invokes it as direct subprocess without shell / globbing support.",
)

args = parser.parse_args()
Expand Down

0 comments on commit dcb85f1

Please sign in to comment.