From 3cd5ab5761c3e4e1c6a6b01955e18112b7b0edd8 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Wed, 27 Jul 2022 10:55:27 +0200 Subject: [PATCH] Fix #3 --- src/load-balancers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/load-balancers.md b/src/load-balancers.md index eba066471ba5..9f0333e99fbe 100644 --- a/src/load-balancers.md +++ b/src/load-balancers.md @@ -10,6 +10,6 @@ With the exception of the JSON-RPC functions prefixed with ̀`sudo`, none of the In the legacy JSON-RPC interface, a flag on the server renders some JSON-RPC functions inaccessible. This is important in order to prevent the general public from accessing the node's configuration and sensitive data. In this new JSON-RPC interface, all the functions that shouldn't be publicly-accessible are prefixed with `sudo`. -This makes it possible to insert proxies that filter incoming requests. All such proxy has to do is parse JSON-RPC requests and detect whether the function name starts with `sudo_`. +This makes it possible to insert proxies that filter incoming requests. All such proxy has to do is parse JSON-RPC requests and detect whether the function name starts with a prefix that isn't `sudo_`. In practice, however, such proxy doesn't seem to exist, and JSON-RPC server implementations should continue to provide a configuration option (such as a CLI flag) to disable `sudo`-prefixed functions.