in reply to Re^2: Form Parameters
in thread Form Parameters

This has the risk that the user could construct an HTTP request that included data for fields not in the form sent by the server. Depending on what is done with the data this could, for example, allow someone to edit a field that users aren't supposed to be able to edit.

So if this technique is used, it is important to be aware of potential security issues and include protection against them.

Replies are listed 'Best First'.
Re^4: Form Parameters
by marto (Cardinal) on Aug 04, 2006 at 16:54 UTC
    Hi dorward,

    Thanks for pointing out this issue, something that I had not thought about.

    Martin