How secure is calling bitcoind JSON-RPC from same computer?

2

I am wondering if calling JSON-RPC from the computer it is running on is secure. I read How secure is calling bitcoind JSON-RPC? and understand why it is insecure to do so from a different computer.

Is there a secure way to call it from the same computer without using SSL?

Cammy_the_block

Posted 2014-09-13T18:34:05.413

Reputation: 163

It's secure in principle. Just make sure that if your doing this on a computer connected to the internet that all relevant ports are closed. Also there is not all the much of a point in using ssl on localhost, it will just add latency.Loourr 2014-09-14T21:14:18.460

Answers

1

Yes. By default, Bitcoin will only listen for RPC connections on local loopback. Local loopback cannot be accessed or spied upon by another computer.

Nick ODell

Posted 2014-09-13T18:34:05.413

Reputation: 26 536