Showing posts with label windows password recovery. Show all posts
Showing posts with label windows password recovery. Show all posts

How to Reset Administrator Password in Windows 8

|0 comments

Windows 8 RC has been released. It is human nature to forget about things. What you will do if you forget your Windows 8 password and can’t log in to the system anymore. Don't worry, no need to format your computer any more.

It will be much easier to reset your password if you are using a Microsoft Administrator Account to log in. The process to get your password reset requires you to download Offline NT Password & Registry Editor which is available as an ISO image that you can burn to CD or DVD, and a file that you can install on an USB Flash Drive. (Detailed instruction to make bootable is available in iso file itself).


After making a bootable cd or flash drive, boot and after booting you will see a DOS like window. Here you are required to enter some commands that will help you to restore the user account. The steps you need to follow are:


• First screen, press enter to continue
• Select the hard drive on which your Windows installation is installed. This may take some time depending on the number of partitions on the PC as it is using the “Linux-way” of listing the hard drives.
• You then need to enter the path to the Registry. I’d recommend to tap on enter to try the default path first which usually is detected correctly by the program.
• Press q
• Select the Password Reset option (1)
• Enter Administrator as the user account that you want to modify.
• Select the unlock and enable user account option (4)
• Use ! and q to end the editing and save the values
Now restart your PC using the operating system’s drive again. After booting you will find that the administrator account is listed on the sign in page. Select it and access your computer. Now you can change other account passwords or run administrative tasks to restore access to the PC.

Note : You can reset any account password using Offline NT Password & Registry Editor. Through Offline NT Password & Registry Editor you can break the password of all windows NT operating system.

Bypass Windows Logon Screen with Kon-boot

|0 comments

Bypass Windows Logon Screen with Kon-boot
On my previous post Bypass Windows Logon Screen With Utilman I have talked about how to bypass windows logon authentication screen without using any software. Today I am describing Bypass Windows Logon Screen with Kon-Boot. Kon-Boot is an application which will bypass the authentication process of a Windows logon screen as well as Linux. Kon Boot can work on either a USB flash drive, CD-ROM, or floppy diskette. Kon-Boot does not change your windows old password even and it does not change your system file. Kon-Boot software has been designed for the people who have lost windows administrator password.
Kon-Boot comes for free as well as commercial version also. Free Kon-Boot version does not support 64 bit systems and Windows 7. It also does not include privilege escalation feature.

Commercial Kon-Boot version works with both 64-bit and 32-bit Microsoft Windows operating systems and also include privilege escalation feature. Commercial Kon-Boot supports Windows 7 also.

I have personally tested the free version of Kon-Boot on a virtual machine of Windows XP and its works great. I was able to login in administrator without prompting password.

You can download the Kon-Boot from its official site.

Bypass Windows Logon Screen with the Utilman.exe

|0 comments

Bypass Windows Logon Screen with
the Utilman.exe
I have already covered about "how to recover Windows password" through bootable cd or dvd and Recover Windows Password using "Offline NT Password & Registry Editor". Now i am going to cover Bypass Windows Logon Screen with the Utilman.exe. 

Utilman.exe is a built in Windows application that is designed to allow the user to configure Accessibility options such as the Magnifier, High Contrast Theme, Narrator and On Screen Keyboard before they log onto the system. This was designed to help people who are hard of sight, hearing or mobility to log onto Windows themselves without the need of outside help. Its a great feature for disabled people but it opens up a security hole that we can take advantage of to bypass Windows logon.


Bypassing the Windows logon is a good idea if you have forgotten their logon password, their user profiles were corrupted or malware was interfering with the system before login. This works because the user can trigger Utilman by pressing Windows Key + U before Windows logon. This will load up the Utilman.exe which resides in the Windows\System32 directory. If you swap the Utilman.exe file with something else like cmd.exe, you have full access to the command prompt running SYSTEM privileges. SYSTEM is an account with the highest possible privileges on Windows systems.


Here are the step by step instruction on how to do this :


WARNING: You can do a lot of damage to a system if you don't know what you are doing. We do not accept any responsibility if something goes wrong to your system. Read this article properly and you will be able to bypass windows logon screen successfully.


First of all, we will need a way to access the file system to swap out utilman.exe with something else like cmd.exe. There are a few ways to achieve this:

Remove the operating system hard drive from the target system and slave it into another system with a working operating system. From there you can swap out the files on the slave drive.

Use a Bootable DVD or pen drive of Windows 7. (If you are using windows 7)
In this example we will be using the Windows 7 DVD. To begin, boot from your Windows 7 DVD and when you reach the first screen asking about the language, currency and keyboard format, Click Next. On the next page, down in the lower left hand side, click on the “Repair your computer” link.
Next, select the “Use recovery tools that can help fix problems starting Windows. Select an operating system to repair” option, choose an operating system from the list and Click Next.
You will now have an option to “Choose a recovery tool”. Select Command prompt. You should now have a Command Prompt Window open. Type in the following commands:

C:\
cd windows\system32
ren utilman.exe utilman.exe.bak
copy cmd.exe utilman.exe

This will navigate to the system32 directory, rename utilman.exe to utilman.exe.bak, make a copy of cmd.exe and name it utilman.exe.
Remove the DVD and reboot the system. Once the computer boots up normally, press the key combination Windows Key + U and you should get a Command Prompt. If the Command Prompt does not appear, press Alt+Tab as the Command Prompt may appear behind the Logon screen. From here, you can run many (if not all) of the commands you can normally use in Command Prompt.

Resetting an Existing Users Password
WARNING: 
If you reset a users account password. This will permanently lose access to the users encrypted files. Be sure to back these up. To reset an existing users password, we need type the text below. In this example, we will be changing kamlesh's password to “password″.

net user kamlesh password

You should be able to log in with this new password straight away. If you do not know what the username on the system actually is, you can see a list of the users by typing:

net user

Creating a New User Account

To create a new user account in the Command Prompt (Username: newuser. Password: newuser@123), and add them to the Administrators user group type:

net user newuser  newuser@123  /add
net localgroup Administrators  newuser /add

It's will add newuser in your computer and you should be able to login straight away with this new account "newuser".

Reverting Changes
To restore utilman.exe, in the Command Prompt type in:
C:
cd windows\system32
del utilman.exe
ren utilman.exe.bak utilman.exe
Then reboot the system.
To remove the new user account you just created earlier, type in:
net user  newuser  /delete

You can bypass login through this article in windows vista and windows XP also.
Share