Skip to content

Commit

Permalink
New unrestricted file upload size vulnerability (#351) (#454)
Browse files Browse the repository at this point in the history
Added new UnrestrictedFileUpload vulnerability with unrestricted file size. #351
tkomlodi authored Dec 18, 2023
1 parent 4986733 commit 60c924b
Showing 6 changed files with 89 additions and 27 deletions.
Original file line number Diff line number Diff line change
@@ -2,21 +2,30 @@

import com.zaxxer.hikari.HikariDataSource;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import java.util.Properties;
import javax.servlet.http.HttpServletRequest;
import javax.sql.DataSource;
import org.sasanlabs.internal.utility.LevelConstants;
import org.sasanlabs.service.vulnerability.fileupload.UnrestrictedFileUpload;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.autoconfigure.jdbc.DataSourceProperties;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.context.support.ReloadableResourceBundleMessageSource;
import org.springframework.core.annotation.Order;
import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.core.io.support.PropertiesLoaderUtils;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.web.multipart.MultipartResolver;
import org.springframework.web.multipart.commons.CommonsMultipartResolver;
import org.springframework.web.multipart.support.MultipartFilter;
import org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver;

/**
@@ -30,6 +39,9 @@ public class VulnerableAppConfiguration {
private static final String I18N_MESSAGE_FILE_LOCATION = "classpath:i18n/messages";
private static final String ATTACK_VECTOR_PAYLOAD_PROPERTY_FILES_LOCATION_PATTERN =
"classpath:/attackvectors/*.properties";
private static final List<String> MAX_FILE_UPLOAD_SIZE_OVERRIDE_PATHS =
Arrays.asList(
"/" + UnrestrictedFileUpload.CONTROLLER_PATH + "/" + LevelConstants.LEVEL_9);

/**
* Will Inject MessageBundle into messageSource bean.
@@ -123,4 +135,29 @@ public JdbcTemplate applicationJdbcTemplate(
@Qualifier("applicationDataSource") DataSource applicationDataSource) {
return new JdbcTemplate(applicationDataSource);
}

/**
* Customized MultipartFilter bean disables default max upload size for multipart files and
* their overall requests, for select paths. See {@link
* UnrestrictedFileUpload#getVulnerablePayloadLevel10()} for usage.
*/
@Bean
@Order(0)
public MultipartFilter multipartFilter() {
class MaxUploadSizeOverrideMultipartFilter extends MultipartFilter {
@Override
protected MultipartResolver lookupMultipartResolver(HttpServletRequest request) {
if (MAX_FILE_UPLOAD_SIZE_OVERRIDE_PATHS.contains(request.getServletPath())) {
CommonsMultipartResolver multipart = new CommonsMultipartResolver();
multipart.setMaxUploadSize(-1);
multipart.setMaxUploadSizePerFile(-1);
return multipart;
} else {
// returns default implementation
return lookupMultipartResolver();
}
}
};
return new MaxUploadSizeOverrideMultipartFilter();
}
}
Original file line number Diff line number Diff line change
@@ -41,11 +41,11 @@
*/
@VulnerableAppRestController(
descriptionLabel = "UNRESTRICTED_FILE_UPLOAD_VULNERABILITY",
value = "UnrestrictedFileUpload")
value = UnrestrictedFileUpload.CONTROLLER_PATH)
public class UnrestrictedFileUpload {
private Path root;
private Path contentDispositionRoot;

public static final String CONTROLLER_PATH = "UnrestrictedFileUpload";
private static final String STATIC_FILE_LOCATION = "upload";
static final String CONTENT_DISPOSITION_STATIC_FILE_LOCATION = "contentDispositionUpload";
private static final String BASE_PATH = "static";
@@ -101,7 +101,7 @@ public UnrestrictedFileUpload() throws IOException, URISyntaxException {
}
}

