3
0
Fork 0

initial commit

This commit is contained in:
Willem Cazander 2022-11-13 14:46:54 +01:00
parent 5aeabf52d6
commit 5a6bd1d07b
148 changed files with 7509 additions and 0 deletions

View file

@ -0,0 +1,48 @@
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<div class="fsimSessions">
<table border="1">
<thead>
<tr>
<td>name</td>
<td>table</td>
<td>search column</td>
<td>last index</td>
<td>hits</td>
<td>last id</id>
</tr>
</thead>
<tbody>
<c:forEach var="source" items="${sources}">
<tr>
<td>
<c:out value="${source.name}"/>
<form action="/admin" method="POST">
<input type="submit" name="source_index" value="index"/>
<input type="hidden" name="m" value="2"/>
<input type="hidden" name="source_name" value="<c:out value="${source.name}"/>"/>
</form>
</td>
<td><c:out value="${source.tableName}"/></td>
<td><c:out value="${source.searchColumnName}"/></td>
<td><c:out value="${source.lastIndexed}"/></td>
<td><c:out value="${source.hitsSize}"/></td>
<td><c:out value="${source.lastIndexedHitID}"/></td>
</tr>
</c:forEach>
</tbody>
</table>
<br/>
<br/>
Update path cache:
<form action="/admin" method="POST">
<input type="submit" name="path_update" value="path_update"/>
<input type="hidden" name="m" value="2"/>
</form>
<br/>
Dump wordLists info in log.
<form action="/admin" method="POST">
<input type="submit" name="wordlists_info" value="wordlists info"/>
<input type="hidden" name="m" value="2"/>
</form>
</div>