Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Password MySQL

New Here ,
Jun 09, 2007 Jun 09, 2007
Hello all,

I have done some searching on the forums, but I don't see anyone with quite the same issue I'm experiencing.
I'm having an issue, with the way the password is checked with the server.

When connected to the server I can see the users passwords are encrypted. When the users password is normally entered, the log in fails.
I.E. User1 Password123

However, if the hash string is entered, the login is successful.
I.E. User1 8fb188f854ff0f1f8200c631ff9158dd

I hope that makes sense

This is a working data base, from a forum a friend and me manage. It seems like there is a authentication step missing, but I'm not sure where. Can anyone help please. =-/
TOPICS
Server side applications
232
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 10, 2007 Jun 10, 2007
Stinky Starfish escreveu:
> Hello all,
>
> I have done some searching on the forums, but I don't see anyone with quite
> the same issue I'm experiencing.
> I'm having an issue, with the way the password is checked with the server.
>
> When connected to the server I can see the users passwords are encrypted. When
> the users password is normally entered, the log in fails.
> I.E. User1 Password123
>
> However, if the hash string is entered, the login is successful.
> I.E. User1 8fb188f854ff0f1f8200c631ff9158dd

Probably it has an error of programming.

Passwords are recorded in data bases, never encrypted, but, yes,
codified. ( sha, md2, md4, md5, crc, etc... hashing ).

When an user enters a password, and this uses one of these processes of
codification to be recorded in the data base, the entered password must
be compared with this codified value.

The form used to get the password, must have a routine of conversion for
the used hash and, this hash is what must be verified!

>
> I hope that makes sense
>
> This is a working data base, from a forum a friend and me use. It seems like
> there is a authentication step missing, but I'm not sure where. Can anyone help
> please. =-/
>

And now, it makes sense for you?

--
zerof
http://www.educar.pro.br/
Apache - PHP - MySQL - Boolean Logics - Project Management
----------------------------------------------------------
Você deve, sempre, consultar uma segunda opinião!
----------------------------------------------------------
Deixe todos saberem se esta informação foi-lhe útil.
----------------------------------------------------------
You must hear, always, one second opinion! In all cases.
----------------------------------------------------------
Let the people know if this info was useful for you!
----------------------------------------------------------
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 14, 2007 Jun 14, 2007
LATEST
The way I under stand it, passwords are encrypted or codified by the login page, then the hash is sent to the DB for verification. If they match the log in is successful. What I want to know is, if there is there a spot in Dreamweaver 8 where the encryption method can be specified?
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines