Cracking Windows Passwords with Ophcrack and Rainbow Tables
This is a guide for cracking passwords in Windows under XP, 2000, 98, and 95, all of which use roughly the same architecture. As you know, passwords are stored in windows in a weak hash form, the first kind of which is called the LM (Lan Manager) Hash. Passwords longer than 7 characters are broken up into 7-character chunks, made uppercase, and then hashed with DES. This means there are only about 237 8-bit hashes instead of 283 16-bit hashes; a good thing for an attacker looking to break a password.
The tool we’ll be using is called Ophcrack, an open-source password cracker. The technology it uses to break Windows passwords is called “rainbow tables” and was described by Philippe Oechslin in Making a Faster Cryptanalytic Time-Memory Trade-Off. A rough way to describe this technique is to say that tables of possible hashes are precomputed so that you can iteratively compare the windows hashes to precomputed bits and piece together the hash and its value more quickly than brute-force guessing.
Please note that federal law prohibits the possession of unauthorized access codes to computer systems. If you want to try cracking passwords, please obtain hashes from your own machine, or use the example hashes I provide here.
1) Setting up shop
The first thing you need is the software and rainbow table sets. You can download Ophcrack 2.2 from Sourceforge, and then browse to LASEC to download the SSTIC04-5k rainbow table. You’ll need a significant amount of memory to load this rainbow table. If you have less than 1 GB of RAM, try the smaller table.
The installation of Ophcrack 2.2 should go smoothly. Make sure you choose to download the tables seperately:

You’ll notice a lot of GTK* files being installed–that’s nothing to worry about. GTK is the Graphical Tool Kit, a way for linux programs to create graphical interfaces.
2) Dude, where’s my hash?
Now that you’ve got Ophcrack and rainbow tables installed, you’ll need hashes. There are three places to find them on Windows XP:
- In the folder C:\windows\system32\config. This folder is locked to all accounts (including an Administrator account) while running, except the special System account.
- In a SAM file from C:\windows\repair if rdisk has ever run
- In the registry, under HKEY_LOCAL_MACHINESAM, which is locked to all accounts
This doesn’t look good for retreiving the windows hashes! Well, to work around the built-in windows protections, we can recover hashes by the following techniques:
- Boot to linux and copy the file directly from C:\windows\system32\config. This is probably too troublesome for most users, but with a liveCD it’s trivial.
- Run pwdump2, including in Ophcrack, to trick out the registry values. If you didn’t change any settings, it should be installed in C:\Program Files\ophcrack\win32_tools. Here’s an example session from the command line (start, run, type “cmd” and hit enter):
C:\Documents and Settings\Elliott Back>cd “C:\Program Files\ophcrack\win32_tools”
C:\Program Files\ophcrack\win32_tools>pwdump2
Administrator:499:aabbcc:3311dd:::
Elliott Back:234:aabbcc:3311dd:::
C:\Program Files\ophcrack\win32_tools>
Naturally, I’ve censored the hashes and the number of users. If you’d like some hashes to play with, here are hashes for users with passwords varying from length from 1 to 7 characters long: test-hashes.txt.
3) Let’s get cracking!
Hashes in hand, start up Ophcrack:

Then click “load, PWDump file,” and select either the hashes you got from pwdump2, my sample hash file, or some other source of SAM hashes:

The last thing we need to do is load our rainbow tables. Click “Tables” and select the location and type of rainbow hash table you’re using, in our case the 5k tables:

Now you can click the big “Launch” button and wait. It will first load the tables (0-3 in my case) into memory, a process that takes several minutes. When this is complete, it will begin trying passwords:

The final screen gives a breakdown on how long it takes to actually find these passwords–some of which are quite hard:

