Re: Any way to automatically change arbitrary headers of IP packets on-the-fly?
Foundation Linux <[email protected]> Wed, 13 Apr 2005 09:52:03 -0700
| Newsgroups | gmane.comp.security.penetration,gmane.comp.security.vulnerabilities,gmane.comp.security.linux,gmane.comp.security.libnet,gmane.comp.security.basics |
|---|---|
| Message-ID | <[email protected]> |
Jo=E3o Paulo Caldas Campello wrote: >Hi, > > ><snip> > >I've already read Netfilter documentation (specially the "Linux >netfilter Hacking HOWTO") so I know this kind of packet mangling can >be done in userspace. I thought it could be done in the "MANGLE" table >of netfilter, but I found no TARGET that achieves that nor any >documentation about altering arbitrary IP headers. > >The question is: > > - Does already exist such a tool, module or whatever way to change >arbitrary headers of IP packets on-the-fly or will I have to (try to) >write one? =3D) > >Cheers, > >Jo=E3o Paulo Campello, >Network Security Analyst, >Tempest Security Technologies. > =20 > Well, mangle in iptables only accepts TOS, TTL and MARK as valid targets so you can't change arbitrary IP headers that way. However, if TOS is where you're fiddling, it might work. Check out http://www.faqs.org/docs/iptables/mangletable.html for a bit more info as well as http://www.faqs.org/docs/iptables/targets.html#TOSTARGET. The other option I can think of would be (in theory) to set nc (netcat) up as a TCP proxy and script it to do what you want -- recreate a duplicate packet with source-routing enabled.=20 http://www.die.net/doc/linux/man/man1/nc.1.html -Charles