Click here to Skip to main content
15,886,919 members
Home / Discussions / Web Development
   

Web Development

 
QuestionProvide Name to Intranet Pin
suveenmohan9-Feb-07 1:00
suveenmohan9-Feb-07 1:00 
AnswerRe: Provide Name to Intranet Pin
Bradml9-Feb-07 2:49
Bradml9-Feb-07 2:49 
JokeRe: Provide Name to Intranet Pin
badgrs9-Feb-07 3:14
badgrs9-Feb-07 3:14 
GeneralRe: Provide Name to Intranet Pin
suveenmohan10-Feb-07 0:48
suveenmohan10-Feb-07 0:48 
GeneralRe: Provide Name to Intranet Pin
Bradml10-Feb-07 0:52
Bradml10-Feb-07 0:52 
GeneralRe: Provide Name to Intranet Pin
suveenmohan10-Feb-07 1:02
suveenmohan10-Feb-07 1:02 
GeneralRe: Provide Name to Intranet Pin
Bradml10-Feb-07 1:04
Bradml10-Feb-07 1:04 
GeneralRe: Provide Name to Intranet Pin
suveenmohan11-Feb-07 19:46
suveenmohan11-Feb-07 19:46 
GeneralRe: Provide Name to Intranet Pin
Bradml11-Feb-07 19:47
Bradml11-Feb-07 19:47 
GeneralRe: Provide Name to Intranet Pin
suveenmohan11-Feb-07 20:19
suveenmohan11-Feb-07 20:19 
GeneralRe: Provide Name to Intranet Pin
Bradml11-Feb-07 20:28
Bradml11-Feb-07 20:28 
GeneralRe: Provide Name to Intranet Pin
suveenmohan11-Feb-07 21:10
suveenmohan11-Feb-07 21:10 
GeneralRe: Provide Name to Intranet Pin
Bradml11-Feb-07 21:12
Bradml11-Feb-07 21:12 
GeneralRe: Provide Name to Intranet Pin
Bradml10-Feb-07 0:53
Bradml10-Feb-07 0:53 
QuestionProvide Name to Intranet Pin
suveenmohan9-Feb-07 0:58
suveenmohan9-Feb-07 0:58 
QuestionRe: Provide Name to Intranet Pin
badgrs9-Feb-07 3:13
badgrs9-Feb-07 3:13 
AnswerRe: Provide Name to Intranet Pin
suveenmohan11-Feb-07 20:23
suveenmohan11-Feb-07 20:23 
QuestionJavascript class and setTimeout function Pin
User 98858-Feb-07 20:53
User 98858-Feb-07 20:53 
AnswerRe: Javascript class and setTimeout function Pin
Bradml9-Feb-07 2:48
Bradml9-Feb-07 2:48 
GeneralRe: Javascript class and setTimeout function Pin
User 98859-Feb-07 5:06
User 98859-Feb-07 5:06 
Questionvisual studio 2005 Pin
Member 36991928-Feb-07 18:22
Member 36991928-Feb-07 18:22 
AnswerRe: visual studio 2005 Pin
kubben9-Feb-07 7:12
kubben9-Feb-07 7:12 
QuestionEncrypt URL to prevent parameter tampering attacks [modified] Pin
SindyatIndy8-Feb-07 7:24
SindyatIndy8-Feb-07 7:24 
AnswerRe: Encrypt URL to prevent parameter tampering attacks Pin
User 98858-Feb-07 21:24
User 98858-Feb-07 21:24 
Why not use SSL, TLS etc?

The only content that the server cannot encrypt are the ones that are in the control of the browser or entered by the user. If the user puts in enough effort, he can modify it, if the encryption is done at the client. Why? because he has the algorithm code, the key and the data. He just needs to modify the data and send it.

I am guessing that you are doing some validation in Javascript on the client, and don't want to duplicate the effort on the server. If this is the case, it is a bad idea to start with. All user entered data that comes into your web application MUST be sanitized on the server. The javascript part can be retained to reduce round trips everytime there is an error.

Thomas

modified 29-Aug-18 21:01pm.

AnswerRe: Encrypt URL to prevent parameter tampering attacks Pin
User 98858-Feb-07 21:28
User 98858-Feb-07 21:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.