Skip to content

Commit

Permalink
fix(cli): Remove malicious node.moneroworld remote node (#85)
Browse files Browse the repository at this point in the history
The moneroworld node has been confirmed to have been operated by Chainalysis, a company specialising in blockchain surveillance. They are collecting the ip addresses of anyone who connects to the node.

See https://www.digilol.net/blog/chainanalysis-malicious-xmr.html
  • Loading branch information
binarybaron authored Sep 18, 2024
1 parent 9d1151c commit beccd23
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions swap/src/monero/wallet_rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ use tokio_util::io::StreamReader;

// See: https://www.moneroworld.com/#nodes, https://monero.fail
// We don't need any testnet nodes because we don't support testnet at all
const MONERO_DAEMONS: [MoneroDaemon; 17] = [
const MONERO_DAEMONS: [MoneroDaemon; 16] = [
MoneroDaemon::new("xmr-node.cakewallet.com", 18081, Network::Mainnet),
MoneroDaemon::new("nodex.monerujo.io", 18081, Network::Mainnet),
MoneroDaemon::new("node.moneroworld.com", 18089, Network::Mainnet),
MoneroDaemon::new("nodes.hashvault.pro", 18081, Network::Mainnet),
MoneroDaemon::new("p2pmd.xmrvsbeast.com", 18081, Network::Mainnet),
MoneroDaemon::new("node.monerodevs.org", 18089, Network::Mainnet),
Expand Down

0 comments on commit beccd23

Please sign in to comment.