Tagged Questions
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 controls such as the same origin policy.
127
votes
9answers
40k views
What's the best method for sanitizing user input with PHP?
Is there a catchall function somewhere that works well for sanitizing user input for sql injection and XSS attacks, while still allowing certain types of html tags?
43
votes
5answers
11k views
Do htmlspecialchars and mysql_real_escape_string keep my PHP code safe from injection?
Earlier today a question was asked regarding input validation strategies in web apps.
The top answer, at time of writing, suggests in PHP just using htmlspecialchars and mysql_real_escape_string.
...
41
votes
5answers
3k views
Today's XSS onmouseover exploit on twitter.com
Can you explain what exactly happened on Twitter today? Basically the exploit was causing people to post a tweet containing this link:
...
33
votes
7answers
7k views
Sanitising user input using Python
What's the best way to sanitise user input for a Python-based web application? Is there a single function to remove HTML characters and any other necessary characters combinations to ensure that an ...
26
votes
4answers
948 views
Can someone explain this SQL injection attack to me?
I wanted to post this here as it is very much coding related and was something I had to clean up this week on one of my company's old ASP (classic) sites.
We got hit with the SQL injection attack ...
24
votes
14answers
4k views
When is it Best to Sanitize User Input?
User equals untrustworthy. Never trust untrustworthy user's input. I get that. However, I am wondering when the best time to sanitize input is. For example, do you blindly store user input and then ...
23
votes
5answers
7k views
IE8 XSS filter: what does it really do?
Internet Explorer 8 has a new security feature, an XSS filter that tries to intercept cross-site scripting attempts. It's described this way:
The XSS Filter, a feature new to Internet Explorer ...
23
votes
5answers
29k views
How do you configure HttpOnly cookies in tomcat / java webapps?
After reading Jeff's blog post on Protecting Your Cookies: HttpOnly. I'd like to implement HttpOnly cookies in my web application.
How do you tell tomcat to use http only cookies for sessions?
22
votes
10answers
5k views
Will HTML Encoding prevent all kinds of XSS attacks?
I am not concerned about other kinds of attacks. Just want to know whether HTML Encode can prevent all kinds of XSS attacks.
Is there some way to do an XSS attack even if HTML Encode is used?
20
votes
20answers
8k views
What are the best practices for avoiding xss attacks in a PHP site
I have PHP configured so that magic quotes are on and register globals are off.
I do my best to always call htmlentities() for anything I am outputing that is derived from user input.
I also ...
20
votes
5answers
32k views
Access to restricted URI denied code: 1012
How do you get around this Ajax cross site scripting problem on FireFox 3?
19
votes
3answers
6k views
How to prevent XSS with HTML/PHP?
How do I prevent XSS (cross-site scripting) using just HTML and PHP?
I've seen numerous other posts on this topic but I have not found an article that clear and concisely states how to actually ...
19
votes
7answers
4k views
How do you set up use HttpOnly cookies in PHP
How can I set the cookies in my PHP apps as HttpOnly cookies?
18
votes
5answers
2k views
HTML encode user input when storing or when displaying
Simple question that keeps bugging me.
Should I HTML encode user input right away and store the encoded contents in the database, or should I store the raw values and HTML encode when displaying?
...
17
votes
9answers
3k views
Why is cross-domain Ajax a security concern?
Why was it decided that using XMLHTTPRequest to do XML calls cannot do a call across the domain boundary? You can pull down Javascript, images, CSS, iframes, and just about any other content I can ...
16
votes
5answers
2k views
Preventing XSS in Node.js / server side javascript
Any idea how one would go about preventing XSS attacks on a node.js app? Any libs out there that handle removing javascript in hrefs, onclick attributes,etc. from POSTed data?
I don't want to have to ...
15
votes
15answers
776 views
What is the correct way to detect whether string inputs contain HTML or not?
When reciving user input on forms I want to detect whether fields like "username" or "address" does not contain markup that has a special meaning in XML (RSS feeds) or (X)HTML (when displayed).
So ...
15
votes
3answers
227 views
Preventing XSS attacks on user submitted HTML content in PHP, the eBay way
I've read so many articles describing methods to prevent XSS attacks in user submitted HTML content using functions such a htmlspecialchars and regexs, whitelisting/blacklisting and using html ...
15
votes
5answers
356 views
The 2011 approach to XSS in PHP?
I am trying to get updated on available and appropriate counter-measures that actively reduces the chance of being hit by the XSS train during 2011.
I've googled like never before to find out that ...
15
votes
5answers
2k views
XSS Torture Test - does it exist?
I'm looking to write a html sanitiser, and obviously to test/prove that it works properly, I need a set of XSS examples to pitch against it to see how it performs. Here's a nice example from Coding ...
14
votes
5answers
1k views
Preventing HTML character entities in locale files from getting munged by Rails3 xss protection
We're building an app, our first using Rails 3, and we're having to build I18n in from the outset. Being perfectionists, we want real typography to be used in our views: dashes, curled quotes, ...
14
votes
7answers
9k views
Cross-site AJAX requests
I need to make an AJAX request from a website to a REST web service hosted in another domain.
Although this is works just fine in Internet Explorer, other browsers such as Mozilla and Google Chrome ...
14
votes
4answers
3k views
Strict HTML Validation and Filtering in PHP
I'm looking for best practices for performing strict (whitelist) validation/filtering of user-submitted HTML.
Main purpose is to filter out XSS and similar nasties that may be entered via web forms. ...
13
votes
1answer
272 views
Is this horrifying XSS vector still an issue in Internet Explorer?
From hi.baidu.com/monyer/blog/item/d0f5d8b48fc442758bd4b2a4.html
Char 192 is <font face="xyz[0xC0]">not </font><font face=" onmouseover=alert(192) s=[0xC0]" ...
13
votes
8answers
2k views
PHP Form Security With Referer
I'm putting together a site that will make itself available for user input. I was wondering if writing a function like:
if(getenv("HTTP_REFERER") != 'http://www.myURL.com/submitArea'){
...
13
votes
6answers
2k views
Best Practice: Legitimate Cross-Site Scripting
While cross-site scripting is generally regarded as negative, I've run into several situations where it's necessary.
I was recently working within the confines of a very limiting content management ...
12
votes
4answers
310 views
XSS - Which HTML Tags and Attributes can trigger Javascript Events?
I'm trying to code a secure and lightweight white-list based HTML purifier which will use DOMDocument. In order to avoid unnecessary complexity I am willing to make the following compromises:
HTML ...
12
votes
5answers
1k views
AMF and Cross Site scripting vulnerabilty confusion
I just got hammered on a Security Audit by Deloitte on behalf of SFDC. Basically we use flex and communicate via AMF. We use FluorineFX for this (as opposed to LCDS and Blaze). We are being told that ...
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. ...
12
votes
6answers
11k views
Ways to prevent SQL Injection Attack & XSS in Java Web Application
I'm writing a java class which would be invoked by a servlet filter and which checks for injection attack attempts and XSS for a java web application based on Struts. The InjectionAttackChecker class ...
12
votes
6answers
1k views
Do you have any SQL Injection Testing “Ammo”?
When reading about SQL Injection and XSS i was wondering if you guys have a single string that could be used to identify those vulnerabilities and others.
A string that could be thrown into a website ...
11
votes
5answers
420 views
What is the correct way to encode an inline javascript object, in order to protect it from XSS?
It turns out the following which looks like valid javascript, is not:
<html>
<body>
<script>
json = {test: "</script><script>alert('hello');</script>"};
...
11
votes
2answers
2k views
Is it possible to XSS exploit JSON responses with proper JavaScript string escaping
JSON responses can be exploited by overriding Array constructors or if hostile values are not JavaScript string-escaped.
Let's assume both of those vectors are addressed in the normal way. Google ...
11
votes
3answers
2k views
Escaping html in Java
How do I make sure I don't escape something twice?
I've heard that its good practice to escape values as you receive them from a form, and also escape when you output. That way you have two chances ...
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. ...
10
votes
3answers
289 views
Apostrophe got through filter in C#
I'm really sorry to do this, but this problem represents a possibly exploitable security issue on a site I work on, so I'm posting this with a new account.
We have a script that takes in user ...
10
votes
3answers
543 views
Is strip_tags() vulnerable to scripting attacks?
Is there a known XSS or other attack that makes it past a
$content = "some HTML code";
$content = strip_tags($content);
echo $content;
?
The manual has a warning:
This function does not ...
10
votes
7answers
643 views
Can someone give me some basic XSS and sql injection scripts? (not what it seems)
I am testing out my scripts to see if they will prevent xss and sql injections. Can someone provide me with some basic but good scripts that would "hack" into my programs. I want to test my scripts ...
10
votes
5answers
446 views
Are there cross-platform tools to write XSS attacks directly to the database?
I've recently found this blog entry on a tool that writes XSS attacks directly to the database. It looks like a terribly good way to scan an application for weaknesses in my applications.
I've tried ...
10
votes
5answers
11k views
Escaping HTML in Rails
What is the recommended way to escape HTML to prevent XSS vulnerabilities in Rails apps?
Should you allow the user to put any text into the database but escape it when displaying it? Should you add ...
10
votes
4answers
3k views
Which browsers do support HttpOnly cookies?
Which browsers do support HttpOnly cookies, and since which version?
Please see http://www.codinghorror.com/blog/archives/001167.html for a discussion of HttpOnly cookies and XSS-prevention.
10
votes
4answers
4k views
How exactly do you configure httpOnlyCookies in ASP.NET?
Inspired by this CodingHorror article, "Protecting Your Cookies: HttpOnly"
How do you set this property? Somewhere in the web config?
9
votes
5answers
418 views
How should be test with phpunit for xss + sql injection?
How should be test with phpunit php web application for xss + sql injection?
I thinking to find program that output xss+ other attacks to test my application forms.
This program/service should be all ...
9
votes
6answers
310 views
XSS prevention. Handling <script is enough?
I was wondering if checking for and removing "<script" from text entry fields would be enough to stop javascript code injection attacks?
9
votes
1answer
4k views
How do you use window.postMessage across domains?
It seems like the point of window.postMessage is to allow safe communication between windows/frames hosted on different domains, but it doesn't actually seem to allow that in Chrome.
Here's the ...
9
votes
5answers
4k views
How do I prevent people from doing XSS in Java?
What should I do to prevent XSS in Java? I'm using Spring MVC. Right now I am just putting all places where I output user text into <c:out /> tags, but this seems error prone as I might miss a ...
9
votes
5answers
10k views
XSS filtering function in PHP
Does anyone know of a good function out there for filtering generic input from forms? Zend_Filter_input seems to require prior knowledge of the contents of the input and I'm concerned that using ...
9
votes
2answers
843 views
HTML Purifier - what to purify?
I am using HTML Purifier to protect my application from XSS attacks. Currently I am purifying content from WYSIWYG editors because that is the only place where users are allowed to use XHTML markup.
...
9
votes
3answers
3k views
Best way to defend against mysql injection and cross site scripting
At the moment, I apply a 'throw everything at the wall and see what sticks' method of stopping the aforementioned issues. Below is the function I have cobbled together:
function madSafety($string)
{
...
8
votes
4answers
157 views
Is this an example of an XSS attack?
I'm a PHP developer and I'm looking to improve the security of my sites.
From what I understand the following are two major types of vulnerabilities which affect web applications:
SQL Injection
XSS
...