mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
Merge pull request #9066 from security-companion/analyzers-patch1
fix descriptions in files related to analyzers
This commit is contained in:
@@ -53,7 +53,7 @@ def analyze(conf, input):
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
dir = os.path.dirname(os.path.realpath(__file__))
|
dir = os.path.dirname(os.path.realpath(__file__))
|
||||||
parser = argparse.ArgumentParser(description='Search Greynoise for a given artifact')
|
parser = argparse.ArgumentParser(description='Search EmailRep for a given artifact')
|
||||||
parser.add_argument('artifact', help='the artifact represented in JSON format')
|
parser.add_argument('artifact', help='the artifact represented in JSON format')
|
||||||
parser.add_argument('-c', '--config', metavar="CONFIG_FILE", default=dir + "/emailrep.yaml", help='optional config file to use instead of the default config file')
|
parser.add_argument('-c', '--config', metavar="CONFIG_FILE", default=dir + "/emailrep.yaml", help='optional config file to use instead of the default config file')
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ Search Pulsedive for a domain, hash, IP, URI, URL, or User Agent.
|
|||||||
|
|
||||||
## Configuration Requirements
|
## Configuration Requirements
|
||||||
|
|
||||||
``api_key`` - API key used for communication with the Virustotal API
|
``api_key`` - API key used for communication with the Pulsedive API
|
||||||
|
|
||||||
This value should be set in the ``sensoroni`` pillar, like so:
|
This value should be set in the ``sensoroni`` pillar, like so:
|
||||||
|
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ def analyze(conf, input):
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
dir = os.path.dirname(os.path.realpath(__file__))
|
dir = os.path.dirname(os.path.realpath(__file__))
|
||||||
parser = argparse.ArgumentParser(description='Search VirusTotal for a given artifact')
|
parser = argparse.ArgumentParser(description='Search Pulsedive for a given artifact')
|
||||||
parser.add_argument('artifact', help='the artifact represented in JSON format')
|
parser.add_argument('artifact', help='the artifact represented in JSON format')
|
||||||
parser.add_argument('-c', '--config', metavar="CONFIG_FILE", default=dir + "/pulsedive.yaml", help='optional config file to use instead of the default config file')
|
parser.add_argument('-c', '--config', metavar="CONFIG_FILE", default=dir + "/pulsedive.yaml", help='optional config file to use instead of the default config file')
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ Submit a URL to Urlscan for analysis.
|
|||||||
|
|
||||||
## Configuration Requirements
|
## Configuration Requirements
|
||||||
|
|
||||||
``api_key`` - API key used for communication with the Virustotal API
|
``api_key`` - API key used for communication with the urlscan API
|
||||||
``enabled`` - Determines whether or not the analyzer is enabled. Defaults to ``False``
|
``enabled`` - Determines whether or not the analyzer is enabled. Defaults to ``False``
|
||||||
``visibility`` - Determines whether or not scan results are visibile publicly. Defaults to ``public``
|
``visibility`` - Determines whether or not scan results are visibile publicly. Defaults to ``public``
|
||||||
``timeout`` - Time to wait for scan results. Defaults to ``180``s
|
``timeout`` - Time to wait for scan results. Defaults to ``180``s
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ def analyze(conf, input):
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
dir = os.path.dirname(os.path.realpath(__file__))
|
dir = os.path.dirname(os.path.realpath(__file__))
|
||||||
parser = argparse.ArgumentParser(description='Search Alienvault OTX for a given artifact')
|
parser = argparse.ArgumentParser(description='Search urlscan for a given artifact')
|
||||||
parser.add_argument('artifact', help='the artifact represented in JSON format')
|
parser.add_argument('artifact', help='the artifact represented in JSON format')
|
||||||
parser.add_argument('-c', '--config', metavar="CONFIG_FILE", default=dir + "/urlscan.yaml", help='optional config file to use instead of the default config file')
|
parser.add_argument('-c', '--config', metavar="CONFIG_FILE", default=dir + "/urlscan.yaml", help='optional config file to use instead of the default config file')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user