Tag: technology
Questions Related to technology
-
/GS on Visual C++ and -fmudflap -fmudflapth -fmudflapir on GCC
-
/O in Vc++ and -O2 in GCC
-
/S in Vc++ and -fcrossjumping in GCC
-
/S in VC++ and -fno-function-cse in GCC
-
SQL Injection
-
Arc Injection
-
Buffer Overflow
-
both 2 and 3
-
fstack-protector
-
fstack-protector-all
-
fdelete-null-pointer-checks
-
Both a and b
-
Heap Overflow
-
Integer overflow
-
Buffer overflow
-
No Vulnerability
-
j=getchar();
-
gets(ipstring);
-
Both
-
None
-
This is a double free vulnerability and must be fixed
-
The second call to free() will return an error
-
There might be compiler warnings, but the program will run fine
-
This is not a security issue
-
for (i=0;i<=3;i++)
-
intarray[i]=i*i;
-
Both
-
None
-
Heap overflow
-
Integer overflow
-
Off by one error
-
None
-
strncpy(dst,src,len(dst))
-
strncpy(dst,src,len(src)+1)
-
strncpy(dst,src,len(dst)+1)
-
strncpy(dst,src,len(dst)-1)
-
printf ("%.8s",name); AND printf (name);
-
printf (name); AND printf ("%s",name);
-
printf ("%s",name); AND printf ("%8c", name);
-
printf (name);