-
TrasherDK[m]
I got a nasty surprise this morning: `MDB_CORRUPTED: Located page was wrong type`
-
TrasherDK[m]
-
gingeropolous
what kind of system / OS / etc ...
-
TrasherDK[m]
Slackware64 15.0 - `Linux compaq-laptop.fumlersoft.dk 5.15.19 #1 SMP PREEMPT Wed Feb 2 01:50:51 CST 2022 x86_64 Intel(R) Core(TM)2 Duo CPU T8100 @ 2.10GHz GenuineIntel GNU/Linux`
-
TrasherDK[m]
It could have been a nasty attack, as restarting daemon don't complain `Synced 148 blocks in 3.9 minutes (0.629 blocks per second)`
-
TrasherDK[m]
Or it could have been leftover stuff from my system upgrade. Found `libssl.so.1.0.0` causing `kernel: curl[12003]: segfault at 0`
-
TrasherDK[m]
Well. It appears to be back to normal, so probably leftovers from OS upgrade.
-
moneromooo
It likely means a query wasn't made to that page again. So possibly a txpool related page, since you'd expect it to be queried again in the course of adding a block (unless there was a reorg in the meantime which changed what needs to be done to sync the next block).
-
moneromooo
In any case, the bad data is probably still there.
-
jozsef[m]
I use zmq, as does monero, for network comm developing a p2p monero marketplace [app](
codeberg.org/piac/piac). Grepping the monero source, I am guessing that no encryption and/or authentication is used between clients (gui, cli) and among peers at the socket level. I wonder if this is something unnecessary for the monero code as a currency but could be useful/important for a marketplace app. Would the monero network not benefit
-
jozsef[m]
from socket-level encryption/authentication, via e.g.,
curvezmq.org? Have there been DoS or MITM attacks that could be (or could have been) avoided? Or this is a non-issue...
-
moneromooo
You can use SSL between wallet and node if both sides support it.
-
moneromooo
There is no encryption on P2P links (though the SSL patch had this, but it got removed prior to merging). AFAIK vtnerd is still working on P2P link encryption, no idea how far along that is though.
-
moneromooo
There have been DoS attacks before. Not sure encryption would fix it, unless you can blackball a cert before doing heavy work, and a cert is difficult to create.
-
moneromooo
Not sure about MITM, but that's why the SSL patch defaults to accepting only a whitelisted cert (though it might have changed at some point).
-
moneromooo
For RPC anyway. For p2p links, who really cares about MITM since they're both attackers anyway.
-
moneromooo
Is that "socket-level" ?
-
moneromooo
IIRC, the rationale for killing p2p link SSL was "too big/complicated/slow". I believe vtnerd is working on adding "noise", another encryption scheme that's lighter.
-
moneromooo
And some other interesting attributes.
-
ofrnxmr[m]
iirc Hyc had also brought up a potential move to anonymity networks, or at least enabling block sync for onions (?)
-
ofrnxmr[m]
.. dont quote me
-
gowpjmu93[m]
I'll help 20 individuals how to earn $30,000 in just 72 hours from the crypto market. But you will pay me 10% commission when you receive your profit. for more details on how to get started
-
gowpjmu93[m]
+1( 539 577 9852
-
jozsef[m]
Thanks moneromooo. Yes, that's what I meant by "socket-level".... (full message at
libera.ems.host/_matrix/media/r0/do…85886f6c952c24ada4085912d06131e1ab3)
-
TrasherDK[m]
What would you gain connecting to someone else node zmq, RPC or socket, that you would not get from connecting to your own node?
-
moneromooo
Offloading your work to someone else. Which is why many people do it :(
-
sech1
You'd gain possible malicious intent of whoever runs the node
-
TrasherDK[m]
Yes, but could you gain any knowledge, from a remote, that you could get from your own?
-
TrasherDK[m]
* could not get
-
ypavtv97lx[m]
With the announcement of minexmr pool closing down, and possibly all miners just going to the next biggest pool on the list I was thinking if integrating xmrig with p2pool (which is very small) and some default remote nodes would increase chance of lazy miners using the decentralized way of mining ?
-
TrasherDK[m]
Botnet's operators are scrambling to reconnect with compromised hosts 🤣
-
jwinterm[m]
ypavtv97lx: is p2pool mining using a remote node actually feasible in a way that is close to as profitable as mining on a normal pool?
-
jwinterm[m]
remote nodes generally speaking seem flaky af
-
al800[m]1
jwinterm[m]: Depend of the remote node.
-
al800[m]1
I have no issue with my personal remote node
-
gut
The coordinates x,y in G generator point of ECC are of each 32 bytes?
-
Guest4167
Wht's the value of x coordinate of G
-
tevador
0x216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a (big endian)
-
Guest4167
Only the x coordinate you gave or whole in one 32 byte
-
tevador
This is the the x coordinate.
-
tevador
y = 0x6666666666666666666666666666666666666666666666666666666666666658
-
Guest4167
Thanks alot
-
Guest21
Wht is x,y,z in ge_p2
-
Guest21
Why z
-
Guest21
As it is made up of only x,y nor it is 3d so why z coordinate
-
kayabanerve[m]
Guest21: z is a divisor
-
kayabanerve[m]
x = x/z, y = y/z
-
kayabanerve[m]
It's more efficient to keep `z` around during operations then constantly normalize it