taintflow icon indicating copy to clipboard operation
taintflow copied to clipboard

Runtime interception of AssignmentExpression

Open Invizory opened this issue 7 years ago • 0 comments

Implement taintflow.intercept to support runtime interception of AssignmentExpressions like +=.

Maybe it's also a good idea to rewrite expressions like a.b.c += x to temp = a.b, temp.c = temp.c + x (just a.b.c = a.b.c + x causes unwanted side effects), thus delegating interception to BinaryExpression.

Invizory avatar Feb 10 '17 11:02 Invizory