Search content
Sort by

Showing 6 of 6 results by Fllear
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Fllear
on 25/04/2025, 17:52:13 UTC
Hello all key hunters,

For those interested, I just released KeyQuest V1 on GitHub. It's a random or hybrid Bruteforce created from Cyclone's idea and using some of its optimized includes. If you enjoy working with prefixes like me, then this will be perfect for you.

More info at https://github.com/Benjade/KeyQuest

Happy hunting!

Your code is created exclusively for unix, for most people using windows systems, compilation and the program itself will not work.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Fllear
on 29/05/2024, 17:06:53 UTC
...

I think you fall for some programs that you've seen which were generating huge amounts of keys per second,
and you think this is possible,
but they were fake.

I know how and what is generated. I need this for my experiment, but at this rate it's a perversion. And my hardware is quite powerful, 72 cores and 128GB of RAM. The same keyhunt, when brute force, produces 350 million keys at maximum load. But I need exactly this algorithm, hex separately from the public key. So that when I found a public key from the list, I knew its hex.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Fllear
on 29/05/2024, 14:53:08 UTC
Tell me, is there a quick python code for generating a hex private key in the required range? So that the result is saved in a text file. Well, then maybe there is a script to create a public key from this text file, also with saving. I just found some, but they are very slow, they generate 100 million hex per day, as well as public keys.

I searched and couldn't find anything in C++. The computer is capable of generating at least 100 million keys per second. But all the scripts I found are very slow. You just need the hex to be in a separate file and the public keys to be in a separate file. Thank you very much in advance if anyone decides to help.
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
Fllear
on 03/05/2024, 15:21:27 UTC
I have a question. Maybe someone will help.
How to do it like this.
Let's say the decimal is generated using multiplication. For example, multiply 10 by 2, we get 20 and convert it into a hex, and then into a public key and compare the resulting key with the one we are looking for. For example, you need to set 10 and the number needs to be multiplied from 1 to 10000 and then checked.
So is it possible to implement the script?
Post
Topic
Board Майнеры
Re: Как сгенерировать 150 000 000 адресов в кошельке
by
Fllear
on 08/01/2020, 20:23:23 UTC
Если поставить комиссию больше чем сайт, то сработает твоя транзакция
Наивность. Ты просто даже не узнаешь ,что на данной странице был ключ с битками.
Написаный скрипт автоматически подменит информацию.
Post
Topic
Board Кодеры
Topic OP
Пофиксить скрипт генерации и проверки
by
Fllear
on 18/12/2019, 07:20:00 UTC
Нашел вот в инете хороший скрипт для преобразования фраз в ключи и проверки их баланса.
Мне именно такой и нужен, что-бы каждую строку в моем файле он генерировал в ключ и проверял баланс.
многие что попадались, либо рандом всех строк и делали либо без проверки.
Cкрипт запускаю на windows, установлен Perl с необходимыми модулями и Python 2.7, но проблема в том, что возникает ошибка в работе,
и судя по ошибке мне кажется что дело либо в неправильном Python, либо Perl не до концы обрабатывает.
 В итоге следующие ошибки валятся на binascii.

Code:
Argument "63817377318837108703037619166999229600686146013463616320..." isn't numeric in addition (+) at C:/Strawberry/perl/lib/Math/BigRat.pm line 1955.
Traceback (most recent call last):
Traceback (most recent call last):
  File "keyfmt.py", line 63, in
  File "keyfmt.py", line 63, in
        chksum = binascii.hexlify(hashlib.sha256(hashlib.sha256(binascii.unhexlify('80'+line)).digest()).digest()[:4])
chksum = binascii.hexlify(hashlib.sha256(hashlib.sha256(binascii.unhexlify('80'+line)).digest()).digest()[:4])
TypeErrorTypeError: : NNon-hexadecimal digit foundon-hexadecimal digit found

Error GETing https://blockexplorer.com/api/addr//totalReceived: Not Found at btc_sweeper.pl line 157.
Error GETing https://blockexplorer.com/api/addr//totalReceived: Not Found at btc_sweeper.pl line 157.
No message received from child process -748!
No message received from child process -8144!
Argument "750/29" isn't numeric in addition (+) at C:/Strawberry/perl/lib/Math/BigRat.pm line 1955.
Use of uninitialized value in concatenation (.) or string at btc_sweeper.pl line 199.

Скрипт находится тут https://github.com/LR2/Bitcoin-Sweeper

Буду очень рад в вашей помощи ))