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 ...
1
vote
1answer
25 views
+100
Acceptable security: Disable ValidateRequest with Paramatised SQL and HTML Encoded Strings?
I'm trying to make sure my webforms ASP.NET application is as secure as possible, it receives and stores user input data to a SQL database (the usual stuff) only for users with a login, so not ...
0
votes
0answers
14 views
Is is possible to user JsonConvert with AntiXXS
Hello I have settings in my web config about using AntiXssEncoder that included to FW 4.5
<httpRuntime
encoderType="System.Web.Security.AntiXss.AntiXssEncoder,System.Web, Version=4.0.0.0, ...
0
votes
0answers
33 views
Asp.net Image Control ImageURL with absolute path is URLEncoded, causing issues with AntiXSSEncode
When trying to use the Anti-Cross Site Scripting Library as the default encoder, this causes my image controls that use absolute paths to not work.
This is done by adding the following to the ...
1
vote
1answer
49 views
Is this how I should decode strings from server in JavaScript?
I'm receiving JSON data from an ASP.NET web service that has been HtmlEncoded with Microsoft's AntiXSS library (Encoder.HtmlEncode()) and then returned as JSON via a jQuery Ajax call.
I am populating ...
1
vote
1answer
114 views
How to handle encoded data in Textarea
Using Antixss library i have encoded the text and stored in DB. My issue is when i getting the data from DB to show in TextArea its showing as encoded Text. This problem in ASP.Net-MVC4.
How can i ...
1
vote
0answers
41 views
Why is AntiXss Library not working with Eval()?
I am working on a simple ASP.NET application to prove the use of AntiXss library. The library is very powerful and it is working fine with me except with Eval() in aspx pages. For example, if I have a ...
0
votes
2answers
72 views
Why I am getting this error with Request.Url.PathAndQuery?
As I have been requested by my instructor to use AntiXss library in the development of my senior project, I am facing a lot of difficulties of using this library because of the lack of resources on ...
0
votes
2answers
34 views
JavaScriptEncode doesn't look right
I need to encode some javascript on the server side that is getting injected into the html. I'm using Microsoft.Security.Application.Encoder.JavaScriptEncode() but it ends up looking like this from ...
0
votes
1answer
28 views
Web application crashing due to XSS script in IE but not in google chrome, but both browser's are processing the script?
I'm testing an web application against xss attack. In that there are list of events and each one has comment area, in one of the event, i inserted this script,
<script ...
1
vote
1answer
275 views
Query string Encryption in Jquery Ajax request MVC 4
While making POST request using Jquery Ajax for a controller's action,What would be the better to encrypt the URL in the POST request and decrypt at Controller action,without involving the SSL.
I ...
0
votes
0answers
77 views
MVC4 Accept HTML from FORM - Best practice
I want to be sure that what I did is the best we can, I followed a lot of tutorials and this is what I wrote.
GOAL: accept HTML tags from user (TinyMCE) .. and don't have security issues :)
First, I ...
1
vote
2answers
194 views
I use AntiXSS but I still can hack page
I don't know if I am doing this right. I first time build something to prevent attack on page.
I will start from the bottom:
I have property:
public string Description {get;set;}
User can set it's ...
1
vote
1answer
86 views
Is there a way to make all calls to Request.Form run through AntiXss.HtmlEncode?
...without having to explicitly call it on every input field?
Basically I've inherited an ASP.NET (3.5) web application that has a lot of forms. It doesn't use ASP.NET controls and instead uses ...
0
votes
0answers
125 views
Passing a partial view through TempData - XSS Safe? - MVC 4
I'm trying to make a page that when loaded (using a permalink), immediately opens a jQuery dialog with the contents being a PartialView returned from the server.
The way I'm trying to accomplish this ...
0
votes
0answers
88 views
antixss module prevents uploading files
I've downloaded and added Microsoft AntiXssLibrary to my project. and changed my web.config file as follows:
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID" ...
1
vote
1answer
176 views
How do you prevent AntiXssEncoder sending numeric character reference of “Carriage Return” “Line Feed”?
The ASP .Net Mark up with the AntiXssEncoder
<asp:Textbox TextMode="Multiline" runat=server>
First Line
Second Line
</asp:TextBox>
Renders as:
<!DOCTYPE html>
<html ...
2
votes
2answers
732 views
How to properly sanitize content with AntiXss Library?
I have a simple forums application, when someone posts any content, i do:
post.Content = Sanitizer.GetSafeHtml(post.Content);
Now, i am not sure if i am doing something wrong, or what is going on, ...
1
vote
0answers
128 views
Security issue about using bbcode parser vs antiXSS library
In my application, I have rich textbox, and I wonder what is safer to use:
A bbcode rich textbox with bbcode parser,
or
A rich textbox with html encoded tags, and validation with Microsoft ...
0
votes
1answer
181 views
ASP.NET controls and AntiXss
I'm doing some AntiXSS work. The user inputs some text which is then put through
Microsoft.Security.Application.Encoder.HtmlEncode();
and saved to the database.
This text can then be displayed in ...
2
votes
0answers
251 views
Microsofts latest anti XSS Library for asp.net - 4.2.1 - Problems and Alternatives(?)
I have a problem using the their latest WPL v 4.2.1. The stripping of suspect HTML, javsacript and styling is so aggressive it strips out ALL the CSS.
I understand that CSS can be easily used to ...
1
vote
0answers
152 views
is AntiXss 4.2 safe to use instead of AntiXss 3
I wanted to use new AntiXSS 4.2 in my new project , but there were discussions about its bugs and aggressive behavior in encoding and removing html elements . so I don't know what to do ?
still use ...
0
votes
0answers
213 views
XSS sanitizer removes html tags like <br>,<div> etc. Is there any alternative provided by other than Microsoft?
I tried AntiXSSLibrary, HTMLAgilitypack, SantizerProviders and HTMLSanitizationLibrary but all of these are removing <br> and <div> tags from input html and that's why i am using ...
4
votes
1answer
986 views
Is Sanitizer.GetSafeHtmlFragment supposed to remove <br> elements?
MS's AntiXSS (v4.2.1) Sanitizer.GetSafeHtmlFragment(string) method is removing <br> and <br /> tags from my input. Is this supposed to happen? Is there a way around it?
It seems to be ...
0
votes
1answer
359 views
How should I use the AntiXSS library with the Knockout library?
In a project at work, I've recently been assigned to encode the user input using the AntiXSS library (v. 4.2.1), even though it's as good as abandoned and doesn't even have documentation for the ...
14
votes
3answers
1k views
Microsoft AntiXSS Alternative
Microsoft's AntiXSS library has been broken for 6 months and it looks abandoned (that may or may not officially be the case). Due to a security issue with previous versions, it is not safe to rollback ...
0
votes
1answer
328 views
Allowing local URL in Microsoft.Security.Application.Sanitizer.GetSafeHtmlFragment
Microsoft.Security.Application.Sanitizer.GetSafeHtmlFragment seems to strip all <a href="">link</a> into <a>link</a>
Is there anyway to preserve local URL, e.g. <a ...
3
votes
1answer
513 views
TinyMCE, AntiXSS, MVC3 and GetSafeHtmlFragment
I've read through lots of postings on SO regarding XSS and how to deal. Generally, the consensus is whitelist over blacklist and avoid using Regular Expressions (too many variants to deal with).
...
1
vote
0answers
320 views
AntiXSS HtmlEncode Textarea line break loss
I am developing web application on ASP.NET and I am getting textarea input from users and later display this input on website. While saving input into database I am not encoding input and directly ...
7
votes
1answer
520 views
Anti XSS Library removing UL tag. Why?
I am using the Microsoft anti xss library and I noticed that for some reason it is removing the <ul> tag. I can't figure out why. For instance:
string html = @"<ul><li>this is a ...
-1
votes
2answers
164 views
protect from XSS (ideal function)?
function xap ($in, $format=false) {
if ($format == 'html') {
//Делаем безопасный html
$in = ...
0
votes
1answer
464 views
AntiXSS - HtmlAttributeEncode usage
I am trying to figure out the context in which HtmlAttributeEncode could be used -
I tried with simple 'Hello!' alert script to be set as control attribute, so I could see HtmlAttributeEncode in ...
3
votes
1answer
1k views
How to Include Anti-XSS in ASP.Net 2.0 Without Visual Studio
Can I include Microsoft's Anti-XSS library in my ASP.Net 2.0 application without Visual Studio? If so, how?
I've already downloaded and installed the library. From Microsoft's download page: ...
0
votes
1answer
953 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 ...
1
vote
1answer
2k 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
1answer
305 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 ...
0
votes
1answer
115 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 ...
2
votes
1answer
1k 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
1k 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>
...
0
votes
1answer
285 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 ...
1
vote
2answers
215 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 ...
0
votes
1answer
109 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
511 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
362 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);
...
1
vote
2answers
632 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 ...
3
votes
4answers
396 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 ...
0
votes
1answer
390 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
2answers
255 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: ...
2
votes
1answer
846 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
213 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?
...
4
votes
1answer
1k 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 ...


