Bitcoin Forum
May 13, 2024, 08:23:12 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 9 10 »
1  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: June 14, 2023, 08:41:55 PM

Yeah .. He, most likely, generated 256 keys and manually updated the first character on the left whenever necessary.
You really think he just changed 1 digit? Some one who is an expert in cryptography would know better, but maybe he didn't want to make it very difficult and really used randomly generated keys. But if I were him, I'd have changed a few characters to make it really really hard.

Lol .. you have no clue what we're talking about do you! The reason he changes the first character on the left is NOT to make it difficult, it's to make the ranges as per his puzzle requirements.. in fact, even if he changes nothing.. Brutefocring the seed is impossible. A person who knows cryptography would know that humans are terrible in creating secure randomness. Changing numbers or adding zeros doesn't do shit in terms of difficulty, the opposite is true, it can actually increase predictability
2  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: June 14, 2023, 04:01:24 PM

Maybe Satoshi created this "puzzle", and once all the private keys are found... maybe a hash of the string composed of all the keys within individual ranges, or maybe something related to them... could lead to the private key that "controls" the addresses that received the first mined bitcoins. Science fiction ? XD
I can't see any science in your theory, it's just a made up scenario in your head, I doubt him to be a liar, he said that he used a deterministic wallet to generate the keys.

The only thing I don't understand, are all the keys from one seed and if they are, did he use the first 256 keys and didn't generate more? If he used the first generated 256 keys, which would be impossible to generate 256 keys and all of them have the exact bit range of the intended bit range.

So my guess is that he might have used a single seed but had to generate more than 256 keys to find the perfect keys matching the intended bit ranges if masked with leading zeros.


So explain what I mean.
Imagine I generate 256 keys and see none of them has 1 in the middle so that I could mask anything behind 1 with zeros and use that key for puzzle #125, for instance.

Example
Code:
5efad5987dc4a907698547d117b98892    0    5001159481c639e043e52d4f9b832e1
I can't use the key above for puzzle #125 because it has 0 in the middle instead of 1, so I'd either  have to manually replace 0 with  1 or generate another key till I see 1 in the middle.

In both cases there will be no pattern, no correlation between the keys whatsoever.

Yeah .. He, most likely, generated 256 keys and manually updated the first character on the left whenever necessary.
3  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: June 08, 2023, 12:00:17 AM
I was trying to figure out a good way to break the key search into ranges.
I decided to use columns, ie. 17 columns. And group them into 4.

group 1  2000 - 2fff
group 2  0000 - ffff
group 3  0000 - ffff
group 4  0000 - ffff
group 5  0123456789abcdef

output:    group 1 has 4096 lines
      group 2 has 65536 lines
      group 3 has 65536 lines
      group 4 has 65536 lines
      group 5 is 16 lines.
         
My idea is to create 2000 0000 0000 0000 0
But I'm still not sure how to bring them together in a string.



On linux or WSL type: paste file1.txt file2.txt > fullrange.txt

Obviously change file names in your command according to your actual file names
4  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: May 21, 2023, 01:20:15 AM
Quote
Here is what i exactly did:

1. Generate the entire 64 range divided as 17,666,000 sub-ranges sorted sequentially at first.
2. Randomize the sub-ranges completely
3. Search each sub-range line by line, so that each sub-range completed gets me 1 in 17.6 million chance of winning.

After someone solved 64 and the pvt key was revealed, i found out that right sub-range after randomization was in line 1 million.

i.e: i was never meant to solve it if i kept going forward with this plan.

Ahhhh, gotcha...well it's not that you wouldn't have solved it with more resources. Smiley

At least you randomized the list somewhat. Sequential is brutal and defeating lol.

Lol yeah choosing sequential is like if you're deciding to fail before you even start.
5  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: May 21, 2023, 01:14:57 AM
Hello,

I just created a simple solo-pool to find puzzle 66.

