Fixed bug, where assignment hints did not get displayed.
This commit is contained in:
parent
09baecb3e9
commit
98a32c7cdf
@ -20,8 +20,8 @@ public class SqlInjectionLesson10 extends AssignmentEndpoint {
|
||||
@RequestMapping(method = RequestMethod.POST)
|
||||
public
|
||||
@ResponseBody
|
||||
AttackResult completed(@RequestParam String action) {
|
||||
return injectableQueryAvailability(action);
|
||||
AttackResult completed(@RequestParam String action_string) {
|
||||
return injectableQueryAvailability(action_string);
|
||||
}
|
||||
|
||||
protected AttackResult injectableQueryAvailability(String action) {
|
||||
|
@ -285,7 +285,7 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td><label>Action contains:</label></td>
|
||||
<td><input name="action" value="" type="TEXT"/></td>
|
||||
<td><input name="action_string" value="" type="TEXT"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><button type="SUBMIT">Search logs</button></td>
|
||||
|
Loading…
x
Reference in New Issue
Block a user