Tagged Questions
The dangerous-request tag has no wiki summary.
9
votes
4answers
4k views
A potentially dangerous Request.Form value was detected from the client - ASP.NET MVC
I am getting this error in my ASP.NET MVC application where I am taking HTML input from a WYSIWYG so I don't want the content validated.
I have attempted the solution I found here but it seems to ...
3
votes
4answers
519 views
C# Kill all processes not essential to running Windows
I have an application. If the application is not used in 15 mins it needs to closes all other applications (forced closed) and the timer starts again. I do not want to crash windows 7 doing this. So ...
1
vote
2answers
378 views
Dangerous AVI files? Is any application which can open a media file under attack? [closed]
Can *.avi or any media file contain any script or dangerous code?
Today i saw following message in Microsoft Security Essentials:
Category: Trojan Downloader
Description: This program is dangerous ...
1
vote
1answer
227 views
Error “A potentially dangerous Request.Form value was detected from the client” despite the fixes for ASP.NET MVC 2?
Using ASP.NET 4.0 and MVC 2, I have added these suggested modifications:
In the web.config -
<httpRuntime requestValidationMode="2.0"/>
To the Controller -
<ValidateInput(False), ...
0
votes
0answers
24 views
strange url query showing up in errors
I have a page that's been throwing the occasional error due to a strange query appending itself to the url. My errors show this i being added:
&ved=1t:1527...
The ... means there's more. A ...
0
votes
2answers
613 views
“Potentially Dangerous Request.Form” Exception in a generic handler
I've seen this error before but cannot seem to get around it. In this case, I have an ASHX page spitting out a simple HTML form with a textbox into which XML may be posted. When I try to read the ...
0
votes
3answers
250 views
Potentially dangerous Request.Form value - Exception
today I receive multiple (50->*) e-mails regarding:
A potentially dangerous Request.Form value was detected from the client (ctl00$Content$InputStreet="OzgYPY <a href="http://effe...").
and
A ...
-2
votes
1answer
42 views
Unable to pass '<' in URL as parameter
Why am I unable to pass '<' character as a parameter in the URL?
If I do:
http://localhost:9566/?myVar=2 that is ok
But I cannot do:
http://localhost:9566/?myVar=<foo> Why does this give ...