Bitcoin Forum
May 14, 2024, 03:35:08 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Bitcoin light wallet with encrypted CONNECTION to the network  (Read 108 times)
lopatcoin (OP)
Newbie
*
Offline Offline

Activity: 11
Merit: 1


View Profile
October 11, 2020, 08:57:18 PM
Merited by DdmrDdmr (1)
 #1

Hi, which light bitcoin wallets use encrypted connection to the network? I am on a public network and do not want the ISP to see what bitcoin addresses I look at. I do not have the space required to run a full nod so I need a light wallet (windows or android).

So far I have found this (please confirm if true):

- Android Mycelium NOT encrypted connection to their servers
- Android Electrum has encrypted connection to their servers but some connections are unencrypted (not sure what that means)
1715657708
Hero Member
*
Offline Offline

Posts: 1715657708

View Profile Personal Message (Offline)

Ignore
1715657708
Reply with quote  #2

1715657708
Report to moderator
1715657708
Hero Member
*
Offline Offline

Posts: 1715657708

View Profile Personal Message (Offline)

Ignore
1715657708
Reply with quote  #2

1715657708
Report to moderator
1715657708
Hero Member
*
Offline Offline

Posts: 1715657708

View Profile Personal Message (Offline)

Ignore
1715657708
Reply with quote  #2

1715657708
Report to moderator
The Bitcoin software, network, and concept is called "Bitcoin" with a capitalized "B". Bitcoin currency units are called "bitcoins" with a lowercase "b" -- this is often abbreviated BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Bitcoin_Arena
Copper Member
Legendary
*
Offline Offline

Activity: 2030
Merit: 1794


฿itcoin for all, All for ฿itcoin.


View Profile
October 11, 2020, 10:42:55 PM
 #2

Mycelium has an option that help you obfuscate your private data which is the Tor Network. Tap on the menu button and then head over to settings. You should be able to activate Tor Network. Make sure you have orbot installed and active



As for electrum, the wallet connects to a number of servers some maybe be unencrypted but if it's your IP address you are trying to hide. You can use a good VPN service before connecting to electrum

.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
PrimeNumber7
Copper Member
Legendary
*
Offline Offline

Activity: 1624
Merit: 1899

Amazon Prime Member #7


View Profile
October 12, 2020, 12:01:44 AM
 #3

If you have an encrypted connection to a server, your ISP will still be able to see which port you are connecting to. ISPs that want to block bitcoin traffic will block port 8333. Similarly, an ISP that sees you using port 8333 will assume you are using bitcoin, regardless of the servers you are connecting to with this port.

The best way to maintain privacy from a spying ISP is a VPN.
Charles-Tim
Legendary
*
Offline Offline

Activity: 1540
Merit: 4865


View Profile
October 12, 2020, 12:28:30 AM
 #4

- Android Electrum has encrypted connection to their servers but some connections are unencrypted (not sure what that means)
https://roll.urown.net/server/bitcoin/electrum-server.html
Electrum Server listens on TCP ports 50001 and 50002 for incoming connections. Port 50001 is for plain unencrypted connections and port 50002 is TLS encrypted. We allow only secured connections on IPv4 and IPv6.

But, with what I have noticed, server used to query history are of port 50002 , which is encrypted, although, it is based on what I have noticed on electrum wallet. You can also set the server not to change automatically.

I am on a public network and do not want the ISP to see what bitcoin addresses I look at
You have well been answered, using VPN will be the best option, to make it safe, paid VPN like ExpressVPN are better, using free VPN can create more risks than you can possibly think. 

lopatcoin (OP)
Newbie
*
Offline Offline

Activity: 11
Merit: 1


View Profile
October 12, 2020, 02:24:37 AM
 #5

using VPN will be the best option, to make it safe, paid VPN like ExpressVPN are better,
This is a little bit overkill for me. I only want to watch (not mine) bitcoin addresses on a public wifi (when bored) and I do not want the guy behind the wifi router to see what addressess I am looking at.

