Files
codeql/python/ql/test/experimental/dataflow
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
..
2021-01-29 21:28:43 +01:00
2021-10-11 09:48:56 +02:00
2021-01-29 21:28:43 +01:00
2021-11-26 13:50:10 +01:00
2022-01-19 14:29:58 +01:00