Windows 7 Forums


Reply
Thread Tools

User accounts have gone missing!

 
 
Arno
Guest
Posts: n/a
Thanked:
 
      08-26-2010
In comp.sys.ibm.pc.hardware.storage Bob I <> wrote:


> On 8/21/2010 5:48 PM, Tom Del Rosso wrote:
>> Rod Speed wrote:
>>> Tom Del Rosso wrote
>>>> Bob I wrote
>>>
>>>>> The password and account ARE secure, you won't be accessing the
>>>>> account's encrypted files with a changed or flattened password.
>>>
>>>> So it puts the new password somewhere else?
>>>
>>> Nope, it puts it in the same place, but encryption is a completely
>>> different process to decryption.
>>> In fact when checking whether the password has been entered correctly
>>> when say logging on, the password entered is encrypted and the encrypted
>>> form is
>>> compared with the stored encrypted form of the original password and if
>>> they match, the
>>> password is correct. Thats nothing like decrypting the stored form of the
>>> original password.
>>>
>>> In fact it isnt even possible to reverse some forms of encryption at
>>> all, they are one way encryptions.

>>
>> Thanks. That's it then. I'm aware that there are non-reversible
>> encryptions, but I didn't consider that possible, because years ago I used
>> another password cracker (fee-based, from a commercial operation) to recover
>> a password from a Win2k system. It required copying the sam file and
>> emailing it to them. I guess they did it by brute force, until they found a
>> password that created the same encrypted data. I had always assumed they
>> decrypted it.
>>

> FWIW, a similar "cracking" method is used against MS Office documents,
> brute force gets you some character string that provides the same
> "hashcode", it opens the file but most likely wasn't the password
> actually used.


This is possible, BTW, because the people designing this system
did not have a clue and selected a too short hashcode.

The whole thing is derived from Unix password handling (which is
secure and works), but got broken in the process. No surprise when
looking at who did this....

Arno

--
Arno Wagner, Dr. sc. techn., Dipl. Inform., CISSP -- Email:
GnuPG: ID: 1E25338F FP: 0C30 5782 9D93 F785 E79C 0296 797F 6B50 1E25 338F
----
Cuddly UI's are the manifestation of wishful thinking. -- Dylan Evans
 
Reply With Quote
 
 
 
 
David Brown
Guest
Posts: n/a
Thanked:
 
      08-26-2010
On 22/08/2010 00:48, Tom Del Rosso wrote:
> Rod Speed wrote:
>> Tom Del Rosso wrote
>>> Bob I wrote

>>
>>>> The password and account ARE secure, you won't be accessing the
>>>> account's encrypted files with a changed or flattened password.

>>
>>> So it puts the new password somewhere else?

>>
>> Nope, it puts it in the same place, but encryption is a completely
>> different process to decryption.
>> In fact when checking whether the password has been entered correctly
>> when say logging on, the password entered is encrypted and the encrypted
>> form is
>> compared with the stored encrypted form of the original password and if
>> they match, the
>> password is correct. Thats nothing like decrypting the stored form of the
>> original password.
>>
>> In fact it isnt even possible to reverse some forms of encryption at
>> all, they are one way encryptions.

>
> Thanks. That's it then. I'm aware that there are non-reversible
> encryptions, but I didn't consider that possible, because years ago I used
> another password cracker (fee-based, from a commercial operation) to recover
> a password from a Win2k system. It required copying the sam file and
> emailing it to them. I guess they did it by brute force, until they found a
> password that created the same encrypted data. I had always assumed they
> decrypted it.
>


Yes, these things are done by trial and error. Often such a company
will have large "rainbow" tables - they take tables of likely passwords
(such as common kids names, common pet names, misspellings of
"password", birthdays, etc.), dictionaries, etc., and run each one
through the password encryption algorithm. Then "cracking" the password
is as simple as looking it up in this table. If they get a match, they
have the original password. If not, then they need to run through
exhaustive searches.



