Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bradchiappetta committed Oct 30, 2024
1 parent 17b75f0 commit 8a88ee8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run(self, params={}):
resp = self.connection.gn_client.riot(params.get(Input.IP_ADDRESS))
if resp["riot"]:
resp.pop("logo_url", None)
resp["viz_url"] = "https://viz.greynoise.io/riot/" + str(params.get(Input.IP_ADDRESS))
resp["viz_url"] = "https://viz.greynoise.io/ip/" + str(params.get(Input.IP_ADDRESS))
except RequestFailure as e:
raise PluginException(
cause=f"API responded with ERROR: {e.args[0]} - {e.args[1]}.",
Expand Down
3 changes: 2 additions & 1 deletion plugins/greynoise/plugin.spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ key_features:
- "Perform a GreyNoise Vulnerability Lookup"
- "Perform a GreyNoise IP Timeline Lookup"
- "Perform a GreyNoise IP Similarity Lookup"
- "Query a list of IPs on a Trigger"
troubleshooting: "Ensure that the GreyNoise API key used has appropriate access for the actions being used."
version_history:
- "2.0.0 - Upgrade GreyNoise SDK v2.3.0, Fix Action Outputs, Add `vulnerability_lookup` action, Add `timeline_lookup` action, Add `similar_lookup` action"
- "2.0.0 - Upgrade GreyNoise SDK v2.3.0, Fix Action Outputs, Add `vulnerability_lookup` action, Add `timeline_lookup` action, Add `similar_lookup` action, Add new `greynoise_alert` tigger"
- "1.0.1 - Fix bug with connection parameters"
- "1.0.0 - Initial plugin."
links:
Expand Down

0 comments on commit 8a88ee8

Please sign in to comment.