Bitcoin Forum
February 10, 2025, 10:44:04 AM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 [199] 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 ... 369 »
  Print  
Author Topic: Bitcoin puzzle transaction ~32 BTC prize to who solves it  (Read 253279 times)
alek76
Member
**
Offline Offline

Activity: 93
Merit: 16


View Profile
November 06, 2023, 12:28:04 AM
 #3961


Thanks. Btw...We don't need such a long seed lenght - even 9 gets the job done.

Code:
 // Seed
  if (seed.length() == 0) {
    // Default seed
    seed = Timer::getSeed(9);
  }

  if (paranoiacSeed) {
    seed += Timer::getSeed(9);
  }

 Wink
You changed the wrong seed.
New Seed begins with a capital letter  Grin
Code:

  //Set startKey from Seed
  int BitL = Random_bits - 1;
  int BitU = Random_bits;
  Int *Sk = new Int[1];
  if (Seed.length() > 0) {
 // from Seed
 getKeysFromRandomSeed(BitL, BitU, true, 1, Sk);
 startKey.Set(&Sk[0]);
 printf("[i] startKey.Set() from Seed: %s \n", Seed.c_str());
 //
  }
  delete [] Sk;
  //

// argv Seed
if (Seed.length() == 0) {
// Default seed
seed = Timer::getSeed(32);// random seed
} else {
seed = Seed;// -s seed
}
Be careful!  Grin Previously, the old one was just for starters. Next is the code startKey.SetInt32(0)
nomachine
Member
**
Offline Offline

Activity: 507
Merit: 38


View Profile
November 06, 2023, 12:36:11 AM
Last edit: November 06, 2023, 01:21:19 PM by nomachine
 #3962


Thanks. Btw...We don't need such a long seed lenght - even 9 gets the job done.

Code:
 // Seed
  if (seed.length() == 0) {
    // Default seed
    seed = Timer::getSeed(9);
  }

  if (paranoiacSeed) {
    seed += Timer::getSeed(9);
  }

 Wink
You changed the wrong seed.
New Seed begins with a capital letter  Grin
Code:

  //Set startKey from Seed
  int BitL = Random_bits - 1;
  int BitU = Random_bits;
  Int *Sk = new Int[1];
  if (Seed.length() > 0) {
 // from Seed
 getKeysFromRandomSeed(BitL, BitU, true, 1, Sk);
 startKey.Set(&Sk[0]);
 printf("[i] startKey.Set() from Seed: %s \n", Seed.c_str());
 //
  }
  delete [] Sk;
  //

// argv Seed
if (Seed.length() == 0) {
// Default seed
seed = Timer::getSeed(32);// random seed
} else {
seed = Seed;// -s seed
}
Be careful!  Grin Previously, the old one was just for starters.

Bit 19 Base Key thId 11: 5BF03 < 80000 or > FFFFF Rekey true

Bit 15 Base Key thId 6: 58C0 < 80000 or > FFFFF Rekey true

Seed: 31C0F9E7B08DB7B945

Seed: B79E1E04AAAC8DC9CE

Bit 20 CPU Base Key thId 11: A2C56

Bit 18 Base Key thId 6: 31A34 < 80000 or > FFFFF Rekey true

Seed: 50363FA8E9EA517136

Bit 20 CPU Base Key thId 6: BF3E0
cp: cannot create regular file '../drive/MyDrive/Result.txt': No such file or directory


  Addr :1HsMJxNiV7TLxmoF6uJNkydxPFDog4NQum
  Check:1HsMJxNiV7TLxmoF6uJNkydxPFDog4NQum

!!! Result.txt Found key: D2C55
!!! Result.txt Found key: D2C55
!!! Result.txt Found key: D2C55
!!! Result.txt Found key: D2C55
!!! Result.txt Found key: D2C55


Am I understanding this correctly that you have found seed collisions? Because I see different seeds with the same key as output, or is this something else?
With the -r 1 option you can select the fastest one.
If we get lucky.  Grin


Yep...If we get lucky that the same seed works on any puzzle above 65 Grin


Start at 20000... (first 66 bit key) and go sequentially, no random generator needed.

Code:
from tqdm import tqdm
import secp256k1 as ice

# Define the start and end
start = 0x20000000000000000
end = 0x3ffffffffffffffff

# Define the chunk size
chunk_size = 10_000_000

# Initialize the current start and end values
current_start = start
current_end = start + chunk_size

# Initialize the chunk number
chunk_number = 1

while current_start < end:
    current_end = min(current_end, end)
    
    # Create a tqdm progress bar for the current chunk
    with tqdm(total=current_end - current_start, desc=f'Chunk {chunk_number} end {current_end}') as pbar:
        for x in range(current_start, current_end):
            h160 = ice.privatekey_to_h160(2, True, x)
            if bytes.fromhex('20d45a6a762535700ce9e0b216e31994335db8a5') in h160:
                with open("KEYFOUNDKEYFOUND.txt", "a") as f:
                    f.write(str(x) + "-" + (h160.hex()) + "\n")
            pbar.update(1)
    
    # Update the current_start and current_end for the next chunk
    current_start = current_end
    current_end += chunk_size
    chunk_number += 1

Chunk 1 end  36893488147429103232:  22%|█████████████                                               | 2173663/10000000 [00:32<01:58, 65952.81it/s]

About 2 minutes for 10 million hashes. Single core.
 
These are all games for small children, no matter how you turn the ball, the result is small..  Grin


bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
alek76
Member
**
Offline Offline

Activity: 93
Merit: 16


View Profile
November 07, 2023, 05:12:39 AM
Last edit: November 07, 2023, 06:57:27 AM by alek76
 #3963

These are all games for small children, no matter how you turn the ball, the result is small..  Grin
It seems it’s time for everyone to stop with long posts. Spin the ball in the other direction   Roll Eyes, like this:
Code:
void VanitySearch::setSeed(int thId, bool fl) {
// Setup rseed() of unix time
unsigned long Timestamp_min = 1262293200;
unsigned long Timestamp_max = 1672520400;
unsigned long ts = (unsigned long)time(NULL);
ts = ts + (unsigned long)thId;
ts = ts + ts_output;
while (ts < Timestamp_min || ts > Timestamp_max) {
ts = (ts * 54321) % Timestamp_min;
                if (ts == 0) ts = (unsigned long)time(NULL);
ts = (ts * 12345) % Timestamp_max;
                if (ts == 0) ts = (unsigned long)time(NULL);
}
if (fl) { printf("\n[i] Time Unix: %u \n", ts); }
rseed(ts);// Set seed
ts_output = ts;
        //
}
Using the original Random.cpp
AlanJohnson
Member
**
Offline Offline

Activity: 126
Merit: 11


View Profile
November 07, 2023, 03:37:57 PM
 #3964

Code:
Chunk 1 end 36893488147429103232:   0%|                                            | 0/10000000 [00:00<?, ?it/s]
Traceback (most recent call last):
  File "/home/zbigniew/seed1.py", line 24, in <module>
    h160 = ice.privatekey_to_h160(2, True, x)
AttributeError: module 'secp256k1' has no attribute 'privatekey_to_h160'

Why it's not working ?
nomachine
Member
**
Offline Offline

Activity: 507
Merit: 38


View Profile
November 07, 2023, 04:18:45 PM
 #3965

Code:
Chunk 1 end 36893488147429103232:   0%|                                            | 0/10000000 [00:00<?, ?it/s]
Traceback (most recent call last):
  File "/home/zbigniew/seed1.py", line 24, in <module>
    h160 = ice.privatekey_to_h160(2, True, x)
AttributeError: module 'secp256k1' has no attribute 'privatekey_to_h160'

Why it's not working ?


Because it is installed through pip
pip3 install secp256k1
you will  have
    h160 = ice.privatekey_to_h160(2, True, x)
           ^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'secp256k1' has no attribute 'privatekey_to_h160'

it won't work because it's not the one. But custom from here:
https://github.com/iceland2k14/secp256k1

bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
AlanJohnson
Member
**
Offline Offline

Activity: 126
Merit: 11


View Profile
November 07, 2023, 04:54:14 PM
 #3966

Code:
Chunk 1 end 36893488147429103232:   0%|                                            | 0/10000000 [00:00<?, ?it/s]
Traceback (most recent call last):
  File "/home/zbigniew/seed1.py", line 24, in <module>
    h160 = ice.privatekey_to_h160(2, True, x)
AttributeError: module 'secp256k1' has no attribute 'privatekey_to_h160'

Why it's not working ?


Because it is installed through pip
pip3 install secp256k1
you will  have
    h160 = ice.privatekey_to_h160(2, True, x)
           ^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'secp256k1' has no attribute 'privatekey_to_h160'

it won't work because it's not the one. But custom from here:
https://github.com/iceland2k14/secp256k1


Thank you sir ! Now it works.
AlanJohnson
Member
**
Offline Offline

Activity: 126
Merit: 11


View Profile
November 07, 2023, 05:02:45 PM
 #3967

Still .. what this script is really trying to do ?  It just generates random 66bit HEX numbers in hope to hit 66 puzzle ? Or is there something else here ?
nomachine
Member
**
Offline Offline

Activity: 507
Merit: 38


View Profile
November 07, 2023, 05:25:55 PM
 #3968

Still .. what this script is really trying to do ?  It just generates random 66bit HEX numbers in hope to hit 66 puzzle ? Or is there something else here ?

Not random. It goes Sequentially. "To kill boredom" script. Like all the other useless scripts here. Grin

bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
AlanJohnson
Member
**
Offline Offline

Activity: 126
Merit: 11


View Profile
November 07, 2023, 05:37:11 PM
 #3969

Still .. what this script is really trying to do ?  It just generates random 66bit HEX numbers in hope to hit 66 puzzle ? Or is there something else here ?

Not random. It goes Sequentially. "To kill boredom" script. Like all the other useless scripts here. Grin


But ... with that speed ... it's a complete joke. I can do the same with existing tools on nvidia card much faster. So what's the point of making such scripts ?
albert0bsd
Hero Member
*****
Offline Offline

Activity: 1119
Merit: 718



View Profile
November 07, 2023, 07:54:44 PM
 #3970

So what's the point of making such scripts ?

They believe that nobody else tried their "original ideas" before.
MoreForUs
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
November 07, 2023, 09:16:56 PM
 #3971

I am going to find at least one address between puzzle 66 - 72
I am iterating through this 1 decimal range and all targets equal $1,201,000 at current prices!



Code:
.target_public_key_hashes = [
    bytes.fromhex('20d45a6a762535700ce9e0b216e31994335db8a5'),
    bytes.fromhex('739437bb3dd6d1983e66629c5f08c70e52769371'),
    bytes.fromhex('e0b8a2baee1b77fc703455f39d51477451fc8cfc'),
    bytes.fromhex('61eb8a50c86b0584bb727dd65bed8d2400d6d5aa'),
    bytes.fromhex('f6f5431d25bbf7b12e8add9af5e3475c44a0a5b8'),
    bytes.fromhex('bf7413e8df4e7a34ce9dc13e2f2648783ec54adb')
]

target_hashes_found = []

# Define the lower and upper bounds for the decimal number search range
lower_bound = Decimal('36893488147420166522')
upper_bound = Decimal('55340232221128654832')

# List of additional hex numbers to modify the decimal number
additional_hex_numbers = [
    '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f',
    '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '1a', '1b', '1c', '1d', '1e', '1f',
    '40', '41', '42', '43', '44', '45', '46', '47', '48', '49', '4a', '4b', '4c', '4d', '4e', '4f',
    '50', '51', '52', '53', '54', '55', '56', '57', '58', '59', '5a', '5b', '5c', '5d', '5e', '5f',
    '60', '61', '62', '63', '64', '65', '66', '67', '68', '69', '6a', '6b', '6c', '6d', '6e', '6f',
    '70', '71', '72', '73', '74', '75', '76', '77', '78', '79', '7a', '7b', '7c', '7d', '7e', '7f',
    '80', '81', '82', '83', '84', '85', '86', '87', '88', '89', '8a', '8b', '8c', '8d', '8e', '8f',
    '90', '91', '92', '93', '94', '95', '96', '97', '98', '99', '9a', '9b', '9c', '9d', '9e', '9f',
    'a0', 'a1', 'a2', 'a3', 'a4', 'a5', 'a6', 'a7', 'a8', 'a9', 'aa', 'ab', 'ac', 'ad', 'ae', 'af',
    'b0', 'b1', 'b2', 'b3', 'b4', 'b5', 'b6', 'b7', 'b8', 'b9', 'ba', 'bb', 'bc', 'bd', 'be', 'bf',
    'c0', 'c1', 'c2', 'c3', 'c4', 'c5', 'c6', 'c7', 'c8', 'c9', 'ca', 'cb', 'cc', 'cd', 'ce', 'cf',
    'd0', 'd1', 'd2', 'd3', 'd4', 'd5', 'd6', 'd7', 'd8', 'd9', 'da', 'db', 'dc', 'dd', 'de', 'df',
    'e0', 'e1', 'e2', 'e3', 'e4', 'e5', 'e6', 'e7', 'e8', 'e9', 'ea', 'eb', 'ec', 'ed', 'ee', 'ef',
    'f0', 'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'fa', 'fb', 'fc', 'fd', 'fe', 'ff'
]

ps.. finally showed my wife what im working on.. and why i couldnt help pay the bills.  Roll Eyes
digaran
Copper Member
Hero Member
*****
Offline Offline

Activity: 1330
Merit: 900

🖤😏


View Profile
November 07, 2023, 10:56:28 PM
 #3972

ps.. finally showed my wife what im working on.. and why i couldnt help pay the bills.  Roll Eyes
I thought you were up to coding any ideas, what happened to that promise? I really hope you can find at least one of them, but if you want to not only pay the bills but even buy your wife some jewelry, then I'd suggest you to work on public key related scripts.
For example, if you can find a relation between a key and it's inverse aka -n of a key, you can easily solve low range keys like 130 etc, here is a hint :
Code:
Imagine this is #130
00000000000000000000000000000002c56510da49e97b94ca065bbdfb67309c
And this is -n of 130
fffffffffffffffffffffffffffffffbf549cc0c655f24a6f5cc02ced4cf10a5
What happens if you drop all the leading Fs from -n of 130?
bf549cc0c655f24a6f5cc02ced4cf10a5
Now can you find something useful from this new key above without those leading Fs? I'm sure you'll be surprised when you figure it out.😉

🖤😏
MoreForUs
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
November 07, 2023, 11:38:40 PM
Last edit: November 08, 2023, 12:00:46 AM by MoreForUs
 #3973

ps.. finally showed my wife what im working on.. and why i couldnt help pay the bills.  Roll Eyes
I thought you were up to coding any ideas, what happened to that promise? I really hope you can find at least one of them, but if you want to not only pay the bills but even buy your wife some jewelry, then I'd suggest you to work on public key related scripts.
For example, if you can find a relation between a key and it's inverse aka -n of a key, you can easily solve low range keys like 130 etc, here is a hint :
Code:
Imagine this is #130
00000000000000000000000000000002c56510da49e97b94ca065bbdfb67309c
And this is -n of 130
fffffffffffffffffffffffffffffffbf549cc0c655f24a6f5cc02ced4cf10a5
What happens if you drop all the leading Fs from -n of 130?
bf549cc0c655f24a6f5cc02ced4cf10a5
Now can you find something useful from this new key above without those leading Fs? I'm sure you'll be surprised when you figure it out.😉


Wow, I haven't attempted any of the puzzles in the 100's, but thanks for the tips you've been sharing. I will definitely look at the approach mentioned above.
I am still staying true to my words, the inbox is open for script dev!  Grin

This is the output i got when i tested:
Private Key: 000000000000000000000000000000000000000000000002000000000010c4fc
Public Key: 03747a90acd8efec7e9cf1a7555b6c9e4404fc521fc3aebb965bc3bf7e73ef1579
Bitcoin Address: 88508b5ae0788248196a88b63949182342c66ca2
Negated Private Key: fffffffffffffffffffffffffffffffebaaedce6af48a039bfd25e8cd0257c45
Negated Public Key: 02747a90acd8efec7e9cf1a7555b6c9e4404fc521fc3aebb965bc3bf7e73ef1579
Negated Bitcoin Address: c711d99906689482d858a688a3cef4ee5f652e48

