Skip to content

Commit

Permalink
vuln-fix: Temporary Directory Hijacking or Information Disclosure
Browse files Browse the repository at this point in the history
This fixes either Temporary Directory Hijacking, or Temporary Directory Local Information Disclosure.

Weakness: CWE-379: Creation of Temporary File in Directory with Insecure Permissions
Severity: High
CVSSS: 7.3
Detection: CodeQL & OpenRewrite (https://public.moderne.io/recipes/org.openrewrite.java.security.UseFilesCreateTempDirectory)

Reported-by: Jonathan Leitschuh <[email protected]>
Signed-off-by: Jonathan Leitschuh <[email protected]>

Bug-tracker: JLLeitschuh/security-research#10


Co-authored-by: Moderne <[email protected]>
  • Loading branch information
JLLeitschuh and TeamModerne committed Oct 4, 2022
1 parent a7b7b91 commit c5347d4
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions core/src/main/java/net/tomp2p/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.channels.FileChannel.MapMode;
import java.nio.file.Files;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.PublicKey;
Expand Down Expand Up @@ -644,15 +645,7 @@ private static Inet4Address getInet4Address(byte[] bytes) {
// http://stackoverflow.com/questions/617414/create-a-temporary-directory-in-java
public static File createTempDir() throws IOException {
final File temp;
temp = File.createTempFile("temp", Long.toString(System.nanoTime()));

if (!(temp.delete())) {
throw new IOException("Could not delete temp file: " + temp.getAbsolutePath());
}

if (!(temp.mkdir())) {
throw new IOException("Could not create temp directory: " + temp.getAbsolutePath());
}
temp = Files.createTempDirectory("temp" + Long.toString(System.nanoTime())).toFile();
return (temp);
}

Expand Down

0 comments on commit c5347d4

Please sign in to comment.