You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user/intelmq-manager.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ When using distribution packages, the webserver configuration (which is also sho
29
29
The webinterface is then available at ``http://localhost/intelmq-manager``.
30
30
31
31
Installation using pip
32
-
^^^^^^^^^^^^^^^^^^^^^^
32
+
======================
33
33
34
34
For installation via pip, the situation is more complex.
35
35
``pip3 install intelmq-manager`` installs the HTML files in ``${PREFIX}/usr/share/intelmq-manager/html``.
@@ -80,7 +80,7 @@ Configuration
80
80
In the file ``/usr/share/intelmq-manager/html/js/vars.js`` set ``ROOT`` to the URL of your ``intelmq-api`` installation- by default that's on the same host as ``intelmq-manager``.
81
81
82
82
CSP Headers
83
-
==========
83
+
===========
84
84
85
85
It is recommended to set these two headers for all requests:
Copy file name to clipboardExpand all lines: intelmq/bots/collectors/shadowserver/collector_reports_api.py
+6-10Lines changed: 6 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -24,16 +24,12 @@ class ShadowServerAPICollectorBot(CollectorBot, HttpMixin, CacheMixin):
24
24
"""
25
25
Connects to the Shadowserver API, requests a list of all the reports for a specific country and processes the ones that are new
26
26
27
-
Parameters
28
-
----------
29
-
api_key: str
30
-
Your Shadowserver API key
31
-
secret: str
32
-
Your Shadowserver API secret
33
-
country: str
34
-
The country you want to download reports for (i.e. 'austria')
35
-
types: list
36
-
A list of strings or a string of comma-separated values with the names of reporttypes you want to process. If you leave this empty, all the available reports will be downloaded and processed (i.e. 'scan', 'drones', 'intel', 'sandbox_connection', 'sinkhole_combined').
27
+
Parameters:
28
+
api_key (str): Your Shadowserver API key
29
+
secret (str): Your Shadowserver API secret
30
+
country (str): The country you want to download reports for (i.e. 'austria')
31
+
types (list):
32
+
A list of strings or a string of comma-separated values with the names of reporttypes you want to process. If you leave this empty, all the available reports will be downloaded and processed (i.e. 'scan', 'drones', 'intel', 'sandbox_connection', 'sinkhole_combined').
0 commit comments