From a3342b5569a5ca9e94d431bf1a4e1f7a91ae0bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Thu, 15 Sep 2022 17:06:50 +0200 Subject: [PATCH] fix: working integration of lacus. --- lookyloo/lookyloo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lookyloo/lookyloo.py b/lookyloo/lookyloo.py index 4a4866e..69f7ae7 100644 --- a/lookyloo/lookyloo.py +++ b/lookyloo/lookyloo.py @@ -450,6 +450,7 @@ class Lookyloo(): # Someone is probably abusing the system with useless URLs, remove them from the index query['listing'] = 0 p.hset(perma_uuid, mapping=query) # This will add the remaining entries that are lookyloo specific + p.zadd('to_capture', {perma_uuid: priority}) p.zincrby('queues', 1, f'{source}|{authenticated}|{user}') p.set(f'{perma_uuid}_mgmt', f'{source}|{authenticated}|{user}') p.execute()