Recent Posts
Archives
@ChrisJohnRiley
- RT @nostarch: Use code REVERSEIT to get 40% off "Practical Malware Analysis"! One week only! Free ebook w/ all print book purchases. htt ... 1 hour ago
- [SuggestedReading] CVE-2012-0209 Horde backdoor analysis (via @xme) http://t.co/XLYpwTMQ 8 hours ago
- [SuggestedReading] Cloudcracker (A password cracking service for penetration testers and… http://t.co/FCd3TkpM 8 hours ago
- [SuggestedReading] DEF CON 20 - Call for Papers http://t.co/W4NtyaVx 12 hours ago
- RT @moxie: I've just released CloudCracker, a general-purpose cloud-based password cracking service, complete with an API: https://t.co/ ... 12 hours ago
- Fixed my refeed... PHP and UTF-8... Oh the pain! Sorry about the SuggestedReading spam flood 23 hours ago
Flickr Photos
|
Links
Disclaimer
The contents of this personal blog are solely my own opinions and comments, as such they do not reflect the opinions of my employer(s) past, present or future. No legal liability is accepted for anything you do, think, or consider fact as the basis of articles and links posted on this blog.
"Three to one...two...one...probability factor of one to one...we have normality, I repeat we have normality. Anything you still can’t cope with is therefore your own problem."
Note: A large portion of content I post on my blog comes from "live blogging" of security conferences. These posts are in notes form and are written live during a talk. As such errors and emissions are expected. I'm only human after all!






What can be done when the challenge isnt 1122334455667788 ?
Does rainbowtablesonline support suc hashes ?
How much time will it take to generate a halflmchall rt for a custom challenge ??
Thanks
Things become a little more tricky if the challenge isn’t 1122334455667788. The beauty of rainbow tables is that the hard processing work has already been done once for the challenge, so whenever you use the rainbow table the time is significantly reduced. If the challenge isn’t set to 1122334455667788 (as it should be if you use something like CAIN or Metasploit to effect the authentication) then there is little point in creating a rainbow table specifically for that challenge. It will take just as much time (possible a more with overhead on writing the tables to disk etc..) as performing a simple brute-force attack against it. I’d suggest inputting the hashes into CAIN (with the challenge) using the USERNAME:DOMAIN:1122334455667788:LMHASH:NTHASH format and letting it perform a brute-force attack. Unless you’ve got a stack of hashes using this new challenge then going the rainbow tables route isn’t realy going to bring you much benefit.
Hope that helped, and good luck with the cracking.
Thanks ChrisJohnRiley. Your answer was really helpful.
Thanks a lot