Skip to content

Commit

Permalink
Make it more clear to the user where to go for API keys.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoffin committed Feb 1, 2019
1 parent 36bcce6 commit eb96d21
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backscatter_service/DEPENDENCIES
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
The Backscatter service requires the following python modules:
The Backscatter.io service requires the following python modules:
- backscatter
2 changes: 1 addition & 1 deletion backscatter_service/README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This service checks the Backscatter database to see if it contains this IP. It will then collect relevant data.
This service checks the Backscatter.io database to see if it contains this IP. It will then collect relevant data.

Works on Indicators with the IPv4 Address Indicator Type.

Expand Down
4 changes: 2 additions & 2 deletions backscatter_service/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class BackscatterService(Service):
"""
Check the Backscatter database to see if it contains this IP.
Check the Backscatter.io database to see if it contains this IP.
Requires an API key available from backscatter.io
"""
Expand All @@ -24,7 +24,7 @@ class BackscatterService(Service):
version = '1.0.0'
supported_types = ['Indicator']
required_fields = []
description = "Look up an IP in Backscatter"
description = "Look up an IP in Backscatter.io"

# Saving for future use if the service needs runtime configuration
#@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion backscatter_service/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class BackscatterConfigForm(forms.Form):
api_key = forms.CharField(required=True,
label="API Key",
widget=forms.TextInput(),
help_text="Obtain API key from Backscatter.",
help_text="Obtain API key from Backscatter.io",
initial='')

def __init__(self, *args, **kwargs):
Expand Down

0 comments on commit eb96d21

Please sign in to comment.