Hedgehog pcap-monitor 401 error and PCAP forwarding #894
-
|
Hello! We are setting up a hedgehog sensor and have it mostly set up. Currently, when we start hedgehog on the sensor it loads the containers fine, but when it gets to pcap-monitor-1 it gives out an error every second that says Second, we would like to have hedgehog as a capture device only and forward pcap files to malcolm for analysis. That does not seem to be what is occurring as only zeek and suricata logs are being sent. I am wondering if the above error is the cause of that or if we manually need to copy pcaps over to ingest them into Malcolm. Current configuration on hedgehog is: I created a user for the sensor within Malcolm's UI and entered that as the credentials for remoteos in auth_setup. Let me know if you need any more info on the config so the 2 questions I have are:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
A couple of things to help you understand what's going on here: There's nothing on hedgehog that "forwards pcap files to malcolm for analysis." Full PCAP remains at the point of capture, on the hedgehog sensor. What gets forwarded to Malcolm is metadata from one ore more of the three tools that are examining network traffic:
However, Arkime So, normally, on a Hedgehog, using netsniff-ng or tcpdump doesn't really buy you anything: you probably want to use arkime capture so it can capture the PCAP and send information about it to Malcolm. Zeek/Suricata logs are forwarded from the Hedgehog to Malcolm's logstash instance, and they use TLS certificates for authentication. Arkime (which is what's storing the full PCAP on the sensor) connects directly to opensearch, which means it needs credentials. Run So, how I'd set things up for live capture on your Hedgehog: under Capture Live Network Traffic I hope that makes sense! |
Beta Was this translation helpful? Give feedback.
A couple of things to help you understand what's going on here:
There's nothing on hedgehog that "forwards pcap files to malcolm for analysis." Full PCAP remains at the point of capture, on the hedgehog sensor. What gets forwarded to Malcolm is metadata from one ore more of the three tools that are examining network traffic:
captureHowever, Arkime
captureis unique in that in addition to the summaries of network sessions it sends to Malcolm, it stores the PCAP locally and sends information to Malcolm about where to find each session in that PCAP file. When the user goes to the Arkime viewer's Session page on Malcolm and expands an arkime session record, Malcolm rea…