mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
Apply suggestions from code review
Co-authored-by: Shati Patel <42641846+shati-patel@users.noreply.github.com>
This commit is contained in:
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@@ -1,4 +1,3 @@
|
||||
{
|
||||
"omnisharp.autoStart": false,
|
||||
"restructuredtext.confPath": "${workspaceFolder}/docs/codeql"
|
||||
}
|
||||
"omnisharp.autoStart": false
|
||||
}
|
||||
|
||||
@@ -174,7 +174,7 @@ The global data flow library is used by extending the class ``DataFlow::Configur
|
||||
|
||||
.. code-block:: ql
|
||||
|
||||
import csharp
|
||||
import python
|
||||
|
||||
class MyDataFlowConfiguration extends DataFlow::Configuration {
|
||||
MyDataFlowConfiguration() { this = "..." }
|
||||
@@ -212,7 +212,7 @@ Global taint tracking is to global data flow what local taint tracking is to loc
|
||||
|
||||
.. code-block:: ql
|
||||
|
||||
import csharp
|
||||
import python
|
||||
|
||||
class MyTaintTrackingConfiguration extends TaintTracking::Configuration {
|
||||
MyTaintTrackingConfiguration() { this = "..." }
|
||||
@@ -247,7 +247,7 @@ This query shows a data flow configuration that uses all network input as data s
|
||||
|
||||
.. code-block:: ql
|
||||
|
||||
import csharp
|
||||
import python
|
||||
import semmle.code.csharp.dataflow.flowsources.PublicCallableParameter
|
||||
|
||||
class MyDataFlowConfiguration extends DataFlow::Configuration {
|
||||
|
||||
@@ -19,7 +19,7 @@ Experiment and learn how to write effective and efficient queries for CodeQL dat
|
||||
|
||||
- :doc:`CodeQL library for Python <codeql-library-for-python>`: When you need to analyze a Python program, you can make use of the large collection of classes in the CodeQL library for Python.
|
||||
|
||||
- :doc:`Analyzing data flow in Python <analyzing-data-flow-in-python>`: You can use CodeQL to track the flow of data through a Python program. Tracking user-controlled, or tainted, data is a key technique for security researchers.
|
||||
- :doc:`Analyzing data flow in Python <analyzing-data-flow-in-python>`: You can use CodeQL to track the flow of data through a Python program to places where the data is used.
|
||||
|
||||
- :doc:`Functions in Python <functions-in-python>`: You can use syntactic classes from the standard CodeQL library to find Python functions and identify calls to them.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user