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
After calling a method of an object "a" with a tainted object "b" as argument, object "a" (or at least one of its attributes" might also have to become tainted. Consider the following example:
After calling buf.append(name), where name is tainted, buf must be marked as tainted; or at least one of its attributes. Since buf2 might alias buf, we should report a possible vulnerability in the call to writer.println(buf2.toString())
The text was updated successfully, but these errors were encountered:
After calling a method of an object "a" with a tainted object "b" as argument, object "a" (or at least one of its attributes" might also have to become tainted. Consider the following example:
After calling
buf.append(name)
, wherename
is tainted,buf
must be marked as tainted; or at least one of its attributes. Sincebuf2
might aliasbuf
, we should report a possible vulnerability in the call towriter.println(buf2.toString())
The text was updated successfully, but these errors were encountered: