Files
codeql/java/ql/test/library-tests/dataflow/taintsources/SpringMultiPart.java
Arthur Baars ae2bab7e9c Add test case
2020-04-28 16:57:03 +02:00

16 lines
311 B
Java

import org.springframework.web.multipart.MultipartFile;
public class SpringMultiPart {
MultipartFile file;
public void test() throws Exception {
file.getBytes();
file.isEmpty();
file.getInputStream();
file.getResource();
file.getName();
file.getContentType();
file.getOriginalFilename();
}
}