Search content
Sort by

Showing 20 of 163 results by Bajula
Post
Topic
Board Mining (Altcoins)
Re: PhoenixMiner 5.7b: fastest Ethereum/Ethash miner with lowest devfee (Win/Linux)
by
Bajula
on 13/10/2021, 08:42:08 UTC
The  new  version  is  finally  ready.  You  can  download  PhoenixMiner  5.8a  from  here:

PhoenixMiner_5.8a_Windows.zip Github
PhoenixMiner_5.8a_Linux.tar.gz Github


Changes in version 5.8a :
  • LHR disable mode -lhrdis <n>  1 - yes (default), 0 - no
  • Added lock core clock
  • Fixed an issue causing crashing with some RTX 3060/3080/3090 cards
  • Implemented new "turbo" kernels (-clkernel 3) for AMD Polaris cards that can work with the current DAG sizes over 4 GB. Note that -clkernel 3 uses double the VRAM and will
    provide slightly faster hashrate with slightly higher power consumption. You can use the -rvram command-line parameter to specify how much VRAM to be left unused
  • Increased the maximum supported DAG epoch to 600 (i.e. until about Sep 2023)
  • Implemented full hardware control for AMD RX6900/6800/6700 cards under Linux. Note that with these cards under Linux you need to specify relative core voltage: e.g. -
    cclock -50 will set the core voltage to be 50 mV under the default value
  • Added ROCr kernels for Vega, Radeon VII and Navi cards. With these kernels you will be able to run these cards with Linux drivers 20.45 and later but the performance will
    be lower than with the older PAL drivers and kernels. We recommend using AMD Linux driver 20.30 for all cards except RX6900/6800/6700
  • Fixed an issue causing crashing with some RX6900/6800/6700 cards under Linux (there is no need to run these cards with -clkernel 0 anymore)
  • Added support for AMD Windows drivers up to 21.8.1. Note that Radeon VII cards will not work with drivers 21.6.1 or higher - you need to use older drivers for proper
    operation of these cards
  • Added support for AMD Linux drivers up to 21.20 (use older drivers for Vega or Radeon VII cards as they will not work with 21.20). Note that the latest 21.30 drivers are
    not supported (and the initial testing shows that even the older Polars cards are not working properly with them, so avoid 21.30 for now)
  • Numerous other fixes and small improvements

Please let us know if you have any problems or questions related to PhoenixMiner 5.8a
Post
Topic
Board Bitcoin Discussion
Re: == Bitcoin challenge transaction: ~100 BTC total bounty to solvers! ==UPDATED==
by
Bajula
on 22/01/2020, 23:12:52 UTC
While not part of the puzzle, but having a bit to do with why it was created in the first place.. an interesting exercise  no reward other than knowledge though I'll probably put a pi with a randomizied python script on it. finding a collision for the first two in the puzzle and see how far apart they are, might give a "clearer view" of the curve if that makes any sense. - Though that would probably end up being harder than finding #160 - Still, worth thinking about.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin challenge transaction: ~100 BTC total bounty to solvers!
by
Bajula
on 31/07/2019, 22:01:52 UTC
After a night of searching the answer to the question bothering me (and not finding the answer), I can get the answer here ... The issue concerns the address 105 which has outgoing transactions and to which I know the pub (in HEX). How should I convert it to a string consisting ONLY OF NUMBERS .... From these patterns my head is already breaking and the level of knowledge in this direction has not changed. He understands that this is the index value 'x' or 'y', that for these addresses we have only 'y' because it's compressed, etc., but where do the DEC values ​​come from in various Python scripts? Guest gives to try to find a value in the range of 2 ^ 20, giving me the index value 'y' consisting of 155 digits ...
I tried to transform it in a different way and I have no chance to approach this number ... it does not even occur to me what can be converted 33-character hex string being a compressed publickey to give it 155 digits being ... well, ... what other than the index? :-)
I apologize in advance for a vague description, but as I mentioned at the beginning ... the whole night does its job. Greetings!


https://iancoleman.io/bitcoin-key-compression/

or

Code:
import bitcoin as b
pubkey = b.decode_pubkey("03bcf7ce887ffca5e62c9cabbdb7ffa71dc183c52c04ff4ee5ee82e0c55c39d77b")
print("X:", hex(pubkey[0]), "Y:", hex(pubkey[1]))


Hehe It never even crossed my mind to import bitcoin - Smiley much better!
Post
Topic
Board Bitcoin Discussion
Merits 5 from 1 user
Re: Bitcoin challenge transaction: ~100 BTC total bounty to solvers!
by
Bajula
on 31/07/2019, 11:59:29 UTC
⭐ Merited by BurtW (5)
After a night of searching the answer to the question bothering me (and not finding the answer), I can get the answer here ... The issue concerns the address 105 which has outgoing transactions and to which I know the pub (in HEX). How should I convert it to a string consisting ONLY OF NUMBERS .... From these patterns my head is already breaking and the level of knowledge in this direction has not changed. He understands that this is the index value 'x' or 'y', that for these addresses we have only 'y' because it's compressed, etc., but where do the DEC values ​​come from in various Python scripts? Guest gives to try to find a value in the range of 2 ^ 20, giving me the index value 'y' consisting of 155 digits ...
I tried to transform it in a different way and I have no chance to approach this number ... it does not even occur to me what can be converted 33-character hex string being a compressed publickey to give it 155 digits being ... well, ... what other than the index? :-)
I apologize in advance for a vague description, but as I mentioned at the beginning ... the whole night does its job. Greetings!

a python script to turn compressed into umcompressed pubkey


Code:

def pow_mod(x, y, z):
    "Calculate (x ** y) % z efficiently."
    number = 1
    while y:
        if y & 1:
            number = number * x % z
        y >>= 1
        x = x * x % z
    return number

p = 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f
compressed_key = 'INSERT COMPRESSED PUBKEY HERE'
y_parity = int(compressed_key[:2]) - 2
x = int(compressed_key[2:], 16)
a = (pow_mod(x, 3, p) + 7) % p
y = pow_mod(a, (p+1)//4, p)
if y % 2 != y_parity:
    y = -y % p
uncompressed_key = '04{:x}{:x}'.format(x, y)
print(uncompressed_key)


Then converting to dec should be no biggie in python
blah=0xwhatever (x co-ord, then y maybe?)
print (blah)

Now you have the numbers put them in whatever program in whatever language you are working with..
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 11/07/2019, 01:40:41 UTC
It very well could be 3 different people that have solved the last few keys.


@Bajula what would you do if you would find the 70-bit key? I tell you what I would do, I would change it to fiat and enjoy the money. But our winner of 70bit key moved the funds to other address and the satoshi are still there from 9 of June and is not the only one.

I still believe that this puzzle has a higher goal. And the goal is not to give 32BTC to the people like you, me or other, some crumbs here and there maybe to make the puzzle legit and to make the enthusiasts still searching for solutions.


Admittedly, I would totally throw it into fiat and pay off my wife's car, that being said there are a few potential reasons the btc hasn't moved. Paranoia, a btc mixer that hasn't drawn on it yet,  a few exchanges work in funny ways, hashnest (not sure if they still do this) used to do strange things with btc you sent to it.. (as in you have a spendable balance in hashnest, but the btc is actually just sitting in the address) probably a handful of other possibilities that aren't nefarious. - now THAT being said. I have a tendency to look at people with an anti-shady filter in my rose-colored glasses. (I try to look for ways to NOT see the worst in people) I've been wrong, but less often than you'd think: for the natural skeptic's justification: when I am wrong it's like a physical blow to whatever my "soul" might be.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 10/07/2019, 17:01:56 UTC
It very well could be 3 different people that have solved the last few keys.

Bitcoin isn't worth $3000 anymore like it was at the beginning of the year. Its almost $13K so the person who found the 1 BTC made alot of money.

Most people who visit this thread could be lurkers and they can have more knowledge than us and hardware. So there could be about a dozen or so people who are trying to find the remaining private keys. Its definitely worth the time.



Or could be that those who found the private keys are individuals in the same group with the owner of the puzzle.
I'll believe something else when I will find one of the private keys and I will be able to spend it.

This is possibly the silliest thing I have read today. - if the owner decided to take the btc it would all already be gone. if he (guessing but the odds are 'he') wanted his friends to have it... same.. poof.. gone...  - the something that you believe (still not sure what that is btw- but a guess is to follow) that you will believe differently when you find a private key etc... I'm guessing is some sort of strange conspiracy where a guy takes a hundred billfolds with money in them, hides them all over the place and goes "find them" but secretly tells his friends where they are.. umm a) - why not just hand over some bills to your pal bob? b) why... like why the whole thing at all?  c) if that was the case, owner/friends would go get the 1.6 immediately.   -as a sidenote, but only slightly to the side... somewhere the owner spoke up and was talking about it being a way to encourage people to see what they can do towards figuring out ways around the cryptography, thus proving/disproving the "safety" of your coins. As we have seen, so long as you didn't use reaaaaally low entropy keys, and so long as you don't reuse an address you are fairly okay (so far) but keep using the same address and you are asking for trouble... maybe not fast trouble.. but trouble none-the-less. (It is my personal belief that the move revealing the pubkeys was prompted by all the talk about programs to get the private key from public and he was like "well hey let's see what they can really do here..." (otherwise why skip by five...) Now if you want a plausible conspiracy - which doesn't really take away from the "puzzle" so much as show a human side to things.. let's say bob creates puzzle when btc is cheap as dirt.. time goes on.. btc gets really up there.. bob has a hospital bill/car trouble/baby on the way etc.. whatever... people are popping off with prv key from pub, he needs a little something... but more than .62 so move.. and grab the first one.. still giving others a shot  (This imho is still VERY unlikely.. 'cause as we know he already has all the keys.. could take whenever he likes. so really he could have just snagged it all and walked away if he needed cash, so he really wants people to strive for better/shorter ways or similar to the lbc show exactly how hard this would be to do... the harder it is btw the more acceptable it is to joe public even though they will never REALLY understand that it is ALREADY harder even with low entropy to get a priv key than it is to get into their bank account - or their atm pin which is likely to be a family member's b-day anniversary or some foolish stuff like that.)
There is my 5 satoshi. Smiley inflation yo.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 01/07/2019, 16:40:41 UTC
#90 just moved.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 22/06/2019, 22:13:26 UTC
Just for a fun little "thing" : for those frustrated by how long this takes.. someone could sort out how long it would take with a gpu and bitcrack and now it suddenly looks like a month is no big deal. Smiley
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 22/06/2019, 10:10:51 UTC
define  MEM_SIZE    31

Segmentation fault
your PC memory is not enough
try:
#define  MEM_SIZE    30

What would be MEM_SIZE values for using 128/256/512 GB of ram?


32/33/34 (read back a bit each increase doubles the memory requirement)
and as we have seen if the 512 does not have 512 of actual usable ram you need to go down one
(i.e. if it really has say 500 available then 33 it is.. but will only use 256gb)
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 21/06/2019, 19:41:35 UTC
define  MEM_SIZE    31

Segmentation fault
your PC memory is not enough
try:
#define  MEM_SIZE    30
64 (62.8)GB and plus 8GB swap.

Think that through a moment.

-bad analogy but close enough-
A: my backpack won't hold this.
B: try this (insert advice)...
A: Nah man I got a 64# backpack (which holds 62.8#) plus a fanny pack that holds 8# (why can't I put this 64# block in my backpack?!?!)

C: "Try the advice."


Just as an aside the reason my "8gb" doesn't do gstep 28 (using uint64 on hash entries) is apparently a built in video card is sharing some memory so it has 7.something gb so I can only go to 27 gstep.  - have an 8gb swap as well - the comp just looks at me and says explative please.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 12/06/2019, 02:57:35 UTC
Since I don't have the resources to hope to compete here and everyone else is likely frantically converting pubkeys into byte arrays and re-writing thier stuff... Smiley  So anyway the breakshort program uses the baby step giant step algo and the public key  ( https://en.wikipedia.org/wiki/Baby-step_giant-step ) to basically cut the searching down to the squareroot  but it is ram intensive (like build a hashtable that can hold 2^80 and it can then search 2^160 and that is VERY cool, BUT the sheer ram needed to do something like that doesn't exist at the moment. ) say you have 8gb ram you can do maybe* 2^27 in the hashtable which seems to search "about" 2^55 keyspace - in a freakishly short amount of time. Kinda awesome right? say you wanna do 2^28 hashtable.. now you just doubled memory requirements. 
* maybe is because of certain variables.. like the breakshort program as is, you can in theory do 2^29? (i think) with 8gb but with unint32_t you have potential for false collisions - and on my comp for some reason while 2^28 "should" work fine - 2^27 takes 52% mem so if I try 2^28 it starts using the swap file and SIGNIFICANTLY slowing it down. you figure that 4% wouldn't be THAT big a deal but it is the difference between driving a car a mile vs riding a skateboard a mile and a half.  All over this thread is all kinds of info that is far more informative than I'm being - look around, have fun with it. (seriously I started out as "What?!?! free bitcoin!!! and then got sucked into teaching myself C (With quite a bit of help - you know who you are and thank you again) At my age this is kind of a "thing" - and going from not having a clue what an elliptic curve is to being fascinated by cryptography (well okay that whole journey started in 2012? 13? when my son first said the word bitcoin and I was like "Huh?" ) -:) anyway go back as many pages as you need to and happy hunting.

arulbero
It seems that someone is doing something very odd here. the above recent transaction https://www.blockchain.com/de/btc/tx/17e4e323cfbc68d7f0071cad09364e8193eedf8fefbcbd8a21b4b65717a4b3d3
~
Who else other than puzzle owner can spend from theses wallets??
I think that's the reason he can find #65 private key, exposed public key makes it easier  
@arulbero can you tell us how you found it? details on how you used baby-step giant-step algorithm

I think that beyond #85 it will be very difficult to recover the private key, even with 1 TB of RAM (with the Baby-Giant Step algorithm).

With my 32 GB finding the #70 is already a hard task.

But there are other algorithms more suitable that don't need so much ram.
I don't understand thoroughly the algorithm Embarrassed
can you explain in short why the size of RAM matters in this algorithm?
I thought it just generates privkey hex sequentially, finds corresponding pubkey and compares it to target pubkey
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 10/06/2019, 19:16:19 UTC
well waddn't me *sigh* I have been "working ahead" because of lack of hardware, but alot of randomness and set spaced skipping is what I'm doing with some raspberry pi's ...figured hey... they don't use that much electricity right? but looks like some others are doing the same so going to go with pure random per keyspace since I don't have any chance otherwise(anyways? hehe) maybe the old irish luck will kick in for me here. Smiley
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 08/06/2019, 19:56:12 UTC
Much further back he talked about how the prog (in your link) uses uint32_t which has a significant chance of causing false positives. to get 65 you'd have to be able to do at least 1<<32.  if you do uint64_t (the hashtable wil take up more memory) but you won't get the false positives.




01 0000000000000000000000000000000000000000000000000000000000000001 1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH
02 0000000000000000000000000000000000000000000000000000000000000003 1CUNEBjYrCn2y1SdiUMohaKUi4wpP326Lb
03 0000000000000000000000000000000000000000000000000000000000000007 19ZewH8Kk1PDbSNdJ97FP4EiCjTRaZMZQA
....
60 0000000000000000000000000000000000000000000000000fc07a1825367bbe  1Kn5h2qpgw9mWE5jKpk8PP4qvvJ1QVy8su
61 00000000000000000000000000000000000000000000000013C96A3742F64906 1AVJKwzs9AskraJLGHAZPiaZcrpDr1U6AB

65 000000000000000000000000000000000000000000000001a838b13505b26867 18ZMbwUFLMHoZBbfpCjUJQTCMCbktshgpe 


Code:
Private key : 000000000000000000000000000000000000000000000001a838b13505b26867
Public key  : 30210c23b1a047bc9bdbb13448e67deddc108946de6de639bcc75d47c0216b1b e383c4a8ed4fac77c0d2ad737d8499a362f483f8fe39d1e86aaed578a9455dfc

PrKey WIF c.: KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qZM21gaY8WN2CdwnTG57
Address c.  : 52e763a7ddc1aa4fa811578c491c1bc7fd570137
Address c.  : 18ZMbwUFLMHoZBbfpCjUJQTCMCbktshgpe

Thanks
How long did it take and how much mem does it require ...
 
#define GSTEP (1<<29)

is enough or more is needed?


I've just looked back at your previous posts and found out that you have your own code that you are not willing to share Smiley ...
I was just wondering if it can be done with this code ? :
https://gist.github.com/jhoenicke/2e39b3c6c49b1d7b216b8626197e4b89

I tried this

#define GSTEP (1<<28)
#define NUMPUBKEYS 1
unsigned char rawpubkeys[NUMPUBKEYS][33] = {
    {
0x02,0x30,0x21,0x0c,0x23,0xb1,0xa0,0x47,0xbc,0x9b,0xdb,0xb1,0x34,0x48,0xe6,0x7d,0xed,0xdc,0x10,0x89,0x46,0xde,0x6d,0xe6,0x39,0xbc,0xc7,0x5d,0x47,0xc0,0x21,0x6b,0x1b
    } /* 65 */
   };

And got this Huh
Found private key  1:  28e6c7bff92dbd1 or  28e6c7c006d242f
obviously wrong




Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 05/03/2019, 22:58:10 UTC
For the lazy:

https://bitcointalk.org/index.php?topic=1306983.240
scroll down a bit where a guy says he did the transaction, and they were right no point it going all the way to 256 so he is going to shift it
to 2^160 and up the amounts in the remaining ones. - So A) if the guy is cool with it.. why do you have to think it is something nefarious?
B) if the guy moved it (and yes it was moved like he said.. you can look and see in the blockchain. C) umm the obvious one.. anyone able to move it like that could remove it.. which means he WANTS it this way... no not technically a "puzzle", but the addresses we are working on the guy could take it all out if he wanted to... the original poster is not the guy who made the transaction but the creator is cool with this .... can we move on now?





