<div dir="ltr">Hallo there,<div><br></div><div>I'm currently writing a Python program which will send cmd to Suricatasc via the Unix Socket but i cannot get it working and also cannot find any good resource that can explain it to me.</div><div>Plz Help me.</div><div><br></div><div>This is the code that i have at the moment:</div><div><br></div><div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">def RunPcap():<br>        soc = "/var/run/suricata/suricata-command.socket"<br>        s = socket.socket(socket.AF_UNIX)<br>        s.connect(soc)<br>        s.send("pcap-file file_name.pcap test/")<br>        s.close<br>RunPcap()</blockquote></div></div>