增加ip payload日志,与ip spoofing日志调用相同接口
This commit is contained in:
@@ -114,8 +114,8 @@ function update(url){
|
||||
top.$.jBox.tip("<spring:message code='has_approved'/>", "<spring:message code='info'/>");
|
||||
return;
|
||||
}else if(cked.val()==3){
|
||||
/* top.$.jBox.tip("<spring:message code='cancel_approved'/>", "<spring:message code='info'/>");
|
||||
return; */
|
||||
top.$.jBox.tip("<spring:message code='cancel_approved'/>", "<spring:message code='info'/>");
|
||||
return;
|
||||
}
|
||||
//处理asnIp,asn组下发过的ip配置不允许修改
|
||||
if(cked.attr("serviceGroupId")&&cked.attr("isValid")){
|
||||
|
||||
@@ -441,7 +441,7 @@
|
||||
<spring:message code="bypass"/>
|
||||
</c:if>
|
||||
<c:if test="${indexCfg.action eq 48}">
|
||||
<spring:message code="spoofing"/>
|
||||
<spring:message code="action_spoofing"/>
|
||||
</c:if>
|
||||
<c:if test="${(indexCfg.action ne 1) && (indexCfg.action ne 128) && (indexCfg.action ne 48)}">
|
||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||
|
||||
@@ -58,7 +58,15 @@ $(document).ready(function(){
|
||||
varStatus="satus">
|
||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION') }" var="dict">
|
||||
<c:if test="${(dict.itemCode eq service.action) && (service.action ne 128) && (service.action ne 32) && (service.action ne 96) }">
|
||||
<form:option value="${service.serviceId}"><spring:message code="${dict.itemValue}"/></form:option>
|
||||
<form:option value="${service.serviceId}">
|
||||
<c:if test="${service.serviceId eq 518 }">
|
||||
<spring:message code="action_spoofing"/>
|
||||
</c:if>
|
||||
<c:if test="${service.serviceId ne 518 }">
|
||||
<spring:message code="${dict.itemValue}"/>
|
||||
</c:if>
|
||||
</form:option>
|
||||
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
</c:forEach>
|
||||
@@ -227,9 +235,17 @@ $(document).ready(function(){
|
||||
<td>
|
||||
<c:set var="actions">${log.action }</c:set>
|
||||
<c:forEach items="${fns:getDictList('SERVICE_ACTION')}" var="dict">
|
||||
<c:if test="${dict.itemCode eq log.action}">
|
||||
<c:set var="actions">${dict.itemValue}</c:set>
|
||||
</c:if>
|
||||
<c:choose>
|
||||
<c:when test="${log.service eq 518 }">
|
||||
<c:set var="actions"><spring:message code="action_spoofing"/></c:set>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<c:if test="${dict.itemCode eq log.action}">
|
||||
<c:set var="actions">${dict.itemValue}</c:set>
|
||||
</c:if>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
|
||||
</c:forEach>
|
||||
<spring:message code="${actions}"/>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user