* HELP ipt_hook: happy cracking message
@ 2004-04-26 15:12 Parag Nemade
2004-04-27 3:33 ` Rusty Russell
2004-04-27 18:57 ` Willy Tarreau
0 siblings, 2 replies; 3+ messages in thread
From: Parag Nemade @ 2004-04-26 15:12 UTC (permalink / raw)
To: kernerl mail; +Cc: netdev, linux-net, netfilter
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=us-ascii, Size: 634 bytes --]
hi,
i modified kernel so that it will create
/proc/net/myproc file entry.
the function of this entry is to crate a 16 byte char
string from random no.s
i used net_srandom and net_random and sys_time for
that puspose. the problem is that i write program to
generate string after 120 seconds but it is changing
contents of myproc file every seconds. what can i do?
Also i am getting ipt_hook: happy cracking. message
again and again why?
regards,
parag.
__________________________________
Do you Yahoo!?
Yahoo! Photos: High-quality 4x6 digital prints for 25¢
http://photos.yahoo.com/ph/print_splash
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: HELP ipt_hook: happy cracking message
2004-04-26 15:12 HELP ipt_hook: happy cracking message Parag Nemade
@ 2004-04-27 3:33 ` Rusty Russell
2004-04-27 18:57 ` Willy Tarreau
1 sibling, 0 replies; 3+ messages in thread
From: Rusty Russell @ 2004-04-27 3:33 UTC (permalink / raw)
To: Parag Nemade; +Cc: kernerl mail, netdev, linux-net, netfilter
On Tue, 2004-04-27 at 01:12, Parag Nemade wrote:
> hi,
> i modified kernel so that it will create
> /proc/net/myproc file entry.
> the function of this entry is to crate a 16 byte char
> string from random no.s
> i used net_srandom and net_random and sys_time for
> that puspose. the problem is that i write program to
> generate string after 120 seconds but it is changing
> contents of myproc file every seconds. what can i do?
> Also i am getting ipt_hook: happy cracking. message
> again and again why?
You're sending out IP packets which don't even contain the IP header,
and you're running connection tracking or some filtering.
The message is not serious.
Rusty.
--
Anyone who quotes me in their signature is an idiot -- Rusty Russell
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: HELP ipt_hook: happy cracking message
2004-04-26 15:12 HELP ipt_hook: happy cracking message Parag Nemade
2004-04-27 3:33 ` Rusty Russell
@ 2004-04-27 18:57 ` Willy Tarreau
1 sibling, 0 replies; 3+ messages in thread
From: Willy Tarreau @ 2004-04-27 18:57 UTC (permalink / raw)
To: Parag Nemade; +Cc: kernerl mail, netdev, linux-net, netfilter
On Mon, Apr 26, 2004 at 08:12:20AM -0700, Parag Nemade wrote:
> hi,
> i modified kernel so that it will create
> /proc/net/myproc file entry.
> the function of this entry is to crate a 16 byte char
> string from random no.s
> i used net_srandom and net_random and sys_time for
> that puspose. the problem is that i write program to
> generate string after 120 seconds but it is changing
> contents of myproc file every seconds. what can i do?
may be you're sleeping for 120 instead of 120*HZ, which
means you're really sleeping 1.2s on x86.
> Also i am getting ipt_hook: happy cracking. message
> again and again why?
iptable_mangle.c comment reads 'root is playing with
raw sockets' above this message. It means that you're
sending too short IP packets (len < 20 bytes) or packets
with the IHL field < 5. It's just a harmless message.
Regards,
Willy
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-04-27 18:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-26 15:12 HELP ipt_hook: happy cracking message Parag Nemade
2004-04-27 3:33 ` Rusty Russell
2004-04-27 18:57 ` Willy Tarreau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).