marie
unread,Mar 27, 2012, 8:29:30 AM3/27/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to BitBlaze User Discussion group
Hi,
I want to know if the taint mechanism depends only of the input data?
In the code below if x=3, only y will be tainted? or z too?
int main(int argc, char **argv)
{
int x;
int z;
int y;
scanf("%d", &x);
if (x != 5)
y=x;
else
z=x;
}
I would know if bitblaze take account of the dependencies of control
flow independently of the branche executed?
That's mean since x is tainted then y and z must be tainted?
Thank you