sammy
06-03-2003, 11:06 AM
Hi Everyone!
I am really into programming with ASP. I work on it two years ago. I have learnt new stuff everyday via internet and by friends.
But one thing dat make me kinda stress is da security of transfering da information when u submit your form.
HELP ME
I got a form as below :
<form name="register" method="post" action="register.asp">
<input type="text" name="username">
<input type="password" name="password">
</form>
When we submit da form, in da "register.asp"
User=request.form("username")
Paswd=request.form("password")
The problem is
When we use a free software to scan all da data via TCP and UDP protocol ( IE ; Sniffer, Etheral...etc), we will all da information which is not crypted.
So when a user register on my page, and someone is auditing da network, he/she will see all da "username" and "password" before sending to da "register.asp" page.
Wat can we do?
Is there any option to modify or to cryt all the information before sending to da action page?
If not, pls suggest me one of da solution u have used.
I really need the information to be changed before sending to action page. Not after.
Thank a lot,
I wish to get a response from you.
Sammy
I am really into programming with ASP. I work on it two years ago. I have learnt new stuff everyday via internet and by friends.
But one thing dat make me kinda stress is da security of transfering da information when u submit your form.
HELP ME
I got a form as below :
<form name="register" method="post" action="register.asp">
<input type="text" name="username">
<input type="password" name="password">
</form>
When we submit da form, in da "register.asp"
User=request.form("username")
Paswd=request.form("password")
The problem is
When we use a free software to scan all da data via TCP and UDP protocol ( IE ; Sniffer, Etheral...etc), we will all da information which is not crypted.
So when a user register on my page, and someone is auditing da network, he/she will see all da "username" and "password" before sending to da "register.asp" page.
Wat can we do?
Is there any option to modify or to cryt all the information before sending to da action page?
If not, pls suggest me one of da solution u have used.
I really need the information to be changed before sending to action page. Not after.
Thank a lot,
I wish to get a response from you.
Sammy