Skip to content

Instantly share code, notes, and snippets.

View ranjithum's full-sized avatar

Ranjith Gowda ranjithum

View GitHub Profile
@ranjithum
ranjithum / unix-shark
Created December 8, 2019 06:33
Capture packets over unix domain sockets
#!/bin/bash
which socat >/dev/null 2>&1
if $?; then
echo "Please install socat using \"yum install socat -y\""
exit 1
fi
which tshark >/dev/null 2>&1