Search content
Sort by

Showing 20 of 73 results by Legends_Never_Die
Post
Topic
Board Bitcoin Discussion
Re: Can Satoshi Nakamoto remove the 21 million BTC limit?
by
Legends_Never_Die
on 20/01/2024, 00:16:13 UTC
Well, the "satashi" has only the power of entering a username password on a forum every 5-7 years apart to say a "few words" about something. Lol
Besides, he is not like those antiques to suddenly and out of nowhere starts laughing in any suspicious way and then just "make it happen".

Let me put everyone's minds at ease, when he decides to show up, we will make sure to remind him that all he has is what he holds the keys to, which would be his coins, and if by any chance he shows up demanding any change in development, we will make sure to show him the exit doors, because guess what? We, the people, the community as a whole, own the system, not any individuals. However as individuals, we do own what is in our pants, and that is not even entirely true, as you know some people don't even own their things down there. second lol
Post
Topic
Board Meta
Re: Admin/Mods: Please ban "jvanname"
by
Legends_Never_Die
on 19/01/2024, 23:53:30 UTC
Quote from: jvanname
There are other forums where people don't question my identity because on those other forums, we have high level discussions full of intellectualism.

You just name one single forum where they can have high level discussions with you, unless it's a meeting room in an asylum filled with lunatics like your self.

In fact, you just give me the name(s) of such forums, because I am willing to donate to them just to keep you busy there, the donation would be in Circcash, do you think they accept that?
😅
Post
Topic
Board Reputation
Re: Farewell
by
Legends_Never_Die
on 19/01/2024, 23:41:45 UTC
Are you still there Leonardo? if you are, don't worry, I got an idea on peaceful transition to the other side, here it goes:

Go lay down on your bed, close your eyes and repeat over and over that I'm done, I'm dying, it's over, there is no hope!

It's guaranteed to have significant impact on your fate, that's called the power of self inception.

You can change that into your advantage, just tell yourself: "stop being a pussy, you can make it, you just need to believe in a higher power".

So chop chop, get started.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Legends_Never_Die
on 19/01/2024, 16:43:11 UTC
So, he actually listened to my suggestion of making an account named saatoshi_falling to post here, which means he actually read my posts and that makes me melting into the ground because of the profanities I have used. 🙈
And then jealous people come here defaming, slandering my character. Typical sig spammer move. Lol
I just hope he proves himself by using a related address to this challenge by either signing a message or just by sending a small token of motivation to worthy contributors.

Note that, I am already motivated and require no such monetary incentive, just to say I'm not pushing for myself.

I might add that I was very close to revealing a concrete mathematical proof on how to solve keys with small and known bit ranges, fortunately I had another one of my realizations which I have had a few in the past 90 days, that slapped the truth into my face to wake up.

@satoshi, I have a genuine question, how does it feel to have more than $40 B but not being able to spend a penny from it? I'd imagine it's painful to have a world that think if you touch the early mined coins, it would mean something terrible, saying that those coins should not be touched.

Hope we could come to an understanding that satoshi deserves to use/spend his coins the way he likes, and that moving them should not raise any red flags.
Cheers to that world.😕
Post
Topic
Board Meta
Re: Mixers to be banned
by
Legends_Never_Die
on 19/01/2024, 13:39:00 UTC
How would you explain "high risk for advertising due to potential future implications" in a few letters that could replace [banned]?
Post
Topic
Board Bitcoin Discussion
Re: Did you already break the Elliptic Curve, Satoshi, you there?
by
Legends_Never_Die
on 19/01/2024, 13:29:47 UTC

assertion that "we can not multiply a point by another point" in ECC is contextually accurate in the realm of today's cryptographic applications. However, we must remember that the field of mathematics and cryptography is in a constant state of evolution
Ok, I will give you this, when ever you managed to give an accurate and correct answer, I will believe that point by point multiplication is also possible, not saying there is no way, of course there is, we only need to know at least a mutual factor, a distinct divisor of a point to calculate the result of point to point multiplication.

Tell me if it's possible to have 2+2= 5, in the future when we advance in science etc?

Props, dont listen to  the Karens theres quite of them over here!!

The ecc its so intresting and mind-blowing at te same time

After calling me a karen, do please tell me what is so interesting about ECC? if you had any knowledge of ECC, you wouldn't have called me a karen.😉
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Legends_Never_Die
on 19/01/2024, 13:15:32 UTC
I must say this is the funniest thing I've read in this thread. So much that I finally made an account after doing the pick photos with Motorcycles Captcha 5 times in a row.
A few words about digaran.  I've read through all your post, and I can safely say that you have transcended beyond the limits of the final keyspace. Congrats. 

Oh well, hello there "man of the 21st century". glad you finally decided to come out. But note that "congrats" doesn't feed the kids. Lol

Just in case if you are really him, I already know all the mistakes and flaws in my calculations, assumptions, it just takes time for me to realize them.

And honestly, I can't understand the meaning of "limits of final key space, what is that exactly? I hope you were never annoyed by my comments and know this please, I truly care for Bitcoin and have no desire for even a single sat that belongs to others.

But if you are not trolling, prove it by sending any amount of your liking to those who you think really contributed to this challenge. Of course excluding me.
Post
Topic
Board Bitcoin Discussion
Re: Did you already break the Elliptic Curve, Satoshi, you there?
by
Legends_Never_Die
on 18/01/2024, 22:44:59 UTC
The question is, how are you going to determine 0 or 1s?
Anyways, before you break the grounds any further, you might wanna try this "earth shattering" script: 😉

Code:
from sympy import mod_inverse
import secp256k1 as ice
pub=ice.pub2upub('Here Compressed Public Key')
N=0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141

k=mod_inverse(2,N)
neg1=ice.point_negation(ice.scalar_multiplication(1))


def ters(Qx,Scalar):
     ScalarBin = str(bin(Scalar))[2:]
     le=len(ScalarBin)
     for i in range (1,le+1):
        if ScalarBin[le-i] == "0":
            Qx=ice.point_multiplication(k,Qx)
        else:
            Qx=ice.point_addition(Qx,neg1)
            Qx=ice.point_multiplication(k,Qx)
     return ice.point_to_cpub(Qx)


for x in range(1,65536):
         f= (ters(pub,x))
         data= open(“halfpub.txt”,”a”)
         data.write(f+”\n”)
         data.close()
Code was first seen posted by @lordfrs, later modified by @mcdouglasx

Believe it or not, I have been where you are now, the difference is that I never created a github page to share incorrect code, your code has a few flaws, it's not even an algorithm, however the script I just shared is one.

One thing you have completely ignored is the fact that we can not multiply a point by another point, yet you base your research on that possibility.
Post
Topic
Board Development & Technical Discussion
Re: How to list all the funded address from a HD wallet?
by
Legends_Never_Die
on 18/01/2024, 21:19:09 UTC
What is the address type? Have you tried to import the seed into a wallet such as electrum? If you do that, it should list all addresses for you.
Post
Topic
Board Bitcoin Discussion
Re: Did you already break the Elliptic Curve, Satoshi, you there?
by
Legends_Never_Die
on 18/01/2024, 21:03:59 UTC
Umm, sir Jack the ripper the second, can you explain please about this part of your "vulnerability research"?

Code:
def get_private_key_from_public_point(point):
    """ Extracts private key from a public key point, this method reverses Double and Add method by Subtract and Halve """

There is no such a thing as getting a private key from a public key that could be defined simply as "subtract and halve", I hope you understand that I'm not trying to mock you, but there  are some things in ECC that you need to understand first before spending time and efforts which could interrupt your normal life.

Let me give you an example, just try it on normal calculator, subtract 1 from the following and then divide by 2, then again subtract 1 after dividing to do another dividing, keep doing it to see where the problem is.

666908835070271

Whenever you hit a fraction as result, don't try to go back fixing the odd key into an even one, no, you need to keep doing it, until you actually reach no where, because numbers repeat for ever.

Also note that when you are working with points(public keys) you can't actually tell whether a point belongs to a small scalar or not, unless you have all the 2**256 points saved on a file to compare or at least have the first 2**65 points saved, but then, maybe a point belongs to a scalar in 67 bit range and you just miss it during explorations.

The whole point of a 256 bit curve is to have a security level at 128 bit, otherwise up to even 80 bits is easy to brute force considering if one has great computing power.

1000BTC puzzle challenge is a very good starting point for every mathematician/cryptographer, focus there instead of trying to go after keys that does not belong to you. At least puzzle keys are for free to grab and it won't be considered as theft.
Post
Topic
Board Bitcoin Discussion
Re: Did you already break the Elliptic Curve, Satoshi, you there?
by
Legends_Never_Die
on 18/01/2024, 18:31:02 UTC
Alright, let's delve into the details. First off, here's the CSV I shared, starting with the first 10 public keys:


040000356cb2e0d0c0a0167693b14c338f548da20fea024a04449907140fa270ebff37ae70d00db 8137b5c60d9563b743b090f162f7bf1b51650d20cd7022d695d

04000136bd8d133189ca0e40334a05ac1ce1d33e992f8628a582ec6a27757d0338e1ec3c25631a3 55abec4f8cd452897f7383caa36123ddd232ffb2e9cf48a2806

040001c5a1d394656166be6c0d41219ed3bba0b2b4dd38d0c0f317b6ad0c491ffca489d30ae9177 3b16626a70752f785284840a3e679c86d0bd42ff1bbb47311f1

04000272b300286c7870642be993dd7189a7dd4f713ad133cb04a36f5560dd28ef9782ac421aaec 692650b74f987d42b8330d0af8370799b808644c18aab68ea6f

040005929d4eb70647483f96782be615f7b72f89f02996621b0d792fd3edd20dc229a99dfe63582 d5471b55bcbb1d96c6e770ea406ce03bc798dc714bab36d5740

040009f1f66d83cfe7ec07d8abbd3b85004ff5fe9fe0145e7e85048158284bcb6e9a154fd2a831a f881e55efda58542e00b06a6c1a47f98a04270db2c4faf505b5

04000b1c8a00b4543af5c6121411796e2f02d7d09a57341d85544a06e0c2311b62f2bb2f4279f4a b8ee3d6e1b98d3905ff2808a5f9d05429ff2e4d1f7edae95dda

04000d82179bdc0fdfd4c8f7b46e7bea3a84c35dbaacaee3f35193213728fb4afdac18a09151c36 d7d16e8b72851e90e7ad4c247ac8ae734a3ce096cb354daf2c0

04000ed8229b6fc925fe164bd5be916efab02fb00941dedda712442c145448093995298badfde68 e994f786eb41ea5056bb9f2e3e7d24eb18d383ea35dca49b141

04000f5b05655898aec1744b699dbc461015b714082b19683f495fbc3d24db30b79d76cf773e768 35513d25fbf78d7e82cf47fbb9249faede77be5d290456a5f30

0400159fa21fc72ebf88b9bfbcb7ed7c3c2daf1f3b86231a43354f342de2e16dfaf112dd5c62e71 e26717632c37191b105757026962caf9857de050aa732d1b354


These keys are in sequential order, continuing up to 04ffffcdeee179409d5b0e3133929d6c1292d57768182e650878304dc6867e7a0b0f14b11d08932 8382dcc962312d22fe148b01c8ff911bff70af274146fb000e3.

I've attempted to replicate Satoshi's method of generating public keys using a mathematical sequence, but have not yet succeeded. My goal is to unravel his thought process and understand the rationale behind the specific order of these keys.

I've experimented with various methods to crack the elliptic curve, such as point shifting, halving, and examining negative points, but so far, none have yielded significant results. My latest approach involves modular operations: for a point with an odd mod 2, I perform point subtraction followed by halving; for an even mod 2, just halving. The challenge is in the mod 2 calculation, which involves raising the point to the power of 115792089237316195423570985008687907852837564279074904382605163141518161494335, then multiplying the point by this exponent result. This is based on the formula (P * (P^m-2 % m)) % m, where m is the maximum curve value 115792089237316195423570985008687907852837564279074904382605163141518161494337.

So, effectively breaking the elliptic curve requires knowledge of Point * Point multiplication on the curve and efficiently computing P^m-2. While pursuing this approach, I've lost everything in my life and now find myself in financial and personal ruin. Just as I was losing hope, I extracted Satoshi's public keys and noticed a pattern. The letter 'S' in Satoshi corresponds to the 19th letter in the English alphabet, and in Japanese culture, 19 symbolizes 'intense suffering', which mirrors my current life situation..
Ok, now I'm interested, these addresses are holding 50 BTC each:
Code:
1Lo1VC2YNkqELDNGHpsKDD8KEzbNKBjzpF
1ANqtD7XbjEPWsdSjbfEcyhgmwQatB7EHi
1BdXp7HtBbSWHkUWU7MJaou84CQRDxa7qG
1NK42KTqJ2cZkzYiVgc35KpT7M8BuGhTLz
1JtCBgQucKnV4j9nUYgVvrfYDGH4X3KHsu
16chPF8HWZq7HgjivRiLkDSvJbAWFyfWg1
1DMEidMXgX9mRxcEic94FL3zhv7nzMBcLN
1LsfkvwMo6JBisYpGHkai18hyTzs4qSZjz
1FLLtCveUBbk41xDqDSTCmuhFUyNAq9Sbd
13AN7o5F2dgsyfc1AHjJRtPe6RubnZupnL
1LhB4cSeiiQzT2A7i7jbTvRT4YChXEJqci

AFAIK, you can just mine such public keys by a vanity engine brute force tool, and if you check, he only managed to mine keys for 3-4 leading zeros, not a big deal.

Whenever you managed to show me a used public key like this :
Code:
04fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141670999be34f51e8894b9c14211c28801d9a70fde24b71d3753854b35d07c9a11

Then we will talk. What he used is just a vanity public key generator. 😉

BTW, where are you with "point to point" multiplication? I assume no where because that's not possible.
Post
Topic
Board Development & Technical Discussion
Re: BitIDE - TapScript IDE with Local Testnet, Explorer and Custom Op Codes (P2TR)
by
Legends_Never_Die
on 18/01/2024, 17:45:16 UTC
I see this is not mobile friendly 😂 , but this is great to see people are actually developing something useful rather than trying to spam the network for more money.

Just wanted to tell you, fantastic work, amazing and thank you. Hope you could add some ECC related functions to have things in one place. 🤭

Btw, you founded QED? Any web address for it?
Post
Topic
Board Reputation
Re: REJECTING FOR WHITELISTING WITHOUT ANY NOTIFICATION
by
Legends_Never_Die
on 18/01/2024, 17:22:38 UTC
The idea of whitelisting is to have a veteran member vouching for a friend or for their own alt account to bypass the evil fee, it's not for everyone to just send an email and ask for it.

I did send the email and said I'm digaran, but the request was never answered, then I had to take my laptop from a friend to then get access to my browser for login info.

I just don't know why an VPS only used by me have evil fees, then there comes to matter of dynamic IPs, seriously sometimes I get some IPs from eastern europe. Fu*ked up ISPs I suppose.

So the purpose of sending emails is only for known members. How long have you been a member here?

Btw, what's with the attack on mathematicians? What did they do to you man?
Post
Topic
Board Reputation
Re: What privileges does LoyceV have?
by
Legends_Never_Die
on 18/01/2024, 17:07:52 UTC
Maybe he doesn't want his neg tag to be seen on reputation board? Lol
Forum related topics goes to meta, he already said (I think) that only him, host(cloudflare) and some 3 letter agencies have access to IPs.

Once again, forum related goes to meta.
Post
Topic
Board Reputation
Re: What privileges does LoyceV have?
by
Legends_Never_Die
on 18/01/2024, 16:43:03 UTC
You can ask admin if Loyce V has access to user IPs, he will tell you that Loyce doesn't have access, and if you don't trust admin's words, then you should know that he actually has access to all user IPs, therefore staying on this forum would be wrong if you don't trust the admin.

So which will it be? A topic in meta to ask the admin or continuing this on reputation?

As far as I know, Loyce doesn't have that privilege.
Post
Topic
Board Meta
Re: Have the rules of the DT system and Forum rules amended ? ? theymos
by
Legends_Never_Die
on 18/01/2024, 16:20:59 UTC
As I said this before, there needs to be a set of certain rules, guidelines being posted by admin himself, then in time people would support and abide by the rules. Problem is when you allow everyone decide on everything individually, that can't end well.

However there is a question of who should enforce the said rules? Well, of course responsible DT members. We all know when symm wiped his trust ratings, he had a bunch of good ones too, but did the entire community got scammed by those who were tagged by symm? So if you see someone on DT with %80 "good" ratings and %20 unfair, unjustified ratings and close your eyes to their misuse, well you have been just fooled by a person who knows how to play the system in a way that people wouldn't touch him because of "good ratings".  I think if you can eliminate that notion of being untouchable, then nobody would dare to game the system like that.

I'm not talking about myself, I'm already done with my main account.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Legends_Never_Die
on 18/01/2024, 13:00:53 UTC

but I hope you have fun and someone very special sends you greetings.  ✌️
Unless that someone is an 18 years old virgin, otherwise we are not interested in their greetings. Lol.

You seem to be lost in the few first puzzle keys, you'd need to have a method that could work for all the puzzle keys, if you had it, you wouldn't be here talking.

im asking the admin to ban digran and his multiple accounts, this thread become useless with his useless ideas
@modeator, verify those replies you will find the same ip address
Meep meep, done! digaran is now banned in the same way as satoshi! Second lol.

You are funny though, you think you as a shi*poster are entitled to such demands while all you have contributed here is precisely zero.
Post
Topic
Board Bitcoin Discussion
Re: Did you already break the Elliptic Curve, Satoshi, you there?
by
Legends_Never_Die
on 18/01/2024, 12:13:33 UTC
You don't expect us to download a file from that site do you? It would be great to share your findings here, plus, what exactly do you mean by plotting the keys on a curve? Because to my understanding, if you can locate a point on a curve, you can solve it's key, I don't know, I'm not familiar with those things.

But if there is a pattern as you suggest, it might be due to the fact that he generated them himself by unknown means to us and yet known only to him.

Besides, if he had broken the code back in 2009, he would be ruling the whole world by now, all I can see there are a bunch of degenerate old fu*ks trying to rule the world, and they don't seem to know anything about ECC. 😉
Post
Topic
Board Reputation
Re: Farewell
by
Legends_Never_Die
on 18/01/2024, 09:07:29 UTC
Use opium, it could give you some time, you don't just give up like that. Hopefully you'll survive, we are not done with you yet. But if not, see you on the other side!

If you believed in one true God, you will be fine, dead or alive, don't you worry. 🤝
Post
Topic
Board Meta
Topic OP
Why reset password with secret question not working?
by
Legends_Never_Die
on 15/01/2024, 14:16:51 UTC
Lol, anyways.
I can't even self ban myself by doing a simple reset by secret question, tried it a few times, didn't work. What a sad ending, even in dying(forum) I am a joke.

Bye tooth fairy, I take it since you stood up for Quicksy, he is now more like a big foot, rarely seen, I wonder whether standing up for him made his situation worse? Lol I had to excuse myself from that kind of situation. So there will be no auctioning for my body parts in the future! 😂😂

Dig, out.