Update index.py

This commit is contained in:
dami 2025-08-21 14:53:18 +08:00
parent 72724c6014
commit d202746829
1 changed files with 3 additions and 3 deletions

View File

@ -748,9 +748,6 @@ def getLogsList():
if method != "all":
conn = conn.andWhere("method=?", (method,))
if status_code != "all":
conn = conn.andWhere("status_code=?", (status_code,))
if request_time != "all":
request_time_s = request_time.strip().split('-')
# print(request_time_s)
@ -793,6 +790,9 @@ def getLogsList():
if search_uri != "":
conn = conn.andWhere("uri like '%" + search_uri + "%'", ())
if status_code != "all":
conn = conn.andWhere("status_code=?", (status_code,))
attacHistoryLogHack(conn, domain, query_date)
conn.changeTextFactoryToBytes()