fix: reset form and quiz color on reset lesson (#1903)

* ./mvnw spotless:apply

```
[INFO] --- spotless-maven-plugin:2.41.1:apply (default-cli) @ webgoat ---
[INFO] Writing clean file: /home/ulyssa/labs/WebGoat/WebGoat-bb6e84d/src/main/java/org/owasp/webgoat/lessons/sqlinjection/introduction/SqlInjectionLesson5a.java
```

* On reset lesson: reset form and quizzes colors
This commit is contained in:
François Capon
2024-10-26 09:22:18 +02:00
committed by GitHub
parent f4c86be6c7
commit cb7c508046
2 changed files with 4 additions and 3 deletions

View File

@ -41,8 +41,8 @@ public class SqlInjectionLesson5a extends AssignmentEndpoint {
+ " '1'</span> always evaluates to true (The string ending literal for '1 is closed by"
+ " the query itself, so you should not inject it). So the injected query basically looks"
+ " like this: <span style=\"font-style: italic\">SELECT * FROM user_data WHERE"
+ " first_name = 'John' and last_name = '' or TRUE</span>, which will always evaluate to"
+ " true, no matter what came before it.";
+ " (first_name = 'John' and last_name = '') or (TRUE)</span>, which will always evaluate"
+ " to true, no matter what came before it.";
private final LessonDataSource dataSource;
public SqlInjectionLesson5a(LessonDataSource dataSource) {