Knowledge Sharing - Want to participate in the discussion?
2 May
Ever go to get on a computer and the user is logged out, and you don’t know the windows password? Or do you have some access, but not access to a users private files, and you want access to those files?
This quick tutorial will show you the steps to change and reset any user password on a windows computer, and also show you how to protect your computer from people doing this to you!
![]()
I never use windows, but when I do, I re-install the OS on a clean harddrive, and take steps to secure it before I connect it to the net for windows and antivirus upgrades.
One of the first things I do is give the Administrator a password. I also disable the guest account, and give the guest username a password.
Next I uninstall all networking components except TCP/IP. Next I disable netbios in the TCP/IP component settings.
Then I disable some services from running, use ‘net user username /DELETE’ to delete the “SUPPORT” and helpdesk usernames totally, and do a bunch of other stuff.
Caveats: If you are on a pc that does not allow you to boot into safe mode, you can get around this. They aren’t disabling the safe mode from the OS, they are just not allowing it from startup by pressing a function key. All you need to do is reboot, and then when windows is still loading, before the login screen, turn off the computer by holding down the power button for 5 seconds. Then turn it back on and you should have safe mode available. You can try this at many different stages to get to a safe mode.
If you have administrator rights, you can modify your boot.ini file to automatically boot into safe mode, or, preferably, you can modify your boot.ini file to give you a choice of booting into safe mode every single time you reboot. I have a custom boot.ini on every windows I run.
You could also use a linux “live cd” such as knoppix to edit your boot.ini file. But if you are going to do that, why not just use a live cd to reset the password, or retrieve the hashes and crack them with saminside?
See available boot.ini switch options at microsoft support boot.ini switch options
This is meant to be for beginners so don’t give me any grief for how easy or simple this is. Not all of us even use windows. Questions/Comments welcome.
17 Apr
In this Solaris release, GRUB is the open source boot loader that is the default for x86 based systems.
The boot loader is the first software program that runs after you turn on a system. This program begins the boot process. After an x86 based system is powered on, the Basic Input/Output System (BIOS) initializes the CPU, the memory, and the platform hardware. When the initialization phase has completed, the BIOS loads the boot loader from the configured boot device, and then gives control of the system to the boot loader.
GRUB implements a simple menu interface that includes boot options that are predefined in a configuration file. GRUB also has a command-line interface that is accessible from the menu interface for performing various boot commands. The GRUB implementation on x86 based systems in the Solaris OS is compliant with the Multiboot Specification, which is described in detail at .
Because the Solaris kernel is fully compliant with the Multiboot Specification, you can boot x86 based systems by using GRUB. With GRUB, you can more easily boot the various operating systems that are installed on your system. For example, on one x86 based system, you could individually boot the following operating systems:
Because GRUB is intuitive about file systems and kernel executable formats, you can load an operating system without recording the physical position of the kernel on the disk. With GRUB based booting, the kernel is loaded by specifying its file name, and the drive, and the partition where the kernel resides.
When you boot an x86 based system, the GRUB menu is displayed. This menu provides a list of boot entries to choose from. A boot entry is an OS instance that is installed on your system. The GRUB main menu is based on a configuration file that you can modify.
menu.lst configuration file to include the new OS instance. Adding the new OS instance enables the new boot entry to appear in the GRUB menu the next time that you boot the system.See the section, GRUB Menu for more information.