sportscliche
Newbie
Offline
Activity: 56
Merit: 0
|
 |
December 27, 2020, 05:45:34 PM |
|
I have been fighting this attack for days. The only way I can keep my node running is to restart it every hour or so, even with the block list. I have conceded defeat and shut down. Hoping for a fix in an updated release, but the effectiveness of this attack is certainly worrisome.
|
|
|
|
elrippos friend
Full Member
 
Offline
Activity: 1179
Merit: 210
only hodl what you understand and love!
|
 |
December 27, 2020, 07:16:36 PM |
|
I have been fighting this attack for days. The only way I can keep my node running is to restart it every hour or so, even with the block list. I have conceded defeat and shut down. Hoping for a fix in an updated release, but the effectiveness of this attack is certainly worrisome.
Just built a script in crontab to kill all hourly, update the tor list from github and restart all again 
|
|
|
|
visdude
Legendary
Offline
Activity: 1081
Merit: 1001
|
 |
December 27, 2020, 08:16:20 PM |
|
I restored from seed on the latest GUI v0.17.1.7 to be a cold wallet in an offline machine. I then generated a view-only wallet from it which I synced in an online machine. My balance is off. All transactions shown are "Received" (green dots). I was able to identify a recent "Send" transaction that is indicated as "Received" (green dot) so I assume the rest of my outputs over a few years (which I am unable to identify) are the same. I shouldn't complain since my balance is a bit more than it should be but I know this is gonna haunt me later down the line. Did I miss a step in setting up this cold/view-only wallet? What gymnastics do I have to do to resolve this issue?
Furthermore, several seconds after GUI v0.17.1.7 Wallet and Daemon fully sync, it would go back to syncing mode again with "Daemon blocks remaining: 2". Sometimes, it would drop to "1" momentarily then goes back up to "2" again but would never fully sync again from here on.
|
|
|
|
elrippos friend
Full Member
 
Offline
Activity: 1179
Merit: 210
only hodl what you understand and love!
|
 |
December 27, 2020, 08:24:04 PM Last edit: December 28, 2020, 08:49:09 AM by elrippos friend |
|
I have been fighting this attack for days. The only way I can keep my node running is to restart it every hour or so, even with the block list. I have conceded defeat and shut down. Hoping for a fix in an updated release, but the effectiveness of this attack is certainly worrisome.
Just built a script in crontab to kill all hourly, update the tor list from github and restart all again  My script seems to work, which kills all monerod processes every hour and restarts that every hour and minute 1. I built a srcipt that is called every hour and one minute in the crontab #!/bin/bash rm -fR torbulkexitlist wget https://check.torproject.org/torbulkexitlist cd /home/user/monero-x86_64-linux-gnu-v0.17.1.7 sudo -u user ./monerod --detach --rpc-bind-ip 0.0.0.0 --confirm-external-bind --hide-my-port --ban-list /home/user/torbulkexitlist exit 0
2. in /etc/crontab i added two lines 0 * * * * root killall -15 monerod 1 * * * * user /home/user/monerorestart.bash &>/dev/null
Still after 45min my memory is more or less exhausted, so the ban list does not seem to do what it is supposed to, but it's worth the try EDIT: Updated the download of TOR exit relays with the TOR own list --> https://check.torproject.org/torbulkexitlistEDIT 1: Changed killall -9 to killall -15, not to hurt the DB more than i have to do
|
|
|
|
elrippos friend
Full Member
 
Offline
Activity: 1179
Merit: 210
only hodl what you understand and love!
|
 |
December 28, 2020, 08:51:55 AM |
|
I have been fighting this attack for days. The only way I can keep my node running is to restart it every hour or so, even with the block list. I have conceded defeat and shut down. Hoping for a fix in an updated release, but the effectiveness of this attack is certainly worrisome.
Just built a script in crontab to kill all hourly, update the tor list from github and restart all again  My script seems to work, which kills all monerod processes every hour and restarts that every hour and minute 1. I built a srcipt that is called every hour and one minute in the crontab #!/bin/bash rm -fR torbulkexitlist wget https://check.torproject.org/torbulkexitlist cd /home/user/monero-x86_64-linux-gnu-v0.17.1.7 sudo -u user ./monerod --detach --rpc-bind-ip 0.0.0.0 --confirm-external-bind --hide-my-port --ban-list /home/user/torbulkexitlist exit 0
2. in /etc/crontab i added two lines 0 * * * * root killall -15 monerod 1 * * * * user /home/user/monerorestart.bash &>/dev/null
Still after 45min my memory is more or less exhausted, so the ban list does not seem to do what it is supposed to, but it's worth the try EDIT: Updated the download of TOR exit relays with the TOR own list --> https://check.torproject.org/torbulkexitlistEDIT 1: Changed killall -9 to killall -15, not to hurt the DB more than i have to do Doing good today, after 50 minutes online in the cycle my memory is looking good and also the CPU's are working on normal level  Has the attack ended or is it just the low transaction count that drives this?
|
|
|
|
dEBRUYNE
Legendary
Offline
Activity: 2268
Merit: 1141
|
 |
