Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[SECURITY] Fix Temporary Directory Hijacking or Information Disclosure Vulnerability #443

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
JLLeitschuh wants to merge 1 commit into scijava:master
base: master
Choose a base branch
Loading
from BulkSecurityGeneratorProjectV2:fix/JLL/temporary_directory_hijacking_or_temporary_directory_information_disclosure
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions src/main/java/org/scijava/util/FileUtils.java
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.nio.file.Files;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collection;
Expand Down Expand Up @@ -472,14 +473,10 @@ public static File createTemporaryDirectory(final String prefix,
final String suffix, final File directory) throws IOException
{
for (int counter = 0; counter < 10; counter++) {
final File file = File.createTempFile(prefix, suffix, directory);

if (!file.delete()) {
throw new IOException("Could not delete file " + file);
}
final File file = Files.createTempDirectory(directory.toPath(), prefix + suffix).toFile();

// in case of a race condition, just try again
if (file.mkdir()) return file;
if (true) return file;
}
throw new IOException(
"Could not create temporary directory (too many race conditions?)");
Expand Down

AltStyle によって変換されたページ (->オリジナル) /