i see pub key and negated pub key are the same, how can i use this?
digaran
Copper Member
Hero Member
*****
Offline Offline

Activity: 1330
Merit: 900

🖤😏


View Profile
November 08, 2023, 12:39:12 AM
 #3974



This is the output i got when i tested:
Private Key: 000000000000000000000000000000000000000000000002000000000010c4fc
Public Key: 03747a90acd8efec7e9cf1a7555b6c9e4404fc521fc3aebb965bc3bf7e73ef1579
Bitcoin Address: 88508b5ae0788248196a88b63949182342c66ca2
Negated Private Key: fffffffffffffffffffffffffffffffebaaedce6af48a039bfd25e8cd0257c45
Negated Public Key: 02747a90acd8efec7e9cf1a7555b6c9e4404fc521fc3aebb965bc3bf7e73ef1579
Negated Bitcoin Address: c711d99906689482d858a688a3cef4ee5f652e48

i see pub key and negated pub key are the same, how can i use this?
I see that you just found out about n and -n, if this is your first time working with public keys, you won't be able to reach anything meaningful, honestly I thought you are all in on public keys, that's why I wanted to help you by providing a hint, but the thing is I haven't worked on this angle yet myself, I will let you know when I can find a correlation between the two keys. However to make it fair for all, the answer is in secp256k1's representation for 2^256.

Even though I know most of you won't understand what I'm talking about, but those who do, remember we are partners.😉

🖤😏
Kamoheapohea
Jr. Member
*
Offline Offline

Activity: 48
Merit: 12


View Profile
November 08, 2023, 02:20:23 AM
 #3975

Here is something interesting I found during my research:

if we have a pk e.g.: 0xA9128E282

we can substract from pk = 0xA9128E282 - 0x1. This is on +N. Not on -N!!!
After that I can add 0xA9128E282. You will see what you get when you research on your own. Please remember to give me my share when you find #66 or #130.
mcdouglasx
Full Member
***
Offline Offline

Activity: 546
Merit: 148



View Profile WWW
November 08, 2023, 03:29:34 AM
 #3976


This is the output i got when i tested:
Private Key: 000000000000000000000000000000000000000000000002000000000010c4fc
Public Key: 03747a90acd8efec7e9cf1a7555b6c9e4404fc521fc3aebb965bc3bf7e73ef1579
Bitcoin Address: 88508b5ae0788248196a88b63949182342c66ca2
Negated Private Key: fffffffffffffffffffffffffffffffebaaedce6af48a039bfd25e8cd0257c45
Negated Public Key: 02747a90acd8efec7e9cf1a7555b6c9e4404fc521fc3aebb965bc3bf7e73ef1579
Negated Bitcoin Address: c711d99906689482d858a688a3cef4ee5f652e48

i see pub key and negated pub key are the same, how can i use this?


