Files
codeql/python/ql/test/experimental
Rasmus Wriedt Larsen 59160eeb24 Python: Add test showing taint for attr store
In `x.arg = TAINTED_STRING` there is a store step to the attribute `arg`
of `x`. In our taint modeling, we allow _any_ store step with the code
below. This means that we also say there is a taint-step directly from
`TAINTED_STRING` to `x` :|

```codeql
  // construction by literal
  // TODO: Not limiting the content argument here feels like a BIG hack, but we currently get nothing for free :|
  DataFlowPrivate::storeStep(nodeFrom, _, nodeTo)
```
2022-02-07 13:12:28 +01:00
..
2022-01-19 14:29:58 +01:00
2022-01-21 13:55:33 +01:00

This directory contains tests for experimental CodeQL queries and libraries.