private static final ResponseEntity<GenericVulnerabilityResponseBean<String>>
private static ResponseEntity<GenericVulnerabilityResponseBean<String>>
genericFileUploadUtility(
Path root,
String fileName,
@@ -116,31 +116,24 @@ public UnrestrictedFileUpload() throws IOException, URISyntaxException {
root.resolve(fileName),
StandardCopyOption.REPLACE_EXISTING);
String uploadedFileLocation;
String input =
FrameworkConstants.VULNERABLE_APP
+ FrameworkConstants.SLASH
+ (isContentDisposition
? CONTENT_DISPOSITION_STATIC_FILE_LOCATION
: STATIC_FILE_LOCATION)
+ FrameworkConstants.SLASH
+ fileName;
if (htmlEncode) {
uploadedFileLocation =
StringEscapeUtils.escapeHtml4(
FrameworkConstants.VULNERABLE_APP
+ FrameworkConstants.SLASH
+ (isContentDisposition
? CONTENT_DISPOSITION_STATIC_FILE_LOCATION
: STATIC_FILE_LOCATION)
+ FrameworkConstants.SLASH
+ fileName);
uploadedFileLocation = StringEscapeUtils.escapeHtml4(input);
} else {
uploadedFileLocation =
FrameworkConstants.VULNERABLE_APP
+ FrameworkConstants.SLASH
+ (isContentDisposition
? CONTENT_DISPOSITION_STATIC_FILE_LOCATION
: STATIC_FILE_LOCATION)
+ FrameworkConstants.SLASH
+ fileName;
uploadedFileLocation = input;
}
return new ResponseEntity<GenericVulnerabilityResponseBean<String>>(
return new ResponseEntity<>(
new GenericVulnerabilityResponseBean<String>(uploadedFileLocation, true),
HttpStatus.OK);
}
return new ResponseEntity<GenericVulnerabilityResponseBean<String>>(
return new ResponseEntity<>(
new GenericVulnerabilityResponseBean<String>("Input is invalid", false),
HttpStatus.OK);
}
@@ -344,13 +337,39 @@ public ResponseEntity<GenericVulnerabilityResponseBean<String>> getVulnerablePay
value = LevelConstants.LEVEL_8,
htmlTemplate = "LEVEL_1/FileUpload",
requestMethod = RequestMethod.POST)
public ResponseEntity<GenericVulnerabilityResponseBean<String>> getVulnerablePayloadLevel9(
public ResponseEntity<GenericVulnerabilityResponseBean<String>> getVulnerablePayloadLevel8(
@RequestParam(REQUEST_PARAMETER) MultipartFile file)
throws ServiceApplicationException, IOException {
return genericFileUploadUtility(
contentDispositionRoot, file.getOriginalFilename(), () -> true, file, true, true);
}

@AttackVector(
vulnerabilityExposed = {
VulnerabilityType.UNCONTROLLED_RESOURCE_CONSUPTION,
VulnerabilityType.DENIAL_OF_SERVICE
},
description = "UNRESTRICTED_FILE_UPLOAD_UNCONTROLLED_RESOURCE_CONSUMPTION",
payload = "UNRESTRICTED_FILE_UPLOAD_PAYLOAD_LEVEL_9")
@AttackVector(
vulnerabilityExposed = {VulnerabilityType.PATH_TRAVERSAL},
description = "UNRESTRICTED_FILE_UPLOAD_NO_VALIDATION_FILE_NAME",
payload = "UNRESTRICTED_FILE_UPLOAD_PAYLOAD_LEVEL_8")
@VulnerableAppRequestMapping(
value = LevelConstants.LEVEL_9,
htmlTemplate = "LEVEL_1/FileUpload",
requestMethod = RequestMethod.POST)
public ResponseEntity<GenericVulnerabilityResponseBean<String>> getVulnerablePayloadLevel9(
@RequestParam(REQUEST_PARAMETER) MultipartFile file) throws IOException {
return genericFileUploadUtility(
root,
RANDOM.nextInt() + "_" + file.getOriginalFilename(),
() -> true,
file,
true,
false);
}

// I think below vulnerability is not exploitable. Need to check again after running Owasp
// ZAP FileUpload Addon.
@AttackVector(
@@ -361,11 +380,11 @@ public ResponseEntity<GenericVulnerabilityResponseBean<String>> getVulnerablePay
description =
"UNRESTRICTED_FILE_UPLOAD_IF_FILE_NAME_NOT_ENDS_WITH_.PNG_OR_.JPEG_CASE_INSENSITIVE")
@VulnerableAppRequestMapping(
value = LevelConstants.LEVEL_9,
value = LevelConstants.LEVEL_10,
variant = Variant.SECURE,
htmlTemplate = "LEVEL_1/FileUpload",
requestMethod = RequestMethod.POST)
public ResponseEntity<GenericVulnerabilityResponseBean<String>> getVulnerablePayloadLevel8(
public ResponseEntity<GenericVulnerabilityResponseBean<String>> getVulnerablePayloadLevel10(
@RequestParam(REQUEST_PARAMETER) MultipartFile file)
throws ServiceApplicationException, IOException {
String fileName = file.getOriginalFilename();
Original file line number Diff line number Diff line change
@@ -27,6 +27,8 @@ public enum VulnerabilityType {
COMMAND_INJECTION(77, 31),

UNRESTRICTED_FILE_UPLOAD(434, null),
UNCONTROLLED_RESOURCE_CONSUPTION(400, null),
DENIAL_OF_SERVICE(730, 10),

OPEN_REDIRECT_3XX_STATUS_CODE(601, 38),

Original file line number Diff line number Diff line change
@@ -35,4 +35,7 @@ UNRESTRICTED_FILE_UPLOAD_PAYLOAD_LEVEL_7=Hackers can execute code in a user's ma
The extension after the null byte is ignored and the file will be treated as .html. Now if we upload this file and access it, the file should get executed in the browser.
UNRESTRICTED_FILE_UPLOAD_PAYLOAD_LEVEL_8=A path traversal attack aims to overwrite files and directories that are stored outside the web root folder. By manipulating variables that reference files with "dot-dot-slash (../)" sequences and its variations or by using absolute file paths, it may be possible to change arbitrary files and directories stored on file system including application source code or configuration and critical system files.<br/>\
<b>How to exploit this level?</b><br/>\
This level is vulnerable for path traversal, so if you choose a filename like <code>../index.html</code> then the file will be stored in another directory than provided.
This level is vulnerable for path traversal, so if you choose a filename like <code>../index.html</code> then the file will be stored in another directory than provided.
UNRESTRICTED_FILE_UPLOAD_PAYLOAD_LEVEL_9=Uploading very large files may lead to denial of service attacks on file space or other web application functions that may be impacted by in-memory file manipulation. This could overload application memory or disk space causing temporary or permanent unavailability of the application.<br/>\
<b>How to exploit this level?</b><br/>\
Since there is no file size validation at this level, you can upload very large sized files. Uploaded files are stored in memory cumulatively, which may cause the application to run out of memory and become unavailable. In such cases, a java.lang.OutOfMemoryError may be thrown and logged.
2 changes: 1 addition & 1 deletion src/main/resources/i18n/messages.properties
Original file line number Diff line number Diff line change
@@ -125,7 +125,7 @@ UNRESTRICTED_FILE_UPLOAD_IF_NOT_HTML_NOT_HTM_FILE_EXTENSION_CASE_INSENSITIVE=All
UNRESTRICTED_FILE_UPLOAD_IF_FILE_NAME_NOT_CONTAINS_.PNG_OR_.JPEG_CASE_INSENSITIVE=Only file name is allowed if it contains case insensitive .jpeg or .png.
UNRESTRICTED_FILE_UPLOAD_IF_FILE_NAME_NOT_ENDS_WITH_.PNG_OR_.JPEG_CASE_INSENSITIVE_AND_FILE_NAMES_CONSIDERED_BEFORE_NULL_BYTE=Only file name is allowed if it ends with case insensitive .jpeg or .png and it is considered before Null Bytes only.
UNRESTRICTED_FILE_UPLOAD_IF_FILE_NAME_NOT_ENDS_WITH_.PNG_OR_.JPEG_CASE_INSENSITIVE=Only file name is allowed if it ends with case insensitive .jpeg or .png.

UNRESTRICTED_FILE_UPLOAD_UNCONTROLLED_RESOURCE_CONSUMPTION=Maximum uploaded file size is not limited.

# XXE Vulnerability
XXE_VULNERABILITY=An XML External Entity attack is a type of attack against an \
1 change: 1 addition & 0 deletions src/main/resources/i18n/messages_en_US.properties
Original file line number Diff line number Diff line change
@@ -114,6 +114,7 @@ Important Links:<br/>\
</ol>

#### Attack Vector Description
UNRESTRICTED_FILE_UPLOAD_UNCONTROLLED_RESOURCE_CONSUPTION=Maximum uploaded file size is not limited.
UNRESTRICTED_FILE_UPLOAD_NO_VALIDATION_FILE_NAME=There is no validation on uploaded file's name.
UNRESTRICTED_FILE_UPLOAD_IF_NOT_HTML_FILE_EXTENSION=All file extensions are allowed except .html extensions.
UNRESTRICTED_FILE_UPLOAD_IF_NOT_HTML_NOT_HTM_FILE_EXTENSION=All file extensions are allowed except .html and .htm extensions.

0 comments on commit 60c924b

Please sign in to comment.