-
Notifications
You must be signed in to change notification settings - Fork 82
Open
Description
I captured packets through following codes on Android devices
`
iptables -A OUTPUT -p udp --dport 53 -j CONNMARK --set-mark ${userId}
iptables -A OUTPUT -m owner --uid-owner ${userId} -j CONNMARK --set-mark ${userId}
iptables -A INPUT -m connmark --mark ${userId} -j NFLOG --nflog-group ${userId}
iptables -A OUTPUT -m connmark --mark ${userId} -j NFLOG --nflog-group ${userId}
nohup tcpdump -i nflog:${userId} -w ${pcapPath} > /dev/null 2>&1 &
`
but I cannot analyse this pcap, because the packet wrapped by "Linux Netfilter NFLOG".
Metadata
Metadata
Assignees
Labels
No labels