1
vote
1answer
131 views

ANDROID : IPTABLES how to block application making internet connection

There does not seem to be any information on this topic. I would like to find how I can use IPTABLES in Android to block an application making a connection. So far I have: 1) Recompiled the ...
1
vote
1answer
77 views

Source address of TCP_RST segment sent by IPTables

Iptables can be configured to reject a packet with an action such as sending TCP_RST or ICMP_HOST_UNREACHABLE packets back to the source. Like this: iptables -A INPUT -p TCP --dport 22 -j REJECT ...
3
votes
1answer
448 views

How to make all outgoing RST drop

I am trying to drop all the outgoing RST and incoming RST on all ports. I am using Debian linux. I tried all possible combinations of commands listed on the internet but nothing seems to work. For ...
0
votes
0answers
129 views

pktgen packets donot pass through the default gateway [closed]

I have a topology in which: On one end, there is a Linux machine 1 having IP Address 192.168.100.3. Linux machine 2 has two virtual interfaces: eth0 (IP: 10.10.10.4) eth1 (IP: 192.168.100.10) ...
0
votes
0answers
201 views

Alter iptables conntrack entries / add additional field in tuple?

Is there any way to play with iptable conntrack tuple , i want to add one more field/variable in tuple and want to see the same in conntrack log . please help me ... eg : conntrack -L udp 17 2 ...
1
vote
0answers
1k views

Android kernel .config file for Netfilter and iptables

The latest android sources(android 4.0.1) come with Iptables 1.4.11. In order to enable iptables and Netfilter, how should the 2.6..35 kernel look like? I googled some sites and got the following ...
3
votes
2answers
2k views

iptables error in android: iptables-save and iptables-restore not working

I have compiled Linux for android emulator with full netfilter functionality enabled. And got a iptables binary after building android from source. When i push this binary to the emulator i can ...
2
votes
2answers
2k views

iptables and libpcap

i have rule set up to drop udp/tcp packets with matching strings. however, my program which captures packet using libpcap, is still able to see this packet. Why is this/, what should be the iptable ...
0
votes
1answer
1k views

Dropping packets with matching string uisng iptables drops all the subsequent packets with no match

I am trying to write a worm filtering utility on application layer. i have setup following rule to drop tcp packet with specific substring. iptables -A INPUT -p tcp -m string --string "test" -j DROP ...
0
votes
2answers
2k views

iptable rule to drop packet with a specific substring in payload

i am trying to write rules to drop any packet, irrespective if it is outgoing, incoming or being forwareded, which has a specific sub string in the tcp or udp payload, how am i suppose to do that?