Cleared 2m ago · uutils/coreutils #10019 · Rust · ★ 24k · MIT

touch create path TOCTOU: stat then create leading to truncate via race

Component touch Description For a missing path, uutils touch does an existence check first and then creates the file. File::create() opens with O_CREAT|O_TRUNC, so there is a race window: if another process creates the path (or swaps it to a symlink to an existing file) between…

What we checked

Similar unclaimed issues