Search content
Sort by

Showing 20 of 106 results by tianxie
Post
Topic
Board Bitcoin Technical Support
Re: Help me to recover 33.54 BTC from a corrupt wallet.dat, I'll pay you a Reward!
by
tianxie
on 25/11/2020, 17:50:11 UTC
H guys! I'm getting back with this post. I was kinda frustrated because I tried so many things.

Now, I became a software engineer with Sr level python experience. So, if you have any Python script that maybe help I'll try it. Or, if you have any procedure I'll listen to you and try it. But, I'll not give you the .dat file. Also, I'll try only the source code provided, for security reasons.




Thanks for the response, i tried to dump my wallet and i get "error un dump page". See the image



You can't dump a corrupt wallet to json as it won't have the correct format.
I quickly wrote a small Python script for parsing a wallet and dumping the private keys from it (run with Python 2):

Code:
import sys
import struct
from bsddb.db import *
from hashlib import sha256

# Dumps the private keys from a wallet.dat file.
# Inspired by pywallet.
# Credits: https://bitcoin.stackexchange.com/questions/13681/opening-wallet-dat-in-python-using-bsddb3

B58 = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"

if not len(sys.argv) == 2:
    print("Usage: %s <wallet_file>" % sys.argv[2])
    sys.exit(1)

def read_size(buffer, offset):
    size = ord(buffer[offset])
    offset += 1

    if size == 0xfd:
        size = struct.unpack_from("<H", buffer, offset)[0]
        offset += 2
    if size == 0xfe:
        size = struct.unpack_from("<I", buffer, offset)[0]
        offset += 4
    if size == 0xff:
        size = struct.unpack_from("<Q", buffer, offset)[0]
        offset += 8

    return offset, size

def read_string(buffer, offset):
    offset, string_len = read_size(buffer, offset)
    return offset + string_len, buffer[offset: offset + string_len]

def b58_encode(d):
    out = ""
    p = 0
    x = 0

    while ord(d[0]) == 0:
        out += "1"
        d = d[1:]

    for i, v in enumerate(d[::-1]):
        x += ord(v)*(256**i)

    while x > 58**(p+1):
        p += 1

    while p >= 0:
        a, x = divmod(x, 58**p)
        out += B58[a]
        p -= 1

    return out

def b58check_encode(d):
    checksum = sha256(sha256(d).digest()).digest()[:4]
    return b58_encode(d + checksum)


db = DB()
db.open(sys.argv[1], "main", DB_BTREE, DB_RDONLY)

items = db.items()

for item in items:
    k, v = item
    koff, voff = 0, 0
    koff, item_type = read_string(k, koff)

    if item_type == "key":
        koff, pubkey = read_string(k, koff)
        voff, privkey = read_string(v, voff)

        if len(privkey) == 279:
            secret = privkey[9:9+32]
        else:
            secret = privkey[8:8+32]

        if pubkey[0] != "\x04":
            secret += "\x01"

        print(b58check_encode("\x80" + secret))
db.close()

It's very simple, and outputs a bunch of WIF private keys (you can paste them into Electrum's Sweep dialog for example, but if there's many of them, it's going to take a while to check their balances, so be patient.
NOTE: the method of working with the database used here is different from pywallet's. It may work better on corrupted wallets.
A pip install of the bsddb may be required.

You might also be able to get bitcointools to turn a private key from one of the mentioned scripts and convert it to an address to scan for a balance on blockchain.info's API.
The user jackjack here wrote pywallet (you can search for it on githum and it should appear under the name jackjack-jj/pywallet).

What drive was the file on before it became corrupted? Was it in amongst other files or on its own on the drive - can you get that drive professionally recovered, have you?

Thanks for the response, my client doesn't have the original drive where the wallet was not corrupted.
How do you know this is your exact wallet.dat? Do you just think it's for bitcoin or had you put it on a specific drive to back it up which it got corrupted on. Do you have any backups of the corrupted wallet also as in if you did a full system backup at the time that you still have a copy of?

You should contact some pros, maybe https://keychainx.io opened a wallet for me
You should contact some Pros, maybe https://keychainx.io
Post
Topic
Board Development & Technical Discussion
Topic OP
Bitcoin core v 11.3
by
tianxie
on 25/11/2020, 17:34:25 UTC
Anyone know why that wallet version is removed from github repo?

My wallet.dat only decrypts part of the keys and passphrase seems not accepted with other versions.



Post
Topic
Board Development & Technical Discussion
Re: Would the bitcoin blockchain work for voting?
by
tianxie
on 08/11/2020, 19:45:02 UTC
While electronic voting using cryptography definitely is a thing, a blockchain isn't necessary at all. And even less the bitcoin blockchain.

There are several approaches to electronic voting. Some small methods are mentioned here.

Multiple protocols do exist, and none of them needs a blockchain.

wtf are you talking about?
Post
Topic
Board Digital goods
Topic OP
SATOSHIDISK CLONE
by
tianxie
on 01/11/2020, 19:49:00 UTC
Will sell the satoshidisk clone source code in PHP for 100 USD in BTC or monery.

please PM if interested.
Post
Topic
Board Барахолка
Re: ⚡⚡⚡ wallet.dat ⚡⚡⚡ Самая большая коллекция
by
tianxie
on 31/10/2020, 10:02:57 UTC
Да, недавно была дискуссия на эту тему. Мне пришлось снять с продажи эти файлы, потом решил перенести в отдельный раздел, но в итоге оставил просто не большую цену на них.
Если вы синхронизируете и посмотрите на этот адрес - то увидите, что приватный ключ импортирован. Видимо кто-то, у кого были все эти кошельки, добавил один и тот же адрес и продавал. Видимо что-бы идентифицировать источник этих файлов. Я скоро запишу видео и покажу как это произошло.

Мошенник. Украдет загруженный кошелек и удалит ваш список сатошидиска, если он конфликтует с его мошенническим сайтом.
Post
Topic
Board Барахолка
Re: wallet.dat на 4000BTC
by
tianxie
on 31/10/2020, 10:01:12 UTC
Будьте внимательны

WOW777
KseniyaS1
gryazev1978

Это всё аккаунты этого humerh3


https://bitcointalk.org/index.php?topic=5277418.msg55266377#msg55266377 ...

А что ж ты сразу удалил свой пост? а? палевно сильно стало?

Хех обиделся он на это ))) https://bitcointalk.org/index.php?topic=5277418.msg55256152#msg55256152   ты как говно тронь и вонять начинаешь.

SCAM
Post
Topic
Board Bitcoin Technical Support
Re: Lost coins in stupid way
by
tianxie
on 31/10/2020, 09:39:54 UTC
Guys, I have try many of the method, but no luck, the biggest trouble is encrypted disk. all recovery programs is not working perfect with encrypted ssd. I have try to read disk sector by sector, but what I see that there are no old my file copy, so my summuary that when I have saved my txt file it was overwritten in the same sector. I am trying other methods like in CSI Smiley I will inform if some of them will work. I am decrypted my ssd copy and try to recover with all the paid/free programs, but they are not working good what I can see from the result. So i have got one software for criminalistic copy of the SSD disk, the process is very slowly, I will inform if it work for me and I will share news with community.

I have try this method also:

https://www.linuxquestions.org/questions/linux-general-1/how-to-recover-overwritten-file-774712/



Well,first you should stop using the disk, boot from another USB, and make a copy with a program like disk drill. Then that partition that you copy you need to scan with something like pywallet
Post
Topic
Board Altcoin Discussion
Topic OP
ETC trading
by
tianxie
on 02/09/2020, 21:51:18 UTC
Is there any DEX or exchange where ETC trading is still available or everyone is waiting for the re-org?

Like HitBTC, how many confirms do they need before deposits are OK?
Post
Topic
Board Altcoin Discussion
Topic OP
MEW transaction stuck for two days
by
tianxie
on 22/08/2020, 11:32:50 UTC
Anyone have the same problem?

I used quite high gas, and the transaction is stuck for 40 hrs. The transaction was for the full amount of wallet (125ETH) so I cant do the traditional send 0 ETH as there is no gas left. Will the transaction eventually stop?
Post
Topic
Board Digital goods
Topic OP
Will buy ETH presale (pre ICO) wallets with 0 balance
by
tianxie
on 22/08/2020, 10:06:39 UTC
Hello

I am looking to buy ethereum PREsale wallets (issued in August 2014) for my research regarding the bug that is said to have
locked out hundreds of Ethereum participants. Please send PM here or to tianxie@protonmail.com if you have such wallet or
know someone. Also suggest price, in BTC or ETH.
Post
Topic
Board Marketplace (Altcoins)
Topic OP
ETH PRESALE (PRE ICO) will buy emptied wallets
by
tianxie
on 22/08/2020, 10:05:36 UTC
Hello

I am looking to buy ethereum PREsale wallets (issued in August 2014) for my research regarding the bug that is said to have
locked out hundreds of Ethereum participants. Please send PM here or to tianxie@protonmail.com if you have such wallet or
know someone. Also suggest price, in BTC or ETH.
Post
Topic
Board Барахолка
Re: новый кошелек на 5000 BTC
by
tianxie
on 21/08/2020, 12:10:26 UTC
А что светить то ? Они все в блокчейне, адресов с 5000 битками не так уже много, один из этих, строчка 342 и дальше - https://bitinfocharts.com/top-100-richest-bitcoin-addresses-4.html

Ты хочешь купить?

ПРОДАНО! ТЕМА ЗАКРЫТА!
Post
Topic
Board Барахолка
Re: Продам wallet.dat 2612 576 и еще более 30 штук с утерянным па
by
tianxie
on 19/08/2020, 20:41:16 UTC
Продам файлы wallet.dat с забытым или утерянным паролем
1.08 2.2 3.04 5.05 5.03 8.5 11.26 14.09 15.9 22.8 25.99 26 27 28.3 28.32 30.9 31.4 32.8 47 49.9 69 70 75 78 107 108 131 159 169 177 198 340 570 960 1000 2612 2998 10000 69000 биткоинов около 5 кошельков эфириума, есть открытые кошельки. Доказательства  любые по желанию. телеграм  @ilyuxa1941 аккаунт разблокирован.



интересуетесь торговлей?
Post
Topic
Board Барахолка
Topic OP
ETH Presale 15000 ETH
by
tianxie
on 18/08/2020, 20:38:31 UTC
Новый кошелек Ethereum 15000 ETH с подсказками. Ни разу не трогал с 2015 года. Подробнее только в личку
Post
Topic
Board Барахолка
Re: новый кошелек на 5000 BTC
by
tianxie
on 18/08/2020, 20:37:01 UTC
А что светить то ? Они все в блокчейне, адресов с 5000 битками не так уже много, один из этих, строчка 342 и дальше - https://bitinfocharts.com/top-100-richest-bitcoin-addresses-4.html

Ты хочешь купить?
Post
Topic
Board Барахолка
Re: новый кошелек на 5000 BTC
by
tianxie
on 14/08/2020, 12:18:19 UTC
Quote

Адрес отправил в личку, не хочу привлекать к себе подлых глаз
Какой адрес?

Я отправлю PM, не хочу, чтобы адрес был общедоступным
Post
Topic
Board Services
Topic OP
10 BTC BOUNTY
by
tianxie
on 12/08/2020, 20:30:55 UTC
if you have a GPU rig and want to help me open a big wallet I will pay you 10 BTC to find the password.

PM for hash.
Post
Topic
Board Барахолка
Re: новый кошелек на 5000 BTC
by
tianxie
on 12/08/2020, 20:28:56 UTC
новый кошелек на 5000 BTC. Всего 2 продажи в частном порядке. пишите в личку на tianxie@protonmail.com только серьезному покупателю.

Адрес кошелька? Если не 1 в кошельке то предоставьте все для проверки по блокчейну.

Адрес отправил в личку, не хочу привлекать к себе подлых глаз
Post
Topic
Board Барахолка
Re: новый кошелек на 5000 BTC
by
tianxie
on 12/08/2020, 20:26:49 UTC
новый кошелек на 5000 BTC. Всего 2 продажи в частном порядке. пишите в личку на tianxie@protonmail.com только серьезному покупателю.

Что вы имеете в виду под словом серьезный покупатель? Озвучьте цену в теме пожалуйста, а то подозреваю что для всех она разная кто обратиться.

2 BTC
Post
Topic
Board Барахолка
Topic OP
новый кошелек на 5000 BTC
by
tianxie
on 11/08/2020, 20:17:50 UTC
новый кошелек на 5000 BTC. Всего 2 продажи в частном порядке. пишите в личку на tianxie@protonmail.com только серьезному покупателю.