Bitcoin Forum
May 04, 2024, 03:20:59 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 [70] 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 ... 691 »
1381  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: April 25, 2022, 05:16:52 PM
BREAKING:
 Elon Musk will officially acquire Twitter for $44 billion, sources say the deal will be announced by the end of today.




Try at least reading the last few pages before posting news.
1382  Economy / Speculation / Mountain Road vs. Tesla Full Self Driving Software on: April 25, 2022, 04:56:08 PM

Quote
In this video we see how Tesla's Full Self Driving software (FSD) reacts to a challenging Mountain Road in San Jose California


https://www.youtube.com/watch?v=c_0rBb8L3wQ
1383  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XMR] Monero - A secure, private, untraceable cryptocurrency on: April 25, 2022, 12:42:43 AM
https://nitter.42l.fr/HavenoDEX/status/1518149918485065728

1384  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 24, 2022, 09:26:42 PM
To the old timers:  Is it just me or has Monero often seemed to want to do this against a weak BTC backdrop over the years.

It used to until the naked shorting.
1385  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 22, 2022, 05:57:16 AM
I remember how downcast so many were even 4 years ago... 

After the 2017 bull, and brief altseason we have all been crushed so badly.  It is understandable that many lost hope.  After all, most alts are absolute garbage.  Most have deserved the 90+% losses, and the ones that have remained closer to the top have NOT deserved to be there.  The only caveat is their demise might bring some pain to all the alts... even the ... well fuck it. I honestly think there is only one that deserves attention.

That said 290-330 is the last stand of the shitcoin levels.  If it can take all that?  Well.  It's just open skies above that, I think.  And I do not think it has to stay under it's XMR/BTC ath either.  I see it having a good chance of attacking as far as .09 BTC if not the whole .1

Historically .0082 should be the next major hurdle.
1386  Economy / Speculation / Major cryptography blunder in Java enables “psychic paper” forgeries on: April 22, 2022, 05:53:49 AM
Quote
“It’s hard to overstate the severity of this bug. If you are using ECDSA signatures for any of these security mechanisms, then an attacker can trivially and completely bypass them if your server is running any Java 15, 16, 17, or 18 version before the April 2022 Critical Patch Update (CPU). For context, almost all WebAuthn/FIDO devices in the real world (including Yubikeys use ECDSA signatures and many OIDC providers use ECDSA-signed JWTs.”

The bug, tracked as CVE-2022-21449, carries a severity rating of 7.5 out of a possible 10, but Madden said based on his assessment, he’d rate the severity at a perfect 10 “due to the wide range of impacts on different functionality in an access management context.” In its grimmest form, the bug could be exploited by someone outside a vulnerable network with no verification at all.

Other security experts also had strong reactions, with one declaring it “the crypto bug of the year.”

A mitigating factor is that Java versions 15 and above don’t appear to be as widely used as earlier versions. Data collected in February and March 2021 from security firm Snyk showed that Java 15, the latest version at that time, accounted for 12 percent of deployments. While Madden said that the specific ECDSA implementation flaw affected only Java 15 and higher, Oracle also listed versions 7, 8, and 11 as vulnerable. Madden said that the discrepancy may result from separate crypto bugs fixed in the earlier releases.
a/0 = valid signature

ECDSA signatures rely on a pseudo-random number, typically notated as K, that’s used to derive two additional numbers, R and S. To verify a signature as valid, a party must check the equation involving R and S, the signer’s public key, and a cryptographic hash of the message. When both sides of the equation are equal, the signature is valid.

In a writeup published Wednesday, security firm Sophos further explained the process:

    S1. Select a cryptographically sound random integer K between 1 and N-1 inclusive.
    S2. Compute R from K using Elliptic Curve multiplication.
    S3. In the unlikely event that R is zero, go back to step 1 and start over.
    S4. Compute S from K, R, the hash to be signed, and the private key.
    S5. In the unlikely event that S is zero, go back to step 1 and start over.

For the process to work correctly, neither R nor S can ever be a zero. That’s because one side of the equation is R, and the other is multiplied by R and a value from S. If the values are both 0, the verification check translates to 0 = 0 X (other values from the private key and hash), which will be true regardless of the additional values. That means an adversary only needs to submit a blank signature to pass the verification check successfully.

Madden wrote:

    Guess which check Java forgot?

    That’s right. Java’s implementation of ECDSA signature verification didn’t check if R or S were zero
, so you could produce a signature value in which they are both 0 (appropriately encoded) and Java would accept it as a valid signature for any message and for any public key. The digital equivalent of a blank ID card.

Below is an interactive JShell session Madden created that shows a vulnerable implementation accepting a blank signature as valid when verifying a message and public key:

|  Welcome to JShell -- Version 17.0.1
|  For an introduction type: /help intro
jshell> import java.security.*
jshell> var keys = KeyPairGenerator.getInstance("EC").generateKeyPair()
keys ==> java.security.KeyPair@626b2d4a
jshell> var blankSignature = new byte[64]
blankSignature ==> byte[64] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... , 0, 0, 0, 0, 0, 0, 0, 0 }
jshell> var sig = Signature.getInstance("SHA256WithECDSAInP1363Format")
sig ==> Signature object: SHA256WithECDSAInP1363Format<not initialized>
jshell> sig.initVerify(keys.getPublic())
jshell> sig.update("Hello, World".getBytes())
jshell> sig.verify(blankSignature)
$8 ==> true
// Oops, that shouldn't have verified...

