Ask a Question related to ASP.NET Security, Design and Development.
-
Paj #1
Cript querystring return value potentially dangerous
hi,
this code cript a querystring by Rijndael class:
_______________________
RijndaelManaged rjm = new RijndaelManaged();
rjm.KeySize = 128;
rjm.BlockSize = 128;
rjm.Key = ASCIIEncoding.ASCII.GetBytes(cÂ*hiave);
rjm.IV = ASCIIEncoding.ASCII.GetBytes(iÂ*v);
Byte[] input = Encoding.UTF8.GetBytes(S);
Byte[] output = rjm.CreateEncryptor().TransforÂ*mFinalBlock(input,
0,input.Length);
return Convert.ToBase64String(output)Â*;
______________________________
In one page i have this javascript with cript querystring
''
javascript:window.open('DownloÂ*adDocumento.aspx?i d=hiWQqPNzFsÂ*0ONpwkTsrFCw%3d%3d&est=ohPÂ*sZliSmWS E0hwYNIq7nA%3d%3d .....
''
ASP.NET return this error........................why ?
______________________________Â*___
Exception Details: System.Web.HttpRequestValidatiÂ*onException: A
potentially dangerous Request.QueryString value was
detected from the client (id="...iWQqPNzFs0ONpwkTsrFCw=Â*=").
______________________________Â*____
thank you
Paj
Paj Guest
-
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... -
Potentially odd animated gif question...
Greetings. I'm new to Fireworks... as in I just got the thing about nine hours ago *lol*. I've been tinkering with the various capabilites and... -
Cript::Primes tests fail while trying to implement Crypt::RSA from CPAN
Anyone tried installing Crypt::RSA successfully onto linux recently from CPAN, Crypt::Primes seems to be my prob......... I'm having a lotta... -
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: ... -
Joe #2
Re: Cript querystring return value potentially dangerous
Base64 has a few characters that might still trigger the .NET 1.1 input
validation checker. You should URL encode it before sending it to the user.
Joe K.
"Paj" <microsoft.com> wrote in message
news:com...
Joe Guest



Reply With Quote

