Hi All,
How can I limit the max value for Server.ScriptTimeout property?
A malicious user can run a script like this:
<%
Server.ScriptTimeOut = 3600 ' one hour
Do While True
Response.Write "fucking webserver..."
Loop
%>
This script will run looping for 1 hour. IIS server will crash or use all
memory avaliable...
My server has script timeout set to 15 seconds, but this setting is ignored
if the user modify the Server.ScriptTimeout property.
Any ideas?
Thank's
--
Marcelo Coelho