C++: Clarify which taint tracking libraries should be used somewhat.

This commit is contained in:
Geoffrey White
2020-05-28 15:55:23 +01:00
parent d77092c931
commit 408e38a4d4
2 changed files with 6 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
/*
* Support for tracking tainted data through the program.
*
* Prefer to use `semmle.code.cpp.dataflow.TaintTracking` when designing new queries.
*/
import semmle.code.cpp.ir.dataflow.DefaultTaintTracking

View File

@@ -1,4 +1,8 @@
/**
* DEPRECATED: we now use `semmle.code.cpp.ir.dataflow.DefaultTaintTracking`,
* which is based on the IR but designed to behave similarly to this old
* libarary.
*
* Provides the implementation of `semmle.code.cpp.security.TaintTracking`. Do
* not import this file directly.
*/