Re: Crunch password list with exact length and number of letters and numbers known
Of course you can generate large wordlists and run into storage problems however there is a bigger problem. Most applications in BT4 can only handle 2GB or less sized files. 2GB is the maximum filesize for 32-bit OSs. Yes there are workarounds (crunch uses them) but john the ripper and aircrack can't use a wordlist greater than 2GB in size. Then there is performance impact. To maximize performance you should have enough free RAM to store the wordlist in RAM. If you have a 2GB wordlist with 1GB of RAM performance will be horrible.
Re: Crunch password list with exact length and number of letters and numbers known
I'm pretty sure BT4 is using a 64-bit kernel. As to the specifics of the word size you're using in this app or that (size_t vs size64_t), I don't know.
There's also no reason to store the passwords in memory or anywhere else after you have tried them and proven they don't work - this is what I was trying to say earlier. Depending on the level of parallelism in the particular app, I'd be surprised if you needed any more than a hundred passwords stored in memory at any given moment; just generate candidate passwords procedurally.
Re: Crunch password list with exact length and number of letters and numbers known
firstly i would like to say thanks for replying to my question, so thank you...
however i am clearly not grasping something still, maybe you could help me clear this up as well.
we have confirmed that my wordlist should come out @ 1.70934398 terabytes (according to the math posted earlier in the thread)
this is what i don't understand, a collegue of mine has a LM hash rainbow table set which i believe contains all the keyboard characters (excluding the UK pound sign, £ ). he isn't around at the moment but i believe it weighs in at around 40gb or so
how come this is substantially less in filesize than my only 8 character wordlist if in theory it should contain more combinations...i know LM takes a password splits it into 2 smaller words and makes it into UPPERCASE (something like that ;) but surely there is still many more combinations and therefore should equal a bigger filesize
the theory which jumps out at me straight away is that rainbow tables are in someway compressed hence his lower filesize, i can ask him later but can anyone shed any light on this for me please
regards
Re: Crunch password list with exact length and number of letters and numbers known
BT4 is 32-bit. It can support some 64 things using some gcc hacks (please don't quote me on this I really don't fully understand how it works). The old forums had a thread on 64-bit BT. I think it is at 64 bit version - Remote Exploit Forums
Re: Crunch password list with exact length and number of letters and numbers known
Oh hey, looks like you're right:
Code:
root@bt:~# gunzip -c /proc/config.gz | egrep CONFIG_64BIT
# CONFIG_64BIT is not set
root@bt:~#
In any case, I was being facetious in my earlier post - whether you're using a 32-bit kernel or a 64-bit kernel makes no difference, it's too much data to store, and since we're talking about an exhaustive brute force scenario, there's absolutely no reason to want to try to store it in the first place.
The point I was trying to make is that with a password of this length, brute force just isn't feasible - forget about storage, even if you totally luck out and the password just happens to begin with 'aaaa' (meaning it'll be right up near the beginning of the list of passwords you try), and even if you've got some kind of supercomputer that can do a billion password tests per second, you're still going to have to wait for up to 8 million years to recover the password.
Anyway, on to the OP and his rainbow tables question:
You're comparing apples and oranges - on the one hand, you want an exhaustive list of every possible password that meets certain criteria so that you can try each one until you find the right one.
On the other hand, your friend has a list of password strings organized in such a manner that - if you know a hashed password string - then you can lookup a string that will produce the same password hash very quickly.
In this scenario, your friend has better information than you do - he knows what the a hashed password is, and he knows the algorithm that was used to produce the hash (LM). With these two pieces of information, he can get the answer much quicker.
Note that this isn't a hard and fast kind of a relationship - in this particular case, your friend has the advantage.
If, on the other hand, your friend knew that the hash algorithm was MD5 or SHA, then he might very well be screwed because it's not yet feasible to create a complete rainbow table containing password strings for every possible hash value for these algorithms yet, but you might be OK because you happen to know that the password is only 5 mixed alpha characters and it's not infeasible to brute force that.
Re: Crunch password list with exact length and number of letters and numbers known
Hi guys just wondering if any off you know how to tell crunch to make a alphanumeric wordlist 8 characters long but to exclude ALL combos with repeat letters/numbers and word that are not letter/num/letter/num/letter/.... or num/letter/letter/....etc ???
as i believe this is more realisable format and would cut down size by quite some way although i'm sure still massive!
Thanks
B.
Re: Crunch password list with exact length and number of letters and numbers known
Quote:
Originally Posted by
purehate
Sure you would do it like this:
crunch 20 20 abcdefghijklmnopqrs9 > passwordlist.txt
I am sorry. I am new to BT4. When I type above commond in in BT4. It returned command not found. I booted up using a CD. How do I get above command to work?