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 ...
0
votes
0answers
11 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
16 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 ...
-1
votes
2answers
22 views
Will the use of secure protocols such as HTTPS or SFTP eliminate SQL injection and XSS attackes? why?
I am not working with any code I am just trying to get a better understanding of security based around SQL Injection and XSS attacks. My main questions is 'Will the use of HTTPS or SFTP eliminate SQL ...
0
votes
2answers
24 views
Not all eligible encoding using htmlentities
I am using PHP 5.3.6 and and using HTML entities to encode some POST data. However, parenthesis and % are not encoding to their equivalent entity.
We have been told by the web security team that ...
3
votes
0answers
36 views
Not allowing javascript links in markdown [duplicate]
The primary XSS vulnerability in (PHP) markdown after disallowing HTML tags seems to be that it allows links like this:
[foo](javascript:alert('xss'))
which will turn into
<a ...
0
votes
0answers
31 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:
...
-4
votes
0answers
32 views
Need regex pattern for white list character [closed]
I have created regex pattern which is not success with my different test input, below is my regex pattern
([\\w,()[\\\\]{}\\\":./_\\s])*
These are my test input, and regex pattern fail to match ...
-1
votes
1answer
45 views
Why my two test case failed for given Regex Pattern
When i run testcase program, my two str29 and str32 testcase failed, so i need regex pattern which can success all test cases.
My Test Class given Below :
package ...
-1
votes
0answers
50 views
I want to optimize my regex pattern
This is my regex pattern i want to optimize it, can any one provide alternative for it ?
([A-Za-z0-9,\\(\\)\\[\\]\\{\\}\"\\:./_\\s]|(?<!-)-)*
-4
votes
1answer
64 views
User entered Javascript security implications [closed]
I'm creating a web site that lets people create their own site using a subdomain. Are there any security implications by letting people add custom javascript to their pages? If so, which ones? XSS? ...
2
votes
1answer
44 views
Downloading files from javascript
I have a .NET web application that houses a large number of downloadable documents. I want to move these files offsite to Azure storage. However, given a particular file's URL, I need a way to ...
1
vote
1answer
45 views
Why/How is `value=“javascript:alert(1)”` considered as a XSS vulnerability in OWASP's ZAP tool?
The results for OWASP's ZAP has been very useful for eliminating vulnerable parts of my website.
However, I've found a lot of results that I simply cannot fix. For example, one of the get parameters ...
0
votes
3answers
52 views
XSS - is it only possible by using JavaScript?
I understand there are lots of questions concerning Cross-Site Scripting on the SO and tried to read the most voted ones. Having read some webpages too I'm still unsure about all possibilities that ...
0
votes
1answer
50 views
How to use JSTL tags without using jsp UseBean
I have a problem where i am supposed to stop XSS vulnerabilities . A typical example here is in vulnerable.jsp :
<h2><%= myObj.getElf() %></h2>
The myObj is an object of the ...
0
votes
1answer
39 views
PHP json_encode and XSS
This question has been asked many times. See here, here and here
Based on the answers in those questions I did some tests and I'm forced to ask the same question again as none of the answers appear ...
2
votes
3answers
64 views
XSS code review tool for ColdFusion
Do any tools exists that will scan ColdFusion source code and locate XSS vulnerabilities?
Say for example a programmer wrote something like this:
<cfoutput> This is a #url.cat#. ...
1
vote
1answer
32 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 ...
-4
votes
0answers
40 views
htmlentities() strip_tags() vs FILTER_SANITIZE_STRING [closed]
I have a variable $string which takes input from the user. I want to apply some function on this $string to protect against XSS.
Is really a difference between:
$string = ...
1
vote
2answers
44 views
how to prevent scripts from being run
SO kept preventing me from posting the title I wanted so finally got a title that let me post though it kind of sucks so feel free to edit/change it.
I have fields a user can fill in and in the ...
1
vote
1answer
40 views
Preventing XSS in ASP.Net Webforms: why is Validate Request not enough?
I'm looking for ways to protect our website from XSS attacks. At this point I am concerned about sanitizing/protecting the input only. I am aware of the need to encode the output, but that's out of ...
0
votes
0answers
5 views
Spring firewall xss
We have a simple Spring web app secured using Spring security 3.1.3. At the moment we are securing our app from XSS and SQL Injections. Rather than changing code at every place to stop cross site ...
0
votes
0answers
27 views
Preventing XSS when user edits original Markdown input
I'm building a site with user-generated content using Pagedown (though any form of Markdown would work), and I wish to store both the original markdown and the sanitized HTML in the database so that ...
5
votes
1answer
39 views
Is XSS possible with handsontable and no PHP?
My webpage has the php extension, but there is no php code in it. There is handsontable and user would insert some numbers and get some cool JS effects on the same page. When I was writing the code ...
-1
votes
3answers
85 views
Will these functions protect me from XSS and SQL injections?
I'm having this query;
$sql = "INSERT INTO statusups (pid, text) VALUES ('{$_SESSION['sess_id']}', '{$_POST['appendedInputButton']}')";
and I'm processing the variable ...
-3
votes
2answers
49 views
can this function prevent sql injection and xss?
function clean( $value ) {
if(function_exists( "mysql_real_escape_string" ) ) {
if( get_magic_quotes_gpc() ) { $value = stripslashes( $value ); }
$value = ...
0
votes
2answers
29 views
XSS and other ways to terminate JavaScript strings
Is there a different way to terminate strings in JavaScript?
I'm testing a server for XSS vulnerabilities, and I'm seeing the following code in the HTTP response:
<script>
var myVar = "USER ...
-1
votes
0answers
31 views
MD5'ed hashes from user input compared to white listed MD5 hash table
I think the picture attached might help explain things. Lets say for example, if we had a sneaker website which asked you for the shoe you want to see selections for. As soon as you would type in the ...
0
votes
0answers
56 views
Improving the Bookmarklet Experience - Though Hacking?
So I have a site specific bookmarklet that create a page with a toolbar (using localstorage to set/get variables) and then creates an iframe for a destination site, say www.example.com. [Idea heavily ...
0
votes
1answer
64 views
angularJS ajax call fails 403 but jQuery ajax call works for cross-site templateUrl loading. [duplicate]
To test AngularJS, I took the following code is right from the "Wire up a Backend" example off the http://angularjs.org/ home page. When the views are local everything works as expected but when I ...
1
vote
3answers
57 views
Can XSS be executed on server?
Hi an XSS attack is treated as an attack from the client's machine. But is there any way to make an XSS attack over the server ?
I want to know is there any way to execute a code on the server using ...
5
votes
1answer
116 views
HTML5 Cross-document messaging: can Malicious code sniff messages between domainA.com and domainB.com?
According to 10.4 Cross-document messaging: domainA.com can send messages to domainB.com using cross-document messaging in the way that prevents cross-site scripting attack when origin and data ...
2
votes
3answers
61 views
How to avoid XSS and CSS but allow users to use some HTML tags?
I need a way:
to lets users to use ONLY <strong> and <p> tags.
to avoid users to use CSS with these tags ( for example this must NOT works: <p style="margin:1000px;"> hello ...
5
votes
3answers
139 views
How to configure Spring Controller and/or JAXB to help prevent SQL / XSS injection
I have a Controller in Spring with a method like the following
@RequestMapping(value = "/v1/something", method = RequestMethod.POST, headers = "content-type=application/xml")
@Valid
public void ...
0
votes
0answers
34 views
What are examples of Javascript based security risks?
I have read a lot of security discussions for sql injection (solved with prepared statements) xss on html with user inputted data (solved with htmlspecialchars) but haven't read much on javascript ...
0
votes
1answer
46 views
Cross domain authentication across an iframe without login
I want the user to be able to submit and render untrusted HTML within an application on say domain example1.com. In order to prevent malicious XSS from capturing the user's cookies the idea was to ...
-3
votes
1answer
59 views
Wordpress XSS vulnerabilty (grabbing PHPSESSID)
I just started to study the vulnerability of websites and I've got a doubt about a Wordpress's XSS vulnerability. With this exploit, an attacker can grab the PHPSESSID with a simple Javascript's ...
0
votes
1answer
35 views
Is htmlspecialchars() used for all applications when suspect content is put on a page?
I understand that I should use htmlspecialchars() when displaying user provided content as HTML on a page. Does that apply for other content such as JavaScript, CSS, value of an <INPUT>, etc? ...
0
votes
2answers
54 views
Why do I get a cross-site scripting warning with Rails?
In my Rails application's view template I have to assign an instance value to a CoffeeScript variable. I did something like this:
:coffeescript
44 @selected_tab = "#{@tab}"
It works fine, but I ...
0
votes
3answers
46 views
Does urlencode() protect against XSS
$address and $cityState is user provided, stored in a DB, and available for others to view as shown below. Is there risk of XSS? Should htmlspecialchars() also be used on it?
<img ...
0
votes
1answer
36 views
How can I use this dom xss?
In this case:
var count = $(count_el).data("count");
$(target).html("hello"+count);
Does it mean that only if we can change the data('count') in the url can we use this dom xss?
like ...
0
votes
0answers
35 views
How to allow double quotes in URL
I've got the following problem.
I need to eliminate following XSS vulnerability from my application. When user makes the request like this:
...
0
votes
1answer
35 views
php security and ajax requests
I have some simple scripts on my site that allow users to accomplish tasks like
calculating date differences, do math calculations etc. The website is about 95%
pure html (not php generated), except ...
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 ...
0
votes
0answers
28 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 ...
0
votes
0answers
35 views
Closing script causes false XSS error on IE
We have a platform which is working together with other companies, thouse companies sites get opend in a tab with
...
0
votes
1answer
18 views
Should mutations always use POST?
Philosophically, I am accustomed to always using GET for HTTP requests that do not alter state, and POST for requests that do. However, lately I have run into some difficulties with this that have ...
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 ...
0
votes
0answers
20 views
Issue with Gson.toJSon for XSS encoding
I am using Gson.toJson(Object src) for XSS encoding.
It encodes the html characters perfectly fine, but adds escape characters for all the quotes ("). The result is a String object that can not be ...
0
votes
2answers
34 views
How to filter XSS out but still allow basic formatting tags
I am working on a website that allows people to enter html formatted content using an editor.
However, I am concerned about XSS injections. The editor obviously filters information on the client ...








