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
to an empty string - which means that the SSL machinery used for STOMP communication
25
+
will attempt to load the system’s default CA certificates (PR#2414 by Jan Kaliszewski).
22
26
23
27
### Core
24
28
-`intelmq.lib.message`: For invalid message keys, add a hint on the failure to the exception: not allowed by configuration or not matching regular expression (PR#2398 by Sebastian Wagner).
@@ -27,7 +31,7 @@
27
31
-`intelmq.lib.mixins`: Add a new class, `StompMixin` (defined in a new submodule: `stomp`),
28
32
which provides certain common STOMP-bot-specific operations, factored out from
29
33
`intelmq.bots.collectors.stomp.collector` and `intelmq.bots.outputs.stomp.output`
30
-
(PR#2408 by Jan Kaliszewski).
34
+
(PR#2408and PR#2414by Jan Kaliszewski).
31
35
32
36
### Development
33
37
- Makefile: Add codespell and test commands (PR#2425 by Sebastian Wagner).
@@ -36,11 +40,16 @@
36
40
37
41
### Bots
38
42
#### Collectors
39
-
-`intelmq.bots.collectors.stomp.collector` (PR#2408 by Jan Kaliszewski):
40
-
- Add support for authentication based on STOMP login and passcode,
41
-
introducing 3 new configuration parameters (see above: *Configuration*).
43
+
-`intelmq.bots.collectors.stomp.collector` (PR#2408 and PR#2414 by Jan Kaliszewski):
44
+
- Drop support for versions of `stomp.py` older than `4.1.12`.
42
45
- Update the code to support new versions of `stomp.py`, including the latest (`8.1.0`);
Copy file name to clipboardExpand all lines: docs/user/feeds.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -719,15 +719,15 @@ parameters:
719
719
720
720
### N6 Stomp Stream
721
721
722
-
N6 Collector - CERT.pl's N6 Collector - N6 feed via STOMP interface. Note that rate_limit does not apply for this bot as it is waiting for messages on a stream.
722
+
N6 Collector - CERT.pl's *n6* Stream API feed (via STOMP interface). Note that 'rate_limit' does not apply to this bot, as it is waiting for messages on a stream.
**Additional Information:** Contact cert.pl to get access to the feed.
730
+
**Additional Information:** Contact CERT.pl to get access to the feed. Note that the configuration parameter values suggested here are suitable for the new *n6* Stream API variant (with authentication based on 'username' and 'password'); for this variant, typically you can leave the 'ssl_ca_certificate' parameter's value empty - then the system's default CA certificates will be used; however, if that does not work, you need to set 'ssl_ca_certificate' to the path to a file containing CA certificates eligible to verify "*.cert.pl" server certificates (to be found among the publicly available CA certs distributed with modern web browsers/OSes). Also, note that the 'server' parameter's value (for the *new API variant*) suggested here, "n6stream-new.cert.pl", is a temporary domain; ultimately, it will be changed back to "stream.cert.pl". When it comes to the *old API variant* (turned off in November 2023!), you need to have the 'server' parameter set to the name "n6stream.cert.pl", 'auth_by_ssl_client_certificate' set to true, 'ssl_ca_certificate' set to the path to a file containing the *n6*'s legacy self-signed CA certificate (which is stored in file "intelmq/bots/collectors/stomp/ca.pem"), and the parameters 'ssl_client_certificate' and 'ssl_client_certificate_key' set to the paths to your-*n6*-client-specific certificate and key files (note that the 'username' and 'password' parameters are then irrelevant and can be omitted).
731
731
732
732
733
733
**Collector configuration**
@@ -736,14 +736,14 @@ N6 Collector - CERT.pl's N6 Collector - N6 feed via STOMP interface. Note that r
736
736
module: intelmq.bots.collectors.stomp.collector
737
737
parameters:
738
738
auth_by_ssl_client_certificate: False
739
-
exchange: {insert your exchange point as given by CERT.pl}
739
+
exchange: {insert your STOMP *destination* to subscribe to, as given by CERT.pl, e.g. /exchange/my.example.org/*.*.*.*}
740
740
name: N6 Stomp Stream
741
-
password: {insert n6 user's API key}
741
+
password: {insert your *n6* API key}
742
742
port: 61614
743
743
provider: CERT.PL
744
-
server: n6stream.cert.pl
745
-
ssl_ca_certificate:{insert path to CA file for CERT.pl's n6}
746
-
username: {insert n6 user's login}
744
+
server: n6stream-new.cert.pl
745
+
ssl_ca_certificate:
746
+
username: {insert your *n6* login, e.g. someuser@my.example.org}
0 commit comments