mirror of https://gitlab.com/bashrc2/epicyon
Mystery endpoint
parent
77de16d773
commit
e719fb1a16
|
@ -1049,6 +1049,11 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
return True
|
return True
|
||||||
self._404()
|
self._404()
|
||||||
return True
|
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 \
|
if self.path.startswith('/.well-known/nodeinfo') or \
|
||||||
self.path.startswith('/.well-known/x-nodeinfo'):
|
self.path.startswith('/.well-known/x-nodeinfo'):
|
||||||
if callingDomain.endswith('.onion') and \
|
if callingDomain.endswith('.onion') and \
|
||||||
|
|
Loading…
Reference in New Issue