mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-10 02:17:59 +00:00
http signatures: log when http signature validation fails
This commit is contained in:
parent
6e493ca9e1
commit
5fcdfbd596
|
@ -112,6 +112,7 @@ async def http_signatures_middleware(app, handler):
|
||||||
|
|
||||||
actor = data["actor"]
|
actor = data["actor"]
|
||||||
if not (await validate(actor, request)):
|
if not (await validate(actor, request)):
|
||||||
|
logging.info('Signature validation failed for: %r', actor)
|
||||||
raise aiohttp.web.HTTPUnauthorized(body='signature check failed, signature did not match key')
|
raise aiohttp.web.HTTPUnauthorized(body='signature check failed, signature did not match key')
|
||||||
|
|
||||||
return (await handler(request))
|
return (await handler(request))
|
||||||
|
|
Loading…
Reference in a new issue