Bitcoin Forum
June 25, 2024, 02:50:17 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 »
161  Bitcoin / Electrum / Re: JUST HAD 0.92329 BTC STOLEN - HOW??? on: May 03, 2015, 02:54:47 PM
Sorry if this is already answered. Which OS are you using? Have you tried to recover deleted file?

P.S. See http://wikihow.com/Recover-Deleted-Files-from-Your-Computer. If you are lucky, you maybe able to recover it.

He said he "shredded" it! It cannot be recovered! Shredding Files deletes it permanently and cant be recovered!

Even if he did, that doesn't mean his seed is definitely unrecoverable as you imply.

Electrum, until recently, truncated the wallet file before writing to it for each wallet save. This could leave the (possibly encrypted) seed in multiple blocks on the drive, depending on how often Electrum saved the wallet file, even if he shredded it. (Newer versions of Electrum create a new wallet file, and then unlink the old one, again leaving the seed in potentially multiple blocks).

MZ's questions are good ones.
162  Other / MultiBit / Re: BIG BUG with multibit on: May 03, 2015, 01:33:14 PM
democrite,

There are two good suggestions by shorena and jim618 which you seem to be ignoring.

Meanwhile, you've responded to a possibly dangerous suggestion by Rude Boy. Exporting/importing private keys isn't necessarily a bad idea, but it's possibly dangerous if you don't know how to securely handle sensitive data, or if you don't know what Rude Boy means by "shred" (which has a very specific meaning—it doesn't mean delete). IOW, if you're not an IT person, I probably wouldn't follow Rude Boy's advice.

Please be careful....
163  Bitcoin / Electrum / Re: Electrum 2.0 release on: May 03, 2015, 11:38:34 AM
Some of the dependencies for Electrum 2.0 are

 • Python 2.7
 • Python setup tools(incl. pip)

A short FYI— as of Python 2.7.9, setup tools/pip are (finally!) bundled w/Python (see PEP 477).
164  Bitcoin / Electrum / Re: Should I convert my 12 word seeds into 13 word seeds? on: May 02, 2015, 12:20:10 AM
So I take it that the extra word wasn't put in there to increase the entropy/strength then? It's just there to tell you what version of Electrum was used to generate the seed?

Right, it doesn't increase the entropy, it's there to make it possible to detect if a seed is valid or not. If you mistype a word during a restore, it can (with a 99.6% probability) detect that your seed is invalid and warn you.

Why would you advise against trying to memorize an Electrum seed?

Because I'm old and forgetful? Wink

Seriously though, I only meant that I think it's foolish to depend only on your memory to protect your bitcoin funds. I see no problem if you also have it stored (in hard copy) safely.
165  Bitcoin / Wallet software / Re: [ANN] breadwallet, first bitcoin network client for iOS, first BIP32 SPV client on: May 02, 2015, 12:09:40 AM
I'm trying to restore my breadwallet wallet on MultiBit HD, since it's now compatible... But I'm having some issues. MultiBit asks for a "timestamp". What timestamp should it be?

I assume that's referring to the timestamp the wallet was created. You can specify any date date older than that and it will only affect the initial syncing time.

It is referring to that, but the format that MultiBit HD expects isn't at all obvious.

Quote
A seed timestamp is the number of days elapsed since Bitcoin genesis block with a modulo 97 checksum appended.
This gives a short representation that avoids user error during input and works in all locales.

Here's a short Python one line script which creates such a timestamp, but be sure to estimate your wallet creation date on the older side when asked for it.

Code:
python -c "from datetime import *;r=lambda s:int(raw_input(s));d=((date(r('Year: '),r('Month: '),r('Day: '))-date(2009,1,3))).days;print '{}/{}'.format(d,d%97)"

If you don't already have Python installed, just visit here and press the run button: http://repl.it/mHe
166  Other / Off-topic / Re: Please Help - Ransomware has stolen my files and I need to pay in BitCoins on: May 01, 2015, 11:21:40 PM
They are related, TeslaCrypt appears to be a direvative of Cryptolocker.

Here's a post detailing how to decrypt it:

http://blogs.cisco.com/security/talos/teslacrypt

Quoting from that very same post (which had already been linked by grue above, BTW):

Quote
At the first glance, the dropper appears to be related to the original CryptoLocker.
...
As we shall see, that statement is not entirely accurate.

Also, for Bromium Labs:

Quote
The similarity between the original CryptoLocker and this instance is negligible (~8% according to BinDiff). So it would seem the attackers are just re-using the brand.
167  Economy / Service Announcements / Re: GreenAddress: open source multisig wallet service on: May 01, 2015, 03:30:41 PM
Ok, it works, but if i login with my other wallet (with passphrase) and logout and login again (with pin number, same pin) then i will be logged in into my 1st wallet and not into my 2nd wallet that i used the last time.

Sounds to me like that might be a bug....

Just a suggestion: if you're only using different accounts for keeping funds separate, it might make more sense to use the built-in multiple accounts feature (near the bottom of the settings page).
168  Other / Off-topic / Re: Please Help - Ransomware has stolen my files and I need to pay in BitCoins on: May 01, 2015, 12:07:24 PM
Check https://noransom.kaspersky.com/ again.

April 29 update: 13 decryption keys added to the database

You might get lucky this time.

pedrog,

Your post is irrelevant because OP was never infected by CoinVault, but rather by TeslaCrypt which is completely unrelated.

Had you read either the very first post or the very last one (above), you would have seen this, but you did not.
169  Economy / Service Announcements / Re: GreenAddress: open source multisig wallet service on: April 30, 2015, 08:33:27 PM
If somebody has 2 or more greenaddress wallets then he has to clear the browser history (cookies, etc.)  to be able to login to another wallet, because at login page you can only enter your pin number and there is no button to forget current wallet data. (login with another account/wallet)

Do you not have a "Show other logins" option just below the PIN field?

170  Bitcoin / Electrum / Re: error loading electrum on ubuntu on: April 30, 2015, 04:51:20 PM
TypeError: compile() expected string without null bytes

That's not good. Do these return anything? (don't post anything sensitive / anything that might be a key!)

Code:
ls -l ~/.electrum/wallets/
strings ~/.electrum/wallets/default_wallet

Also, you didn't answer if you have your seed written down, do you?
171  Bitcoin / Electrum / Re: error loading electrum on ubuntu on: April 30, 2015, 04:37:22 PM
thanks mate, just tried this and got

Traceback (most recent call last):
  File "<string>", line 1, in <module>
TypeError: replace() takes at least 2 arguments (1 given)

That's cause I messed it up (and didn't even bother testing it) Roll Eyes

Can you give this a try?
Code:
python -c "import ast;import sys;ast.literal_eval(open(sys.argv[1]).read().replace(\", '\",\",\n'\"))" ~/.electrum/wallets/default_wallet
172  Bitcoin / Electrum / Re: error loading electrum on ubuntu on: April 30, 2015, 04:15:30 PM
This should give a more specific error message:

Code:
python -c 'import ast;import sys;ast.literal_eval(open(sys.argv[1]).read().replace(", '",",\n'"))' ~/.electrum/wallets/default_wallet

(FYI I'm assuming 1.9.x based on OP's initial traceback.)

Also, do you have your seed?
173  Bitcoin / Electrum / Re: watch_address - response on: April 29, 2015, 10:50:01 PM
What does this string mean?
ex - 4952fff4bfec7ff92ac25218d467edfb4e1915e80c6ab962276a5395c1a2f8b6
How can I properly decode this into a txid or something I can use.

When an update occurs, the result is a hash of the entire tx history.

To determine what changed, you need to do a get_history.

The idea is that wallet software can cache the result from watch_address, and only issue a get_history when the hash changes.
174  Bitcoin / Bitcoin Technical Support / Re: mabie lost bitcoins help on: April 29, 2015, 08:17:01 PM
yeah, that´s the plan i guess, not worth it with just 0.2

Did you do a permanent delete? If not, it might be in your Windows "Recycle Bin".

Even if it's not, for 0.2 btc, I'd try a freebie undelete utility like Recuva. May as well, it's easy to try, and it can't hurt....

If you had a restore point in windows might be worth trying it.

FYI restore points in Windows don't typically cover the %appdata% directory.

If I were you I would make a backup of that wallet.dat file right away.  In fact, I make three copies on different media. One of them goes in the safe deposit box at the bank. A second one is geo-cashed in an impossible to guess place. The third you could mail to a relative in another state.

Not very convenient with Bitcoin Core, considering you'd need to update all of those backups for every 100 new addresses or outbound transactions you make....
175  Bitcoin / Electrum / Re: Functionality Request (fees) on: April 29, 2015, 07:47:49 PM
If you click on the "?" next to the Amount field, it will tell you that you can type a "!" for the amount, and Electrum will fill in the correct Amount and Fee for you.
176  Bitcoin / Electrum / Re: Bitcoin Core to Electurm on: April 29, 2015, 02:20:49 PM
Although you could export your private keys from Bitcoin Core and then import them into a new Electrum wallet, you'd be missing out on a number of important features.

A likely better option is to create a new Electrum wallet, write down the seed (very important! it is your backup), and then send your bitcoins from Bitcoin Core to an address in your new Electrum wallet.

For example, one benefit of doing it this way is your seed backup: it is all you'll ever need to restore a corrupted/lost wallet. If you export/import your private keys, you can't use a single seed to backup/restore your wallet.

Also, just FYI, Bitcoin Core version 0.11 will (sometime around July?) probably include pruning support. When enabled, it'll reduce the storage requirements by a factor of about 30x.
177  Bitcoin / Bitcoin Wallet for Android / Re: Derive a complete wallet from another bip32 master private key on: April 28, 2015, 04:02:51 PM
If you want to remain a bit more standards-compliant, it sounds to me that what you'd want is wallet software which:

  1. Creates multiple BIP-44 accounts from a single seed, and allows you to export the account extended private keys.
  2. Allows the import of an individual account extended private key.

In practice, this doesn't get you very far today. The only wallet software I'm aware of which can easily do (1) is Mycelium for Android, and the only wallet software which can easily do (2) is Mycelium for Android and Electrum (on the plus side, the two are compatible—you can export an xprv from Mycelium into Electrum and result in the same keys/addresses).

If you'd like to stick with the Bitcoin Wallet for Android, I think what you're doing is about as good as you can get.

So I tried to write a new protobuf wallet file which contains:

  • a fake deterministic seed
  • 4 main keys (m, m/0', m/0'/0, m/0'/1')

which kind of does what I want: I derived the main private key m from my SMpK, so it really is m=m/0' with m being my SMpK. As I understand this, bitcoinj derives its keys from the 4 main keys.

I am still worried though, that at some point, bitcoinj could regenerate the wallet from the seed, which is just a placeholder now...

I'd be a bit worried too.

How does it respond to a protobuf with no deterministic seed at all (it's an optional protobuf record, after all)? That should be a bit safer if it works, yes?

Also, I wonder if you could "trick" Bitcoin Wallet into accepting a BIP-44 account? In other words, generate a BIP-44 account at m/44'/0'/#', and then create a protobuf with m/0' equal to the generated xprv, and also include m/0'/0 and m/0'/1'. Do not include either the deterministic seed nor the key at path m (just to make sure Bitcoinj doesn't overwrite m/0' with the wrong xprv).
178  Other / Off-topic / Re: Please Help - Ransomware has stolen my files and I need to pay in BitCoins on: April 28, 2015, 11:19:08 AM
toddball,

It's great to hear you managed to recover most of your files w/o even having to pay a ransom!

Although you may not need it now, did you see grue's post?


It links to a decryption utility for TeslaCrypt posted just yesterday by researchers over at Cisco, which may or may not work depending on which version of TeslaCrypt you have. It might be worth a try to recover your remaining files.

Even if it doesn't work, they're trying to improve it to work on newer versions of TeslaCrypt as well, so you may want to keep an eye on their blog for future updates.
179  Bitcoin / Bitcoin Wallet for Android / Re: Update the translation. on: April 27, 2015, 04:57:55 PM
Translation contributions are handled via Transifex: https://www.transifex.com/projects/p/bitcoin-wallet/

As improvements are made in Transifex, they are eventually copied down to a new version of the app (but it takes some time).

I checked the translations you mentioned above, and they are all either (1) already translated in Transifex and waiting to be copied down to the app, or (2) untranslatable due to current software limitations. IOW, you can sign up for Transifex if you like and make a request to become a translator for Bitcoin Wallet, however there's not currently any untranslated French text.

If you're interested, here are the two translations that are pending (I've no idea if they're correct, and don't have access to change them even if I knew better):
again = de nouveau
To protect your privacy, your address will change once it receives a payment. = Par souci de confidentialité, votre adresse changera après avoir reçu un paiement.

The other three are the untranslatable ones (due to current software limitations).

I don't mean to be discouraging.... I'm sure there are other projects that would be delighted to have some help with translation. For example, Lighthouse doesn't have any French translation yet: https://www.transifex.com/projects/p/lighthouse-app/
180  Other / Off-topic / Re: Please Help - Ransomware has stolen my files and I need to pay in BitCoins on: April 27, 2015, 01:14:26 PM
I wish OP could give us exact virus/malware he has.  If he had that we could tell him a lot more.  My bachelors degree is actually based on computer security.

Your degree clearly wasn't in reading comprehension. OP stated the exact virus name in the first post Roll Eyes
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!