From e719fb1a16c7e496f1ce530d44e497715a87b7f6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 31 Jul 2021 21:23:58 +0100 Subject: [PATCH] Mystery endpoint --- daemon.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/daemon.py b/daemon.py index 49c1ca0e7..c4a76a0f0 100644 --- a/daemon.py +++ b/daemon.py @@ -1049,6 +1049,11 @@ class PubServer(BaseHTTPRequestHandler): return True self._404() return True + if self.path.startswith('/poco'): + # NOTE: I have no idea what this endpoint is for, but + # other systems try to access it + self._404() + return True if self.path.startswith('/.well-known/nodeinfo') or \ self.path.startswith('/.well-known/x-nodeinfo'): if callingDomain.endswith('.onion') and \