You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
teos_cli is currently supposed to be used within the same machine as teosd, given the RPC server is offered in localhost and no authentication mechanism is offered. Exposing the RPC to the wild is highly unrecommended, since anyone would be able to interact with the tower.
An authentication method for the RPC server (gRPC) is needed in order to fix this.
The text was updated successfully, but these errors were encountered:
gRPCoffers several authentication mechanisms AFAIK, but yeah I think SSL should do.
The goal is having something similar to bitcoind, where user and password is required. Currently we are using it through insecure channels (e.g. cli.grpc.insecure_channel(...)).
teos_cli
is currently supposed to be used within the same machine asteosd
, given the RPC server is offered in localhost and no authentication mechanism is offered. Exposing the RPC to the wild is highly unrecommended, since anyone would be able to interact with the tower.An authentication method for the RPC server (
gRPC
) is needed in order to fix this.The text was updated successfully, but these errors were encountered: