-
Hi, how i can add oinkcode (PRO code) in suricata? tnx |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hmm, this isn't something I've tried specifically before (so far I've only dealt with the ET Open ruleset and custom rules) but we ought to be able to figure it out, and I'll probably create a feature request but to make it more convenient for you to do in the future. From what I can tell from the documentation enabling a custom/pro source can be done by either adding the source directly to the suricata Are we talking about doing this in Malcolm or on Hedgehog Linux, as I think it'll be slightly different depending on which you're doing. In Malcolm itself, I think probably what you'll need to do is get the update.yaml file (you could grab an example from here) and save it locally in your host running Malcolm (under - type: bind
bind:
create_host_path: false
source: ./suricata/update.yaml
target: /etc/suricata/update.yaml
read_only: true Then you'd do whatever you need to do to specify your custom/pro source there in that file. In Malcolm's
I'll log an enhancement request for us to look at this and make the whole process smoother, as it's not really pretty at the moment (as you can see). I'll link that here. |
Beta Was this translation helpful? Give feedback.
-
Nice, this works flawless, to check is everything fine i do:
and got confirmation
thank you for your time and support! |
Beta Was this translation helpful? Give feedback.
Hmm, this isn't something I've tried specifically before (so far I've only dealt with the ET Open ruleset and custom rules) but we ought to be able to figure it out, and I'll probably create a feature request but to make it more convenient for you to do in the future.
From what I can tell from the documentation enabling a custom/pro source can be done by either adding the source directly to the suricata
update.yaml
or by runningsuricata-update enable-source
and providing the oink code (either as asecretcode
oroinkcode
parameter, I'm not sure which, google's not being super clear about it).Are we talking about doing this in Malcolm or on Hedgehog Linux, as I think it'll be slightly dif…