Skip to content

Commit 73234e3

Browse files
committed
Fix possible log injection when logging series creation.
Exclude comment field from log message. Fix #173
1 parent 87962a3 commit 73234e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ru/mystamps/web/entity/Series.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
@Table(name = "series")
4747
@Getter
4848
@Setter
49-
@ToString(exclude = "metaInfo")
49+
@ToString(exclude = { "metaInfo", "comment" })
5050
@EqualsAndHashCode(exclude = { "metaInfo", "images", "comment" })
5151
@SuppressWarnings("PMD.TooManyFields")
5252
public class Series {

0 commit comments

Comments
 (0)