Offline
werdna123 wrote:
What are Md5 hashes?
md5 hashes are hexadecimal numbers that are only the same for the same text e.g. capitalizing one letter in this sentence would make a completely different hash
███████ █|MD5|█ ███████
2b0efd5f5bfe461b61e7ac38ceeb5596
Offline
funelephant = a2fa3090bc4ac69e6d66ae46b3f41c34
Nicki Minaj = 206852b9306afa2b3c5dc232aab226f1
oooooogaaaablooooogaaa = 2f43a59c3931223b02ec659cefcc79af
I hate saying hash. It makes me want hash browns.
Last edited by funelephant (2012-07-30 15:00:15)
Offline
BirdByte wrote:
veggieman001 wrote:
Here's my password:
31671636e6c6a22a935cb5334a5b400dWow, you really trust in this.
Offline
veggieman001 wrote:
BirdByte wrote:
veggieman001 wrote:
Here's my password:
31671636e6c6a22a935cb5334a5b400dWow, you really trust in this.
You can't "un-hash" a hash. Correct?
Offline
BirdByte wrote:
veggieman001 wrote:
BirdByte wrote:
Wow, you really trust in this.
I have a bruteforcer, you know.
I'd like to see you try it.
funelephant wrote:
veggieman001 wrote:
BirdByte wrote:
Wow, you really trust in this.
You can't "un-hash" a hash. Correct?
No, but you can brute-force it.
Last edited by veggieman001 (2012-07-30 15:18:38)
Offline
veggieman001 wrote:
BirdByte wrote:
veggieman001 wrote:
BirdByte wrote:
Wow, you really trust in this.
I have a bruteforcer, you know.
I'd like to see you try it.
funelephant wrote:
veggieman001 wrote:
You can't "un-hash" a hash. Correct?
No, but you can brute-force it.
What's that?
Sorry if I seems stupid
Offline
funelephant wrote:
veggieman001 wrote:
BirdByte wrote:
veggieman001 wrote:
BirdByte wrote:
Wow, you really trust in this.
I have a bruteforcer, you know.
I'd like to see you try it.
funelephant wrote:
You can't "un-hash" a hash. Correct?No, but you can brute-force it.
What's that?
Sorry if I seems stupid
basically
You try out all possible combinations until you get it
Offline
muppetds wrote:
funelephant wrote:
veggieman001 wrote:
BirdByte wrote:
veggieman001 wrote:
BirdByte wrote:
Wow, you really trust in this.
I have a bruteforcer, you know.
I'd like to see you try it.
No, but you can brute-force it.What's that?
Sorry if I seems stupidbasically
You try out all possible combinations until you get it
Oh O.o
Offline
veggieman001 wrote:
BirdByte wrote:
veggieman001 wrote:
I have a bruteforcer, you know.
I'd like to see you try it.
funelephant wrote:
veggieman001 wrote:
You can't "un-hash" a hash. Correct?
No, but you can brute-force it.
im having a go at brute forcing it
Just to see if i can brute force it
Last edited by muppetds (2012-07-30 15:40:31)
Offline
veggieman001 wrote:
funelephant wrote:
veggieman001 wrote:
You can't "un-hash" a hash. Correct?
No, but you can brute-force it.
Or use a dictionary attack; a modern computer should be able to run through the entire dictionary in about a couple minutes.
However, to protect yourself from password crackers, make sure to use a complex password using uppercase, lowercase, numbers, and symbols. Also make sure it contains no words from the dictionary.
If you are a website owner, you can protect your user's passwords by salting. You do this by generating a random hexadecimal number that should be about 6-8 characters long when the user first signs up, and storing that in the database, and then running it through this php script ($password refers to a plaintext password, $salt is the hexadecimal number, and $encrypted_password is what you should store in the database as the password) Also note that this is only one way to salt hashes. (it's the way MyBB does it). There are other ways.
Anyways, here's the way I said:
$hashed_password = md5($password); $encrypted_password = md5(md5($salt).$encrypted_password);
Offline
I'm 8c6b0ae4ba3cb4d4716e166d1c1540f0ing this topic
Offline
Offline
Would it be possible to make an MD5 hash in scratch somehow? Then you could have an actual login system.
Last edited by ImagineIt (2012-08-01 22:49:33)
Offline
veggieman001 wrote:
Here's my password:
31671636e6c6a22a935cb5334a5b400d
I can decrypt MD5 hashes if I know the key.
Last edited by GameHutSoftware (2012-08-03 18:37:56)
Offline