Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications that enables malicious attackers to inject client-side script into web pages viewed by other users. An exploited cross-site scripting vulnerability can be used by attackers to bypass access ...

learn more… | top users | synonyms (2)

3
votes
0answers
596 views

NS_ERROR_FAILURE : Failure in Firefox

I'm using javascript's XMLHttpRequest object to send a request to another page (not on the same server or domainname ) I get a ns_error_failure error in firefox, but the Javascript works in Google ...
2
votes
0answers
90 views

Is the Primefaces p:editor safe to use?

I mean, the primefaces p:editor uses html to structure the text, so I have to set the escape attribute of h:outputText to false, to show the output without html tags. I was trying to play around a ...
2
votes
0answers
244 views

Allow all special characters and prevent SQL injection / XSS

I am using Asp.NET MVC 3 with EF 4.1 With SQL Azure. I have both linq expressions as well as stored procedures. Now, I need to allow all the special characters like "';&<>/ etc to 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 ...
2
votes
0answers
539 views

How to fix XSS issues in IE8?

I have a form which is sent to a URL, This server stores the fieids in a database and sends out email messages then posts back a success page to the browser. The form works in Firefox but in IE8 the ...
2
votes
0answers
449 views

Mix unsanitized data, HTML in a mustache template variable

I'm trying to pass a message through to a Mustache template that looks something like this: The url you provided, http://example.com, is not valid. The user specifies the URL, so the URL needs to be ...
2
votes
0answers
90 views

Embedding your site's functionality into anothers with Rails 3 (XSS vs iframes)

We are looking to integrate the display of some of our models, as well as a payment process, with some of our client's websites. It seems that everybody is going the Iframe route, but this also looks ...
2
votes
0answers
346 views

ModSecurity Protection against XSS Type 0 Attacks and Impact

DOM-based (type 0) XSS do not require sending malicious code to the server and thus they can also use static HTML pages as an attack vector. An example of a dummy attack string here would be the ...
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
0answers
19 views

Encoding output from trusted sources such as AD

We've been having a debate at work recently about the merits of encoding output data from trusted sources such as an Active Directory. We have a web application that displays list of users that are ...
1
vote
0answers
20 views

Issues in fuzzing parameters on a website and search for cross-site scripting (XSS) vulnerabilities

I am using OWASP's Zed Attack Proxy (ZAP) to fuzz parameters on a website and search for cross-site scripting (XSS) vulnerabilities. After looking at a youtube video ...
1
vote
0answers
36 views

How does encoded script executes when used in link?

I am using the following code: indexRule5.jsp <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...
1
vote
0answers
82 views

Open window and get contents with JS equivalent to VBA

I have written a working application in VBA that opens a browser window in the background and gets the content of that browser windows for further processing. In order to make the experience more user ...
1
vote
0answers
71 views

Are there any security issues setting `document.domain = document.domain;`?

I'm hoping to build an application which allows subdomain.domain.com to open a popup window at domain.com and manipulate that window. To do this, I need to set document.domain to the same value on ...
1
vote
0answers
21 views

Is Joomla JRequest.getvar good sanitized against XSS?

Can JRequest.getvar be used as an XSS Sanitizer or should I further clean the input??
1
vote
0answers
47 views

Removing protect_from_forgery

I have a question about protect_from_forgery in Rails app. I use Devise in my rails project, recently a security issue had been addressed concerning the version I've been using, namely 2.1.2 of ...
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 ...
1
vote
0answers
29 views

html purifier library usage concept

HiI am at prototype stage with my site. I read the html purifier main page and questions about this library in this site but I am still not clear with the issue on my mind. Can you guide me ...
1
vote
0answers
240 views

Internet Explorer has modified this page to help prevent cross-site scripting

I see this in a few topics but nothing matching my situation. I have code to render buttons for Twitter, Like, Google+ and Pinterest. In Internet Explorer - and ONLY IE - the Tweet button generates ...
1
vote
0answers
96 views

Third party cookies not stored in IE

I'm using xss and sending parameters from domain1.com to domain2.com Something like i.src='domain2.com/xss.php?parameter=value' But when the xss.php is trying to store cookies for (self) domain2.com ...
1
vote
0answers
149 views

Code inject via Content Script gets removed

I am creating a Chrome Extension that would draw an image above tag showing Flash content. I have written the content script in my "contentscript.js" file which does nothing but simply inserts ...
1
vote
0answers
76 views

Usage of XSS Injection Tool : XSSer

I checked out a copy of XSSer from : svn co https://xsser.svn.sourceforge.net/svnroot/xsser xsser to my Mac OS X 10.7 and try to run its example : python XSSer.py -u 'http://testasp.vulnweb.com' ...
1
vote
0answers
75 views

Issu with XSS attack in siteminder fcc files

i have any Fcc files which contain some hidden variable which out testing team isattacking like with a parameter ...
1
vote
0answers
117 views

XSS issues for html controls and request parameters

I need to fix XSS issues in my application. Now I am new to JSON and XSS. I think of two ways attacks can happen - first is through html input controls (text boxe/area etc) or through request ...
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 ...
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 ...
1
vote
0answers
266 views

Disabling TRACE method on 2.2.3

So I am trying to disable the TRACE method in Apache, which is also the problem in this question Disabling TRACE request method on Apache/2.0.52. I have tried the rewrite rule in the VirtualHost ...
1
vote
0answers
104 views

XSS 406 Not Acceptable trying to get multiple page information

My school currently has a website that it puts our courses on. I have been trying to improve some of the information that it displays on the main page by requesting other information on other pages ...
1
vote
0answers
152 views

Chrome Bug: Unsafe Javascript attempt

I have an iframe on my page. The page housed within the iframe is of the same domain. I am experiencing an error with the page in the iframe when attempting to open a pop-up window in the iframe. ...
1
vote
0answers
100 views

XSS: Can't follow 302

I am trying to build an app using Java. The app will access a handler for a database, which dynamically runs a query and returns the result. OAuth is being used. The app is running from one port on ...
1
vote
0answers
117 views

ValidateRequest in MVC not truly aborting the request

I'm testing my MVC3 web app for XSS attacks and I'm noticing a weird behavior with the default ValidateRequest in .Net I have a form with a few text fields and when I enter a 'dangerous' string such ...
1
vote
0answers
86 views

Can I XSS cross site script from a google chrome app?

I would like to make a google chrome app (packaged) that can XSS. I have tried adding permission patterns and explicit URLs, tabs, and content_script matching rules to the app manifest. None work. I ...
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 ...
1
vote
0answers
269 views

Null Byte Injection check in Java app or What is a Null Byte

How does one protect against Null Byte injection? see: http://security.stackexchange.com/q/378 If a request parameter is going to used as a filename, should we look at each byte of the request ...
1
vote
0answers
234 views

Getting siblings to work in jquery collapsing menu

I put together a quick script for a collapsing menu and used $(location).attr('pathname') to match the menu item with the current page and set a class to it. Only problem seems to be that certain ...
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
0answers
402 views

Cross-domain communication with a frame within a frame

I have a page that includes another page on a different domain in an iframe. The page contained in the iframe is a frameset with another frame. <!--- page-that-I-control.html ---> ...
1
vote
0answers
169 views

cross-site scripting protection measures

I would like to know the commonly used cross-site scripting (XSS) client and server side protection measures? I know about OWASP's general guidelines available at ...
1
vote
0answers
204 views

XSS Attack Prevention

I have a web application written in PHP. The templating engine is SMARTY. My question is very simple, yet the answer should not be that easy, because I searched the hell out of it to no avail. When ...
1
vote
0answers
263 views

Re-validate input for a request in ASP.NET

Is there a way to ask ASP.NET to re-validate input if the input has been validated once for a request? HttpRequest.ValidateInput doesn't seem to help. The following code illustrates the problem: ...
1
vote
0answers
504 views

GWT RequestBuilder POST and XSS

I'm using GWT 2.1.1 and in my app there is a RequestBuilder/POST that fails (cross site scripting XSS). The main cause is the different urls for client and server: client in dev-mode: ...
1
vote
0answers
541 views

jquery ajax cross side result through a proxy (maybe with yql)

if i use youtube api, the results will be regionaly filtered: http://gdata.youtube.com/feeds/api/videos?q=eminem rhianna function(request, response){ $.ajax({ url: ...
1
vote
0answers
24 views

How can I tell if a remotely-controlled frame has completely loaded?

I am creating an interface for a lending client that will help automate the process of completing a multi-page loan application in an external domain, and am looking for some best practices for ...
1
vote
0answers
420 views

window.returnValue not working between two applications

I'm opening a web page from Site B, using showModalDialogue (javascript) from Site A. I want to return a value using window.returnValue from Site B page to Site A page. But I'm not able to return ...
1
vote
0answers
568 views

JavaScript Cross site scripting - Settings in Firefox browser

In Internet Explorer 6, there is a setting to add the domains to trustred sites to overcome cross site scripting. Is there any such setting available in Firefox browser? Thanks.
1
vote
0answers
250 views

How to allow Tomcat site permit cross site url

we would like to allow a url ref from a site running under Tomcat which accesses a another server running IIS (all internal/intranet). Could someone explain how we might permit this so the user does ...
0
votes
0answers
15 views

xss Filter with mutipart form in servelet Api 2.5 ie tomcat 5.5

I studied this forum http://greatwebguy.com/programming/java/simple-cross-site-scripting-xss-servlet-filter/ works perfect except for Mutipart request .. I did some research on google and Found that ...
0
votes
0answers
18 views

Preventing XSS attacks in C# MVC4

I have the following controller code: [HttpPost] public ActionResult Reset(FormCollection form) { string[] userName = form.GetValues("username"); Models.HomeModel hm = new ...
0
votes
0answers
32 views

Rendering Special Characters having contextual escaping using ESAPI library

This Question is related to cross-site scripting (XSS). Recommendation was to use contextual escaping on all untrusted data before using it to construct any portion of an HTTP response. My ...
0
votes
0answers
8 views

Why does a site without AJAX work over HTTP but not with the Data URI scheme?

Take p01's MATRAKA. I base64'ing the content served at the URI linked, and put it in a data URI: ...

1 2 3 4 5 6