Author Topic: Need help on LM hash - NT hash  (Read 614 times)

billy_z

  • Newbie
  • *
  • Posts: 3
  • Kudos: 0
Need help on LM hash - NT hash
« on: 26 March 2002, 10:41 »
hi, all
I'm writing a program to bruteforce windows password (SAM).

anyone can provide me some information on the encryption algorithm used by LM hash or NT hash? this is my project for distributed computing class.

thanks.

ChakanTGM

  • Member
  • **
  • Posts: 63
  • Kudos: 0
    • http://crackice.cjb.net
Need help on LM hash - NT hash
« Reply #1 on: 26 March 2002, 11:47 »
Sounds great! You'll be competing with LC3 and AntExp and the like, though. In order to do that, you'll need to learn about SYSKEY too. I'm sure you've thought about that already, though . . .

I'm pretty certain that information on LanMan and Nt hashes can be found here -

http://neworder.box.sk

If not, it's somewhere else on the box network.

Good luck on the program!
crackice.cjb.net

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
Need help on LM hash - NT hash
« Reply #2 on: 26 March 2002, 11:49 »
There are two good sources that I can think of complete with code. One is Samba (get the source from http://www.samba.org). And the other is "chntpw" which you can find complete with source here: http://home.eunet.no/~pnordahl/ntpasswd/

Of course if you want to cheat and take the easy way out there are plenty of crack tools out there with source, but that would be no fun.

[ March 26, 2002: Message edited by: VoidMain ]

Someone please remove this account. Thanks...

ChakanTGM

  • Member
  • **
  • Posts: 63
  • Kudos: 0
    • http://crackice.cjb.net
Need help on LM hash - NT hash
« Reply #3 on: 26 March 2002, 11:57 »
Those are great sources VoidMain. SAMBA, most obviously, would use NetBIOS to authenticate and would thus use the hashes.

But chntpw? I've never took a peek at the source for that one but I guess that makes sense. It does write the hashes to the SAM so it must know the hash algorithm.

Good thinking. Both use *NIX however. But that shouldn't be much of a problem.

What website am I at again?  
crackice.cjb.net

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
Need help on LM hash - NT hash
« Reply #4 on: 26 March 2002, 12:01 »
Yeah, being *NIX apps really wouldn't matter as the algorithms themselves would not be platform specific.  Should be able to cut/paste them into your own C program.
Someone please remove this account. Thanks...