Jump to content

Client Sided PHP Security Tool


Silverado_NL

Recommended Posts

hi everybody.
while i whas working on a login script for my forum, i stumbled upon a term called packet sniffing.
if you send your password in plain text or unecrypted then somebody could just read it!.
so i thought well then ill use the MD5 or swordfish hashing function to make it safer.
and then to send it over the internet to the database.
but since php is sever sided this is gonna be a problem for me.
i dont know JS or any other client sided programming language.
so here is my question.
is it possible to make a encryption tool with the PHP programming language that will encrypt the password on the client side.
are there php compilers on the internet?
and if there are!
are they any good for using these with encryption methods???

thanks in advance.


Greets Silver
Link to comment
https://forums.phpfreaks.com/topic/19135-client-sided-php-security-tool/
Share on other sites

If you want to encrypt the data being sent to and from the server you'll want to use SSL (Secure Socket Layer). Which you can get openSSL for free to be installed on your server. Then to have a secure connection goto https://mysite.com and any requests to and from the server will be encrypted.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.