Pages:
Author

Topic: == Bitcoin challenge transaction: ~1000 BTC total bounty to solvers! ==UPDATED== - page 5. (Read 46581 times)

jr. member
Activity: 149
Merit: 7
Interesting...seeking legal advice and avoiding exchanges... However, how does one convert the coins from these puzzles into spendable cash without an exchange? And it’s somewhat disappointing not being able to spend it all at once if one wishes to, minus taxes and so forth. I haven’t found any legal provision that clarifies the management of bitcoins you ‘find’, or earn from solving a puzzle, or inherit... especially if you aren’t one of the big whales, who I suspect have their systems in place already Smiley)

I'm amazed on how people think that CES are the real players in crypto world. In particular I'll NEVER trade any crypto by using Centralized Exchanges.

IF you or anyone find a key just seek for a trusted P2P near you, trade small ammounts and avoid government, or better take everything by cash  buy a house for you, buy another house and rent it and live without any shitty taxes from politics.
newbie
Activity: 6
Merit: 5
Interesting...seeking legal advice and avoiding exchanges... However, how does one convert the coins from these puzzles into spendable cash without an exchange? And it’s somewhat disappointing not being able to spend it all at once if one wishes to, minus taxes and so forth. I haven’t found any legal provision that clarifies the management of bitcoins you ‘find’, or earn from solving a puzzle, or inherit... especially if you aren’t one of the big whales, who I suspect have their systems in place already Smiley)
copper member
Activity: 1330
Merit: 899
🖤😏
Wait a minute, allow me to analyze this saying: "Your Private Key, Your Coins" So if you got the chance to get any private key of any address that has funds, you are it's owner." Unquote.

Are we talking about this particular puzzle addresses or in general? If it's in general, then one might say : " if you get a chance to find a woman alone, you can have her anyway you like"  what if that woman is your wife, sister, daughter  or mother?

So no, if you find any keys with funds, unless it's a puzzle key, you should not touch them because they're not yours, so hands off the merch.😉

When you find a puzzle key, you better erase yourself from online world and gradually cash out without using any CEX, if you were "lucky" ( yeah, right ) and by chance you found it, better to explain how you found it and be sure to have a good story to tell.  Then again, gradually cash out and enjoy,  IRS wasn't lucky, you were, therefore you deserve it all.



Anyways, you should seek legal advice from experts, in here we only see golden coins where ever we look, so we are in a sense mesmerized by medusa, or rather by a gold hoarding dragon.
newbie
Activity: 6
Merit: 5

I'll keep it short and clear.

"Your Private Key, Your Coins" So if you got the chance to get any private key of any address that has funds, you are it's owner.

No. This may be true for keeping the coins for your grandkids. But people usually want to use them to buy real stuff, like houses or cars. Saying “my keys, my coins” when someone asks where your $2 million is from? That just sounds silly.

Also, this idea that having a key means ownership has its limits. If I steal someone's key, does that make it legally mine? Definitely not. This argument doesn’t hold up in the real world; it only proves a cryptographic relationship and virtual proof of access.
member
Activity: 177
Merit: 14
I may be lacking some understanding on this matter—can anyone clarify? Let's hypothetically say someone has the ‘luck’ or the means to resolve these puzzles and acquire the BTC. Is this presumed to be legal, and if so, to what extent?


I'll keep it short and clear.

"Your Private Key, Your Coins" So if you got the chance to get any private key of any address that has funds, you are it's owner.
newbie
Activity: 6
Merit: 5
I may be lacking some understanding on this matter—can anyone clarify? Let's hypothetically say someone has the ‘luck’ or the means to resolve these puzzles and acquire the BTC. Is this presumed to be legal, and if so, to what extent? Suppose the fortunate individual or team decides to convert it to fiat. How feasible is this, practically speaking? Is selling the BTC to platforms like Coinbase and then transferring to your bank a viable option? I don't think we can realistically expect that BOA, Wells Fargo, etc will overlook a client suddenly receiving hundreds of thousands, or even millions, of dollars... And there’s the potential of platforms like Coinbase restricting high-value transfers. This might work for smaller amounts, but some of these addresses are worth hundreds of thousands of dollars each.

Returning to the legal bit, how does one justify these funds? Informing the IRS that it was a giveaway from a random forum user is bound to raise eyebrows, right?

I'm not intending to discourage anyone; I'm genuinely curious about how such a substantial BTC to fiat exchange would occur without legal repercussions...





copper member
Activity: 1330
Merit: 899
🖤😏
Oh look, I'm back here again with useless stuff,
Code:
from sympy import mod_inverse

N = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141

def ters(scalar, target):
    k = mod_inverse(2, N)
    scalar_bin = bin(scalar)[2:]
    for i in range(len(scalar_bin)):
        if scalar_bin[i] == '0':
            result = (target * k) % N
        else:
            result = ((target * k) % N + N - 57896044618658097711785492504343953926418782139537452191302581570759080747169 ) % N
        target = result
    return result

target1 = 1361129467683753853853498429727072845824
target2 = 961437616415839130310402076835011931977