It only works with BTC Puzzle 66. If you want to scan all private keys in puzzle 66; you need to do 36 quintillion scans in total. In case you do a random scan; previously generated private keys will be regenerated (random problem). This extends the scan time by x10.

Puzzle 66 HEX ranges as follows. It starts with 2 or 3. Any private key in this range is 17 characters long.

20000000000000000 to 3ffffffffffffffff

We take the first 7 characters and delete the rest for now. The result will be as follows.

2000000 to 3ffffff

We now have about 33 million possible private keys to search. All possible private keys are stored in the database. A random value will come up each time a scan job is called and will be marked as scanned when the scan is complete.

I can scan each key in about 10 minutes on NVIDIA 3090. This actually means about 1,1 trillion private keys. When the private key is scanned, it is marked as scanned. So it won't show up anymore.

https://github.com/ilkerccom/bitcrackrandomiser

I did something like that with puzzle 64 using keyhunt-cuda.. it was a file of 17,666,000 ranges .. after 64 got solved, i was curious as to where the correct range lied in my file, you know where it was?

Line number 1+ million !!!!!

Doesn't work. But you could be more lucky and find the correct range in line number 10 or something in your file Smiley

What do you mean it didn’t work?! So you were going through sequentially versus random?

Here is what i exactly did:

1. Generate the entire 64 range divided as 17,666,000 sub-ranges sorted sequentially at first.
2. Randomize the sub-ranges completely
3. Search each sub-range line by line, so that each sub-range completed gets me 1 in 17.6 million chance of winning.

After someone solved 64 and the pvt key was revealed, i found out that right sub-range after randomization was in line 1 million.

i.e: i was never meant to solve it if i kept going forward with this plan.
6  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: May 20, 2023, 11:41:27 PM
Hello,

I just created a simple solo-pool to find puzzle 66.

It only works with BTC Puzzle 66. If you want to scan all private keys in puzzle 66; you need to do 36 quintillion scans in total. In case you do a random scan; previously generated private keys will be regenerated (random problem). This extends the scan time by x10.

Puzzle 66 HEX ranges as follows. It starts with 2 or 3. Any private key in this range is 17 characters long.

20000000000000000 to 3ffffffffffffffff

We take the first 7 characters and delete the rest for now. The result will be as follows.

2000000 to 3ffffff

We now have about 33 million possible private keys to search. All possible private keys are stored in the database. A random value will come up each time a scan job is called and will be marked as scanned when the scan is complete.

I can scan each key in about 10 minutes on NVIDIA 3090. This actually means about 1,1 trillion private keys. When the private key is scanned, it is marked as scanned. So it won't show up anymore.

https://github.com/ilkerccom/bitcrackrandomiser

I did something like that with puzzle 64 using keyhunt-cuda.. it was a file of 17,666,000 ranges .. after 64 got solved, i was curious as to where the correct range lied in my file, you know where it was?

Line number 1+ million !!!!!

Doesn't work. But you could be more lucky and find the correct range in line number 10 or something in your file Smiley
7  Bitcoin / Development & Technical Discussion / Re: Pollard's kangaroo ECDLP solver on: May 15, 2023, 02:56:16 AM

Anyway to answer your PM I'm 80% certain about the range. I created the wallet years ago manually and was dumb enough to use it!!

That said, I think I prefer searching for it myself. If you would like to help with the setup, where it's best to rent GPUs, what version of Kangaroo to use, etc happy to pay a fee. I hope you understand, it's too much BTC to just give away the public key on a forum!

Thanks!!
Yeah, somehow I doubt it, being a newbie years ago knowing how to manually generate a very low range key and somehow depositing a large amount in it and then after years now you remembered that you have these coins , yet the funny thing is that you have the public key not the private key, having the public key could mean that you have spent from the address, so the address has an exposed p in a low range, one could use all public keys with balance on blockchain and use kangaroo to find your imaginary key, but we all know there is no such a key and nobody would manually generate low range key to deposit and then forgets the key. Lol

You're implying that he's lying?
Do you know what i should say to you?
Do you?

