Private-Key

我如何強制我的 wallet.dat 獲取我的私鑰

  • February 10, 2022

我不是真正的電腦程序員,但我想從我的 wallet.dat 中獲取我的私鑰,我只有 wallet.dat 文件和發送比特幣的公共地址。根據我之前的研究,有人告訴我暴力破解錢包很好用,就像我說我只得到了 wallet.dat 文件,但是在嘗試了解如何繼續暴力破解過程時,它需要一個 hastcat 和一個萬能鑰匙,而我只有 .dat 文件。

我的問題是

  1. 我如何獲得雜湊貓?有沒有一個網站我會去輸入一些特定的詞來獲取hashcat?如果是的話是哪個詞?
  2. 我如何獲得主密鑰,因為我只有 wallet.dat 和發送比特幣的地址

如果您使用的是比特幣核心:

1 - 轉到視窗 > 控制台

2 - 類型 listunspent

3 - 您將獲得包含可花費金額的地址列表

4 - 複製其中一個地址

5 - 輸入 dumpprivkey pasteYourAddressHere

要暴力破解 wallet.dat 文件,您需要按照以下步驟操作。

  1. 從 python.org 安裝 python
  2. 從github下載開膛手約翰
  3. 執行腳本 bitcoin2john.py 以提取雜湊
  4. 從 hashcat.net 獲取 hashcat

使用 hashcat,您可以使用遮罩 ?d?d?d?d?d?d 搜尋您選擇的整個數字空間並遞增。

您的 hashcat 命令看起來像: hashcat -m 11300 wallethash.txt -a 3 ?d?d?d?d?d?d?d –increment 等會起作用

找到密碼後,您可以使用它從核心導出私鑰。

(來自另一個主題,但如果您有問題,我可以幫助您)

引用自:https://bitcoin.stackexchange.com/questions/105978