All in all, it took 178 seconds on average to crack a windows password–only 3 minutes per hash! In the process it performed 89,030,630 hash-redux calculations and 199,548 fseek operations. It also couldn’t find the password for one of the hashes, which is to be expected. Rainbow tables are non-deterministic and won’t always work. Still, our success rate of 6/7 or 86% is high.
Conclusion
Now you know how to crack windows passwords. When is this a good idea?
- When you buy a computer on Ebay and the owner forgets to give you an Admin account
- When you forget your password
- When a friend forgets their password
- When the security of the country is in danger
When is this a bad idea?
- When you buy a computer from government surpluss and want to find its secrets
- When you want to hack up your friends
- When your little sister’s account is too tempting
- When you go visit your girlfriend’s dorm room
Another problem with releasing a tool like Ophcrack is that it becomes usable by anyone. In fact, this guide or tutorial to cracking windows passwords even makes it easier. Pretty much anyone can crack any windows password now, which could be a problem if used the wrong way. However, windows passwords are by nature insecure; there are dozens of other tools to crack windows passwords. Ophcrack is just the fastest.
This entry was posted on Wednesday, April 26th, 2006 at 5:28 pm and is tagged with philippe oechslin, cracking passwords, windows passwords, memory trade, cracking windows, linux programs, time memory, lan manager, graphical tool, graphical interfaces, hashes, access codes, sourceforge, ophcrack, brute force, chunks, attacker, tool kit, unauthorized access, hash. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback.

