|
BugTraq
[EXPL] (MS04-031) NetDDE buffer overflow vulnerability PoC Dec 30 2004 11:39PM houseofdabus HOD (houseofdabus inbox ru) (1 replies) Re: [EXPL] (MS04-031) NetDDE buffer overflow vulnerability PoC Dec 31 2004 06:09PM Alberto Garcia Hierro (tcpdevil linuxlover org) (1 replies) |
|
Privacy Statement |
> +#define Sleep(x) sleep(x)
This isn't the same thing: under Win32, Sleep is in *milliseconds*, while on
UNIX it's *seconds* - that's going to take a long, long time if you run this.
#ifdef unix
# ...
# define Sleep(x) sleep(((x)+500)/1000)
# ...
#endif
--
Stephen J Friedl | Security Consultant | UNIX Wizard | +1 714 544-6561
www.unixwiz.net | Tustin, Calif. USA | Microsoft MVP | steve (at) unixwiz (dot) net [email concealed]
[ reply ]