But your link lead to a link and that lead to a link and that lead to this source code
Code:
   private static final ArrayList<BlockExplorer> prodnetExplorerClearEndpoints = new ArrayList<BlockExplorer>() {{
      add(new BlockExplorer("BCI", "blockchain.info", "https://blockchain.info/address/", "https://blockchain.info/tx/", "https://blockchainbdgpzk.onion/address/", "https://blockchainbdgpzk.onion/tx/"));
      add(new BlockExplorer("SBT", "smartbit", "https://www.smartbit.com.au/address/", "https://www.smartbit.com.au/tx/", null, null));
      add(new BlockExplorer("BTL", "blockTrail", "https://www.blocktrail.com/BTC/address/", "https://www.blocktrail.com/BTC/tx/", null, null));
      add(new BlockExplorer("BPY", "BitPay", "https://insight.bitpay.com/address/", "https://insight.bitpay.com/tx/", null, null));
      add(new BlockExplorer("BEX", "blockExplorer", "http://blockexplorer.com/address/", "http://blockexplorer.com/tx/", null, null));
      add(new BlockExplorer("BAC", "bitAccess", "https://search.bitaccess.ca/address/", "https://search.bitaccess.ca/tx/", null, null));
      add(new BlockExplorer("BCY", "blockCypher", "https://live.blockcypher.com/btc/address/", "https://live.blockcypher.com/btc/tx/", null, null));
      add(new BlockExplorer("BES", "bitEasy", "https://www.biteasy.com/blockchain/addresses/", "https://www.biteasy.com/blockchain/transactions/", null, null));
      add(new BlockExplorer("CPM", "coinprism", "https://www.coinprism.info/address/", "https://www.coinprism.info/tx/", null, null));
      add(new BlockExplorer("TBC", "TradeBlock", "https://tradeblock.com/blockchain/address/", "https://tradeblock.com/blockchain/tx/", null, null));
      add(new BlockExplorer("BLC", "blockonomics.co", "https://www.blockonomics.co/#/search?q=", "https://www.blockonomics.co/api/tx?txid=", null, null));
   }};
It seems that blockexplorer uses HTTP only, other block explorers use HTTPS. This is probably that "some encrypted some unencrypted" thing about the Electrum wallet and I suppose that this would be the case for all the programs unless they avoid blockeplorer what they definitely should.


using free VPN can create more risks than you can possibly think.
But a free VPN and a pain VPN from the same company is about the same risk, is not it?
pakhitheboss
Hero Member
*****
Online Online

Activity: 2114
Merit: 774


Top Crypto Casino


View Profile WWW
October 12, 2020, 06:26:45 AM
 #6

There are a few mobile wallets that can provide you such service one of them is Mycelium wallet where you can use TOR network to disguise your transaction. It is available for both Android and iOS. The next one is Samourai wallet which is avaiy only for Android devices and its primary focus is privacy and security. Then we have Wasabi desktop wallet. It is also primarily focused on privacy and security. The only benefit of using this wallet is that it is available only for desktop devices.

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Jet Cash
Legendary
*
Offline Offline

Activity: 2716
Merit: 2457


https://JetCash.com


View Profile WWW
October 12, 2020, 06:44:48 AM
 #7

If you just want to look at Bitcoin addresses, why not use a Tor window in the Brave browser.

Offgrid campers allow you to enjoy life and preserve your health and wealth.
Save old Cars - my project to save old cars from scrapage schemes, and to reduce the sale of new cars.
My new Bitcoin transfer address is - bc1q9gtz8e40en6glgxwk4eujuau2fk5wxrprs6fys
SquirrelJulietGarden
Hero Member
*****
Offline Offline

Activity: 1316
Merit: 727



View Profile
October 12, 2020, 07:27:47 AM
 #8

If you just want to look at Bitcoin addresses, why not use a Tor window in the Brave browser.
Brave browser is not a good browser. Use Tor on Brave browser does not give you protection.

Other browsers that are better than Brave browser:
- Firefox browser: https://www.mozilla.org/en-US/firefox/new/
- Tor browser: https://www.torproject.org/download/
If you need Tor for mobile, Orbot can help you: https://guardianproject.info/apps/org.torproject.android/

