0
votes
0answers
9 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
27 views

User-editable HTML XSS protection (tumblr like)

I want my service to have such a feature: author can fully customize the page, but can't steal users' cookies. Tumblr had some troubles with that, but solved them successfully ...
1
vote
0answers
18 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 ...
0
votes
1answer
21 views

Securing my web application against malicious input

I am in the process of building a basic security layer for my web application. I am seeking validation of the steps that I am taking. The current focus is XSS, so I am not touching databases in this ...
0
votes
2answers
62 views

PHP: <script> tag echoed from $_POST is mysteriously blocked

I'm trying to test information I learned regarding PHP security. I have a simple HTML5 page with a POST form and a single textarea input, where I input the following JS code: <script>var x = 5; ...
0
votes
2answers
50 views

What is cross site scripting

At this link:http://www.acunetix.com/websitesecurity/cross-site-scripting/ under The Theory of XSS, it says: the hacker infects a legitimate web page with his malicious client-side script. My first ...
0
votes
1answer
198 views

how to set httponly and session cookie for java web appliaction

Hi I am working on XSS(cross site scripting) issue. my application develop on oracle weblogic portal. we use Servlet 2.5 version. I have added below 3 lines of code in the filter for setting ...
0
votes
0answers
45 views

Bad referrer data in xss [closed]

I came across this while I'm learning securing php from xss attacks. Can anyone please tell me what is bad referrer data?? and how it show impact on a website?. I'm providing the link and little ...
3
votes
1answer
170 views

How much can I trust ASP.NET Request Validation with Web Pages/WebMatrix vs. XSS?

I have read (and am coming to terms with) the fact that no solution can be 100% effective against XSS attacks. It seems that the best we can hope for is to stop "most" XSS attack avenues, and probably ...
0
votes
1answer
69 views

Understanding HTML Purifier

I am currently using CodeIgniter. I have 4 forms (student signin, login in form, create account, and request account) I am currently using this at the moment to filter my input on one of the forms ...
0
votes
1answer
109 views

Security checks on PHP (with PDO) for a member authentication and registration [closed]

I'm looking for an examples of some more advanced security checks that I'd be able to perform on my website. I'm using PHP 5.2 with PDO MySQL database. What would interest me most are: samples of ...
0
votes
2answers
81 views

LocalStorage and Xss

Can localstorage value of a site be overwritten by xss(cross-site-scripting)? As far as I have verified in chrome and firefox, the localstorage value of a site is not accessible by a different site. ...
0
votes
1answer
60 views

Displaying XSS in the browser

I'm building an application that retrieve any type of user input, even if the user put an xss injection code. Beside that i'm providing an admin view to show the full content of what the user put, ...
0
votes
1answer
256 views

Antisamy policy file [closed]

My application has been through a security audit, and I was told that there are XSS issues (parameters passed through URL are stored without filtering, and that ouput is not entity encoded to take ...
0
votes
2answers
94 views

What constitutes 'user input' when dealing with XSS attack prevention? [closed]

I am looking to secure my code against XSS attacks, yet all of the examples I have been reading deal with direct user input validation (such as in a contact form or a login). I'm a bit confused as to ...
0
votes
2answers
91 views

DOM object limitation for server side loaded third party JavaScript

We load some third party javaScript in server side and put it in html content and send to client. That third party js change dynamic. so I want to limit DOM access to this js. iframe need another ...
-2
votes
1answer
141 views

Is PHP htmlentities (with UTF-8 encoding specified) enough for protecting XSS [closed]

Assume the template code in PHP is <div> <? echo htmlentities($unfiltered_text, ENT_QUOTES, "UTF-8"); </div> Is the following code safe to against ALL possible XSS? is not, can ...
1
vote
1answer
479 views

How to prevent XSS attacks with SpringMVC + Jackson Application?

The Cross Site Scripting Cheat Sheet has many rules for securing against XSS attacks. I would like to implement those suggestions in my web app which is using Spring MVC + Jackson + JPA + Hibernate ...
0
votes
2answers
212 views

PHP Validate base64 encoded images

I need to find a way to validate an image that is base64 encoded in PHP. By validate i'm thinking of XSS and other security things like that. The flow is: User has some parameters where one og more ...
5
votes
2answers
358 views

Use PHP to prevent XSS attacks within an image

After reading http://dsecrg.com/files/pub/pdf/XSS_in_images_evasion_bypass_(eng).pdf, it is clear that allowing image uploads from users opens you to XSS attacks. I wasn't able to find any PHP ...
0
votes
2answers
425 views

How is this code protecting against XSS attacks?

I'm using a validation library that removes some common XSS attacks from the input to my web application. It works fine, and I'm also escaping everything I render to protect against XSS attacks. The ...
0
votes
1answer
140 views

How Faye achieves cross-domain (XDR) pub/sub?

Faye supports cross-domain subscription. Here is an excerpt from their docs: Cross-domain operation Faye clients and servers transparently support cross-domain communication, so your client ...
1
vote
3answers
570 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?
1
vote
1answer
113 views

Why can't we have some AntiXss Literal html tag

Nowadays I am learning about web security, XSS, etc. As XSS basically targets a client-agent (web browser) by injecting some malicious code that is executed by the web browser as it was inserted by an ...
2
votes
2answers
230 views

Is this vulnerable to dom-based xss?

I have a disagreement with a security auditor, whether a snippet of html/js is vulnerable to XSS or not. In short this is it: <html> <form name="myform" action="page.php" method="post" ...
-2
votes
1answer
1k views

how to find a website vulnerabilities [closed]

Has anyone got the idea how to find a website vulnerabilities issues? like: Log in as the user test Find the admin control page as a non adminuser Get the website to print out full debug ...
3
votes
2answers
2k views

What is Cross Site Script Inclusion (XSSI)?

I've recently seen XSSI mentioned on multiple pages, e.g. Web Application Exploits and Defenses: Browsers prevent pages of one domain from reading pages in other domains. But they do not prevent ...
27
votes
2answers
12k views

Is it safe to use $.support.cors = true; in jQuery?

I was trying to hit a web service on a different domain using jQuery's ajax method. After doing some research it looks like it does not allow this is by design to prevent cross site scripting. I ...
5
votes
2answers
84 views

Securely rendering hyperlinks in untrusted text

As part of a project, I'm accepting text from a user via web form and displaying it on a web page. The text they provide may contain URLs, if so I'd like to render it as a hyperlink for improved ...
2
votes
2answers
151 views

What are the best practices to avoid XSS and SQL Injections attacks (platform agnostics)?

I wish there was a do/don't list (such as input sanitation, etc.) which when respected, such attacks are nearly impossible to succeed.
6
votes
1answer
225 views

Could anyone tell me why / how this XSS vector works in the browser?

I have suffered a number of XSS attacks against my site. The following HTML fragment is the XSS vector that has been injected by the attacker: <a href="mailto:"> <a ...
6
votes
3answers
145 views

What is the threat model for the same origin policy?

http://en.wikipedia.org/wiki/Same_origin_policy The same origin policy prevents a script from one site talking to another site. Wiki says it's an "important security concept", but I'm not clear on ...
2
votes
4answers
204 views

Is it unsecure to use $_GET to update the data from database?

Is it unsecure to use $_GET to update/delete the data from MySQL table?? I can't use $_POST since it required to use <form> tag For example: <a ...
0
votes
1answer
254 views

HTMLPurifier Not working?

I'm putting HTMLPurifier through some tests to make sure that everything works as expected. I'm using examples from http://ha.ckers.org/xss.html. I think everything I coded is 'correct' but I am able ...
0
votes
1answer
196 views

Is WCF result as JSON + unparseable curft needed for better security? How is it implemented?

I'm reading about this ajax response that describes ways to prevent Javascript based exploits. Does it make sense to apply this technique to WCF-based services that return JSON? How would this be ...
2
votes
1answer
290 views

Grails - best practice for avoiding XSS in flash.message?

So the default controllers generated for you in Grails will return a message to the user letting them know something was inserted/edited succesfully. By default the return the id of the thing ...
0
votes
1answer
309 views

Cross-site scripting - Cookie encryption

I am developing a client-side proxy to counter Cross-site scripting attacks. All the requests from the browser will go through the proxy. I am able to classify the requests as local or cross-domain, ...
1
vote
3answers
260 views

Is there any need to use Html.Encode for an internal site?

I'm having some problems with Html.Encode and users wanting to use special characters. Firstly the characters are replaced by the html codes and so are not displayed properly. And then, if the text is ...
1
vote
2answers
543 views

How vunerable to XSS attacks is Flash?

The reason why I ask is that I'm telling a vendor of ours they have to use the MS AntiXSS library with the ASP.NET UI components they make, but they also work with Flex to build Flash based UIs - and ...
13
votes
2answers
3k views

What are “top level JSON arrays” and why are they a security risk?

In the video below, at time marker 21:40, the Microsoft PDC presenter says it's important that all JSON be wrapped so it's not a top level array: http://www.microsoftpdc.com/2009/FT12 What is the ...
3
votes
4answers
299 views

What browsers allow javascript to be the source of image tags?

I've heard that some XSS attacks can be done by posting an image to a site that has javascript as the src attribute. Are there certain browsers that will protect me from this type of attack?
2
votes
3answers
265 views

Is it possible to perform a cross site site request forgery attack on a URL that returns a JSON object?

I'm aware that there is a Cross site forgery attack that can be performed on a request that returns an array by overloading the Array constructor. For example, suppose I have a site with a URL: ...
1
vote
2answers
121 views

Ajax - Asynchronous request problem

When doing an AJAX call, why do browser security rules state that you cannot make a request to a different domain?
0
votes
3answers
305 views

XSS safety of HTML tags with no attributes

Are HTML tags XSS safe if they have no attributes?
13
votes
3answers
10k views

XSS attack to bypass htmlspecialchars() function in value attribute

Let's say we have this form, and the possible part for a user to inject malicious code is this below ... <input type=text name=username value= <?php echo ...
2
votes
5answers
912 views

How do I protect against cross-site scripting?

I am using php, mysql with smarty and I places where users can put comments and etc. I've already escaped characters before inserting into database for SQL Injection. What else do I need to do?
3
votes
3answers
5k views

XSS attack with javascript in img src attribute

Some older browsers are vulnerable to XSS attacks as such <img src="javascript:alert('yo')" /> Current versions of IE, FF, Chrome are not. I am curious if any browsers are vulnerable to a ...
4
votes
1answer
476 views

XSS on jsbin.com

Anyone know if jsbin.com implements any protection for XSS or other javascript attacks? I see jsbin links used fairly regularly on sites like this one and I can't find any indication from the site ...
3
votes
2answers
548 views

Testing of Web Security

In your experience, what have you found, worked on, or encountered in terms of site vulnerabilities? And what actions did you take to mitigate these issues? This may include XSS (cross site ...
5
votes
7answers
646 views

JavaScript being injected in my PHP Pages

I have a website, and I just discoverd that somehow someone injected JavaScript on my page. How can I figure out what it does and how they did it? <script> var x = unescape("%68% (**** some ...

1 2