Search content
Sort by

Showing 20 of 38 results by mahurovihamilo
Post
Topic
Board Project Development
Re: Bitcoin compromised private key list (18526 items right now)
by
mahurovihamilo
on 09/07/2024, 21:44:19 UTC
http://chbs.esy.es/

Q: Is it another implementation of directory.io?
A: No. All these private keys were used by somebody in past.

I do not know what else to explain. Feel free to ask questions here

Unfortunately the site is off line...any ideas if it has moved?

Thanks!
Post
Topic
Board Development & Technical Discussion
Re: overview of key cracking tools for 32BTC puzzle
by
mahurovihamilo
on 18/06/2024, 01:54:11 UTC
Thank you for this list, its awesome!

It brings a question to mind.... I've been wandering whether is it worth investing in a small GPU based mining rig, say 6 or 7 GPUs for the purpose of "cracking scientific research" ..lol

I Found this article that pretty much states you can "link" your python scrypts via numba.jit decorator to move to GPU any parts of your scrypt you want processed in GPU, so in theory you can selectively process some parts in GPUs:

https://www.geeksforgeeks.org/running-python-script-on-gpu/

Therefore, maybe is not a bod idea to invest in a small GPU rig.... what say you?
Post
Topic
Board Development & Technical Discussion
Re: BSGS solver for cuda
by
mahurovihamilo
on 15/06/2024, 19:26:55 UTC
Hi there,

Does anyone  know of a similar implementation to leverage GPU for linux? Thank you!
Post
Topic
Board Development & Technical Discussion
Re: BSGS solver for cuda
by
mahurovihamilo
on 11/06/2024, 01:15:58 UTC
Does anyone knows of a similar implementation for linux? Ubuntu?

Thanks.
Post
Topic
Board Development & Technical Discussion
Re: ripem160 not working in buntu 22...
by
mahurovihamilo
on 28/05/2024, 21:16:44 UTC
yes it does have legacy..but still not working. This is very annoying, since I got Ubuntu18 and it does works well there...


mahuro@WorkStation:~/Desktop$ openssl list -providers
Providers:
  default
    name: OpenSSL Default Provider
    version: 3.0.2
    status: active
  legacy
    name: OpenSSL Legacy Provider
    version: 3.0.2
    status: active

Post
Topic
Board Development & Technical Discussion
Re: Useful targeted data
by
mahurovihamilo
on 27/05/2024, 19:53:53 UTC
Hi Cobras... yes R, but where is better to look for it? spent outs? unspent outputs? all outputs?
Post
Topic
Board Development & Technical Discussion
Re: I REGAINED access to Bitcoins in my made-up brainwallet!
by
mahurovihamilo
on 27/05/2024, 19:50:40 UTC
can you provide the address?
Post
Topic
Board Development & Technical Discussion
Re: Best way or API to fetch UTXOS
by
mahurovihamilo
on 24/05/2024, 22:49:35 UTC
Ok, thank you!
Post
Topic
Board Development & Technical Discussion
Re: Useful targeted data
by
mahurovihamilo
on 24/05/2024, 19:29:27 UTC
So after studying this issue for a wile I have concluded that the best data can come for gathering spent only outputs from TX hashes. Now due to limitations on the amount of data allowed by API operators, and lack of detailed info on flags to only download spent outputs of tXS, I decided to write a script to: first download all transactions, then download all UTXOs separately, then using some grep and sed magick, take out the UTXOs from the all transactions file piping only the spent TXs into a final file...most of it works, just the last step is not quite there by mixing grep and sed. I wander if anyone can offer a suggestion on where I am going wrong with grep and sed?

Please see the code:

#!/bin/bash

# first lets get ALL TXs for address

curl -sSL "https://mempool.space/api/address/1wiz18xYmhRX6xStj2b9t1rwWX4GKUgpv/txs" | jq '.' > alltxs.data

# Lets clean up the data and keep just the TX number:

grep "txid" alltxs.data > allhashes.data  # pass the TX Hash into  allhashes.data
sed -i 's/"txid": "//g' allhashes.data    # remove the leadinng "txid" and leave the bare Hash number into  allhashes.data
sed -i 's/",//g' allhashes.data           # remove commas and quotes and leave bare number in  allhashes.data
sed -i 's/^[ \t]*//' allhashes.data       # remove all leading empty space in  allhashes.data


# then lets get just the unspent (utxo) TXs

curl -sSL "https://mempool.space/api/address/1wiz18xYmhRX6xStj2b9t1rwWX4GKUgpv/utxo" | jq '.' > allutxos.data

grep "txid" allutxos.data > utxos.data  # pass the TX Hash into  allhashes.data
sed -i 's/"txid": "//g' utxos.data    # remove the leadinng "txid" and leave the bare Hash number into  allhashes.data
sed -i 's/",//g' utxos.data           # remove commas and quotes and leave bare number in  allhashes.data
sed -i 's/^[ \t]*//' utxos.data       # remove all leading empty space in  allhashes.data


# now lets filter out the utxos out so that we are left with the spent outputs only


while IFS= read -r line
do

  #echo "$line"  # Test print to output to see if we are reading lines correctly

  grep $line -n | sed 's/$line/ /' allhashes.data > unspent.data  # <==== not working as it is not removing the linesin utxos.data  from allhashes.data

 


done < utxos.data


Any suggestions welcome !! Thank you!!
Post
Topic
Board Development & Technical Discussion
Re: ripem160 not working in buntu 22...
by
mahurovihamilo
on 24/05/2024, 02:50:36 UTC
I got this:

OPENSSLDIR: "/usr/lib/ssl"
Post
Topic
Board Development & Technical Discussion
Re: Best way or API to fetch UTXOS
by
mahurovihamilo
on 24/05/2024, 02:11:06 UTC
Hello RickDeckard,

So I went ahead and installed Docker and mempool, is up and running with a few glitches, but for now my question is, for this to work, do I also need to be running a full BTC node as well?

Thank you.
Post
Topic
Board Development & Technical Discussion
Re: ripem160 not working in buntu 22...
by
mahurovihamilo
on 24/05/2024, 00:50:12 UTC
 According to that guide I read I edited this one:

/usr/lib/ssl/openssl.cnf


but I notice there are others:

/etc/ssl/openssl.cnf
/snap/core20/1587/etc/ssl/openssl.cnf
/snap/core20/1587/usr/lib/ssl/openssl.cnf
/snap/core20/2318/etc/ssl/openssl.cnf
/snap/core20/2318/usr/lib/ssl/openssl.cnf
/usr/lib/shim/mok/openssl.cnf
/usr/lib/ssl/openssl.cnf
/usr/share/doc/nodejs/openssl.cnf.gz
/usr/share/doc/openvpn/examples/sample-keys/openssl.cnf

I am not ot sure which one should be?


Post
Topic
Board Development & Technical Discussion
Re: ripem160 not working in buntu 22...
by
mahurovihamilo
on 23/05/2024, 23:04:44 UTC
hey achow101...

OpenSSL 3.0.2 15 Mar 2022 (Library: OpenSSL 3.0.2 15 Mar 2022)
Post
Topic
Board Development & Technical Discussion
Topic OP
ripem160 not working in buntu 22...
by
mahurovihamilo
on 23/05/2024, 22:52:39 UTC

Has anybody come across this issue and found a solution? I have tried every suggestion on the internet but nothing gets it to work in Ubuntu 22.

this should work, by manually anabling it, but it doesnt for me:

https://stackoverflow.com/questions/69922525/python-3-9-8-hashlib-and-ripemd160/72509045#72509045

Funny thing is, it works in Ubuntu18 ....thanks!
Post
Topic
Board Politics & Society
Topic OP
Re: Publicly held Trump trials - ongoing
by
mahurovihamilo
on 23/05/2024, 21:48:12 UTC
You all know, that the whole establishment is nothing else than MAFIA vying for who gets to carve out yours and my money, right?

Billions of $$$ get "send" everywhere under the guise of "aid" and God knows where the money goes, do you know where that money end up?

The last omnibus bill sent 90 billion to Ukraine, 30 Billion to Israel and some small millions change to Africa. They opposed and voted down motions to create a committee to follow the money an to scrutinize who and how was being used even abroad. Why? because all that money probably ended up in a few bank accounts in Switzerland.

It is all circus people, there is no a good side. It is major MAFIA groups at war for the war chest. Wake up. It is those very dollars that you pay in taxes, that are being taking from you children's future. If you support ANY of these clowns, ANY, you are a sucker.

First and last time I waste time in this "Political" board clownery.
Post
Topic
Board Development & Technical Discussion
Re: BSGS solver for cuda
by
mahurovihamilo
on 23/05/2024, 17:30:09 UTC
Hi there,

Is there a "version" of this for Ubuntu? Thanks.
Post
Topic
Board Development & Technical Discussion
Re: Best way or API to fetch UTXOS
by
mahurovihamilo
on 22/05/2024, 18:57:16 UTC
Thank you @RickDeckard

I am going to explore running my own instance of mempool! Cheers!
Post
Topic
Board Development & Technical Discussion
Re: Best way to find batches of Base58 addresses
by
mahurovihamilo
on 22/05/2024, 16:19:05 UTC
Thank you LoyceV !!

this is awesome ! Ill be able to do it from now on.
Post
Topic
Board Development & Technical Discussion
Topic OP
Useful targeted data
by
mahurovihamilo
on 22/05/2024, 16:01:08 UTC
Hi all,

When trying to solve the R,S,Z,K nonce mystery. What type of outputs would you suggest are more useful to analyze?:

A) Unspent output hashes?

B) Spent outputs hashes?

C) All TXs hashes indiscriminate?


Thank you for your suggestions.
Post
Topic
Board Development & Technical Discussion
Re: Best way to find batches of Base58 addresses
by
mahurovihamilo
on 22/05/2024, 15:54:38 UTC
Thank you LoyceV, this is very useful.

Is there a way or command you could recommend to sort or isolate Base58 (legacy) addresses from the TSV sheet > to a data.txt file?

Thanks.