mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-4397 - xss in cron expressions
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1459265 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0d58477039
commit
148ca81dcd
|
@ -42,7 +42,7 @@ public class CronParser {
|
|||
|
||||
// Handle the once per minute case "* * * * *"
|
||||
// starting the next event at the top of the minute.
|
||||
if (cronEntry.startsWith("* * * * *")) {
|
||||
if (cronEntry.equals("* * * * *")) {
|
||||
result = currentTime + 60 * 1000;
|
||||
result = result / 1000 * 1000;
|
||||
return result;
|
||||
|
|
|
@ -40,13 +40,13 @@
|
|||
<c:forEach items="${requestContext.brokerQuery.scheduledJobs}"
|
||||
var="row">
|
||||
<tr>
|
||||
<td>${row.jobId}</td>
|
||||
<td>${row.cronEntry}</td>
|
||||
<td>${row.nextExecutionTime}</td>
|
||||
<td>${row.start}</td>
|
||||
<td>${row.delay}</td>
|
||||
<td>${row.period}</td>
|
||||
<td>${row.repeat}</td>
|
||||
<td><c:out value="${row.jobId}"/></td>
|
||||
<td><c:out value="${row.cronEntry}"/></td>
|
||||
<td><c:out value="${row.nextExecutionTime}"/></td>
|
||||
<td><c:out value="${row.start}"/></td>
|
||||
<td><c:out value="${row.delay}"/></td>
|
||||
<td><c:out value="${row.period}"/></td>
|
||||
<td><c:out value="${row.repeat}"/></td>
|
||||
<td>
|
||||
<a href="deleteJob.action?jobId=${row.jobId}&secret=<c:out value='${sessionScope["secret"]}'/>">Delete</a>
|
||||
</td>
|
||||
|
|
Loading…
Reference in New Issue