Bitcoin Forum
June 19, 2024, 05:09:48 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 [85] 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 ... 309 »
1681  Bitcoin / Development & Technical Discussion / Re: BitCrack - A tool for brute-forcing private keys on: September 09, 2022, 05:30:41 AM
Edit:

After some more testing I found that it does random search after all not linear.
I've tested it an it seem to work as advertised, at least in CPU mode.

My test includes searching for a prefix similar to the puzzle transaction's 2nd address: 1CUNEB from full prvKey range.

The result is: it's consistently finding the key 0x03 in mere split second since it searched from 01 onward, not random.
If it is random, it could take a while to find another key for an address starting with 1CUNEB since it could gone for the the middle or end part of the search space.
But since it's consistently finding 1CUNEBjYrCn2y1SdiUMohaKUi4wpP326Lb, I'd say that it's linear.

Also tried 19EEC5 multiple times and it's also consistent at finding 19EEC52krRUK1RkUAEZmQdjTyHT7Gp1TYT (prvKey 0x47B069).

Lastly, I tried specifying the range and it properly used the indicated --keyspace.
Test command used:
./vanbitcrackens1.1 -t 3 --keyspace 1300000000000000:13FFFFFFFFFFFFFF -o 1vanbitcreacken-output.txt -stop 1AVJKw
Result: Found 1AVJKwzs9AskraJLGHAZPiaZcrpDr1U6AB which is within that range.
1682  Bitcoin / Bitcoin Technical Support / Re: Call and sync your Bitcoin Core wallet on: September 09, 2022, 04:34:44 AM
Found this library of documents.  https://en.bitcoin.it/wiki/API_reference_(JSON-RPC).  Is it enough that I choose the appropriate language and put it in the application?  Or are there other steps?
-snip- Do I add a summons in the application or what should I do?
Basically, running Bitcoin Core through the app is the issue?
If so, you should find a way to start "bitcoind" which is in the "daemon" folder where bitcoin-qt is located.
Then you can now use RPC.
1683  Bitcoin / Mycelium / Re: Peer to Peer Buying and selling of Bitcoin On MyCelium Wallet on: September 08, 2022, 01:47:20 PM
Based from the link in the post above:
How is the transaction confidence calculated?

The Local Trader backend does an advanced analysis of the state of the transaction on the Bitcoin network. The base confidence is determined by the percent of the Bitcoin network that has seen the transaction. A number of factors reduce the confidence:

The Local Trader server does real-time double-spend analysis of all unconfirmed transactions. If a double-spend is detected, the confidence is reduced to zero.
The Local Trader server monitors how many unconfirmed transactions the transaction depends on. This can be a long and/or wide chain. For every unconfirmed dependency, the confidence is halved.
The Local Trader server monitors whether one of the unconfirmed dependencies have been subject to a malleability attack. If transaction malleability is detected, the confidence is halved.
The Local Trader server monitors whether the transaction, or one of its unconfirmed dependencies, have paid a low mining fee. If yes, the confidence is halved.
Looks like they forgot to monitor if the transaction and its parents are RBF flagged.
Because that's one of the major factor to consider to be able to tell if the seller has a capability to easily double-spend the transaction.

@Fivestar4everMVP you can take that in consideration when deciding if the transaction is "good".
In blockexplorers, it's usually displayed as "replaceable", "rbf enabled" or similar.
1684  Bitcoin / Bitcoin Technical Support / Re: Bitcoin RPC loadwallet Error - Wallet file verification failed on: September 08, 2022, 07:14:28 AM
Maybe nc50lc's answer makes it clearer?
Sorry, same error.

I try with all kinds of link structures / I get an error whether I put it or not. I tried all link structures.
Have you copied it to the correct directory that I've pointed-out in my reply?
Namely: .bitcoin/wallets ; either paste 'backup.dat' inside or create a 'backup' folder there, paste 'backup.dat' file inside it and rename it into 'wallet.dat'.

Because if you did, there shouldn't be any error when you used the said commands.
1685  Bitcoin / Bitcoin Technical Support / Re: Bitcoin RPC loadwallet Error - Wallet file verification failed on: September 07, 2022, 01:22:37 PM
how can i bypass this error
Either put 'backup.dat' inside .bitcoin/wallets dir or
Create a 'backup' folder inside .bitcoin/wallets dir, paste your 'backup.dat' file there and rename it into 'wallet.dat'.

Then load it using loadwallet backup.dat for the former or loadwallet backup for the latter.
1686  Bitcoin / Hardware wallets / Re: Trezor Suite will add a CoinJoin mixing protocol on: September 07, 2022, 09:18:49 AM
But won't this lead to pressure from the authorities on the Trezor team, as it was with Tornado Cash?
Probably not since they're with Wasabi, they might impose the same regulation that censors some UTXO.

For more info about that topic, refer to these threads:
1687  Bitcoin / Development & Technical Discussion / Re: Who controls bitcoin? on: September 07, 2022, 06:39:17 AM
So, my question is simple: who is behind this account? Is it an individual or organization account? If it is an organization, who the organization owners are?
This thread is going to be political later on so I'll just leave this link here to answer that specific question.
These are the people behind "bitcoin" organization account in GitHub: https://github.com/orgs/bitcoin/people
1688  Other / Beginners & Help / Re: best way to keep cold storage wallet, but connect it to internet rarely to send. on: September 06, 2022, 04:52:11 AM
I'm a little confused here.

With those multiple addresses that you use to spend bitcoin. Would any of those allow you to spend all of your bitcoin in that wallet?
In Bitcoin, the data that can spend your coins isn't the address but its "private key" which usually in the care of the user.

An Exchange and Electrum work differently.
In Exchanges, the private keys of the users addresses are in the Exchange's custody.
In Electrum, the private keys are stored locally in the wallet so the data that you need to spend is exclusively in that wallet even if it's offline.
By creating a watching-only Electrum wallet, you're basically only copying the addresses to the online PC; it can't spend, only "watch".

Take note that the above is an oversimplification for you to understand,
technically, there's a "master key" stored in each of those wallets which can reproduce all of those two wallet's addresses.
A "master private key" in the cold-storage and "master public key" in the watching-only wallet.

Quote from: edward500
The thing here is that I need to verify that my wallet works, and I can send bitcoin out of it in a test before I put my bitcoin into it.
Send a few satoshi to the watching-only wallet and successfully spend it by following the tutorial in the first reply, that's the assurance that you need.
If you want, you can click 'save' right after signing the transaction in the cold-storage to update the displayed balance but that wont improve anything.
1689  Bitcoin / Bitcoin Technical Support / Re: I can't find my old bitcoin files on: September 05, 2022, 04:16:12 AM
-snip-
Can pywallet find files with a changed name? Or maybe the wallet.dat file has been overwritten ?
should i use a different python script ? or code?
Last time I tried, it can recover private keys from a deleted wallet.dat file, it can recover the keys regardless of the wallet.dat's name.
but in my recent tests (just yesterday after my previous post) it failed to do so; IDK, maybe because the wallet.dat was just saved in my test drive's cache.

Anyways, you should try another tool, specially the one suggested by others above.
1690  Bitcoin / Bitcoin Technical Support / Re: I can't find my old bitcoin files on: September 04, 2022, 01:13:54 PM
-snip-
and before the scan starts ''pycrypto or lib ssl not found' I get an error. and no results are found '0'  

I do not know what to do.
I cannot find any reference on the code pointing to that specific error aside from the full message in my previous post which is benign.

Did it asked for the to-be-created "recovered-walelt.dat"?
Did it asked for possible passphrases after that?
if so, pywallet did its job and didn't found anything from the --recov_device.

For reference, it'll output something like this if it found nothing:
Code:
0.00 Go read
...
n.nn Go read

Read n Go in n minutes

Found 0 possible wallets
Found 0 possible encrypted keys
Found 0 possible unencrypted keys
..

Otherwise, it'll output something like this is it found possible wallets and/or keys but with '0' result:
Code:
...
Found n possible wallets
Found n possible encrypted keys
Found n possible unencrypted keys

...recovered_wallet_nnnnnnnnnn.dat contains the 0 recovered key

Does it look like the former?
or the latter where it shows possible wallets/keys but output's nothing to the recovered wallet.dat?

Because for the former, it means that there's no wallet.dat found in the disk.
For the latter, it's either the passphrase is incorrect or you've provided a passphrase for unencrypted keys.
1691  Bitcoin / Armory / Re: I cant put my wallets online? on: September 04, 2022, 12:42:28 PM
Do you have Bitcoin Core installed?
Because it's required by Armory.

If so, is it fully synced and not set to prune the blockchain?
Because the full blockchain is required by Armory to build its database. And also, Bitcoin Core's latest version has prune settings enabled by default.

For better solutions, it's best if you can provide the full/related logs from 'armorylog.txt' in Armory's data directory.
1692  Bitcoin / Bitcoin Technical Support / Re: I can't find my old bitcoin files on: September 04, 2022, 12:30:27 PM
I used jackjack/pywallet  scanned the hard drive but found nothing. I used this code :
-snip-
Gives a fault : ''pycrypto or lib ssl not found''

where is the problem??
The complete message should be "WARNING:root:pycrypto or libssl not found, decryption may be slow".
It should still work but slower, did it end with another error?

But I see that you're recovering from C: drive which is the system drive and also set a folder in that drive as the output folder of pywallet.
That not recommended since the data that you want to recover may get overwritten by pywallet's output itself or your OS's page files, not to mention the files that you've downloaded/written to the disk.
1693  Other / Beginners & Help / Re: Can someone explain PGP to me? on: September 03, 2022, 05:00:22 AM
For me it is, because the support team for the freebitco faucet uses bitcoin signed messages as the last last last resort in order to recover a lost account.
There's a quite old but extensive tutorial about signing messages, here: How to sign a message?!
If your wallet isn't covered by the guide, try to find a button/menu that resembles the "sign message" features shown in the tutorial. Most non-custodial wallets have it.
1694  Bitcoin / Wallet software / Re: I found a paper wallet on a beach ... seriously on: September 03, 2022, 03:39:59 AM
-snip-
Just for the record, a paper wallet rarely has a QRCode of a URL on it
since it's basically a 'cold-storage' wallet, linking a website for "whatever the reason is" doesn't makes sense.
Even the print-format of paper wallets from online paper wallet generators do not contain URLs (do not use them online though).

Usually, it's just the private key, and then the public key or the address.
1695  Bitcoin / Bitcoin Discussion / Re: Saving NVIDIA by buying bitcoin on: September 03, 2022, 03:27:17 AM
-snip-
Unfortunately no hidden message, would have been cool, but maybe somebody can come up with a hidden message Smiley
Ah, so it's all about the (accessible) price.
Well, I kinda expected that since I too can't decode any message from "00101010", still worth to ask though.
1696  Bitcoin / Bitcoin Discussion / Re: Saving NVIDIA by buying bitcoin on: September 02, 2022, 02:05:43 PM
0.00101010 bitcoins.
-snip-
This exact bitcoin ammount is chosen as a binary signal/support such that it will not cost more than 100 euro/dollar as long as the bitcoin price remains below:
Questions:
  • How is that value chosen?
  • Is there a hidden message related to "Saving NVIDIA" behind the binary 00101010? If so what is it?

BTW, you failed to mention the coming POS transition of Ethereum (not that I'm agreeing to most of the given reasons).
You might want to add that  Wink
1697  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: September 02, 2022, 05:10:37 AM
-snip-
8eacddd09eeae9f []
The brackets denote the location of the above address.
Is there anyway to determine the next character from this?
Interesting, but it looks pretty random to me.
Perhaps it's the nature of hexadecimal that made you think that it's patterned.

What I mean is it's limited to only 16 characters, thus, you're constantly seeing the same characters thinking that it's some sort of a pattern.
1698  Bitcoin / Wallet software / Re: same passphrase, different results on: September 01, 2022, 12:47:13 PM
Can anyone explain why the output differs, please, where is the culprit ? any explanation and help appreciated. Thank you
pycoin's ku P: command's passphrase isn't used to generate a single private key but a BIP32 root key.
It's indicated in their "command-line tools article": COMMAND-LINE-TOOLS.md
But the detailed method isn't disclosed.

While (as another user has said), 1LEH8BEZgC4onZ4GLm8UpZ3vXGAr6LYKST is just a "brainwallet" which is the address generated from SHA256(foo) when used as prvKey.
1699  Bitcoin / Wallet software / Re: How can I import Blockchain.Com Wallet in Bitcoin Core ? on: September 01, 2022, 10:48:14 AM
I have a Wallet in Blockchain.Com. I want import it to my Bitcoin Core QT. It is not allowing me to import it. Can anyone assist me and guide me step by step to import my Bitcoin Address ?
Aside from individual private keys (above), can also import the "master private key" to import the whole wallet while keeping the HD feature.
For that, you'll need to create a blank "descriptor wallet" and import a descriptor made from your backup phrase's master private key.

Here are the steps:
  • Follow Husna QA's instructions up to the point when you paste your backup phrase to iancoleman's BIP39 tool.
  • But instead of going through the private keys, copy the "BIP32 Root Key" instead, should start with "xprv".
  • Generate a Parent Descriptor using that master key by following this format:
    For your wallet with legacy Bitcoin Addresses: "pkh(xprv...........nFG3cCzejXfUUzMWehii19K/44'/0'/0'/0/*)"
    For your wallet with SegWit Bitcoin Addresses: "wpkh(xprv...........nFG3cCzejXfUUzMWehii19K/84'/0'/0'/0/*)"
  • Open Bitcoin Core and create a new wallet and tick the options "Descriptor Wallet" and "Blank Wallet", the other option should be unchecked.
  • Open the console (Window->Console) and use the command "getdescriptorinfo" followed by the descriptor that you created, take note of the "checksum" among the results.
  • Now select the correct wallet in the drop-down menu above the console and import the descriptor using this format (example):
    importdescriptors "[{\"desc\": \"pkh(xprv8ZgxM...your descriptor..Wehii19K/44'/0'/0'/0/*)#checksum\",\"timestamp\": \"0\",\"active\": true,\"internal\": false,\"range\": [0,999]}]"
    (your descriptor starts from pkh and ends before the checksum)
    (replace the "#checksum" with the checksum from the result of getdescriptorwallet
    )

  • Wait for it to finish the rescan and your funds should appear.

Note: Since this will only import a descriptor for receiving addresses, your wallet won't be able to create transactions if it needs a change.
To fix that, you should import a descriptor for change addresses or manually indicate a change address when sending bitcoins.
It's also recommended to use a blank wallet since this will deactivate the current active parent descriptor (but will not delete/replace) if imported to an existing descriptor wallet.

Lastly: Just like what's been suggested by others, it's still best to just send the funds to your Bitcoin Core wallet .
1700  Other / Meta / Re: Strange "Anonymous" post, edited by Satoshi on: August 31, 2022, 06:59:46 AM
I can't see any username with davidonpda on bitcointalk. Maybe they have changed their username.
Changing the username will still link the previous posts to the new name since the "User ID" (u=0000000) wont change.

Probably a deleted account and the user's posts were turned into guest posts.
This is probably the explanation on the Anonymous "edited by davidonpda" post: https://bitcointalk.org/index.php?topic=67541.msg789906#msg789906
The user in the quote's link requested to change his posts to appear to be posted by an 'Anonymous' guest. (the OP of that thread didn't, just 'delete account')
Pages: « 1 ... 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 [85] 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 ... 309 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!