Organizations that are using any of the affected versions of Java to validate signatures should place a high priority on patching. It will also be important to monitor for advisories from app and product makers to see if any of their wares are made vulnerable. While the threat from CVE-2022-21449 appears limited to new Java versions, its severity is high enough to warrant vigilance.


https://arstechnica.com/information-technology/2022/04/major-crypto-blunder-in-java-enables-psychic-paper-forgeries/
1387  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 22, 2022, 01:28:17 AM
I wrote about this on Twitter and in the latest issue of the Monero Moon, but thought it is such a prominent chart I'd share it here.

After 4 years of Monero down-trending against Bitcoin, XMR has finally broken out upwards, and is looking like it will close the month out above resistance.

This is a rare and unprecedented event for any cryptocurrency to break out from such a long downtrend on the BTC pair, and as far as I’m aware has never happened before.

The last time XMR broke out of a long-term (22 month) downtrend against BTC was Feb 2016, before rallying 2600% against Bitcoin.






XMR has broken out of the 4+ year downtrend...



Appreciate it but infofront beat you to it earlier this page.
Wink

BTW, really enjoyed the Moon this week. Smiley
1388  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 21, 2022, 09:01:20 PM
^ ^  It's starting imho.  All it takes is a little bit more of critical thinking and for the people in the Bitcoin community to start asking questions.  The most obvious one being why are there still lots of DNM users still continuing to use BTC?  They should drop it as BTC isn't really built for keeping your wallets' blockchain info safe from the prying eyes of TPTB.  Even their most prized use case of the store of value narrative isn't really that strong without Monero's features.

And it is sad that the WO has gotten so out of hand.

I'm trying to remember when it wasn't.

I've got nothing.


I blame cAPSLOCK and Heuristic

Just curious...  What happened?


1389  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: April 21, 2022, 08:49:00 PM
So someone said to me yesterday "Hey I got an email for the Johnson and Johnson suit right after we talked about it" and I was like...See.

I think I'm going to make them leave their phones outside from now on.
1390  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: April 20, 2022, 06:04:18 PM
It must be 420, I'm seeing double.
1391  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: April 20, 2022, 05:44:13 AM
https://twitter.com/i/status/1516030665841680392
1392  Economy / Gambling discussion / Re: 🏈🏈 The American Football Discussion Thread 🏈🏈 on: April 20, 2022, 12:48:49 AM
I watched al the usfl games except the delayed one and enjoyed them all.

Quality play, beats the hell out of that college shitball.
1393  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XMR] Monero - A secure, private, untraceable cryptocurrency on: April 19, 2022, 08:47:04 PM
Want to change USDT to XMR. Is https://godex.io/ a good solution for that? Does anyone have any experience with this service? I didn't see any information regarding kyc on their homepage.

No clue but found this thread.

https://www.reddit.com/r/Monero/comments/frrql9/say_go_kyc_yourself_to_all_registrations_and_swap/


Is Monero hardfork going to change the algorithm? thx  Smiley

No, just a change in ring size. Increase to 16.
1394  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 19, 2022, 03:19:11 AM
XMR has broken out of the 4+ year downtrend...
[/url]

And its about fucking time!
1395  Alternate cryptocurrencies / Speculation (Altcoins) / [Bloomberg ] Altcoin Monero Surges as Owners Set Withdrawal From Exchanges on: April 19, 2022, 12:09:48 AM
Quote
Monero rose as much as 14%, while Bitcoin, the largest cryptocurrency by market value, dropped 4% and Ether fell 5%. Other altcoins tumbled even more, with Ethereum Classic and EOS down more than 8%.

https://www.bloomberg.com/news/articles/2022-04-18/altcoin-monero-surges-as-owners-set-withdrawal-from-exchanges?utm_medium=social&cmpid%3D=socialflow-twitter-markets&utm_source=twitter&utm_content=markets&utm_campaign=socialflow-organic
1396  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XMR] Monero - A secure, private, untraceable cryptocurrency on: April 18, 2022, 04:47:45 PM
Don't keep your coins on an exchange. Same story as 8 years ago. Same story 8 years from now. Just don't.

N00bs need to be continually reminded unfortunately. Smiley
1397  Alternate cryptocurrencies / Announcements (Altcoins) / Monero Owners Are Staging a Crypto Bank Run to Test Exchanges on: April 18, 2022, 04:42:25 PM
https://www.vice.com/en/article/qjb9n3/monero-owners-mass-withdrawal-monerun

Quote
The "Monerun" is aimed at exposing whether exchanges are selling more private crypto than is in their reserves.
1398  Alternate cryptocurrencies / Announcements (Altcoins) / Monero Faithful Coordinate ‘Bank Run’ to Test Exchanges’ Reserves on: April 18, 2022, 02:28:57 AM
Quote
A group of Monero enthusiasts, apparently fed up with centralized exchanges, has said on social media that it’s planning an XMR “bank run” on April 18.


https://decrypt.co/98023/monero-faithful-threaten-bank-run-on-centralized-exchanges


Fuck these fractional reserve naked shorting cock suckers.
1399  Economy / Speculation / How globalists plan to wreck Bitcoin and the crypto ecosystem on: April 17, 2022, 11:11:35 PM
Quote
The upshot of what we appear to be uncovering is that globalists are carrying out a plan to destroy Bitcoin and the DeFi cryptocurrency ecosystem from within, then replace it with globalist-run central bank electronic currencies which they will claim are “safer” because they are heavily regulated. This is, of course, all part of the globalist attempt to enslave humanity under digital currency controls, where they can track your every expenditure, seize funds from your accounts in mere seconds, inflict negative interest rates on your account holdings and even loot your digital wallets as “automatic taxation” operations.

https://greenpass.news/we-have-decoded-the-globalist-plan-to-destroy-bitcoin-and-the-defi-crypto-ecosystem-and-they-seek-to-replace-it-with-heavily-regulated-digital-wallets-under-totalitarian-central-bank-control/


Don't have time to read this but figured I'd post it for you guys.
1400  Economy / Gambling discussion / Re: 🏈🏈 The American Football Discussion Thread 🏈🏈 on: April 17, 2022, 03:57:10 AM

I took a peek against my better judgement. The drone cam (or at least that's what I think the shaky-spinny footage was) makes me queasy... why move it around so much, looks like some kid's tiktok. Other than that, decent high school football.

I enjoyed it, most of the players are former nfl and nfl practice squad.
Pages: « 1 ... 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 [70] 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 ... 691 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!