print("Target results:")
for x in range(1, 256):
    result1 = ters(x, target1)
    print(f"T1: {result1:x}")
for x in range(1, 256):
    result2 = ters(x, target2)
    print(f"T2: {result2:x}")
for x in range(1, 256):
    result1 = ters(x, target1)
    result2 = ters(x, target2)
    subtraction = (result1  - result2) % N
    print(f"S: {subtraction:x}")

Lets imagine target 2 T2, is puzzle 130, target 1 T1 is obviously a known k, after running the script look at T2 results, then change N+N - "this value needs to be tweaked", and then look at the results, T2 and S results, change the range from 1, 256 to whatever you want, add 1 to target 1 then run, try subtracting what ever you have been subtracting from the real 130 so far, from T2 and put both of them on target 1 and 2, try having the greater key on t1 and smaller on t2 and vice versa, try and test everything you can think of, you can also try several test keys as if they are puzzle 130, try different keys, odd, even, prime, composite.


When you are done, I will give you a script to do this with points, or you could convert it yourself if you know python.😉
member
Activity: 177
Merit: 14
I think the puzzle creator should reveal the public keys for all the keys bigger than 120bit except 124, 134, 144, 154, this will make the challenge reflect the true strength of bitcoin security.

No i dont support that.

I don't support that, because if satoshi reveals public key for the lowered bits, the same guy who solved #120 #125, will also solve them and take the money for himself and leave us nothing but a air to eat.

And why except 124, 134, 144, 154?
jr. member
Activity: 37
Merit: 7
I think the puzzle creator should reveal the public keys for all the keys bigger than 120bit except 124, 134, 144, 154, this will make the challenge reflect the true strength of bitcoin security.
newbie
Activity: 5
Merit: 0
and i wonder how is that possible without knowing the private key from the beginning ??

All those address can be derived from the RMD hash of the address, example:

Address 13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so decoded in to Hexadecimal is:

0020d45a6a762535700ce9e0b216e31994335db8a5ee6612b2

But first byte for btc address is alway 00 and last 4 bytes are te checksum: ee6612b2

So the Real hash160 of the address 20d45a6a762535700ce9e0b216e31994335db8a5

Example with Dogecoin is almost the same, address D88gYxMEoumtZSJAC9mwa2EWfm6g3uocon

Decodes is 1e20d45a6a762535700ce9e0b216e31994335db8a50d861875

1e is the prefix for Doge, the checksum are the last 4 bytes: 0d861875

So the Real hash160 of the address 20d45a6a762535700ce9e0b216e31994335db8a5

So for almost all altcoin you only need the original rmd160 hash check the next image:

https://www.talkimg.com/images/2023/09/17/6kpfl.png

I recommend you to read Chapter 4. Keys, Addresses, Wallets





Dear albert0bsd You are always the King Of Crypto Knowledge  Smiley
copper member
Activity: 1330
Merit: 899
🖤😏
i wonder about privatekeys website

when i check for any addresss , i get the same addresses from different networks bitcoin gold , bitcoin cash ,,,etc
that has the same private key Huh?

and i wonder how is that possible without knowing the private key from the beginning ??
Never use such websites to search for your address/private keys, they will log and then will take any coin deposited to your address in the future.
Whoever holds the private key for puzzle 66, can spend all those garbage coins as well. You can even fork bitcoin and send millions of useless and worthless coins to that address.

Anyways, as long as a crypto coin is using secp256k1 curve to generate their private keys, all keys can spend from other coins which are using the same curve.

Ps, welcome Dr.😉
hero member
Activity: 828
Merit: 657
and i wonder how is that possible without knowing the private key from the beginning ??

All those address can be derived from the RMD hash of the address, example:

Address 13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so decoded in to Hexadecimal is:

0020d45a6a762535700ce9e0b216e31994335db8a5ee6612b2

But first byte for btc address is alway 00 and last 4 bytes are te checksum: ee6612b2

So the Real hash160 of the address 20d45a6a762535700ce9e0b216e31994335db8a5

Example with Dogecoin is almost the same, address D88gYxMEoumtZSJAC9mwa2EWfm6g3uocon

Decodes is 1e20d45a6a762535700ce9e0b216e31994335db8a50d861875

1e is the prefix for Doge, the checksum are the last 4 bytes: 0d861875

So the Real hash160 of the address 20d45a6a762535700ce9e0b216e31994335db8a5

So for almost all altcoin you only need the original rmd160 hash check the next image:



I recommend you to read Chapter 4. Keys, Addresses, Wallets



newbie
Activity: 5
Merit: 0
i wonder about privatekeys website

when i check for any addresss , i get the same addresses from different networks bitcoin gold , bitcoin cash ,,,etc
that has the same private key Huh?

and i wonder how is that possible without knowing the private key from the beginning ??

lets say for puzzle 66
13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so

Addresses with the same Private Key :

Bitcoin:
bc1qyr2956nky56hqr8fuzepdccejse4mw994lyftn
 0  0  0
Bitcoin Testnet:
miWYJkVaKXJroYbBB8kkrBHEecy5dxNKJP
 0.15650667  0.15650667  15
tb1qyr2956nky56hqr8fuzepdccejse4mw99lel6sq
 0.07957129  0.07957129  15
Bitcoin Cash:
qqsdgkn2wcjn2uqva8sty9hrrx2rxhdc55qw0jqhdh
 0.69
Bitcoin SV:
13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so
Bitcoin Gold:
GLqWRpjYVMUu6uQrPWSVT2QohoADou8QwG
 0.66  0.66  2
btg1qyr2956nky56hqr8fuzepdccejse4mw99rkzv7m
Litecoin:
LNDYGuiRbA7fHEoidhmgJH8fzqjeseATsU
 0  0  0
ltc1qyr2956nky56hqr8fuzepdccejse4mw993r7dnr
 0  0  0
Dogecoin:
D88gYxMEoumtZSJAC9mwa2EWfm6g3uocon
 25.60472599  25.60472599  9
Dash:
XdgRqx4VUD6CBNi9KT6bsnkhcxx4pyNnFr
 0  0  0
Zcash:
t1LsC22pjUpfCd5ATPzbWA5Aq3HZTZXJWuS
Clams:
xBJDuaF4nDMe4pDRp3R3TSMh1jfcBnESxx
 0  0  0
newbie
Activity: 4
Merit: 0

Thanks for the feedback
but no one was able to answer it
I'm looking for puplicKey not privKey
yes it is vanitySearch
but not the normal one
https://github.com/bojlahg/VanitySearchPublicKey

this allows you pupkeySearch
in a specific range
newbie
Activity: 4
Merit: 0
no the gpu find nothing only if i search with cpu can i find keys

-t 30  1000mk/s finds key after 10 sek
-gpu 10000mk/s find nothing after 1 hours

i thing the gpu engine is wrong or so
im search on rtx 4060

if i use bitcrack for searching i can search only on gpu and find keys
-gpu -t 0

you are using the wrong software if you are looking for the puzzle, thats a vanity search and there is no range search, , try vanbitcracken and put your range to search
https://github.com/WanderingPhilosopher/VanBitCrackenRandom2

Hi, need to find private key for bitcoin wallet. Part of this key is 35 characters, I know how to find other characters, is there a program for sorting characters with an indication of mandatory ones.
I would appreciate a tip on the bitcoin part
jr. member
Activity: 50
Merit: 1
no the gpu find nothing only if i search with cpu can i find keys

-t 30  1000mk/s finds key after 10 sek
-gpu 10000mk/s find nothing after 1 hours

i thing the gpu engine is wrong or so
im search on rtx 4060

if i use bitcrack for searching i can search only on gpu and find keys
-gpu -t 0

you are using the wrong software if you are looking for the puzzle, thats a vanity search and there is no range search, , try vanbitcracken and put your range to search
https://github.com/WanderingPhilosopher/VanBitCrackenRandom2
newbie
Activity: 4
Merit: 0
no the gpu find nothing only if i search with cpu can i find keys

-t 30  1000mk/s finds key after 10 sek
-gpu 10000mk/s find nothing after 1 hours

i thing the gpu engine is wrong or so
im search on rtx 4060

if i use bitcrack for searching i can search only on gpu and find keys
-gpu -t 0
jr. member
Activity: 50
Merit: 1
Hello, I'm new here and have a question about

bojlahg/VanitySearchPublicKey.

if I search there I find only keys with use cpu
-gpu is displayed but does not find any keys
for example:

VanitySearchPK.exe -t 0 -gpu -sk 2000000000000000000000000000000000 -p 633cbe Find no keys but 5000mk/s            (0keys) 1 minute

VanitySearchPK.exe -t 1 -gpu -sk 2000000000000000000000000000000000 -p 633cbe find keys with 5600mk/s very bad (25keys) 1 minute

VanitySearchPK.exe -t 32 -sk 200000000000000000000000000000000 -p 633cbe find keys good but 1000mk/s                (200keys)1 minute

I believe that the program recognizes the GPU
but the gpu performance does nothing

can any help for this

I can't fix this  but I would be happy if someone who can do it would contact me.


it does actually, 8 core cpu searching 10 million key per seconde, you are searching with 5000 million key per seconde thats your gpu performence, so dont worry gpu search is working
newbie
Activity: 4
Merit: 0
Hello, I'm new here and have a question about

bojlahg/VanitySearchPublicKey.

if I search there I find only keys with use cpu
-gpu is displayed but does not find any keys
for example:

VanitySearchPK.exe -t 0 -gpu -sk 2000000000000000000000000000000000 -p 633cbe Find no keys but 5000mk/s            (0keys) 1 minute

VanitySearchPK.exe -t 1 -gpu -sk 2000000000000000000000000000000000 -p 633cbe find keys with 5600mk/s very bad (25keys) 1 minute

VanitySearchPK.exe -t 32 -sk 200000000000000000000000000000000 -p 633cbe find keys good but 1000mk/s                (200keys)1 minute

I believe that the program recognizes the GPU
but the gpu performance does nothing

can any help for this

I can't fix this  but I would be happy if someone who can do it would contact me.
Pages:
Jump to: