Jump to content

MD5-Crypt


Lumio

Recommended Posts

Hi... I try to find a way to crypt a password as like the systemusers are.

I tried to split the salt in to parts:

$1$ and some signs for the salt ending with a $

For example:

crypt('password', '$1$balK.s2A$');

Is this correct?

Link to comment
Share on other sites

I am glad to see you using salt!

 

do something like this:

<?php
$pass = "doggybag";
$salt = "!@#!@#!@#16657567116711455687**//";
$ck = $_POST['password'];


if(md5($ck.$salt) === md5($pass.$salt){
echo "Correct Password";
}else{
echo "Incorrect Password";
}
?>

 

That should do it, but I did not test that all, post any errors!

Link to comment
Share on other sites

Hi Lamez... thx for your post... at least one, who knows the problem with passwords... but my problem was, that I want to generate a md5 (or even blowfish) hash for the shadow-file (I don't want to change that file directly, but with usermod I think it would be ok).

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.