mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
17 lines
325 B
Python
17 lines
325 B
Python
#!py
|
|
|
|
import logging
|
|
import socket
|
|
|
|
|
|
def send(data):
|
|
|
|
mainint = __salt__['pillar.get']('node:mainint')
|
|
mainip = __salt__['grains.get']('ip_interfaces').get(mainint)[0]
|
|
dstport = 8094
|
|
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
sent = sock.sendto(data.encode('utf-8'), (mainip, dstport))
|
|
|
|
return sent
|