Impact
Using File.createTempFile
in JDK will result in creating and using insecure temporary files that can leave application and system data vulnerable to attacks. This vulnerability only impacts unix-like systems where the local system temporary directory is shared between all users. This vulnerability does not impact Windows or modern versions of MacOS.
OpenAPI Generator Maven plug-in creates insecure temporary files during the code generation process. It creates insecure temporary files to store the OpenAPI specification files provided by the users and these temporary files can be read by any users in the system.
The impact of this vulnerability is information disclosure of the contents of the specification file to other local users.
Patches
The issue has been patched with Files.createTempFile
and released in the v5.1.0 stable version.
References
#8795
|
if (inputSpecRemoteUrl != null) { |
|
inputSpecTempFile = File.createTempFile("openapi-spec", ".tmp"); |
|
|
|
URLConnection conn = inputSpecRemoteUrl.openConnection(); |
|
if (isNotEmpty(auth)) { |
|
List<AuthorizationValue> authList = AuthParser.parse(auth); |
|
for (AuthorizationValue a : authList) { |
|
conn.setRequestProperty(a.getKeyName(), a.getValue()); |
|
} |
|
} |
|
try (ReadableByteChannel readableByteChannel = Channels.newChannel(conn.getInputStream())) { |
|
FileChannel fileChannel; |
|
try (FileOutputStream fileOutputStream = new FileOutputStream(inputSpecTempFile)) { |
|
fileChannel = fileOutputStream.getChannel(); |
|
fileChannel.transferFrom(readableByteChannel, 0, Long.MAX_VALUE); |
|
} |
|
} |
|
} |
For more information
If you have any questions or comments about this advisory:
Impact
Using
File.createTempFile
in JDK will result in creating and using insecure temporary files that can leave application and system data vulnerable to attacks. This vulnerability only impacts unix-like systems where the local system temporary directory is shared between all users. This vulnerability does not impact Windows or modern versions of MacOS.OpenAPI Generator Maven plug-in creates insecure temporary files during the code generation process. It creates insecure temporary files to store the OpenAPI specification files provided by the users and these temporary files can be read by any users in the system.
The impact of this vulnerability is information disclosure of the contents of the specification file to other local users.
Patches
The issue has been patched with
Files.createTempFile
and released in the v5.1.0 stable version.References
#8795
openapi-generator/modules/openapi-generator-maven-plugin/src/main/java/org/openapitools/codegen/plugin/CodeGenMojo.java
Lines 782 to 799 in 06ad7a5
For more information
If you have any questions or comments about this advisory: