-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Need Assistance - Ethereum Password Not Working #982
Comments
Hi, to test if your really didn't misspelled your password, launch mist or geth directly. Then attach geth to it, by running:
When you are in the geth console, you type If this doesn't work, then you certainly have a wrong password. |
@dbfrav I tried to look for code issues in Mist that could create accounts without the user being prompt for a password. I only found these two places - as expected - and added some explanation to them. Tl;dr looks good to me, I can't spot any possibility for a data-race, etc resulting in an incorrect account creation, but the code could be refactored though Please make sure to follow these advices #669. Code search for "personal.newAccount":
'submit form': function(e, template){ // execute this function when submit is clicked
var pw = template.find('input.password').value, // read out first password
pwRepeat = template.find('input.password-repeat').value; // read out confirmation password
if( pw !== pwRepeat) { // show a warning if they differ
GlobalNotification.warning({
content: TAPi18n.__('mist.popupWindows.requestAccount.errors.passwordMismatch'),
duration: 3
});
} else if (pw && pw.length > 1 && pw.length < 9) { // show a warning if password is not empty and shorter than 9 characters
GlobalNotification.warning({
content: TAPi18n.__('mist.popupWindows.requestAccount.errors.passwordTooShort'),
duration: 3
});
} else if (pw && pw.length >= 9) { // proceed if not empty and longer than 8 characters
TemplateVar.set('creatingPassword', true);
web3.personal.newAccount(pw, function(e, res){ // create new account using the password
TemplateVar.set(template, 'creatingPassword', false);
if(!e) { // update UI if no error during account creation (from node)
TemplateVar.setTo('.onboarding-account', 'newAccount', web3.toChecksumAddress(res));
TemplateVar.setTo('.onboarding-screen', 'currentActive', 'account');
// clear form
pw = pwRepeat = null;
} else { // show error if connection problem with node
GlobalNotification.warning({
content: TAPi18n.__('mist.popupWindows.onboarding.errors.nodeNotStartedYet'),
duration: 4
});
}
});
}
}
'submit form': function(e, template){ // execute this function when submit is clicked
e.preventDefault();
var pw = template.find('input.password').value;
var pwRepeat = template.find('input.password-repeat').value;
// ask for password repeat
if(!pwRepeat) {
TemplateVar.set('password-repeat', true);
template.$('input.password-repeat').focus();
// stop here so we dont set the password repeat to false
return;
// check passwords
} else if(pwRepeat === pw) {
TemplateVar.set('creating', true);
web3.personal.newAccount(pwRepeat, function(e, res){ // create new account using the password
if(!e)
ipc.send('backendAction_sendToOwner', null, res);
else
ipc.send('backendAction_sendToOwner', e);
TemplateVar.set(template, 'creating', false); // update UI
ipc.send('backendAction_closePopupWindow');
});
} else { // show error if passwords mismatch
template.$('.password').focus();
GlobalNotification.warning({
content: TAPi18n.__('mist.popupWindows.requestAccount.errors.passwordMismatch'),
duration: 3
});
}
TemplateVar.set('password-repeat', false); // update UI
template.find('input.password-repeat').value = '';
template.find('input.password').value = '';
pw = pwRepeat = null;
} |
|
Thank you Frozeman. I was traveling for business the last 24 hours and will apply these suggestions tonight and will report back to announce my findings. Thank you. |
Hello - Frozeman, I have to say that I am quite unfamiliar with both Geth and Mist, and quite honestly and brand new to Ethereum. I downloaded Ethereum fresh install and promptly afterwards loaded some ether in the wallet after downloading. I really do not know what the two programs "Mist" and Geth" do or really, anything about them. I see I have a file named "Mist" in my Ethereum folder but no file within it to open or launch Mist that I can see. And embarrassingly, I don't know how to open or launch Geth either as there is no launch application anywhere on my computer even when I run search for "Geth". I want to try the approach you suggest but I need better guidance of what these two programs are, what they do and how to actually open them and launch the window to where you are directing me to type your suggested prompts. I appreciate yours and everyone's patience with me. I am otherwise very tech savvy and a quick learner but being totally brand new to Ethereum/Geth/Mist I am a total "Newbie", so if you work with me a bit I'm confident I can understand and catch on. Am willing to compensate for your help too. Thanks so much! |
@dbfrav there is some quite good documentation on the usage of geth (Mist's bundled default ethereum-client) at http://ethdocs.org/en/latest/account-management.html. As an alternative I can recommend you to use https://myethereumwallet.com to unlock and transfer your funds. On a side note, this service is hosted directly on github and is running client side in your browser. |
Luclu - Thank you sir. I really appreciate it, however, as I said above I really need to be helped in understanding the specific step by step actions I need to do with these programs before I can go in and apply your suggestions. Once I'm in https://myethereumwallet.com I do not get the lingo, I don't understand what I'm supposed to do. I need to be guided through this with the understanding that I am brand new and not familiar with these exact steps. If you or anyone could take the time and walk me through these promising remedies, I'm certain I can accomplish. Thank you again. |
OK, so I've read up on Mist and I now better understand what Mist and Geth are. So thank you for the links Luclu. I really want to try what Frozeman suggested above first. However, when I launch Geth, I get the black window that loads up data and there's a blinking white cursor at the base presumably to type some code in? However, when I try to type what Frozeman suggests, nothing I type come out in the window. Nothing is displayed. So I now presume this is not the Console? How do I get to the Geth Console to type a command? This is the instruction I'm trying to follow but cannot find out how to do: "In order to create a new account using geth, we must first start geth in console mode (or you can use geth attach to attach a console to an already running instance)" I might also add that I contacted Dave at Wallet Recovery Service, just in case I may have made a typo of some sort when creating my password. He has not been able to BrutForce my password so I am more and more convinced that I am using the right password, but when I later created additional accounts through Geth after initial Ethereum Wallet setup, somehow my password has been corrupted. This further makes sense because others have reported this issue and here is a quote referring to this bug on the Accounts Management page which reads : “Wrong password” notice. This seems to be a false notice on occasion on current Mist versions. Restart Mist and the problem should go away (if you indeed entered the correct password). Restarting did not help me. So again I appeal to anyone for help here. I have a considerable amount of ether coins in this wallet and was willing to pay WalletRecoveryServices a percentage if they were able to succeed in unlocking but apparently they are unable. So I certainly would be willing to offer the same reward to anyone who can help me unlock this account to free up the coins. |
Luclu - I was able to go into myetherwallet and use the JSON keyfile to attempt to unlock but it also asked for a password which when I entered it was also rejected. I'd like also to try Frozeman's suggestion above to verify if there was indeed a typo in my password when I created it but not being so familiar with Geth/Mist I cant find how to open Geth Command Box panel to type the command. Also, I contacted Wallet Recovery Services to run BruteForce password cracker thinking that I may have typed a typo when I created the original password. Dave at WRS assured me that if I can give him as close to the password as possible, he'd most likely be able to decrypt the wallet. I would have used only one password and I recorded it instantly after creating it. I gave this password to Dave and after 3 days and millions of attempts with variations, he has said it doesn't look good. This suggests to me that somehow, when I created the additional accounts in the Main EtherBase wallet using Geth, that this somehow corrupted, deleted or caused the new account password to supersede the original password yet when we try the newly created account's password, it's also rejected. TL/dr: I am 100% certain that I'm using the correct password that I used when creating the wallet. There are other users who have reported similar issues with passwords not working. For me, things became corrupted when I created a 2nd account using Geth Cmd Prompt window and creating a password for the new account. I have a sizable amount of ethers in this wallet and am now offering a reward of a healthy percent of them to anyone who can help me unlock it. |
Can anyone take me any further with this? |
You know, I'm quite surprised that besides my own recent posts, this thread has basically gone cold for the past week. I'm surprised that this issue isn't being taken more seriously by others. This is not an isolated issue of a "forgotten password" or a "lost password". I am just one of a number of different people who have had the same or very similar issue with sudden "unrecognized" passwords. I have never forgotten or lost a password in over 20 years. And especially for an account that holds monetary value, in my case 442 Ethers, I absolutely will know precisely what my password is. I continue to hold and trade bitcoins in a wallet since 2012 and never would be so careless as to "forget" or "misplace" my password. So this is not the sorry circumstance of some careless individual who lost his password and is now crying a storm about it on the forums. I'd actually be too embarrassed to admit to anyone if I ever actually forgot or misplaced a password for such an important account. No, based on how many other users have shared this same issue, this is a obviously a bug in the Ethereum/Geth/Mist system and each and every one of you should be concerned of why this happens. All was fine with my Ethereum Basewallet until the day I decided to add an account using the Geth program. Things changed from that moment on. The Geth system asked me to create a password for the secondary account which was done via the Geth Command black window which was a total change-up compared to the steps I took to create the initial Ethereum Base wallet downloaded via Github. So of course, I entered a different password unique to that new account. But immediately after that, my main password did not work. The password I created for the 2nd account, does not work either. When this initially happened I realized that I wasn't all that familiar with the inner workings of Ethereum, Geth or Mist as I admitted in by my posts above, but I don't think I should have to be an expert with the systems involved just to simply create a wallet, a password and hold and trade my Ethers in the same fashion that I have been doing so with Bitcoin since 2012. But after the few suggestions offered above last week, I wanted to learn more to show those who were trying to help that I wanted to help myself too, and so over the past week I've studied the system and it's related programs to a degree that I feel I'm much better informed than I was a week ago. I even contacted Wallet Recovery Services to help me with the password just in case of the unlikely chance that I typed a typo when creating the password (which I would have had to do twice because in creating a password you must retype it to insure they match). Dave from WRS assured me that if I just gave him a password that was even CLOSE to the correct password, he'd be able to crack it in minutes. After 4 days he told me it he was having no luck. So, out of desperation, I went further and gave him every password I've ever used in my life online (I have a password keeper) even for accounts I no longer have. None of those worked. So at this point, I am absolutely convinced that my password was somehow corrupted after creating the additional account in Ethereum Basewallet using Geth. And although some may say "hey, it makes no sense and it's your problem buddy". Perhaps so. I know it makes no sense. But it's factual as I describe. And since this suddenly happened to me with no apparent rhyme of reason, and scouting around this forum you'll see other threads from several others who have had the same or very similar issue, this should concern each and every one of you too because unless we, or someone, can figure out what is happening, and why this is happening, even if it is a rare occurrence, any one of you could be next. I would like to add that my main interest in solving this issue is not so much in recovering my 442 Ethers, but to correct this "bug" so it doesn't affect other innocent users who trust this wallet with their hard earned coins like I did. So as my thread title now states with a late edit, I am willing to pay 20% of my wallet's contents of 442 Ethers to anyone who can help me help me solve this issue. I thank all of you who have already offered help above and I thank in advance to anyone else who may be able to shine some light on this. Holding out hope, |
Dear Mr DBFrav, First off, I would just like to say I am sorry that you are having such a rough time with this particular issue. Nothing grinds us harder than financial woes, then add technology to this mix.... Yeah I feel ya. Couple of things I would like to clear up as I didn't see them when i was going through this post. Exactly which version of Mist / Geth / EtherBase / etc and any applications have you installed that attempt to attach to the local chainstate? So I know i just asked a lot, so lets break this down. I have ran into this password issue before and it has to do with data being overwritten in the ethereum geth data store.
I know how to fool windows into letting me run multiple copies of the chainstate in a singe Native environment, but it is messy and difficult to keep straight, especially when software updates occur and chainstates get ForKED! (Pun intended)
|
|
Also, I thought I would shed some light on why this issue happens. We want options. Because none of us like to have all our eggs in one basket. However, in the software realm of Ethereum, this is bad juju. As you have already discovered, ethereum applications do not check to see if another ethereum application is installed and will use the same data store in your user profile regardless of what data may already be in there. This is what I call obfuscated local awareness. And it is a problem in many software applications of this nature. Bitcoin never really had this problem because everyone who forked off the main branch renamed the data store folders for their specific coin. Ethereum apps do not do this. Okay, so that is why you have this issue. We will see what can be done. Regards, |
@ supere989. All required info forwarded to you. Thanks! |
I am having this exact issue and I know my password is correct. I have a fair amount of ETH that is now locked up. I have come from Coinbase - I don't like their sharing of information. OSX is El Capitan 10.11.5 What other info do you need? |
@ shubrich76 - I still have not resolved my issue. I am still awaiting for help from others. |
I don't know where OSX keeps user files, so if I were you, I'd do a global find on your hard drive for any files that contain the ethereum address of the account you're not having access to. It's possible there may be more than one on your hard drive & the one you believe you're using may not be the one you're actually using. Then using myetherwallet.com, I'd try to unlock each file found using your password (and a blank password, just to be exhaustive). If that still doesn't work, I'd suggest there is indeed a bug that may have caused your keystore file or encrypted private key to become corrupted. If so, definitely use this as a lesson to keep backups & know how to use and recover from them. (IIRC, command-line geth & the geth embedded into the Ethereum-wallet GUI, at least on Windows, at one time used two different keystore paths. I don't know if they still do.) |
Hey guys. I have the same problem here: I'm locked out of my ETH on coinbase.
|
well... it was fun, yet still unclear what it was.
|
Hi all, I've been having the same issue since I recently updated geth on OSX sierra using terminal commands: $ brew update I also removed the entire blockchain and redownloaded it because of the recent DDOS/synching issues and i've been locked out of my accounts ever since. Although I have 'special characters' like '$'. and '@' in my mist generated password I have used it dozens of times in the past without problems. Password doesn't work on https://www.myetherwallet.com/#send-transaction either. A possible clue worth mentioning is that i'm getting 'Error: ethereum/ethereum/ethereum 1.4.13 already installed' when I try to update geth to 1.4.14 in my terminal window but according to my latest version GUI clients i'm already running 1.4.14 (Go)! I will attempt to restore an old backup of my system and run 'geth account update' since it worked for ursul0, however, if I successfully run this command on my old system where exactly will the new json file/s be saved after it's generated? will it simply overwrite the corresponding existing json file/s in the keystore folder or will i need to dig around for it? How does it work? I have lost access to a four figure sum of ETH but trying to deal with this rationally. Obviously any help, tips or suggestions will be greatly appreciated |
Hi all, same here - I'm absolutely sure I typed the correct password but it has been changed it obviously right after - hence, a significant amount of ETH is now locked in fact. Is this some sort of fraud pattern and the ETH are being nicked in all affected wallets in some point of time in future? |
What a relief.. typed my password out in textedit then pasted into myetherwallet.com. worked first go |
Hi guys, I have an offer for anyone who has a password issue on ETH wallet. I had a password issue also (see my nick here in this thread on 3rd July) , so I hired a programmer and we spent days and weeks by tuning up the cracker. Now I have my ETH wallet password back :-) If you need help , I can provide you a finisched functional cracker with added optional functions for a fee to get some invested money back. At first we must consult technical details. So there is an option you don |
I do understand your frustrations.
Thats all the help i can give you. This software and the crypto space itself, states clearly that you are responsible for your keys and you need to know how to manage them properly. This space is ALPHA, and many of the user facing tools, to make all of that convenient and safe need to be build first. We at Mist work on improving the account management - but this is the work off many groups together rather than us only, to ensure the best security we can give. Many of the issues, don't arise from the software, but the faulty usage over the last two years. Many of the accounts people generated were created a long time ago and with older versions of geth. Maybe you can also try using an old version to unlock the account (again: use the command line here, like stated above) From my experience in helping people restore their funds, 99% of the case it was a wrong password. I wish you all the luck, and please try all the above to see if you can finally unlock your funds. Sadly there is not much we can do, as we have no control over your keys, or passwords. |
@frozeman: Great post - I agree, may be one other recommendation, for important accounts, I think it's preferable to stick to [A-Z] [0-9] [a-z] characters only (if the software you are using allows it), this will prevent a lot of cases that ended up in here where special characters where used and caused problems. Not to say that special characters would not, work, just a conservative tip to put all chances on your side of not having any issues. Good luck to all, and remember that life is more important than ETH! |
Hi, thought I would join the conversation here as I have the same issue with regards to the Mist wallet. I have an Etherbase account created in March and quite frankly I do not remember ever setting up a password for it. However, I have a number of passwords that I have written down for crypto related things and absolutely none of these work. This is strange, as like others here I am meticulous about writing down my passwords somewhere. I have tried using the Geth terminal and have probably tried 50 different passwords thus far. I tried using the python tool which checks all the permutations of possible passwords but am having trouble using it. I fortunately am not missing much on this account (only about 2500 DNT) but it's still worth over $150. I don't know if it is worth sending my info to one of the password crackers as even if they took a 50% fee it wouldn't be much for them. I do know that I will only be using myetherwallet from now on. |
Here's a tip in case it helps someone - I couldn't figure out why my passphrase wasn't working for a long, long time. I eventually downgraded to 0.8.10 and suddenly it worked and I was able to transfer the ETH to a different account. I'm 100% certain that I was trying the same password in recent versions :-/ |
Thanks for the info. I am not aware we changed anything from that version on in respect to the password input. We will take a look though.
|
Hi,
I could provide such a tool, but of course you will have to input some
sensitive information from the wallet file. If not I can program a small
computer (raspberry -pi) and send it to you, that way you could run it
without any connection to the internet so you would be sure that nothing
leaks, but the cpu on this small machine is not too strong... Good luck,
Louis
2017-07-03 10:32 GMT-04:00 larandi <notifications@github.com>:
… Hi I appreciate your respond, I`m just trying to something on my own, if
I`m
not successful I`ll come back and ask for a support. A reward 5000USD paid
in ETH is a matter of course.
The problem is I do not want to provide a keystore file file , so a GUI
tool
would be nice. I just try to run python, but I`m not a deep tech guy, so
it
takes some time to me. If you have any other proposal, please come to me.
Stepan.
---------- Původní e-mail ----------
Od: ldrapeau ***@***.***>
Komu: ethereum/mist ***@***.***>
Datum: 3. 7. 2017 15:03:22
Předmět: Re: [ethereum/mist] Need Assistance - Ethereum Password Not
Working
(#982)
"
Hi,
To all who are having "problems" accessing your things. I can try to help
but you have to cooperate, it's that simple, if you don't allow us to ask
questions there is not much we can do. Also, it's better to get on a
person
to person to start, and once a solution is found (or not) you can come
back
to the forums and share. Good day to all.
Louis Drapeau
Creations Informatiques LD Inc.
514-355-5666 <(514)%20355-5666>
***@***.******@***.***)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
(#982 (comment)), or
mute the thread
(https://github.com/notifications/unsubscribe-auth/AcdgGkFEnA673Rm5Ry-
gmdroZezcVl0tks5sKOaUgaJpZM4JOSdk)
.
"
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#982 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/Ab_igkuGRVMaSrB___xT6a1FjHk82NJNks5sKPuSgaJpZM4JOSdk>
.
|
Hi I already created my own tool and found the password :-) thank you.
---------- Původní e-mail ----------
Od: ldrapeau <notifications@github.com>
Komu: ethereum/mist <mist@noreply.github.com>
Datum: 30. 11. 2017 14:52:39
Předmět: Re: [ethereum/mist] Need Assistance - Ethereum Password Not Working
(#982)
"Hi,
I could provide such a tool, but of course you will have to input some
sensitive information from the wallet file. If not I can program a small
computer (raspberry -pi) and send it to you, that way you could run it
without any connection to the internet so you would be sure that nothing
leaks, but the cpu on this small machine is not too strong... Good luck,
Louis
2017-07-03 10:32 GMT-04:00 larandi <notifications@github.com>:
Hi I appreciate your respond, I`m just trying to something on my own, if
I`m
not successful I`ll come back and ask for a support. A reward 5000USD paid
in ETH is a matter of course.
The problem is I do not want to provide a keystore file file , so a GUI
tool
would be nice. I just try to run python, but I`m not a deep tech guy, so
it
takes some time to me. If you have any other proposal, please come to me.
Stepan.
---------- Původní e-mail ----------
Od: ldrapeau ***@***.***>
Komu: ethereum/mist ***@***.***>
Datum: 3. 7. 2017 15:03:22
Předmět: Re: [ethereum/mist] Need Assistance - Ethereum Password Not
Working
(#982)
"
Hi,
To all who are having "problems" accessing your things. I can try to help
but you have to cooperate, it's that simple, if you don't allow us to ask
questions there is not much we can do. Also, it's better to get on a
person
to person to start, and once a solution is found (or not) you can come
back
to the forums and share. Good day to all.
Louis Drapeau
Creations Informatiques LD Inc.
514-355-5666 <(514)%20355-5666>
***@***.******@***.***)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
(#982 (comment)), or
mute the thread
(https://github.com/notifications/unsubscribe-auth/AcdgGkFEnA673Rm5Ry-
gmdroZezcVl0tks5sKOaUgaJpZM4JOSdk)
.
"
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#982 (comment)>, or
mute
FjHk82NJNks5sKPuSgaJpZM4JOSdk>
.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
(#982 (comment)), or
mute the thread
(https://github.com/notifications/unsubscribe-auth/AcdgGgpbXBC4YpsZC9w-7dzdBG3NrqFmks5s7rMggaJpZM4JOSdk)
.
"
|
Hi, I downgraded to version 0.8 and then changed my password (it kept saying I had the wrong password in the most up-to-date version). Thank you so much @m-thomson for this tip! |
Hi, did you use 0.8.10 to access your account as well? |
Hi, no I work with the geth CLI in linux. |
Yes.
…On Wed, Dec 20, 2017 at 12:42 AM, Pavneet Puri ***@***.***> wrote:
@abonn <https://github.com/abonn>
Hi, did you use 0.8.10 to access your account as well?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#982 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AL7M8HB5Ab4888-Nkj5B_-hbQum2Tgsyks5tCEn-gaJpZM4JOSdk>
.
|
Hi everyone, I have the same issue as described by a few people in this thread, I'm 100% certain of my password, but it's not accepted by Geth in cmd or by myetherwallet when I select the keystore. How do I change my version of Geth to 0.8.10 like people are suggesting?
Get Outlook for Android<https://aka.ms/ghei36>
…________________________________
From: Ev <notifications@github.com>
Sent: Tuesday, January 9, 2018 8:15:44 PM
To: ethereum/mist
Cc: davimac; Mention
Subject: Re: [ethereum/mist] Need Assistance - Ethereum Password Not Working (#982)
Reopened #982<#982>.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#982 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/Ab4dvVgZz1U93ZEjvGw5uFhGp_5DxMT1ks5tJA9AgaJpZM4JOSdk>.
|
@davimac Check https://geth.ethereum.org/downloads/ and click to show older versions. |
To clarify, I used https://github.com/ethereum/mist/releases/tag/v0.8.10 but that version may have worked for me because it was the version I used to create the wallet in the first place (I can't recall). But downgrading to whatever version created your wallet is definitely worth a shot. If you can't remember which version it was, then I suggest starting with the above version. At least in my case there was a change introduced after that version that caused my password to no longer work. Good luck. |
Let me answer here to the "99% forgot their password" comments.
|
Good |
@ursul0 it would be very interesting and maybe very helpful for others if you could analyze the two files (two different versions of the keystore/json file) and see what is different. |
@philsmd The JSON file was always the same, just as the password was always correct. What changed is the geth node setup (it was rolled back to the earlier snapshot, no mist wallet was installed at this point... I think) EDIT: probably worth mentioning that password problems appeared sometime after installing mist (was using console before just fine) ...and mist did worked for sometime properly too... Maybe it was mist version update?... The only thing I'm sure of now is that the password suddenly stopped working in mist |
so you are saying that the keystore file remained bit-by-bit identical and only the geth version changed (one older version of geth worked, while all newer versions of geth refused to work)? |
So, there is definitely interesting information, but it's so vague.
So, @ursul0 could you try to write down (to the best of your recollection) the sequence of events that you experienced, if possible with dates (helpful in determining potential bugs/fixes) ? Also, if you do not want to divulge your password, it would (possibly) be useful to know if the password contained anything outside of I don't think there's any point in analyzing the json files before we have a clearer understanding of the events. If, however, it indeed was "mist did worked for sometime properly", then it would be VERY interesting to obtain the json file + password and simply go through old versions of Mist and test it. Related question: what OS? |
@holiman
Note: and, nope there was no "consistent" mistyping of any kind. |
@ursul0 thanks for the info. Ideally, it would be great if you could also try to download a fresh version of geth/mist with those specific version numbers (syncing is probably not needed) and try to unlock/update the (old) keystore file with both of these alternative versions. In theory this problem should be reproducible and we should be able to find out which versions do work and which versions don't work. @holiman and @ursul0, till now nobody responded to my guess that it could be the newline problem (extra new lines at the end of the password which were incorrectly included by older geth versions). Therefore, it could also make sense to try do use some password cracking tools like hashcat etc and see if the keystore "hash" cracks with the newline character, while it fails to crack without the newline characters. This of course is only one possibility, but we should investigate this too. |
Greetings -
Forgive me if I've posted in the wrong place. I am a new user of Ethereum and decided to download the EtherBase wallet from Github. After the download I extracted the files and then opened the Ethereum wallet file and it immediately began syncing with the blockchain right out of the box. Once completed it was ready to go and while syncing it did prompt me for a password and I was very careful in typing it twice and recording it to my password book. So once the blockchain synced I loaded some ether into wallet and it credited fine.
Then, the next day I downloaded Geth and Eth-miner and created 2 additional accounts to the main wallet via CMD window prompt and those accounts prompted me to create a password each which I did and recorded those passwords. Next day I wanted to send some ether from the main EtherBase account and I was prompted for the password which I entered. I got error message "wrong password". So I then tried the passwords for each new account that I created in CMD prompt mode but neither worked.
I am very good with passwords. I've never lost a password in my life or even confused them with others. I copy them down immediately when I comprise them so this is not an issue of a "lost password" or a mistyped password as there is a preventative for this in requiring you to retype password when creating the wallet. I am absolutely certain that the password is correct but the EthereumBase main wallet will not recognize it. I'm thinking that adding the two new accounts to the wallet via Geth CMD prompt may have caused this somehow?
I searched and found others who have had the same issue and people reply saying this could be a bug in the system.
As mentioned, in searches I came across several others who have similar issues but I see no remedy and the threads are now old and inactive. Here is a link to someone else having the same issue #161 but no remedy seemed to have taken place and thread was closed so I am hoping someone can help me out. I'd be eternally grateful for any and all assistance.
Best regards,
dbf ~
The text was updated successfully, but these errors were encountered: