You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CStringChecker:
Added functionality to detect the memory overflow (src tainted sizeof > dst sizeof) during a memory copy from an input tainted
GenericTaintChecker:
Adding functions propagation: strlen, strtok, fgets
Improvement detect stdin and adding on entry "0"
Removing the removal of the tag propagation on the old element or propagated source...
exemple:
fgets(addr, sizeof(addr), stdin); stdin -> addr(tainted)
sprintf(buffer, "test 1 %s", addr); addr -> buffer(tainted) but with old version, addr no longer had the tag propagation, if it was reused by another copy function then we would not see the spread.