Computer Software

eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 
eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 
Business & Money
Technology
Women
Health
Education
Family
Travel
Cars
Entertainment
Featured Sites
SD Editorials
Online Guide and article directory site.
Foodeditorials.com
Over 15,000 recipes & editorials on food.
Lyricadvisor.com
Get 100,000 Lyric & Albums.

Video on Between Theory And Practice

    View: 
Similar Videos
Videos on Data Recovery Software From
Videos on External Hard Disk Drives
Videos on Floppy Disk Data Recovery
Videos on Free File Storage Space
Videos on Freeware Data Recovery Software
Videos on Get Back My Data
Videos on Good Software For Pc
Videos on Google Page Ranking Tool
Videos on Hard Disk Crash Data Recovery
Videos on Hard Disk Data Recovery
Videos on Hard Disk Of Laptop
Videos on Hard Disk Partition Recovery
Videos on Hard Drive Data Destruction
Videos on Hard Drive Data Recovery Software
Videos on Hard Drive Data Recovery Tools
Videos on How To Get Ms Access
Videos on Internal Hard Disk Drives
Videos on Nucleus Kernel Powerpoint Recovery
Videos on Portable Digital Storage Devices
Videos on Recover Ms Word File
 
Youtube
Teaching Theory vs. Practice a...
Youtube
Theory and Practice of Cryptog...
Between Theory And Practice
Ivan Orlov
Types of passwords stored in Internet Explorer
   
Internet Credentials
   
AutoComplete data
   
AutoComplete passwords
   
FTP passwords
   
Synchronization passwords
   
Identities passwords
   
AutoForms data
   
Content Advisor password
Brief overview of Internet Explorer password recovery programs
PIEPR - the first acquaintance
Three real-life examples
   
Recovering current user's FTP passwords
   
Recovering website passwords from unloadable operating system
   
Recovering uncommonly stored passwords
Conclusion
 

it is going to be forgotten some time soonanyway? Much easier would be to have browser do the routine work of remembering and storing passwords for you. It's convenient and comfortable.

This would be a totally perfect solution; however, if your Windows operating system crashed or reinstalled not the way it's supposed to be reinstalled, you can easily lose the entire list of your precious passwords. That's the toll for the comfort and convenience. It's good just about every website has a saving 'I forgot password' button. However, this button will not always take your headache from you.
Each software developer solves the forgotten password recovery problem their own way. Some of them officially recommend copying a couple of important files to another folder, while other send all registered users a special utility that allows managing the migration of private data, and the third ones pretend they are not seeing the problem. Nevertheless, the demand creates the offer, and password recovery programs are currently on a great demand.
In this article, let's try to classify types of private data stored in Internet Explorer, look at programs for the recovery of the data, and study real-life examples of recovering lost Internet passwords.
 

PWL file; Windows 2000 and newer store it in the Protected Storage.

 

DPAPI. This encryption method uses logon password. Naturally, this makes it much more difficult to recover such lost passwords manually, since now one would need to have the user's Master Key, SID and the account password.

 

Synchronization Passwords for cached websites

Synchronization passwords free user from having to enter passwords for cached websites (sites set to be available offline.) Passwords of this type are also stored in IE's Protected Storage.  

Identities passwords

So are identities passwords. The identity-based access management mechanism is not widespread in Microsoft's products, except, perhaps, Outlook Express.
 

AutoForms Data

A special paragraph must cover the form auto-fill method, which constitutes a hybrid way of storing data. This method stores the actual data in the Protected Storage, and the URL, which the data belong to, is stored in user's registry. The URL written in the registry is stored not as plaintext - it is stored as hash. Here is the algorithm for reading form auto-fill data in IE 4 - 6:
//Get autoform password by given URL
BOOL CAutoformDecrypter::LoadPasswords(LPCTSTR cszUrl, CStringArray *saPasswords)
{
    assert(cszUrl && saPasswords);
    saPasswords->RemoveAll();
    //Check if autoform passwords are present in registry
    if ( EntryPresent(cszUrl) )
    {
        //Read PStore autoform passwords
        return PStoreReadAutoformPasswords cszUrl,saPasswords);
    }
    return FALSE;
}
//Check if autoform passwords are present
BOOL CAutoformDecrypter::EntryPresent(LPCTSTR cszUrl)
{
    assert(cszUrl);
    DWORD dwRet, dwValue, dwSize=sizeof(dwValue);
    LPCTSTR cszHash=GetHash(cszUrl);
    //problems computing the hash
    if ( !cszHash )
        return FALSE;
    //Check the registry
    dwRet=SHGetValue(HKCU,_T("Software\Microsoft\Internet Explorer\IntelliForms\SPW"),cszHash,NULL,&dwValue,&dwSize);
    delete((LPTSTR)cszHash);
    if ( dwRet==ERROR_SUCCESS )
        return TRUE;
    m_dwLastError=E_NOTFOUND;
    return FALSE;
}
//retrieve hash by given URL text and translate it into hex format
LPCTSTR CAutoformDecrypter::GetHash(LPCTSTR cszUrl)
{
    assert(cszUrl);
    BYTE buf[0x10];
    LPTSTR pRet=NULL;
    int i;
    if (HashData(cszUrl,buf,sizeof(buf)))
    {
        //Allocate some space
        pRet=new TCHAR [sizeof(buf) * sizeof(TCHAR) + sizeof(TCHAR)];
        if (pRet)
        {
            for ( i=0; i<sizeof(buf); i++ )
            {
                // Translate it into human readable format
                pRet[i]=(TCHAR) ((buf[i] & 0x3F) + 0x20);
            }
        pRet[i]=_T('
Next Paragraph..
A Guide to Business | Guide to Technology | Guide to Women | Guide to Health | Family Guide to | Travel & Vacations | Information on Cars

EditorialToday Computer Software has 2 sub sections. Such as Software and All Microsoft Softwares. With over 20,000 authors and writers, we are a well known online resource and editorial services site in United Kingdom, Canada & America . Here, we cover all the major topics from self help guide to A Guide to Business, Guide to Finance, Ideas for Marketing, Legal Guide, Lettre De Motivation, Guide to Insurance, Guide to Health, Guide to Medical, Military Service, Guide to Women, Pet Guide, Politics and Policy , Guide to Technology, The Travel Guide, Information on Cars, Entertainment Guide, Family Guide to, Hobbies and Interests, Quality Home Improvement, Arts & Humanities and many more.
About Editorial Today | Contact Us | Terms of Use | Submit an Article | Our Authors