|
Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com |
Subject: Re: stackguard-like embedded protection
From: Bluefish (P.Magnusson) (11a
GMX.NET)Date: Wed Sep 13 2000 - 15:21:29 CDT
- Next message: Michael Wojcik: "Re: stackguard-like embedded protection"
- Previous message: Scott D. Yelich: "Re: your mail"
- In reply to: Hiroaki Etoh: "Re: stackguard-like embedded protection"
- Next in thread: antirez: "Re: stackguard-like embedded protection"
- Next in thread: Michael Wojcik: "Re: stackguard-like embedded protection"
- Reply: Bluefish (P.Magnusson): "Re: stackguard-like embedded protection"
- Reply: antirez: "Re: stackguard-like embedded protection"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> I tested GCC aix, xlC aix, and Microsoft Visual C++. They don't place the
> 'volatile' variable next to the RET. Could someone test the following program
> in the other compilers. I am very interested in such information.
From the look of it, things are entirely allright with standard gcc &
linux i386. I'm wondering why the usage of "int". Perhaps it's good enough
for academic papers... But... Better to make things right from the start.
[bluefish
blue bluefish]$ cat > volatile.c
#include <stdio.h>
int main()
{
volatile int x=0;
char buf[20];
printf("%s!! x:%x buf:%x\n", ((char*)&x>buf)?"ok":"no", &x, buf);
}
[bluefish
blue bluefish]$ gcc -o volatile volatile.c
[bluefish
blue bluefish]$ ./volatile
ok!! x:bffffce4 buf:bffffcd0
..:::::::::::::::::::::::::::::::::::::::::::::::::..
http://www.11a.nu || http://bluefish.11a.nu
eleventh alliance development & security team
- Next message: Michael Wojcik: "Re: stackguard-like embedded protection"
- Previous message: Scott D. Yelich: "Re: your mail"
- In reply to: Hiroaki Etoh: "Re: stackguard-like embedded protection"
- Next in thread: antirez: "Re: stackguard-like embedded protection"
- Next in thread: Michael Wojcik: "Re: stackguard-like embedded protection"
- Reply: Bluefish (P.Magnusson): "Re: stackguard-like embedded protection"
- Reply: antirez: "Re: stackguard-like embedded protection"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]