While playing around with my bot, I found out this mysterious transaction:
[...]
The prize would be ~32 BTC Smiley

EDIT: If you find the solution feel free to leave a tip Smiley 1DPUhjHvd2K4ZkycVHEJiN6wba79j5V1u3
Started to anaylize this, but figured out its not actually a puzzle at all. Its attempt to steal of this funds right? There is no official puzzle by owner of this addresses? By what you saying i think there is no consent here.
From what i see you guys have fun, but it shouldn't be allowed at all Tongue

You are right mate, their is no statement about the address owner to have a contest in that address. Its looks like they hacking that account rather than a contest. Well they are having fun and we can see that Bitcoin address are really that strong to crack. The OP started this 4years ago and too many people try to crack the address but no one did it yet for so long.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 01/03/2019, 02:11:49 UTC
Hello does anyone have a complete list of the taken addresses and it's corresponding private keys? from 1-60? Thank you

scroll back a bit and you can get most of them.. I think page 24? then move forward from there and you should have them all soon enough.. once you get used to skimming for the way they are posting the private keys you can do it in short order.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 22/02/2019, 22:13:54 UTC


1 target =  86 Mkey/s  -b 108 -t 256 -p 1024
45000 targets = 90 Mkeys/s  -b 72 -t 256 -p 1024

I already started my project.

bc.exe -d 1 --keyspace 000000000000000 -o ohmygodimrich.txt -b 72 -t 256 -p 1024 1FeexV6bAHb8ybZjqQMjJrcCrHGW9sb6uF

LOL   Grin Grin Grin

you are awesome!
thank you so much guys!!!


Very good! Good luck!
You have to be lucky256 to hit an address in 256 bit range.


If you don't mind, I'm going to totally steal that and use it in conversation -  lucky256
I'm still snickering over that.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 20/02/2019, 15:42:02 UTC
These addresses could be just random addresses created by the bot who seem to have been programmed by somebody knowledgeable about bitcoin to send to other addresses. This could have been done for recreation or for some purpose like safe keeping the coins from hackers. We will never know until one person will come in and say I have done this! Anyway thank you for your post.

look around, and perhaps read through earlier portions of the thread, the creator of the puzzle did in fact come out and specified the why, and how of it (explaining about the 2^increasing) in fact when it was pointed out to him about anything beyond 2^160 was pointless he then moved the btc from those higher addresses into the remaining lower ones. The important point here is that A) this person MUST be the creator of the puzzle since how else could he have moved the btc? B) He WANTS people to find it.. else it would be removed. - The reasoning if I remember correctly was more mostly about  encouraging people to delve into the crypto part of it all. and maybe a little bit of "let's just see."
Use a search your engines luke.. the google flows strong within you.. use the google (or you know.. something like that.)
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 13/02/2019, 22:16:22 UTC
I notice that the puzzle address also has BCH in it. How is it possible to swipe the BCH? is the BTC private key same as that of the BCH? How can one get the BCH pk?
Someone can help me with answers.....Thanks.

Thanks for commenting Cheesy Now the person who claimed the prize will make sure to swipe the bch too before revealing the private key here!

Whats the range for the 60th address? Need to upgrade my blind monk script


(DEC) 576460752303423488-1152921504606846976

Thanks! Isn't that a bit shorter than the one before I think? Shouldn't it be 800000000000000-1FFFFFFFFFFFFFFFF instead of 1000000000000000?

in hex 10 = 16 8=8 - if it will make you feel better you could do 0800000000000000- 0FFFFFFFFFFFFFFF which would be 1 shy of the whole range and I can pretty much guarantee it would not be in that last one. (I have pretty good odds there eh? hehe)
Post
Topic
Board Bitcoin Discussion
Merits 1 from 1 user
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 12/02/2019, 16:27:15 UTC
⭐ Merited by KingZee (1)
Whats the range for the 60th address? Need to upgrade my blind monk script


(DEC) 576460752303423488-1152921504606846976
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Bajula
on 26/01/2019, 22:39:50 UTC
Has anyone been accepted on the Puzzle Hunter Pool telegram??

Would probably join the pool if cpu's are okay - no nifty vid cards but a pile of old comps just sitting around, pi's etc..  but avoided it because i don't feel like downloading one more program to like telegram. Smiley partly just ugh, at the thought, partly too many other things going on.