I agree with you loool
8  Bitcoin / Project Development / Re: VanBitCracken - a program to use for 32 BTC challenge (supports RTX 30xx cards) on: May 11, 2023, 05:14:12 PM


Quote
WanderingPhilospher

Prefix search works on all address types except for bc1p .. any workaround for this or not?
9  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: May 07, 2023, 12:58:23 PM
The puzzle is not fun. There are use only power of GPU not power your Brain.

If you want fun, play video games. This is a serious thing. A security testing, increasingly hard, mind boggling, enthusiastically coding, mathematically challenging and most of all: very lucrative job. If you're a puss, you'll be run down by it.

Come down friend. There are not mathematically is just Random. I try many theory mathematics and found some rule of puzzle. There are never complete.
If you like lottery of bitcoin. Try your luck.

Did I understand correctly? We are engaged in breaking elliptical curves - it's really fascinating! As soon as we do this, all cryptocurrencies will be worth - zero! People are a strange animal!))

This will never happen .. even on 160 bit range .. will never happen .. i am more likely to become the president of the US without having its nationality than we breaking the elliptic curve .. you're dealing with numbers as much as almost the number of atoms of the known universe .. but for solving puzzles, it can happen, good luck everyone.
I understand that!))) but you see - not everyone here thinks so! They probably want to discover new mathematics!

Yeah, most people don't know that Beating Satoshi is impossible without quantum devices
10  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: May 06, 2023, 09:52:36 PM
The puzzle is not fun. There are use only power of GPU not power your Brain.

If you want fun, play video games. This is a serious thing. A security testing, increasingly hard, mind boggling, enthusiastically coding, mathematically challenging and most of all: very lucrative job. If you're a puss, you'll be run down by it.

Come down friend. There are not mathematically is just Random. I try many theory mathematics and found some rule of puzzle. There are never complete.
If you like lottery of bitcoin. Try your luck.

Did I understand correctly? We are engaged in breaking elliptical curves - it's really fascinating! As soon as we do this, all cryptocurrencies will be worth - zero! People are a strange animal!))

This will never happen .. even on 160 bit range .. will never happen .. i am more likely to become the president of the US without having its nationality than we breaking the elliptic curve .. you're dealing with numbers as much as almost the number of atoms of the known universe .. but for solving puzzles, it can happen, good luck everyone.
11  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: May 06, 2023, 01:32:16 PM
The puzzle is not fun. There are use only power of GPU not power your Brain.

If you want fun, play video games. This is a serious thing. A security testing, increasingly hard, mind boggling, enthusiastically coding, mathematically challenging and most of all: very lucrative job. If you're a puss, you'll be run down by it.
12  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: April 30, 2023, 01:40:16 PM
If I rely on mathematics and common sense, I come to only two conclusions! 1) Someone very rich decided to laugh!!! 2) This is such an advertising company - from manufacturer of graphics processors!!!    )))

People who solved puzzles from #1 to #120 would disagree.. but your logic is very reasonable.
13  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: April 30, 2023, 10:12:56 AM
"Imagine for puzzle 66, for a single computer that i have, I need about 2,500 years to be able to get one of his lowest easiest puzzles which are 6.6BTC"

Well, yes, the author of Puzzle suggests searching for the key 2 ^ 158. No pub key! As I understand it, we must brute force. ))) Guys, well, you're not idiots! Why did you
2500 years? I have estimated with the help of my mentor, that I need around 40,000 years to brute force 66. So you are way ahead of me.
I guess the point of this "crap" is to show off, here some free bitcoins in the easiest bit ranges for grab, collect them if you can.

It also is an indication to warn people why using addresses more than once is not a good practice, as we all know exposed public keys can endanger the security of private key exponentially.

