Excuse the ads! We need some help to keep our site up.

LIst


Taint analysis

How does Taint Analysis work

Dynamic analysis

t3 = GET:I32(0)     # get %eax, a 32-bit integer (t3 = eax)
t2 = GET:I32(12)    # get %ebx, a 32-bit integer (t2 = ebx) 
t1 = Add32(t3,t2)   # eger (t2 = ebx)
PUT(0) = t1         put %eax (eax = t1)

Static analysis

Related site