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
[analyzer] Moving TaintPropagation and GenericTaint checkers out of alpha
alpha.security.taint.TaintPropagation
modeling checker is renamed to optin.taint.TaintPropagation.
alpha.security.taint.GenericTaint
user facing checker is renamed to optin.taint.genericTaint
These checkers were stabilized and improved by recent commits,
thus it's ready for (optional) production use.
The checker is placed in the optin package as it implements
an optional security analysis.
Copy file name to clipboardExpand all lines: clang/docs/analyzer/user-docs/TaintAnalysisConfiguration.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,10 @@ Taint Analysis Configuration
4
4
5
5
The Clang Static Analyzer uses taint analysis to detect injection vulnerability related issues in code.
6
6
The backbone of taint analysis in the Clang SA is the ``TaintPropagation`` modeling checker.
7
-
The reports are emitted via the :ref:`alpha-security-taint-GenericTaint` checker.
7
+
The reports are emitted via the :ref:`optin-taint-GenericTaint` checker.
8
8
The ``TaintPropagation`` checker has a default taint-related configuration.
9
9
The built-in default settings are defined in code, and they are always in effect.
10
-
The checker also provides a configuration interface for extending the default settings via the ``alpha.security.taint.TaintPropagation:Config`` checker config parameter
10
+
The checker also provides a configuration interface for extending the default settings via the ``optin.taint.TaintPropagation:Config`` checker config parameter
11
11
by providing a configuration file to the in `YAML <http://llvm.org/docs/YamlIO.html#introduction-to-yaml>`_ format.
12
12
This documentation describes the syntax of the configuration file and gives the informal semantics of the configuration options.
0 commit comments