Update docs/language/learn-ql/javascript/type-tracking.rst

Co-Authored-By: Felicity Chapman <felicitymay@github.com>
This commit is contained in:
mc
2020-03-06 08:18:07 +00:00
committed by GitHub
parent 0773bfc2d7
commit e0ceeef4dc

View File

@@ -489,7 +489,7 @@ Prefer type tracking when:
Prefer data-flow configurations when:
- Tracking user-controlled data -- use `taint tracking <https://help.semmle.com/QL/learn-ql/javascript/dataflow.html#using-global-taint-tracking>`__.
- Differentiating between different kinds of user-controlled data -- use :doc:`Using flow labels for precise data flow analysis <flow-labels>`.
- Differentiating between different kinds of user-controlled data -- see :doc:`Using flow labels for precise data flow analysis <flow-labels>`.
- Tracking transformations of a value through generic utility functions.
- Tracking values through string manipulation.
- Generating a path from source to sink -- see :doc:`constructing path queries <../writing-queries/path-queries>`.