Skip to content

Commit 45a1fc6

Browse files
committed
Python: Add link to better PyYAML docs
I found this randomly
1 parent d95b295 commit 45a1fc6

File tree

1 file changed

+14
-2
lines changed
  • python/ql/src/semmle/python/frameworks

1 file changed

+14
-2
lines changed

python/ql/src/semmle/python/frameworks/Yaml.qll

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
11
/**
2-
* Provides classes modeling security-relevant aspects of the PyYAML package
3-
* https://pyyaml.org/wiki/PyYAMLDocumentation (obtained via `import yaml`).
2+
* Provides classes modeling security-relevant aspects of the PyYAML package (obtained
3+
* via `import yaml`)
4+
*
5+
* See
6+
* - https://pyyaml.org/wiki/PyYAMLDocumentation
7+
* - https://pyyaml.docsforge.com/master/documentation/
48
*/
59

610
private import python
711
private import semmle.python.dataflow.new.DataFlow
812
private import semmle.python.dataflow.new.RemoteFlowSources
913
private import semmle.python.Concepts
1014

15+
/**
16+
* Provides classes modeling security-relevant aspects of the PyYAML package (obtained
17+
* via `import yaml`)
18+
*
19+
* See
20+
* - https://pyyaml.org/wiki/PyYAMLDocumentation
21+
* - https://pyyaml.docsforge.com/master/documentation/
22+
*/
1123
private module Yaml {
1224
/** Gets a reference to the `yaml` module. */
1325
private DataFlow::Node yaml(DataFlow::TypeTracker t) {

0 commit comments

Comments
 (0)