All of lore.kernel.org
 help / color / mirror / Atom feed
* try to change os fingerprint
@ 2009-08-21  8:33 J. Bakshi
  2009-08-21 11:49 ` John A. Sullivan III
  0 siblings, 1 reply; 5+ messages in thread
From: J. Bakshi @ 2009-08-21  8:33 UTC (permalink / raw)
  To: netfilter

Hello,

I am trying to change the OS fingerprint with iptables. Here are two
rule set which I have constructed to do the same

````````
iptables -t mangle -A PREROUTING - -j PERS --tweak dst --local --conf
example/win9x.conf
iptables -t mangle -A OUTPUT -j PERS --tweak src --local --conf
example/win9x.conf
````````````

But it throws an error like

``````````
iptables v1.4.2-rc1: Unknown arg `--tweak'
Try `iptables -h' or 'iptables --help' for more information.
```````````````

What might be the problem here ?
Thanks

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: try to change os fingerprint
  2009-08-21  8:33 try to change os fingerprint J. Bakshi
@ 2009-08-21 11:49 ` John A. Sullivan III
  2009-08-21 12:00   ` J. Bakshi
  0 siblings, 1 reply; 5+ messages in thread
From: John A. Sullivan III @ 2009-08-21 11:49 UTC (permalink / raw)
  To: J. Bakshi; +Cc: netfilter

On Fri, 2009-08-21 at 14:03 +0530, J. Bakshi wrote:
> Hello,
> 
> I am trying to change the OS fingerprint with iptables. Here are two
> rule set which I have constructed to do the same
> 
> ````````
> iptables -t mangle -A PREROUTING - -j PERS --tweak dst --local --conf
> example/win9x.conf
> iptables -t mangle -A OUTPUT -j PERS --tweak src --local --conf
> example/win9x.conf
> ````````````
> 
> But it throws an error like
> 
> ``````````
> iptables v1.4.2-rc1: Unknown arg `--tweak'
> Try `iptables -h' or 'iptables --help' for more information.
> ```````````````
> 
> What might be the problem here ?
> Thanks
<snip>
I'm not familiar with the PERS target.  It does not show up in my
iptables.  Is it available in your kernel or do you need to load and
perhaps compile a module for it? - John
-- 
John A. Sullivan III
Open Source Development Corporation
+1 207-985-7880
jsullivan@opensourcedevel.com

http://www.spiritualoutreach.com
Making Christianity intelligible to secular society


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: try to change os fingerprint
  2009-08-21 11:49 ` John A. Sullivan III
@ 2009-08-21 12:00   ` J. Bakshi
  2009-08-21 12:07     ` Richard Horton
  0 siblings, 1 reply; 5+ messages in thread
From: J. Bakshi @ 2009-08-21 12:00 UTC (permalink / raw)
  To: John A. Sullivan III; +Cc: netfilter

John A. Sullivan III wrote:
> On Fri, 2009-08-21 at 14:03 +0530, J. Bakshi wrote:
>   
>> Hello,
>>
>> I am trying to change the OS fingerprint with iptables. Here are two
>> rule set which I have constructed to do the same
>>
>> ````````
>> iptables -t mangle -A PREROUTING - -j PERS --tweak dst --local --conf
>> example/win9x.conf
>> iptables -t mangle -A OUTPUT -j PERS --tweak src --local --conf
>> example/win9x.conf
>> ````````````
>>
>> But it throws an error like
>>
>> ``````````
>> iptables v1.4.2-rc1: Unknown arg `--tweak'
>> Try `iptables -h' or 'iptables --help' for more information.
>> ```````````````
>>
>> What might be the problem here ?
>> Thanks
>>     
> <snip>
> I'm not familiar with the PERS target.  It does not show up in my
> iptables.  Is it available in your kernel or do you need to load and
> perhaps compile a module for it? - John
>   

I am not very sure but maybe we need to patch the kernel. Any clue from
anyone ?

Thanks

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: try to change os fingerprint
  2009-08-21 12:00   ` J. Bakshi
@ 2009-08-21 12:07     ` Richard Horton
  2009-08-21 12:13       ` J. Bakshi
  0 siblings, 1 reply; 5+ messages in thread
From: Richard Horton @ 2009-08-21 12:07 UTC (permalink / raw)
  To: netfilter

2009/8/21 J. Bakshi <joydeep@infoservices.in>
>
> I am not very sure but maybe we need to patch the kernel. Any clue from
> anyone ?
>
>

The package required to change the IP personality can be found here...
http://ippersonality.sourceforge.net/

Follow their directions and your distributions module build process to
make sure you have the required modules/user space libraries (if
needed) compiled and working.



--
Richard Horton
Users are like a virus: Each causing a thousand tiny crises until the
host finally dies.
http://www.solstans.co.uk - Solstans Japanese Bobtails and Norwegian Forest Cats
http://www.pbase.com/arimus - My online photogallery

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: try to change os fingerprint
  2009-08-21 12:07     ` Richard Horton
@ 2009-08-21 12:13       ` J. Bakshi
  0 siblings, 0 replies; 5+ messages in thread
From: J. Bakshi @ 2009-08-21 12:13 UTC (permalink / raw)
  To: Richard Horton; +Cc: netfilter

Richard Horton wrote:
> 2009/8/21 J. Bakshi <joydeep@infoservices.in>
>   
>> I am not very sure but maybe we need to patch the kernel. Any clue from
>> anyone ?
>>
>>
>>     
>
> The package required to change the IP personality can be found here...
> http://ippersonality.sourceforge.net/
>
> Follow their directions and your distributions module build process to
> make sure you have the required modules/user space libraries (if
> needed) compiled and working.
>
>   
Thanks a lot. I'll test in my debian box.




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-08-21 12:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-21  8:33 try to change os fingerprint J. Bakshi
2009-08-21 11:49 ` John A. Sullivan III
2009-08-21 12:00   ` J. Bakshi
2009-08-21 12:07     ` Richard Horton
2009-08-21 12:13       ` J. Bakshi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.