remove senha do laptop [duplicata]

0

Eu tenho um laptop e ele tem sua senha pelo scanner de impressão digital com a impressão digital do meu irmão e ele viajou para o exterior. Eu quero fazer login no laptop, mas não consigo. Então, o que posso fazer para resolver esse problema?

    
por Community 27.09.2010 / 16:24

2 respostas

0

Você pode tentar baixar Ophcrack e gravá-lo em um CD / DVD. Inicialize a partir dele e ele obterá as senhas do Windows na máquina.

Basicamente, isso levará os hashes NTLM e os executará contra as tabelas do arco-íris, tentando obter a senha.

Se você só pode fazer o login via impressão digital, isso não funcionará.

    
por 27.09.2010 / 18:22
-2

Esta informação é retirada do texto bastante útil em studyhat.blogspot. co.uk pode ajudar.

Resetting windows password using linux livecd

  1. Put the livecd in the cd/dvd drive and boot your windows machine from the livecd. (The application that we are going to use is chntpw. In this example, we will be using fedora/ ubuntu livecd.)
  2. Once booted, open the terminal and check for tool named chntpw. If not there, you can install it using:

    $ yum install chntpw

    • if you're using ubuntu live cd:

    $ sudo apt-get install chntpw

  3. After the tool is ready, mount the windows partition. Use "fdisk -lu" to check which partition should be mounted. To mount /dev/sda1 (assuming your windows partition is on /dev/sda1), use below command:

    $ su mount /dev/sda1 /mnt

  4. Find SAM file on the windows partition. Usually it is located in Windows/System32/config. Run the chntpw on the SAM file.

    $ cd /mnt/Windows/System32/config

  5. List all user in the SAM record

    $ chntpw -l SAM

  6. Interactively edit user credential

    $ chntpw -i SAM

  7. Follow the wizard of chntpw and clear administrator or any user's password that you want to access.

  8. Save changes and restart machine. You can access the windows without password for administrator and users that you have cleared their password. Make sure you take out the livecd, otherwise the machine will boot into it instead of windows.

chntpw help:  

chntpw version 0.99.6 080526 (sixtyfour), (c) Petter N Hagen
chntpw: change password of a user in a NT/2k/XP/2k3/Vista SAM
file, or invoke registry editor.

chntpw [OPTIONS] [systemfile] [securityfile] [otherreghive] [...]
 -h    This message
 -u    Username to change, Administrator is default
 -l    list all users in SAM file
 -i    Interactive. List users (as -l) then ask for username to change
 -e    Registry editor. Now with full write support!
 -d    Enter buffer debugger instead (hex editor),
 -t    Trace. Show hexdump of structs/segments. (deprecated debug function)
 -v    Be a little more verbose (for debuging)
 -L    Write names of changed files to /tmp/changed
 -N    No allocation mode. Only (old style) same length overwrites possible
    
por 27.09.2010 / 16:39

Tags