Tagged Questions
0
votes
2answers
58 views
How does nfq_get_payload structure its return data?
Primarily, I'm trying to get the source address and dest port from the payload of a Netfilter queue payload (The payload is retrieved using the nfq_get_payload function). The following question asks ...
0
votes
0answers
117 views
iptables redirect not working for some packets
I'm trying to write a transparent proxy that creates jitter in the outgoing packets from a web server ran on my machine. I'm using the following command on Ubuntu 12.10 to redirect incoming traffic ...
0
votes
0answers
88 views
Android- Hotspot Download and Upload Data Size measuring
I am using my android device as the Server (Android Hotspot) and I want to see upload and download data packet of my LAN clients. As far as I do the reading. I use Iptables by the following way:
...
-1
votes
2answers
84 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.
1
vote
3answers
48 views
Is it possible to see what is in header/packet using libpcap in case of https protocol
I am using iptables string match + libnetfilter_queue library to monitor http requests and responses. But later on I realized that string match fails in case of https protocol as iptable captures ...
0
votes
1answer
156 views
How to extract source and destination port number from packet in queue of iptables
I am using libnetfilter_queue library. But i couldn't figure out a way to extract port number in the call back function. I am bit new. A detailed help will be highly appreciated!
0
votes
1answer
85 views
There is no NF_REJECT verdict in libnetfilter_queue
libnetfilter_queue seems to support only two verdicts: NF_ACCEPT and NF_DROP . Is there any work around for NF_REJECT.
0
votes
0answers
36 views
Is it possible to figure out which http request generated the corresponding response
I am using iptables and libnetfilter_queue library to listen to tcp (http) packets. I am filtering out INPUT responses containing a matching string in the http header. Is it possible to know which ...
0
votes
1answer
185 views
How to extract payload from packet in queue of iptables
I am using libnetfilter_queue library. But i couldn't figure out a way to extract payload in the call back function. I am bit new. A detailed help will be highly appreciated! Actually i further wish ...
0
votes
0answers
131 views
Is it possible to analyse http headers using iptables (libnetfilter_queue) library
What i want to do is that, analyze the header of packet with protocol http. I want to filter packets based on mime types (or any other value ) contained in their http headers. Is it possible at all!
1
vote
1answer
223 views
iptables icmp Destination host unknown
I am testing how to cause java.net.NoRouteToHostException using iptables. configure server side like this:
sudo iptables -A INPUT -s 10.13.185.66 -j DROP
sudo iptables -A INPUT -s 10.13.185.66 -j ...
0
votes
1answer
759 views
How to formulate IP forwarding rule using iptables
I have two Systems A and B. A is a TCP Client and sends a message to TCP Server on B.
------------------ --------------------------
System A System B
...
1
vote
1answer
335 views
Why am I getting extra bits in my recv() calls with libnfqueue?
I'm having problems with the following code. I receive my data with no problems, however that data is loaded with extraneous bits! For example, the following code grabs all traffic directed to it from ...
2
votes
2answers
331 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 ...
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 ...