███▄▀██▄▄
░░▄████▄▀████ ▄▄▄
░░████▄▄▄▄░░█▀▀
███ ██████▄▄▀█▌
░▄░░███▀████
░▐█░░███░██▄▄
░░▄▀░████▄▄▄▀█
░█░▄███▀████ ▐█
▀▄▄███▀▄██▄
░░▄██▌░░██▀
░▐█▀████ ▀██
░░█▌██████ ▀▀██▄
░░▀███
▄▄██▀▄███
▄▄▄████▀▄████▄░░
▀▀█░░▄▄▄▄████░░
▐█▀▄▄█████████
████▀███░░▄░
▄▄██░███░░█▌░
█▀▄▄▄████░▀▄░░
█▌████▀███▄░█░
▄██▄▀███▄▄▀
▀██░░▐██▄░░
██▀████▀█▌░
▄██▀▀██████▐█░░
███▀░░
Husna QA
Legendary
*
Offline Offline

Activity: 2268
Merit: 2882


#SWGT CERTIK Audited


View Profile WWW
October 12, 2020, 09:23:36 AM
Last edit: May 18, 2023, 06:47:20 AM by Husna QA
 #9

Hi, which light bitcoin wallets use encrypted connection to the network? I am on a public network and do not want the ISP to see what bitcoin addresses I look at. I do not have the space required to run a full nod so I need a light wallet (windows or android).
-snip-
Maybe you can try using the Samourai Wallet.
To be more anonymous, you can enable Tor Routing on the connection.

 

You can also use Samourai Wallet with OpenVPN for Android (Settings-Networking-VPN)
You can see some of its features at the following link:
https://samouraiwallet.com/features


ABCbits
Legendary
*
Offline Offline

Activity: 2870
Merit: 7497


Crypto Swap Exchange


View Profile
October 12, 2020, 09:37:33 AM
Merited by Jet Cash (2)
 #10

- Android Electrum has encrypted connection to their servers but some connections are unencrypted (not sure what that means)
https://roll.urown.net/server/bitcoin/electrum-server.html
Electrum Server listens on TCP ports 50001 and 50002 for incoming connections. Port 50001 is for plain unencrypted connections and port 50002 is TLS encrypted. We allow only secured connections on IPv4 and IPv6.

But, with what I have noticed, server used to query history are of port 50002 , which is encrypted, although, it is based on what I have noticed on electrum wallet. You can also set the server not to change automatically.

For reference, Electrum allows you connect to specific server, so OP could find a server that uses port 50002 or uses HTTPS, which is easier than setting VPN/Tor.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
lopatcoin (OP)
Newbie
*
Offline Offline

Activity: 11
Merit: 1


View Profile
October 20, 2020, 02:06:33 AM
 #11

If you just want to look at Bitcoin addresses, why not use a Tor window in the Brave browser.
I dont want to install tor on my phone for security reasons.
I didn't find a tor program for android that I believe so much to install it on my phone (open source with deep history).
libert19
Hero Member
*****
Offline Offline

Activity: 2492
Merit: 943



View Profile WWW
October 20, 2020, 03:39:55 AM
 #12

You can try Green wallet, it allows you to use Tor. 

███████████████████████████
███████▄████████████▄██████
████████▄████████▄████████
███▀█████▀▄███▄▀█████▀███
█████▀█▀▄██▀▀▀██▄▀█▀█████
███████▄███████████▄███████
███████████████████████████
███████▀███████████▀███████
████▄██▄▀██▄▄▄██▀▄██▄████
████▄████▄▀███▀▄████▄████
██▄███▀▀█▀██████▀█▀███▄███
██▀█▀████████████████▀█▀███
███████████████████████████
.
.Duelbits.
..........UNLEASH..........
THE ULTIMATE
GAMING EXPERIENCE
DUELBITS
FANTASY
SPORTS
████▄▄█████▄▄
░▄████
███████████▄
▐███
███████████████▄
███
████████████████
███
████████████████▌
███
██████████████████
████████████████▀▀▀
███████████████▌
███████████████▌
████████████████
████████████████
████████████████
████▀▀███████▀▀
.
▬▬
VS
▬▬
████▄▄▄█████▄▄▄
░▄████████████████▄
▐██████████████████▄
████████████████████
████████████████████▌
█████████████████████
███████████████████
███████████████▌
███████████████▌
████████████████
████████████████
████████████████
████▀▀███████▀▀
/// PLAY FOR  FREE  ///
WIN FOR REAL
..PLAY NOW..
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!