If you ever have to break into a windows system again, it is a lot
easier to use a windows password reset live CD. These don't make any
attempt to identify the old password, but simply replace it with a known
(blank) one. It's a lot faster and cheaper than an external company.

If you actually need to recover the password rather than just change it
to something you know, there are again free tools for that.


 
Reply With Quote
 
Arno
Guest
Posts: n/a
Thanked:
 
      08-26-2010
In comp.sys.ibm.pc.hardware.storage David Brown <> wrote:
> On 22/08/2010 00:48, Tom Del Rosso wrote:
>> Rod Speed wrote:
>>> Tom Del Rosso wrote
>>>> Bob I wrote
>>>
>>>>> The password and account ARE secure, you won't be accessing the
>>>>> account's encrypted files with a changed or flattened password.
>>>
>>>> So it puts the new password somewhere else?
>>>
>>> Nope, it puts it in the same place, but encryption is a completely
>>> different process to decryption.
>>> In fact when checking whether the password has been entered correctly
>>> when say logging on, the password entered is encrypted and the encrypted
>>> form is
>>> compared with the stored encrypted form of the original password and if
>>> they match, the
>>> password is correct. Thats nothing like decrypting the stored form of the
>>> original password.
>>>
>>> In fact it isnt even possible to reverse some forms of encryption at
>>> all, they are one way encryptions.

>>
>> Thanks. That's it then. I'm aware that there are non-reversible
>> encryptions, but I didn't consider that possible, because years ago I used
>> another password cracker (fee-based, from a commercial operation) to recover
>> a password from a Win2k system. It required copying the sam file and
>> emailing it to them. I guess they did it by brute force, until they found a
>> password that created the same encrypted data. I had always assumed they
>> decrypted it.
>>


> Yes, these things are done by trial and error. Often such a company
> will have large "rainbow" tables - they take tables of likely passwords
> (such as common kids names, common pet names, misspellings of
> "password", birthdays, etc.), dictionaries, etc., and run each one
> through the password encryption algorithm. Then "cracking" the password
> is as simple as looking it up in this table. If they get a match, they
> have the original password. If not, then they need to run through
> exhaustive searches.


The accepted countermeasure to Rainbow Tables is salting, i.e.
to add a non-secret random value. This increses the size of the
Rainbow Table to infesability. As Microsoft is not familiar with
salting, they do work there.

> If you ever have to break into a windows system again, it is a lot
> easier to use a windows password reset live CD. These don't make any
> attempt to identify the old password, but simply replace it with a known
> (blank) one. It's a lot faster and cheaper than an external company.


I second that. I did this several times with good success and
very reasonable effort.

> If you actually need to recover the password rather than just change it
> to something you know, there are again free tools for that.


Whether that works depends strongly on the individual password
scheme. MS is incompetent here (otherwise breaking would not
work at all for good passwords), but even they made improvements.

Here is an example illustratiung the "security mind-set" at Microsoft:
http://catless.ncl.ac.uk/risks/17.12.html
Scroll down to ''Microsoft "Bob" passwords''

Arno
--
Arno Wagner, Dr. sc. techn., Dipl. Inform., CISSP -- Email:
GnuPG: ID: 1E25338F FP: 0C30 5782 9D93 F785 E79C 0296 797F 6B50 1E25 338F
----
Cuddly UI's are the manifestation of wishful thinking. -- Dylan Evans
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
The user name of password is incorrect Coast Ranger Windows 7 Support 11 10-03-2011 02:19 AM
missing moving my documents: location tab in user folders gone. ex: my documents chrisgray1497 Windows 7 Support 2 02-12-2010 09:42 PM
Unknown User Accounts Like S-1-5-21-1956894 .... win7 General Discussion 2 01-08-2010 10:11 PM
Very strange problem with user accounts and W7... AidyD Windows 7 Support 5 01-07-2010 07:43 PM
Windows 7 install keeps rebooting Stephen47 Installation, Setup and Updates 32 05-24-2009 07:26 PM


All times are GMT +1. The time now is 04:22 AM.
W7Forums is an independent website and is not affiliated with Microsoft Corporation.

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