0
votes
1answer
52 views

How to retrieve original destination address

I'm using a REDIRECT iptables rule from my router(OpenWRT) to redirect certain UDP packets from the server A to the server B and I need to know how to get the original destination address(like a ...
-1
votes
2answers
75 views

What actually does “iptables -A INPUT -p udp -j REJECT”“ this rule?” [closed]

I know that the rule is for UDP block from host, but unfortunately it is blocking UDP for my loopback IP. Is it normal behavior of the rule. Note: I don't want to block UDP for my loopback address.
0
votes
0answers
260 views

how to redirect using socket programing

Below is the code I'm using to execute a binary which occupy a port(example 8080). #include <fcntl.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> ...
0
votes
1answer
106 views

Redirect to a PORT

I'm redirecting the clients who are all connected to my router to another port(say 8080) using iptables iptables -t nat -A PREROUTING -p tcp -j REDIRECT --to-port 8080 I'm running executing a ...
0
votes
1answer
299 views

When using a raw socket for TCP traffic, keep kernel from receiving incoming packets

I am running some security tests which require the use of a non-standard TCP socket, to generate a behaviour that a normal TCP stack would not follow. I use a raw socket to generate such traffic. ...
0
votes
1answer
786 views

marking packet for sending over raw socket

I have the following function which send packets over raw socket. #include <unistd.h> #include <stdio.h> #include <sys/socket.h> #include <netinet/ip.h> #include ...
0
votes
1answer
291 views

MySQL accepting local, local network and external connections with bind-address?

I'd like to access MySQL internally (localhost), externally (from the machine's external ip), as well as by it's local network address. The idea is that requests from our webserver, which is also ...
5
votes
3answers
2k views

Python/iptables: Capturing all UDP packets and their original destination

I am trying to write an iptables rule that will redirect all outgoing UDP packets to a local socket, but I also need the destination information. I started out with sudo iptables -t nat -A ...
1
vote
1answer
208 views

is it possible sending data via NIC directly instead of via routing table lookup (linux command or python)

Suppose I have 3 NIC in one host PC, name them eth0, eth1 and eth2 All interface have it's own ip address in different subnet, however, all the gateway router of those NIC have route to one server I ...
7
votes
1answer
841 views

Why does my service always bind to ipv6 localhost instead of ipv4?

I have a service that creates a ServerSocket and binds to localhost:7060. When I did "netstat -an" on my android device, I see it is using ipV6 localhost instead of ipv4 localhost interface. The ...
2
votes
2answers
318 views

How to read tcp packets, which have been redirected to localhost?

I use iptables (PREROUTING) to redirect all TCP Traffic to a local port. Now I want to capture these packets using a C program. I tried lots of socket variations (UDP / TCP / ...) but I cannot make a ...
9
votes
1answer
3k views

Is there a python interface to iptables?

Im trying to retrieve the current iptables chains configured on the system via python. If I strace the iptables command, it outputs: strace iptables -L INPUT socket(PF_INET, SOCK_RAW, IPPROTO_RAW) ...
6
votes
2answers
1k views

How to get original destination port of redirected UDP message?

Using this thing I can obtain original destination IP address of socket(PF_INET, SOCK_DGRAM, 0) socket. How to get original destination port?
0
votes
1answer
498 views

Raw ICMP packet to myself

On a linux system, I have built my own tunneling protocol, where I relay packets over a non-standarized but verfied medium. What I do is capture the packets using iptables and NFQUEUE, relay them over ...
0
votes
1answer
401 views

C++ weird RAW sockets and iptables issue

With reference to http://stackoverflow.com/questions/3951043/c-iptables-redirection-forming-separate-packets, I am facing an extremely peculiar problem now. I am trying to redirect all incoming ...
2
votes
1answer
806 views

C++ iptables redirection forming separate packets

I have all traffic from port 50 redirected to 5050 using iptables -t nat -A POSTROUTING -p udp --dport 50 -j REDIRECT --to-port 5050 I listen using a RAW Socket on 5050, and I see IP packets from ...
0
votes
0answers
135 views

Posting to internal socket fails when firewall is enabled

I'm working on an application where two processes communicate over loopback interface. Its Linux based system. I'm encountering a very strange problem, when Firewall is enabled, send to internal ...