Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CodeQL suppression for tar extraction code (#2006)
CodeQL is generating a warning for tar extraction code suggesting that the tar file entries are used in an unsanitized way and that could lead to file system traversal attacks. However, during tar extraction all the files are written to the disk using the `internal/safefile` package which ensures all the filesystem operations during layer extraction happen under the layer root directory. So this warning can be safely suppressed. Signed-off-by: Amit Barve <ambarve@microsoft.com>
- Loading branch information