No, a public key exposed is not even slightly a threat to a wallet address security .. it's as hard as a hidden public key .. don't let puzzles like #120,#125 etc fool you into thinking that solving the key got any easier.. a regular wallet's public key lies in the 253 - 256 bit range .. which is impossible to run bruteforce against and find a private key .. it would take billions of years and maybe more .. even trying to use math and tools to solve a 160 bit public key is impossible in our world .. but in theory, yes, Satoshi designed public keys to be used once then thrown away, just in case.
14  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: April 26, 2023, 05:00:34 PM
Quote from: digaran
The only one who can give you the knowledge is your maker, you just need to ask him properly.😉

You mean mom? Unfortunately she's not that good at Maths.

He means God, our Lord

Lol .. and i mean sarcasm, look it up sometime.
15  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: April 26, 2023, 01:30:05 PM
Quote from: digaran
The only one who can give you the knowledge is your maker, you just need to ask him properly.😉

You mean mom? Unfortunately she's not that good at Maths.
16  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: April 25, 2023, 08:50:03 PM
zahid888 He also wrote that he used a "It is just consecutive keys from a deterministic wallet (masked with leading 000...0001 to set difficulty)" this means that he could use anything, but most likely a regular random 2^256 address. He could create the keys a month before filling, or a week. And one time is not enough to shove all the devilry there, the clock counters... all this nonsense has a range "Mersenne twister 2^19937 bit (624·32 (2^32 = 4294967296) — 31)".

***

test

it took to open the first 3 puzzles through seed()

        a = random.seed(1,15000000)

        a1 = random.randrange(512,1024)
        if a1 == 514:

            a2 = random.randrange(256,512)
            if a2 == 467:                

                a3 = random.randrange(128,256)
                if a3 == 224:

14429208 seed-steps, 514, 467, 224

for 4 it's been a long time to search 1,1000000000...

because when finding the first one, it is necessary to iterate over all the first ones until it suits the second one, etc.

1024×1024×1024 =          1073741824        for 3pz
2048×2048×2048×2048 = 17592186044416  for 4pz
etc...

probably needed for the whole puzzle 160-66=94, (2^160)^94 ~ 2^15040

2^15040 all pz
2^19937 twister

Cheesy


Holy shhhit .. that's even waaaay harder than cracking a full 256 bits key.
17  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: April 24, 2023, 07:01:08 PM
Hi there guys,

Considering your experience, how many keys a pc can scan in 1 second?

No kangaroo, no BSGS, but only random combination.



Code:
import time

def calculate_pi(n):
    start_time = time.time()
    s = 0
    for i in range(n):
        s += 4.0 * (-1) ** i / (2 * i + 1)
    end_time = time.time()
    return s, end_time - start_time

n = 1000000
pi, elapsed_time = calculate_pi(n)
print("Pi: %f" % pi)
print("Elapsed time: %f seconds" % elapsed_time)
print("Digit production speed: %f rakam/saniye" % (n / elapsed_time))

My android capability is 1.1 million/sec lool
18  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: April 23, 2023, 05:44:41 AM

I am the creator.

You are quite right, 161-256 are silly.  I honestly just did not think of this.  What is especially embarrassing, is this did not occur to me once, in two years.  By way of excuse, I was not really thinking much about the puzzle at all.

I will make up for two years of stupidity.  I will spend from 161-256 to the unsolved parts, as you suggest.  In addition, I intend to add further funds.  My aim is to boost the density by a factor of 10, from 0.001*length(key) to 0.01*length(key).  Probably in the next few weeks.  At any rate, when I next have an extended period of quiet and calm, to construct the new transaction carefully.

A few words about the puzzle.  There is no pattern.  It is just consecutive keys from a deterministic wallet (masked with leading 000...0001 to set difficulty).  It is simply a crude measuring instrument, of the cracking strength of the community.

Finally, I wish to express appreciation of the efforts of all developers of new cracking tools and technology.  The "large bitcoin collider" is especially innovative and interesting!


The 'creator' created a wallet and increasingly changed the front bits to zero's
I wonder why there are still some who don't believe this?

Lol it's like we need a banner 😁 but the thing is some people are trying to find a pattern out of this HD sequence .. so they can unlock all puzzles at once
19  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: April 23, 2023, 04:06:32 AM
https://towardsdatascience.com/random-seeds-and-reproducibility-933da79446e3

And how does this random.seed() work?

set some value and then Mersenne twister...

Mersenne twister 19937 bit (624·32 (2^32 = 4294967296) — 31)

for example, we take 3 random

random.seed(blablabla)
random.randrange(1,10)
random.randrange(1,10)
random.randrange(1,10)

we get for each of the 3 in order from the vortex of the first three?

                                 1— 31
random.randrange(1,10) 1,4294967296 (624·2)
random.randrange(1,10) 1,4294967296 (624·3)
random.randrange(1,10) 1,4294967296 (624·4)

and if we take 624 random.randrange(1,10) period ends and a new one begins again

                                 1— 31            next period
random.randrange(1,10) 1,4294967296 (625)624·2
random.randrange(1,10) 1,4294967296 (626)624·3
random.randrange(1,10) 1,4294967296 (627)624·4

and if we have a large sample of random.randrange(36893488147419103232,73786976294838206464) he spends 1 period for 1 sample or 624 and a new one (then why are they not repeated 2^32?)

or he these 19937 bit takes it all at once

in other words, to complete all puzzles with 1 seed() we need to iterate over this seed() to iterate over all variations of this 2^19937 bit ((2^32)^624)?

and seed() itself doesn’t matter (with brute force) you don’t need old computers to run it randomly in order to pick up the date and time, etc. to create the same bitcoin address.


random.seed(1, 2^19937) and all pz

random.randrange(36893488147419103232,73786976294838206464) 66
...
random.randrange(21267647932558653966460912964485513216,42535295865117307932921825928971026432) 125
...
random.randrange(730750818665451459101842416358141509827966271488,1461501637330902918203684832716283019655932542976) 160

and the puzzles themselves need to be multiplied 2^160×2^159×2^158...×2^66

and if it turns out that there may be collisions here , If 2^19937 the most options to open all the puzzles at once through 1 seed()



One of the most interesting topics I've read in a while.. but what makes you think this was the way the creator used to generate the puzzles' sequence? There could be a million ways to be used for this?
20  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: April 23, 2023, 02:50:49 AM
Rounded up 66 puzzle is 36.8934881474191 keys

That is 36.8934881474191 sextillion.


My question

what is or is there a record for the most amount of keys tried in a second via brute forcing ?

I have a script ive worked on for about a month its my own outside the box thinking.
Testing the script achieved what i want it to do.

It will 100% work however like everyone else we are not immortal and time is certainly not on anyones side brute forcing btc.

so thats where im stuck at.

i need 1 billion keys a second tried lol

it will still take time but for puzzle 66 it would take 1 billion keys per second, it would take approximately 37,000 seconds to try37 quintillion keys.

That is equivalent to about 10.28 hours.

One can dream eh.

Anyway if you reply please answer my question on what/if a record exsists.
I think your math is off. Many programs already out can do over 1 billion keys per second, GPU of course.

1 billion keys per second would take you 1,169 years.

I thought so let me go slap chatgpt

Edit maths does work out for what im doing Smiley   Please please point me to where these apps can do 1 billion a sec per key or any info

What if you have 1b keys/sec? The only way this is going to help is if you find a formula that can narrow down your range at least 1000 times less .. other than that go run your devices and try your luck🤞


Exactly i have my own formula. Its completly thinking outside the box.
Like i said it works exactly how its intended and in testing it has been 100% successfull.

Next problem is how could i trust anyone with what i have when it could be poetenially dangerous i certainly aint a coder like most here.

I have been on the grind for the last week with this and one thing stops me speed and customization and i suppose trust i havent been completly transparent on everything tbh.

 Undecided




So basically you have the formula but need a trustworthy person to run it in their fast GPUs .. did i get that right?

If so dm me .. or if you want you can DM older members if that would make you more comfortable.
Pages: [1] 2 3 4 5 6 7 8 9 10 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!