Hackpwd
Hackpwd
+++++++++++++++++++++++++++++++++++++++++++++
The device driver code listed below provides a data stream of passwords.
The device driver approach was used to speed up the process
of cracking passwords on an incremental basis. The usual approach was
to generate the passwords to a file, then reading the file, etc..the device
driver approach circumvents these file storage problems, and others, such as
having enough free disk space and delays from disk i/o.
This driver operates completely in memory (approx. 0.5Kb)
---------------------------
With the sample device driver provided, passwords starting at
'aaaaaaa' and ending with 'zzzzzzz' will be generated. The length
of the password string can be modified by changing the length of
the password string itself (that is, the variable "number"). The
range of characters in the passwords can also be changed by
modifying the following two lines:
;hackdrv.sys
;.
;.
;
for ending character--
cmp byte ptr [number+si],'z'+1 ;+1 past ending char. in range
------
If you had stopped a cracker program (eg: crackerjack) and want to
pick up from where you left off, run the program "modpwd.com".
Happy Hacking,
Uncle Armpit