Ask a Question related to ASP.NET Security, Design and Development.
-
Vinay Panchal #1
Re: A potentially dangerous Request.QueryString value was detected
Hi,
The querystring contains a custom error message while we are trapping
any duplicate record entry. The exact string is
as given below:
"Adding the record failed.<br>Error Code: 2627<br>Error Description:
Duplicate value."
The same thing works find on development m/c whereas on most of the m/c
its throwing the said error message.
Hope this will be of any use.
regards
Vinay
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Vinay Panchal Guest
-
What is the difference between REQUEST and REQUEST.QUERYSTRING?
What is the difference between these two statements? They seem to do the same thing... response.write(request("variable")) ... -
Getting "A potentially Dangerous Request.Cookies Value" error
Hello, I recently upgraded from VS.NET 2002 to VS.NET 2003. Since I did that, I receive the following error from time to time: A potentially... -
A potentially dangerous querystring ... [ValidateRequest]
All, When i use .net FRamework 1.1, for my web application, i get an error saying "A potentially dangerous querystring was detected from the... -
Confused about a REQUEST.FORM and a REQUEST.QUERYSTRING
This is snipit of code, supplied by PayPal with explanation about what has to be done to access their back end. I am confused because they first... -
difference bet. request.querystring and Request.Params
request.params for asp.net is the httprequest object, and this method gets a combined collection of querystring, cookies, form and servervars... -
Patrice Scribe #2
Re: A potentially dangerous Request.QueryString value was detected
It's likely that < and > are disallowed in the query string (to prevent
someone injecting javascript code in the query string that could then be
executed). I don't know if this an ASP.NET setting or if a tool such as
URLSCAN is in use...
for now you may want to adjust this setting but generally it's preferable to
avoid passing such things in the querystring. Yo'ull find some details at
[url]http://www.microsoft.com/technet/treeview/default.asp?url=/technet/security/[/url]
news/crssite.asp and especially a link to
[url]http://support.microsoft.com/default.aspx?scid=kb;en-us;Q252985&sd=tech[/url]
--
"Vinay Panchal" <vinay@vbsoftindia.com> a écrit dans le message de news:
#5DR45eRDHA.1324@TK2MSFTNGP11.phx.gbl...> Hi,
>
> The querystring contains a custom error message while we are trapping
> any duplicate record entry. The exact string is
> as given below:
>
> "Adding the record failed.<br>Error Code: 2627<br>Error Description:
> Duplicate value."
>
> The same thing works find on development m/c whereas on most of the m/c
> its throwing the said error message.
>
> Hope this will be of any use.
>
> regards
>
> Vinay
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!Patrice Scribe Guest
-
Vinay Panchal #3
Re: A potentially dangerous Request.QueryString value was detected
Thanks. i will try removing the <br> tags and let u know if it works.
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Vinay Panchal Guest
-
Egbert Nierop \(MVP for IIS\) #4
Re: A potentially dangerous Request.QueryString value was detected
"Vinay Panchal" <vinay@vbsoftindia.com> wrote in message
news:%237UQ1upRDHA.2196@TK2MSFTNGP11.phx.gbl...To me this feature is an MS overreaction on security>
> Thanks everybody for the help.
> It works after removing the script tags from the querystring parameter.
>
> Still if anybody can find any other solution to this, its always welcome
<?xml version="1.0"?>
<configuration>
<system.web>
<pages validateRequest="false"/>
etc
--
compatible web farm Session replacement for Asp and Asp.Net
[url]http://www.nieropwebconsult.nl/asp_session_manager.htm[/url]
> regards
>
> Vinay
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!Egbert Nierop \(MVP for IIS\) Guest



Reply With Quote

