Tagged Questions
The AntiXSS Library is a .NET assembly provided as part of the Web Protection Library, a Microsoft Open Source project. It provides various encoding functions for use in web applications. Encoding functions generally take un-trusted input and translate it into a format which is suitable for inclusion in output, minimising the risk of injection attacks such as Cross Site Scripting. Its approach differs from the built-in encoders in the .NET framework in
12
votes
5answers
3k views
What is the difference between AntiXss.HtmlEncode and HttpUtility.HtmlEncode?
I just ran across a question with an answer suggesting the AntiXss library to avoid cross site scripting. Sounded interesting, reading the msdn blog, it appears to just provide an HtmlEncode() method. ...
11
votes
2answers
2k views
Should I use the Anti-XSS Security Runtime Engine in ASP.NET MVC?
I have been reading up on Anti-XSS Security Runtime Engine and it looks like a nice solution for web forms because it inspects controls via reflection and automatically encodes data where appropriate. ...
8
votes
2answers
748 views
Examples of XSS vulnerabilities that get by ASP.NET 4 <%: %> or Razor encoding but are caught by AntiXSS
I'm looking for an example of an XSS vulnerability that would be stopped just by using the AntiXSS Encoder 4.1 Beta as the runtime encoder (setting in system.web/httpRuntime). I would prefer something ...
6
votes
2answers
327 views
<%: %> vs Microsoft the anti XSS library
With .net 4 there's a new <%: %> script enclosure that's like <%= %> but does an html encode. People are encouraging the use of this new syntax.
My question is, does <%: %> protect against ...
6
votes
3answers
3k views
Why use Microsoft AntiXSS library?
When you can simply encode the data using HttpUtility.HtmlEncode, why should we use AntiXss.HtmlEncode?
Why is white list approach better than black listing?
Also, in the Anti XSS library, where do ...
5
votes
3answers
612 views
ASP.NET MVC 2 - AntiXSS vs Built In MVC Encoding
Now that MVC has introduced HTML Encoding via
<%: blah %>
is there still value in using
<%= AntiXSS.HTMLEncode(blah) %>
instead?
For Example: My application will take all ...
4
votes
2answers
239 views
What is the best way to store WMD input/markdown in SQL server and display later?
I'm looking at using WMD in my project instead of my existing RadEditor. I have been reading a few posts on how to store and retrieve the data, and I want to make sure I have the concept correct ...
4
votes
2answers
1k views
Is there a good reason why AntiXss.JavaScriptEncode wraps result in single quotes?
I've been using Microsoft's AntiXss Library and was wondering if there is a good reason why its JavaScriptEncode method wraps the result in single quotes? That behavior seems unconventional.
3
votes
4answers
68 views
Script exploits in ASP.NET - Is setting validateRequest=“true” good advice?
I was reading about ASP.NET Script Exploits, and one of the suggestions is: (emphasis is mine; and the suggestion is #3 in section "Guarding Against Scripting Exploits
" in the web page)
If you ...
3
votes
2answers
608 views
Microsoft AntiXSS - Is there a need to Decode?
The HttpUtility class provides for both encoding and decoding. But, when I use the MS AntiXSS 3.1 Library I have a set of methods only for encoding, does this mean decoding can be avoided?
For ...
3
votes
3answers
870 views
Fortify and AntiXSS
My company requires our ASP.NET code to pass a Fortify 360 scan before releasing the code. We use AntiXSS everywhere to sanitize HTML output. We also validate input. Unfortunately, they recently ...
3
votes
4answers
1k views
Sanitize HTML before storing in the DB or before rendering? (AntiXSS library in ASP.NET)
I have an editor that lets users add HTML that is stored in the database and rendered on a web page. Since this is untrusted input, I plan to use ...
3
votes
1answer
633 views
Suggestions for where to put AntiXSS calls in ASP.NET MVC
I am attempting to find the optimal method of guarding against Cross Site Scripting in my ASP.NET MVC application. I planned to use Microsoft’s AntiXSS library and essentially guard on two levels: 1) ...
3
votes
3answers
2k views
Using MS Anti XSS library for sanitizing HTML
In the intent of preventing XSS attacks, I am updating a page in which we have a textbox that accepts HTML, stores it in a database and retrieves and renders it at a later time.
My understanding is ...
2
votes
1answer
88 views
HTML sanitizer in ASP.NET MVC that filters dangerous markup, but allows the rest
I know that lot of questions about HTML sanitizers have appeared in SO, but I don't know if they do what I want, I have a little mess since some of the recommended approaches have more than 4 years ...
2
votes
5answers
150 views
How to encode embedded javascript in Razor view in ASP.NET MVC 3?
How do I properly encode JavaScript in the following context:
<html>
...
<script type="text/javascript">
var settings = @Html.PleaseEncode(settings.ToJson());
// ...
</script>
...
2
votes
1answer
283 views
How to use AntiXss in my Project?
I want to use AntiXss library function in my web application. I have a web application which contain asp.net pages with Jquery code in code behind. Whole asp.net pages run through Jquery js pages. I ...
2
votes
1answer
115 views
ASP.NET 4 MetaKeywords and MetaDescription being Encoded
I'm using the ASP.NET 4 MetaKeywords and MetaDescription on every page to set the appropriate meta tags. I also use the Anti XSS Library as the default encoder in the application.
The tags end up ...
2
votes
3answers
1k views
XSS - SQL Injection — Owasp vs AntiXss Vs Microsoft Anti-Cross Site Scripting Library
We are looking at using a library to help us detect SQL injections.
We are using sprocs and parametrized statements, but for the sake of this post that we are only using some sore of library that ...
1
vote
1answer
58 views
How to config AntiXSS with .Net 3.5?
Hi I am using Ajax HtmlEditorExtender for my one of TextBox. It is strongly recommended to use the AntiXSS Sanitizer. Following is what I added in my web.config.
<configSections>
...
1
vote
0answers
36 views
Microsoft Web Protection Library doesn't encode XSS on ASP.NET 4.0 Webforms gridview
I've got an ASP.NET 4.0 webforms app that uses some gridviews. I'm trying to get the MS Web Protection Library to correctly encode data in the gridview so that it protects against cross-site-scripting ...
1
vote
2answers
72 views
Is there a minimum-trust equivalent of the Web Protection Library (Anti-XSS)?
I am working on a project that requires some HTML sanitization. Normally, I would turn to the Microsoft Web Protection Library; however, in this case, I am developing an application running in minimal ...
1
vote
2answers
217 views
Microsoft AntiXSS wpl using in asp.net mvc3 applicaton
As far as i know asp.net mvc3 is quite secure but is there any places I can use Microsoft AntiXSS library there to get more security? http://wpl.codeplex.com/
How can I found any places inside my ...
1
vote
3answers
587 views
Can't include Microsoft.Security.Application?
I can't include Microsoft.Security.Application
using Microsoft.Security.Application;
Gives this error:
The type or namespace name 'Security' does not exist in the namespace 'Microsoft' (are you ...
1
vote
3answers
304 views
Are there any anti-XSS libraries for ASP.Net?
I was reading some questions trying to find a good solution to preventing XSS in user provided URLs(which get turned into a link). I've found one for PHP but I can't seem to find anything for .Net.
...
1
vote
2answers
326 views
How to use Microsofts WPL / Anti-XSS as default HTTPEncoder?
I want to use Microsofts WPL AntiXSS Library as default HTTPEncoder as described at haacked but this documentation is for WPL 3.1 and I've read that there is a change regarding HTTPEncoder with latest ...
1
vote
1answer
923 views
AntiXss library not working well
I am using AntiXssLibrary 4.0 but it not escaping \x3c. What is my mistake?
I have configure the AntiXss to be a default HttpEncoder based on here ...
1
vote
1answer
403 views
why does MS anti xss library (v4) remove html 5 data attributes
AntiXss library seems to strip out html 5 data attributes, does anyone know why?
I need to retain this input:
<label class='ui-templatefield' data-field-name='P_Address3' ...
1
vote
1answer
343 views
Problem with encoding using AntiXss library
I am using AntiXss library 4.0 for encoding text before displaying on the asp page.
<asp:Label Text="text" runat="server" ID="lblTest" />
<asp:ListBox runat="server" ID="lsbTest">
...
1
vote
3answers
318 views
IE8 window.open name - doesn't like JavaScript encoding?
I'm calling window.open() like this:
window.open('blank.html', 'New_Window\x3a_Jamie', 'width=800,height=800');
What I've done in the code is taken the window's name and JavaScript encoded it using ...
1
vote
1answer
254 views
How to get Microsoft's AntiXss library to URLEncode to the URI standard (RFC3986) instead of an IRI (RFC3987)?
I'm using the Microsoft AntiXss 3.1 library. We have a number of international sites which use non-Latin scripts. We're using SEO-friendly URL's, so we have non-ASCII characters that end up in the ...
1
vote
2answers
779 views
Which Anti-XSS library should I use? Microsoft XSS 4.0, Web Protection Library on Codeplex, or other?
Seems like Microsoft updated the Anti XSS library today:
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=f4cd231b-7e06-445b-bec7-343e5884e651
In addition there is a new release of the ...
1
vote
1answer
585 views
AntiXss.UrlEncode vs. AntiXss.HtmlAttributeEncode usage in link (a href)
According to old AntiXss article on MSDN AntiXss.UrlEncode is used to encode link href (Untrusted-input in the following example):
<a ...
1
vote
1answer
33 views
would i need antixss for report printing
I have a report web page that allows you to export records shown to an excel file. I'm using AntiXss to display them on the screen but when a user opts to export to file and I go and get the records ...
1
vote
1answer
239 views
html agility pack vs antixss
It seems to me just using the html agility pack would work to prevent xss (parse then get innertext). Would it be repetitive to use antixss after using hap?
Thanks,
rod.
1
vote
3answers
671 views
How to encode JavaScript text inside an XML attribute?
I have a piece of JavaScript string, coming from an untrusted source, embedded inside of an onclick tag and I'm not sure what the correct way of encoding this string is. Here is a simplification of ...
1
vote
1answer
494 views
Is the Microsoft AntiXSS library useful and do I need it if I'm using server controls?
I've downloaded and looked at the Microsoft AntiXSS library, but I'm not 100% sure I need to use it for server controls (asp:textbox, etc). Everything is fine when I use it with a standard html ...
1
vote
1answer
460 views
Javascript Rich Text Editor and associated class to filter and clean the input?
I realise there are several rich text editors for jQuery but I cannot find any that have an associated class that does the filtering and cleaning required to accept the input into a database.
Does ...
0
votes
1answer
24 views
How to write in asp.net web.config httpRuntime for 3.5 framework
This attribute is new in the .NET Framework version 4.0.I have web.config file in solution with 4.0 version of .Net Framework
<system.web>
<httpRuntime ...
0
votes
0answers
54 views
How to use anti xss 4 in a project without changing the code much?
i have a huge asp.net 4.0 web application and it has no xss attack protection. I did some research and found Microsoft Anti-Cross Site Scripting Library. But i couldnt implement it to my system. How i ...
0
votes
1answer
26 views
XSS Validation, Prevention or Cure?
I am having hands on trying to make a hack-proof website and learning about XSS. So the process is
A: Get User Input -> B: Store It -> C: Show It Again To client
I am using Microsoft AntiXSS library ...
0
votes
1answer
59 views
function RemoveXSS - tweak to allow hyphens or spaces?
The website I code on has a function applied that prevents all non-printable characters.
http://pastebin.com/FemaR8s0 < This is the version we have.
This prevents hyphens and spaces from being ...
0
votes
1answer
31 views
Whitelist IFrames from e.g. YouTube with AntiXSS
Is it possible to whitelist e.g. IFrames with the source set to YouTube, when retrieving the content with GetSafeHtmlFragment from microsofts AntiXss library?
0
votes
1answer
84 views
How to use AntiXSS but keep output readable?
I'm using Microsoft's AntiXSS library to HtmlEncode content being displayed on a web page.
The problem is it encodes more than I want it to. For example it encodes the colon ":".
Is there a way to ...
0
votes
1answer
87 views
Microsoft Anti XSS Library encoding ampersands?
I am currently using the Microsoft AntiXSS library and using the GetSafeHtmlFragment method as follows:
public static string SanitizeHtml(this string s)
{
return Sanitizer.GetSafeHtmlFragment(s);
...
0
votes
1answer
121 views
Once something is HTML or URL encoded should it ever be decoded? Is encoding enough?
First time AntiXSS 4 user here. In order to make my application more secure, I've used Microsoft.Security.Application.Encoder.UrlEncode on QueryString parameters and
...
0
votes
1answer
125 views
Regex to fix GetSafeHtmlFragment x_ prefix
When using Sanitizer.GetSafeHtmlFragment from Microsoft's AntiXSSLibrary 4.0, I noticed it changes my HTML fragment from:
<pre class="brush: csharp">
</pre>
to:
<pre class="x_brush: ...
0
votes
1answer
262 views
Anti XSS library decode
I am using microsoft anti xss library to form security. I am using HtmlFormUrlEncode method. How can I decode my recorded data?
sample data :
mail%40sample.com
%c3%96nder
Thanks
0
votes
2answers
105 views
Compatibility between Telerik ASP.Net controls and MS AntiXSS library
My questions are hypothetical, but hope I am giving all the info needed to answer them.
Are there any known compatibility issues when using Telerik ASP.Net controls and Microsoft Anti XSS library?
...
0
votes
1answer
132 views
GetSafeHtmlFragment adds a div tag after an input - Why?
Microsoft.Security.Application.Santizier.GetSafeHtmlFragment("<input type=""text"" />")
returns
<input type="text" /> <div></div>
I assume this is some sort of security ...