I would like to know whether there is the possibility to use transparent proxying within Python for UDP. My socket gets defined with:
sock.setsockopt(socket.SOL_IP, IP_TRANSPARENT, 1)
sock.setsockopt(socket.SOL_IP, SO_ORIGINAL_DST, 1)
where
IP_TRANSPARENT (19) and SO_ORIGINAL_DST (20)
are constants. Now, I would like to get the original IP and port of that socket. For TCP it works like this sock.getsockname()
, but it does not work for a udp socket. Of course, I do something like this first:
iptables -t mangle -I PREROUTING -d {ip} -p UDP --dport 20000:21000 -j TPROXY --on-port=8173 --on-ip={ip}
So I found a solution, one can do it like this: