Skip to content

Commit 5bb2a41

Browse files
Add security advisory for vuln #72 in 2022
PiperOrigin-RevId: 449113076
1 parent 65bff07 commit 5bb2a41

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## TFSA-2022-072: Undefined behavior when users supply invalid resource handles
2+
3+
### CVE Number
4+
CVE-2022-29207
5+
6+
### Impact
7+
Multiple TensorFlow operations misbehave in eager mode when the resource handle provided to them is invalid:
8+
9+
```python
10+
import tensorflow as tf
11+
12+
tf.raw_ops.QueueIsClosedV2(handle=[])
13+
```
14+
15+
```python
16+
import tensorflow as tf
17+
18+
tf.summary.flush(writer=())
19+
```
20+
21+
In graph mode, it would have been impossible to perform these API calls, but migration to TF 2.x eager mode opened up this vulnerability. If the resource handle is empty, then a reference is bound to a null pointer inside TensorFlow codebase (various codepaths). This is undefined behavior.
22+
23+
### Patches
24+
We have patched the issue in GitHub commit [a5b89cd68c02329d793356bda85d079e9e69b4e7](https://github.com/tensorflow/tensorflow/commit/a5b89cd68c02329d793356bda85d079e9e69b4e7) and GitHub commit [dbdd98c37bc25249e8f288bd30d01e118a7b4498](https://github.com/tensorflow/tensorflow/commit/dbdd98c37bc25249e8f288bd30d01e118a7b4498).
25+
26+
The fix will be included in TensorFlow 2.9.0. We will also cherrypick this commit on TensorFlow 2.8.1, TensorFlow 2.7.2, and TensorFlow 2.6.4, as these are also affected and still in supported range.
27+
28+
### For more information
29+
Please consult [our security guide](https://github.com/tensorflow/tensorflow/blob/master/SECURITY.md) for more information regarding the security model and how to contact us with issues and questions.
30+
31+
### Attribution
32+
This vulnerability has been reported by Hong Jin from Singapore Management University.

0 commit comments

Comments
 (0)