on April 28th, 2006 at 10:09 am
Or use Winternal ERDCommander (400 bucks I believe) to change the admin password in no time. So MS does have a backdoor for “trusted” parties to get into windows. Doesn’t matter, I have my stuff on GDrive but will probably move it off somewhere if the china gov start asking google like they did with Yahoo.
on May 11th, 2006 at 8:53 pm
Lots of (free, even) apps will simply reset an admin password and let you log in. This is relatively trivial. However, EFS encrypted folders, etc will be lost. This is where you would want to recover the current passwords, or you’d basically lose all hope of ever accessing said folders. Or how about for intrusion .. the user would be alerted because the password was changed.
on May 17th, 2006 at 8:47 pm
Sir,
I saw your cracking tutorial on elliottback.com/wp/archives/2006/04/26/cracking-windows-passwords-with-ophcrack-and-rainbow-tables/ and I downloaded
live CD and burned it CORRECTLY as an ISO image and wanted to test it on my desktop. I went into the BIOS and set to start from CD ROM and it loaded the
LIVE CD interface and then it said something like Uncompressing Linux,… Ok,
and it would FREEZE right there and DO NOTHING for half an hour. I tested it (the same CD) on my laptop and it worked PERFECTLY!
My Desktop system is Compaq Presario Windows XP Home Edition Version 2002 Service Pack 2, AMD Sempron Processor, 3200+, 1.79GHz and 960MB RAM,
Can you please tell me why the Live CD will not boot up and work on my Desktop?
My laptop is a DELL and it works perfectly on it.
Thanks,
Bo
on May 19th, 2006 at 4:07 pm
Blazing fast, works good on Windows server 2003!
It is also possible to avoid downloading rainbow tables separately, by choosing “Download alphanumeric tables from Internet” while installing ophcrack - works flawlessly too.
on June 14th, 2006 at 8:52 am
i have net , i can see some systems in network neighbour hood,
how can i get in to them
on June 26th, 2006 at 9:42 pm
To Bo Chen,
The reason linux won’t work on your computer is that it is a Compaq, and everyone knows that they are ****.
on July 26th, 2006 at 7:59 am
One question, using ophtcrack can I use other rianbow tables. I’ve doenloaded a set of 6 tables including special chars. How can I use these with ophtcrack, or does it only work with the specifed char sets? Basically I’ve got 6 2GB tables:
lm_all_1-7_0_J_ATHIAS_all.rt
lm_all_1-7_1_J_ATHIAS_all.rt
etc to
lm_all_1-7_5_J_ATHIAS_all.rt
but can I get the buggers loaded?
Any help ratefully recieved.
Thx
on July 27th, 2006 at 1:11 am
I have one question, Let’s say i forget my AOL password can u find that password file and crack that?
on July 29th, 2006 at 8:10 pm
How good is Ophcrack as against other password cracking software. Probably a comparison would help.
on August 17th, 2006 at 4:01 am
I don’t think you can use other Rainbow tables like lm_all_1-7_5_J_ATHIAS_all.rt with ophcrack because the tables made for ophcrack are perfect rainbow tables which are way faster in the cracking process than regular ones. Starting from version 2.3 Ophcrack also supports NTLM hash.
on September 5th, 2006 at 4:44 am
I am searching for somebody can help me to get password of the following hotmail account
didierschi@hotmail.com
Nobody can help me?
This is a vital loving reason
Thank you
Paolo
on September 21st, 2006 at 12:30 am
I copyer sam file from c:\windows\system32\config to a separate dir, using a bootable ntfsdos floppy ( freeware write on floppies) but I CAN’T GET my hashes. What soft to use for this? I not have admin rights and pwdump2 NOT work . I need help. I can provide sam file ( 262 kb ).
on November 3rd, 2006 at 10:06 pm
Paolo, you have no idea what you’re talking about. you can’t get an hash of a hotmail password and this page is not about that kind of cracking.
on November 20th, 2006 at 9:39 pm
Ok I did everything i possibly could, now tom will not answer my emails at all, I keep having someone hack into my myspace account and it is truely getting on my nerves, and he will not help me, i tried and tried to creat something complex enough where they cant get it but simple enough for me to remember it, i sent or clicked the i forgot my password thingy and it was suppose to email it to me can someone help me get my password without messing with my fan numbers? i know this is like totally way out , on the limb of trust but you guys have no reason to delete my account or mess with my number can someone help me my signing is care26t@aol.com and this is on myspace, please help before i loose my friggen mind!!!!!!!!!!!!!!!!!!!!!!!!!!!!! you can email me at sexypink29@yahoo.com
on December 18th, 2006 at 7:10 pm
it is easy to crack the password with the oph crack but getting the hashes to crack are the hard bit. A easy way to work around this is to download linux at this site www.slax.org/download.php then the image to a cd using your fav cd burner e.g. nero. once the cd is ready make sure u have a usb drive handy go find your target computer if on insert cd and restart the Computer if not on turn on comp and very quickly put the cd in. the comp should no start booting with linux if it does not go into the bios and tell the computer to boot from cd before the hard disk. once the computer is booting from cd. only type in stuff when it tells you to it will ask for a login and password wich if you look at the top of the screen it tells you what to type in there then type in startx and then press enter. linux will load into a nice gui that is similar to what windows lookes like. now insert your thumb drive and then clik on the icon that looks like my computer then click storge and then go into the harddisk wich has wibdows installed on it (usually c:\) no go into windows then system32. once you have done this open another window and go in to storage and select ur usb drive. now go back to the other window and find config and drag it into the other window a menu will pop-up and select copy here DO NOT SELECT MOVE OR THE COMPUTER MAY NOT START UP BACK INTO WINDOWS. safly eject your thumb drive then put back in comp, and have a look in to see if the folder config copied by going into usb drive then open config folder and i down the bottom it says somthing like “total files 20mb” it copied correctly if it says 0kb it did not work and try and copy again.
now press the restart button and get the cd back out
now go to another comp u have access to and start using ophcrack when u press load select “from encrypted SAM” and select the config folder onm your usb drive now load tables and press luanch and what till the password is cracked if it fails download this cracking programe from www.lcpsoft.com/english/index.htm and this will use bruit force so it can take hours or even days but probably will crack it
on December 25th, 2006 at 9:20 pm
so i actually used the live cd for ophcrack, however, my original password was revealed and not the updated one which had additional characters to it. my question is what do i need to do for the entire phrase to show up? b/c it’s not showing the additional characters which i have forgotten. help?! thanks!
on December 27th, 2006 at 6:45 am
if i were you i would use a brute force password cracker i downloaded one but it is on a dvd and i do not have access to a dvd reader but when u do get one remember to look in the options and ensure it is going to test all characters (on the one i got u could enter in the characters u wanted it to test for) also i would look for a program that resest the password i am not sure if they only reset admin passwords.
also if when you log in you click on a picture and enter in the password then to get looked in as the admin give it the old ctrl+alt+del twice over then a box should come up and for the login type administrator (make sure u spell it correct i am not sure if that is correct) and now just press enter with no password and u should be in create a new account and if u can being the adimin copy all your important files over to the new account and delete your old one (i don’t know how to delete a account and if u cant delet the files from that account but u will have to work out for your self how to get the programs over if u need to) if the admin acount does not have rights to your old account then boot with Linux like i said above and copy the files into another place ie thumb drive or maybe onto a different part on the hd that your new account has accesses to
on January 2nd, 2007 at 9:28 pm
ok, so i really don’t know what to do. i tried the nt offline password program and it didn’t do anything either. at first it just showed the admin and my account to be locked and disabled. everytime i tried it, it still took me back to the log in screen expecting me to remember the password even though i had selected to blank it (which only showed the guest account to be blanked but not accessible on the log in screen)
i really don’t know what to do. i am the administrator. i think my laptop just doesn’t like me anymore. which other programs or suggestions would you advise? ophcrack sure didn’t work. i want to be able to log in in such a way without having to reformat it. is this possible?
on January 3rd, 2007 at 4:46 pm
update for those who care: i tried the nt prgm again and it worked. i noticed something funky though. i had changed the password. (sort of reverted to the original phrase without the additional characters). this morning, i seemed to have been locked out of it again! so now i’m in and left it without a password. i’m wondering if this is going to happen each time i put in a password or if it only happened b/c it was similar to the previous one? any ideas?
on January 6th, 2007 at 12:15 am
Download Ultimate Boot CD for Windows (UBCD4Win) build a boot CD,run "Password renew", create new administrator account.
on January 7th, 2007 at 4:36 pm
i installed ophcrack and dl the rainbow tables and now the only thing i need is the password hash files. the problem is that i don’t know how to run pwdump6 on my computer, i did what the instructions above tell me to but in the cmd window it says its now reconized and i can’t open the pwdump6 exe
on January 14th, 2007 at 7:22 am
i am not sure what is going on with your computer if i were you i would get a version of linux and copy all your imortant file to some sort of media then reformat the comp
on February 3rd, 2007 at 9:24 pm
<strong>Crack Windows password with Ophcrack Live CD…</strong>
Here is the situation. You just changed your Windows admin password. The next morning when you boot your PC, you can’t remember the password to login to your Windows. You got nervous and don’t know what to do. Every passwords you entered we…
on February 12th, 2007 at 8:03 am
How do you retrieve the hash using the pwdump2 file mentioned above. can somebody please explain this, is the process as easy as burning Ophcrack and the tables onto disc and then loading disc into target machine.
Many thanks
on February 17th, 2007 at 12:31 am
hello everyone,
i’m currently taking classes toward a MCSE certificate and one of our assignments is to hack into the teacher’s computer and either get or replace the Admin password. the Ophcrack solution sounds a bit too complicated for a novice like me, so I was wondering whether someone could point me to a similar, but easier to implement, solution. The only requirement from the teacher is that it has to be a free software (obviously he doesn’t want us to buy the solution…).
any hints will help a lot!
many thanks!
on March 14th, 2007 at 10:41 pm
Go download Hirens boot cd or UBCD4Win. They both have several password tools that allow to change the admin password
on May 16th, 2007 at 1:42 am
Hello,
i found a backup file on the FTP of my school.. And i want to “decrypt” some hashes like this:
sambaNTPassword: CB5F7761D36F1E7F28903FDDFC869ADE
sambaLMPassword: 5B2544A3C68A3A65AAD3B435B51404EE
is it possible with this rainbow tables?
(sorry for my bad english)
on May 25th, 2007 at 11:08 pm
no you need a program called john the ripper gi give me a email adrres and i will send the stuff you nneed and instructions
on May 26th, 2007 at 1:39 am
The tables worked well for the LM hashes.. Very thanks, it takes like 30 sec~ for a password(athlon x2 4600+ and 2gb ram).. And i am having some fun with the school server’s since i got the passwords, maybe i’ll tell them later.. but for now i’m just going to use MSN and the youtube at school.. And here are no laws for “possession of unauthorized access codes to computer systems”.. Thanks for this. The only problem is the antivirus, i just want something that protects me from the virus/spywares, no that abusive software… Symantec corporate blocks all the “security tools” like ophcrack, cain, and some packet tools…
on June 20th, 2007 at 11:52 am
hey bud there is a glitch n the program im a programmer i can fix the glitch in it send your live cd to me i can reburn it with the right programs and send it back to you my address is 6427 malvern ave philadelphia PA 19151
ive had to fix my friends copy of it theres a bug a on it that when it starts up it will not run all i have to do is go in and remove it its a very hard to find program more like a plugin but its running by its self causing it to not work on pcs because theres a program on all computers pcs that make it run with your computer it depends on the place you downloaded it from some places dont have the bug its a part of a virus on the web site send it to me and i will remove it and send it back to you double time send it to me and i will have it back the following day.
on July 20th, 2007 at 7:21 am
How do i break an msword opening password
on July 21st, 2007 at 10:05 am
um…How do I do this on another passowrd like if I forgot my Email Masword or if Im logged in as administrator but I forgot the password to my Firewall or something like that?
on August 6th, 2007 at 4:16 pm
I’ve tried to getting a hash on one of my own XP installations, but if I go to cmd and I’m in “win32_tools” and run “pwdump2″ it says the file doesn’t exist, which it doesn’t.
But there’s a “pwdump6″, but when I try to run that I get a “logon to \\username\IPC$ failed: error 53″. I’ve been trying to Google it, but without luck. What’s the matter?
on August 8th, 2007 at 6:16 pm
Syntax of pwdump6 is :
pwdump6
of if u want to dump the hashes to a file say myfile.txt the syntax would be :
pwdump6 -o myfile.txt where u substitute with the name of ur computer or with 127.0.0.1
Hope this helps
on August 9th, 2007 at 11:30 pm
ok good !
on August 24th, 2007 at 4:19 pm
this page is to take win pass not any other pswrd the hashes man the ashes
so you could start using other cracker like jtr etc…
on August 31st, 2007 at 11:44 am
[…] Cracking Windows passwords with Ophcrack and rainbow tables […]
on September 1st, 2007 at 5:25 pm
hello i can not understand the second step. please clear that to me again. easily describe the matter.
thank you
on September 1st, 2007 at 5:35 pm
Boot to linux and copy the file directly from C:\windows\system32\config. This is probably too troublesome for most users, but with a liveCD it’s trivial.
copy which file i cant get it. can you explain this to me?
on September 22nd, 2007 at 6:16 pm
On one of the computers i was using this on, after booting up, the terminal states that no hashs were found on any partions.
Two of the accounts were password protected so i am not sure why it said that no hashs could be found.
Can anyone help?
on September 25th, 2007 at 5:47 am
Hi,
Tried running the pwdump2 on my XP laptop and it comes up with an error message:-
failed to open lsass: 5
What does this mean and can you give me some guidelines\help?
Regards
Julesnye
on October 4th, 2007 at 10:20 pm
I downloaded the ophcrack and inserted to my sister’s mac its a compaq presario and it was working then it reads “Input Signal Out of Range Change Settings to 1280×1024-60Hz” How can I do that and is that even correct? My sister forgot her admin password. Need all the help I can get. Maybe I downloaded the wrong thing or what? THanks.
on October 6th, 2007 at 10:22 pm
is this ophcrack only to crack window password?
pls someone tell me what tools of password cracking to crack website’s user password ?pls tell me
on October 12th, 2007 at 11:03 am
Tell me plz how to get those .hash files , plzz
on November 8th, 2007 at 1:29 pm
…this is a real charmer …. luv’n it.
on November 11th, 2007 at 7:05 am
before, in my networking class, my instructor where telling us about a pretty story about the hero ” Ophcrack” and how he/she/it saved him from total electronic doom… i wanted to meet the hero, but my training came first… i soon frgot about ophcrack. now im working in a company, and my boss forgot his password to his computer (admin account, and there is now other accounts on that computer). i remembered ophcrack! after much laughter (trying to figure out how to use ophcrack properly), and mugs of coffee, i am now my boss’s favorite employee! thank you Ophcrack! you will live im\n my heart forever man! whoooo! rock on guys! hahaha
on November 11th, 2007 at 7:07 am
sorry for double posting…
i apologize for the lines 5 and 8…
line 5:
his computer (admin account, and there are no other accounts on that
line 8:
employee! thank you Ophcrack! you will live in my heart forever man! whoooo!
i apologize for the errors…
again thank you and rock on!
hahahaha
on November 13th, 2007 at 4:42 pm
Sheesh am I bogg eyed! Any help appreciated.
What the heck did I do?…I don’t know, but it was me Gulp.
On restarting the laptop, I find I only have a limited user account. Strange, I thought I had admin account. Some progs that were previously working dont so I have gone through various efforts to establish administrator account but since I am only able to log in on limited account, I have no ability to change anything.
The laptop is running Xp Sp 2
Have tried to get ‘into’ pc by various means using Control Panel/Users/Etc
cmd line h/Key local etc, even thru regedit etc, but at the end of this attempt i cannot find or even create an administrator value.
Have tired safe mode too.
On startup the screen says cannot log you in, but it says ok and it does anyway?
Have tried cmd User accounts but get message that I am logged on as xxxxxxxxx\xxxxxxxxx and this account not a member of the Administrator’s group.
Asks me to enter user name an password of administrator - which I cannot - blah blah blah,
have also tried safe mode pressing control alt delete twice but nothing seems to be helping.
Just ran the Ophcrack thingy, (I mean put the disk in sat back and turned the pc on) and the only password I can see is for remote assistance, all others say EMPTY or remain blank.
Any ideas please.
jojo
on November 15th, 2007 at 11:09 am
The author of this should really go and read up on cryptoanalysis and how windows passwords work before publishing anything (repeating misinformation from other sites)
BTW it should be “Become a Cryptanalyst at Home” not “Become a Cryptanalysis at Home”, and that document wouldn’t get you into crypto kindergarten (and wouldn’t have way back in 1990 (or even 1970))
As for the rest of you you are not really fit to own a computer of any form and confirms why there are so many zombie machines on the internet.
I really don’t mean to be a troll but it truely saddens me to see such lack of knowledge, and for it to be represented as expertese.
on November 17th, 2007 at 8:38 am
Not to support the “Troll” but hey, I have to agree with Sad. You guys are pathetic! Fortunately, it’s things like this that keep professionals like us gainfully employed.
Hack on friends, break your computers and come grovelling to us for the remedy.
on November 24th, 2007 at 10:02 pm
It works perfectly fine. Does anyone know how to crack the passwords in a network?
Tc
on December 6th, 2007 at 11:05 pm
[…] NB : Cara lain menggunakan ophcrack di Windows dapat dilihat disini […]
on December 15th, 2007 at 10:40 am
just what I was looking for…
This guide is brilliant.
on December 15th, 2007 at 10:46 am
ComputerWizard said:
on November 24th, 2007 at 10:02 pm
It works perfectly fine. Does anyone know how to crack the passwords in a network?
Tc
———————————————————————-
response
———————————————————————-
I don’t know it so much, but I think that you have to click LOAD/From remote SAM and type the IP address. I wish that it will be useful to you.
Please answer me on johnnyprimavera@hotmail.com or in this forum.
bye
on January 3rd, 2008 at 9:57 am
I used before months OPH 1.1.3 and i cracked some password with 100%success! I try to do this again… and for home user it finds me the code : GEORG21 in LMPASSWD1 but it’s non valid when i write him to login in! In NTpasswd wrote not found! What is the problem???
Thx a lot!
on January 11th, 2008 at 9:24 am
Anyone HELP plz….!!!
on January 30th, 2008 at 9:54 pm
[…] I want my passwords in the cloud because at work because I use a locked-down Windows XP machine in an enterprise environment (I say “locked-down” in the sense that I can just rainbow table the Lan Manager but something tells me that hacking my enterprise is a ticket to new work opportunities… with other businesses.) At home I use a Macbook (OS X Leopard), thus, I need something cross-platform, fairly elegant, secure, and preferably cheap/free (and since open source is the only security software that can be really trusted, assuming someone has taken the time to look, it must be open source too). […]
on February 7th, 2008 at 2:25 pm
[…] The following is a description of an attack to crack the user passwords of windows accounts (up to XP), and implemented in a near-perfect way by ophcrack. If interested, do make sure to check this tutorial, it’s quite fascinating and yet unbelievably scary. […]
on February 8th, 2008 at 9:26 am
Hy all … one problem : i can’t download the 5k tables from the main website…
lasecwww.epfl.ch/SSTIC04-5k.zip cause…it’s broken…after 156 Mb it stops..I’ve searched google for torrents but no luck they are out of leeches/seeds …. can anyone tell me a working link ? cheers all out there
on February 10th, 2008 at 8:09 pm
[…] NB : Cara lain menggunakan ophcrack di Windows dapat dilihat disini […]
on March 12th, 2008 at 3:55 pm
Can i use this aplication to find out users passwords from active directory?
I have domain administrator account.
on March 19th, 2008 at 5:41 pm
I’m having a major problem getting the hash files for any of the accounts on my computer. Running the test hashes that this guy provides worked perfectly, but I cant get any real ones to work with… I already know all the passwords, I’m just running this so I know how, in case I ever need it (I have before). I have Ubuntu dual booted on my comp, so I tried going from there into the system32, but there is one folder and two files named “config,” none containing anything that looks like a hash. From windows the PWdump wont work, or I cant figure out how to use it… I tried running it from the command prompt, no luck, gives me a syntax error or nonixistant file. Please help, anyone?
on April 2nd, 2008 at 12:58 am
i did not find the way of downloading all of the stuff.
on July 15th, 2008 at 2:05 am
Icant open our windows xp because it was reseted but the old password is not recognize what could be the best way to open it again?
waiting for prompt reply thanks,