One use could be that if you have a pub with pk= 0x2710-N, negating would go from a 256-bit key to Pk= 0x2710 (equivalent to the range of: puzzle #14),


digaran
Copper Member
Hero Member
*****
Offline Offline

Activity: 1330
Merit: 900

🖤😏


View Profile
November 08, 2023, 03:30:56 AM
 #3977

Here is something interesting I found during my research:

if we have a pk e.g.: 0xA9128E282

we can substract from pk = 0xA9128E282 - 0x1. This is on +N. Not on -N!!!
After that I can add 0xA9128E282. You will see what you get when you research on your own. Please remember to give me my share when you find #66 or #130.
Well, for starters you can't solve #66 by doing math on private/ public keys, also you can't solve #130 with your small example, but since you are a rookie hunter, we let them slide. Remember when you are publishing your non existing research, do some actual testing before "publishing them".  This is what I do, I test a few things and if it has promising results, I post them, unlike some people.😉
Next time share your discoveries with your main account, then we can talk, eh?

🖤😏
Kamoheapohea
Jr. Member
*
Offline Offline

Activity: 48
Merit: 12


View Profile
November 08, 2023, 07:02:52 AM
 #3978

Well, for starters you can't solve #66 by doing math on private/ public keys, also you can't solve #130 with your small example, but since you are a rookie hunter, we let them slide. Remember when you are publishing your non existing research, do some actual testing before "publishing them".  This is what I do, I test a few things and if it has promising results, I post them, unlike some people.😉
Next time share your discoveries with your main account, then we can talk, eh?

Code:
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⣤⣤⣤⣤⣤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣴⣾⣿⣿⣿⣿⡿⠿⠿⠛⠻⠿⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⣿⣿⣿⣿⡿⠟⠋⠁⠀⠀⠀⠀⠀⠀⠀⠙⢷⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣿⣿⣿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣀⣻⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⣿⣿⣿⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⠟⠉⠉⢳⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣿⣿⣿⣿⣷⠀⠀⠀⠀⠀⣠⡴⠶⠦⡄⠀⠀⠈⠃⡴⢻⣷⣾⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣆⠀⠀⠀⠞⠁⢀⣴⣶⠦⡄⠐⡆⠸⣟⠚⠋⠁⠈⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠀⢯⣸⣿⠟⠃⠀⢷⠀⠈⠣⠀⠀⠀⠈⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⠟⠀⠀⠀⢨⡷⣄⠀⢿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⣿⣿⣿⣿⡟⠛⠿⢿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠐⠛⠀⠀⠀⠙⠆⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣿⣿⡹⣄⡶⠀⠀⠀⠀⠀⠀⠀⠀⢀⣦⠀⠀⠀⣀⡤⠴⣶⠀⠀⢸⣦⣤⣄⣀⡀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⣤⣽⣿⣿⣧⡻⣷⣦⣀⡀⠀⠀⠀⠀⠀⠈⠙⠂⢶⣯⣥⣴⣾⠏⠀⠀⣼⣿⣿⣿⣿⣿⣿⣷⣦⣤⣀
⠀⠀⢀⣠⣤⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⣤⡰⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠁⠀⠀⠀⢹⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
⣴⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡄⠀⠘⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠴⠆⠀⣸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣯⠳⣄⠀⠉⠓⠶⠄⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
⠙⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠀⠈⠓⠀⠀⠀⠀⠀⠀⠈⠓⠒⠒⠚⠙⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛
nomachine
Member
**
Offline Offline

Activity: 507
Merit: 38


View Profile
November 08, 2023, 08:33:46 AM
Last edit: November 08, 2023, 09:03:09 AM by nomachine
 #3979

Still .. what this script is really trying to do ?  It just generates random 66bit HEX numbers in hope to hit 66 puzzle ? Or is there something else here ?

Not random. It goes Sequentially. "To kill boredom" script. Like all the other useless scripts here. Grin


But ... with that speed ... it's a complete joke. I can do the same with existing tools on nvidia card much faster. So what's the point of making such scripts ?

It's a complete joke even with 5 GPUs. Compared to the required 200 Giga hashes per second.
Everything is joke. Any script that looks for hash 160. Even if you have a farm with graphics (and I tried there Puzzle 66 too) . The only question is who is the biggest clown.  Or whose jokes seems the smartest in the eyes of the public. Grin

bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
AlanJohnson
Member
**
Offline Offline

Activity: 126
Merit: 11


View Profile
November 08, 2023, 09:05:30 AM
 #3980

Still .. what this script is really trying to do ?  It just generates random 66bit HEX numbers in hope to hit 66 puzzle ? Or is there something else here ?

Not random. It goes Sequentially. "To kill boredom" script. Like all the other useless scripts here. Grin


But ... with that speed ... it's a complete joke. I can do the same with existing tools on nvidia card much faster. So what's the point of making such scripts ?

It's a complete joke even with 5 GPUs. Compared to the required 200 Giga hashes per second.
Everything is joke. Any script that looks for hash 160. Even if you have a farm with graphics (and I tried there Puzzle 66 too) . The only question is who is the biggest clown.  Grin

This whole puzzle is some sort of fuse. Someone is measuring currently available cracking power.
Isn't that suspicious that someone choose to not cash out on those bitcoins and instead organized some sort of competition

I'm currently running keyhunt in bsgs random mode on a 10gb bloomfilter file on puzzle 130. But i realize its probably pointless...
Pages: « 1 ... 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 [199] 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 ... 369 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!