December 28, 2020, 09:22:38 AM |
|
I have been fighting this attack for days. The only way I can keep my node running is to restart it every hour or so, even with the block list. I have conceded defeat and shut down. Hoping for a fix in an updated release, but the effectiveness of this attack is certainly worrisome.
Do you know how to compile a binary? If so, please compile a binary from the `release-v0.17` branch. https://github.com/monero-project/monero#compiling-monero-from-sourceAdd -b release-v0.17 to clone (and subsequently compile) the proper branch.
|
|
|
|
dEBRUYNE
Legendary
Offline
Activity: 2268
Merit: 1141
|
 |
December 28, 2020, 09:26:50 AM Last edit: December 28, 2020, 11:09:06 AM by dEBRUYNE |
|
I restored from seed on the latest GUI v0.17.1.7 to be a cold wallet in an offline machine. I then generated a view-only wallet from it which I synced in an online machine. My balance is off. All transactions shown are "Received" (green dots). I was able to identify a recent "Send" transaction that is indicated as "Received" (green dot) so I assume the rest of my outputs over a few years (which I am unable to identify) are the same. I shouldn't complain since my balance is a bit more than it should be but I know this is gonna haunt me later down the line. Did I miss a step in setting up this cold/view-only wallet? What gymnastics do I have to do to resolve this issue?
Try exporting the key images from the offline wallet and subsequently importing them in the hot wallet. See (5): https://github.com/monero-ecosystem/monero-GUI-guide/blob/master/monero-GUI-guide.md#send-moneroFurthermore, several seconds after GUI v0.17.1.7 Wallet and Daemon fully sync, it would go back to syncing mode again with "Daemon blocks remaining: 2". Sometimes, it would drop to "1" momentarily then goes back up to "2" again but would never fully sync again from here on.
Please try applying the ban list: 1. Download this file and place it in the same folder as `monerod` / `monero-wallet-gui`: https://gui.xmr.pm/files/block_tor.txt2. Go to the `Settings` page -> `Node` tab. 3. Enter --ban-list block_tor.txt in `daemon startup flags` box. 4. Restart the GUI (and daemon).
|
|
|
|
owlcatz
Legendary
Offline
Activity: 3948
Merit: 2018
https://icarus-cards.eu
|
 |
December 28, 2020, 04:07:45 PM Last edit: December 28, 2020, 11:53:06 PM by owlcatz |
|
Please try applying the ban list: 1. Download this file and place it in the same folder as `monerod` / `monero-wallet-gui`: https://gui.xmr.pm/files/block_tor.txt2. Go to the `Settings` page -> `Node` tab. 3. Enter --ban-list block_tor.txt in `daemon startup flags` box. 4. Restart the GUI (and daemon). Oh wow, thank you, I have been having this issue for a while now and I always just resort to the CLI since I was thinking it was just me. Will try this and update shortly, thanks as always dEBRUYNE! Update - works like a charm, thanks so much again!
|
|
|
|
dEBRUYNE
Legendary
Offline
Activity: 2268
Merit: 1141
|
 |
December 28, 2020, 04:41:59 PM |
|
Please try applying the ban list: 1. Download this file and place it in the same folder as `monerod` / `monero-wallet-gui`: https://gui.xmr.pm/files/block_tor.txt2. Go to the `Settings` page -> `Node` tab. 3. Enter --ban-list block_tor.txt in `daemon startup flags` box. 4. Restart the GUI (and daemon). Oh wow, thank you, I have been having this issue for a while now and I always just resort to the CLI since I was thinking it was just me. Will try this and update shortly, thanks as always dEBRUYNE! You're welcome
|
|
|
|
lankymanx
Newbie
Offline
Activity: 84
Merit: 0
|
 |
December 29, 2020, 02:21:13 PM |
|
With out reading all the posts above i am wondering if XMR price movement is as tied to Bitcoin like Ethereum is ? It has been doing well the last 3 months its good to see this coin is still strongly used - payment ; mining ; plenty nodes on the network etc...
|
|
|
|
owlcatz
Legendary
Offline
Activity: 3948
Merit: 2018
https://icarus-cards.eu
|
 |
December 29, 2020, 02:23:11 PM |
|
With out reading all the posts above i am wondering if XMR price movement is as tied to Bitcoin like Ethereum is ? It has been doing well the last 3 months its good to see this coin is still strongly used - payment ; mining ; plenty nodes on the network etc...
Personally I tend to think it sticks more to USDT. I also think it is and has been way undervalued for quite some time.
|
|
|
|
|
waya
|
 |
December 30, 2020, 10:37:30 PM |
|
Hello All,
I love this Monero Coin!! I have been trading for a while now, but like mentioned, it seems to be undervalued and I am bagging the coin.
Best wishes for the upcoming New Year!!
CHeers, Waya
|
Owner of Waya Wolf Coin - An Alternative Payment Method Working towards increasing the value and spread the word of Waya Wolf Coin!! We believe cooperation amongst coins is the best way to make crypto thrive Waya Wolf Coin Supports the Wolf Park in Battle Ground, Indiana
|
|
|
dEBRUYNE
Legendary
Offline
Activity: 2268
Merit: 1141
|
 |
December 30, 2020, 10:45:15 PM |
|
|
|
|
|
elrippos friend
Full Member
 
Offline
Activity: 1179
Merit: 210
only hodl what you understand and love!
|
 |
December 31, 2020, 07:47:36 AM |
|
|
|
|
|
Spaffin
Full Member
 
Offline
Activity: 1330
Merit: 108
🌀 Cosmic Casino
|
 |
December 31, 2020, 11:25:04 AM |
|
We all know the benefits of Monero and expect better prospects in the future, but apparently the government is very serious about creating problems. Recently, the media mentioned that the analytical company CipherTrace was able to track Monero transactions and this tool was created by order of the US Department of Homeland Security. In addition, the very popular ShapeShift platform, which allowed exchanging cryptocurrencies anonymously in order to avoid legal problems, delisted Monero. The impression is that something is not good.
|
|
|
|
owlcatz
Legendary
Offline
Activity: 3948
Merit: 2018
https://icarus-cards.eu
|
 |
December 31, 2020, 04:26:07 PM |
|
We all know the benefits of Monero and expect better prospects in the future, but apparently the government is very serious about creating problems. Recently, the media mentioned that the analytical company CipherTrace was able to track Monero transactions and this tool was created by order of the US Department of Homeland Security. In addition, the very popular ShapeShift platform, which allowed exchanging cryptocurrencies anonymously in order to avoid legal problems, delisted Monero. The impression is that something is not good.
I found this very helpful and interesting, and no I don't work here or any bullshit hahaha https://www.coindesk.com/spagni-fluffypony-monero-cryptographers-one-step-ahead-regulators
|
|
|
|
Altcoinsintel
Member

Offline
Activity: 342
Merit: 24
|
 |
January 01, 2021, 07:20:12 PM Merited by vapourminer (1) |
|
Bittrex delisted Monero along with ZCash and Dash which was a weird decision sparking concerns about a regulator crackdown on privacy coins. Monero is known to have the best privacy and we have also read previously about the IRS hiring Chainalysis to find a way to trace the transactions.
Can Bittrex know something others don't or acted before anyone else for their own reasons? Will Monero be delisted by more exchanges? Price drops and I'll be waiting to buy.
|
|
|
|
Hueristic
Legendary
Offline
Activity: 4116
Merit: 5783
Doomed to see the future and unable to prevent it
|
 |
January 01, 2021, 07:34:35 PM |
|
Bittrex delisted Monero along with ZCash and Dash which was a weird decision sparking concerns about a regulator crackdown on privacy coins. Monero is known to have the best privacy and we have also read previously about the IRS hiring Chainalysis to find a way to trace the transactions.
Can Bittrex know something others don't or acted before anyone else for their own reasons? Will Monero be delisted by more exchanges? Price drops and I'll be waiting to buy.
Bittrex has always had shit volume that was driven by arbitrage and nothing else. They have major problems with regulators and are trying to show what good little boys they are.
|
“Bad men need nothing more to compass their ends, than that good men should look on and do nothing.”
|
|
|
Globb0
Legendary
Offline
Activity: 2702
Merit: 2053
Free spirit
|
 |
January 01, 2021, 07:59:46 PM |
|
Yes in that respect it does seem a bit token (pun)
other coins have much bigger issues right now.
|
|
|
|
|