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
StringBuilderbuilder = newStringBuilder();
builder.append("safe").append(tainted);
// taint sink with builder.toString()
the taint state from variable tainted is not transferred to builder. As a result, there can be false negatives, if this construction is used. In practise, toString methods with false safe taint state were sometimes generated.
This was fixed by proper taint transfer between the stack and local variables.
The text was updated successfully, but these errors were encountered:
In a piece of code like this
the taint state from variable
tainted
is not transferred tobuilder
. As a result, there can be false negatives, if this construction is used. In practise, toString methods with false safe taint state were sometimes generated.This was fixed by proper taint transfer between the stack and local variables.
The text was updated successfully, but these errors were encountered: