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
48 views
Using sameorigin to add security to AJAX calls, and prevent XSS
I have an anti-XSS token I want to send to my AJAX clients over a secure link.
I intend to access a variable stored within somejavascriptfile.js but want it safe from XSS attacks and want to use ...
2
votes
2answers
60 views
Should i insert a <script> or should i eval?
I have JavaScript code in a string which i obtained dynamically according to certain conditions (result of certain user actions).
Now i'm wondering whether i should simply eval it (will work, ...
1
vote
5answers
83 views
New Way To Prevent XSS Attacks
I have a website related to entertainment. So, I have thought to use a new method to prevent XSS Attack. I have created the following words list
alert(, javascript, ...
1
vote
2answers
140 views
htmlpurifier removes all the formatting done by CKEDitor
I am using CKEditor to let the user post their comments. I thought to use the htmlpurifier to secure my html. But when I tried it, it actually removes all the formatting done by CKEditor.
The ...
4
votes
1answer
174 views
Sanitizing user inputs with Spring MVC frame work
I am working on web application using spring mvc frame work, i wanted to know is there any best way to sanitize user inputs or common method to sanitize all the user inputs in springs to avoid XSS and ...
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 ...
1
vote
2answers
29 views
User customizable colors - is it open to script attacks? How to prevent?
I have a form like this for logged in users to my site:
<form>
<input name="fontColor"><input type="submit">
</form>
This allows the user to customize their own page with a ...
0
votes
0answers
69 views
Templated Razor Delegates and XSS (Html Encoding)
I'm reviewing my ASP.NET MVC application for any possible XSS vulnerabilities, and came across uses of the "Templated Razor Delegates" as described in:
...
0
votes
0answers
36 views
Getting error when trying to send JSONP through jQueryAjax
I am using IE8 and I have this piece of code for sending and retrieving JSON information from a remote server:
function sendCommand(data, successfunc, errorfunc) {
$.ajax({
type: 'POST',
...
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...
...
-2
votes
1answer
87 views
Being attacked - What's that? [closed]
Seems like my website is being attacked.
I looked at the Apache logs and I saw thousands of lines like these;
Some random folders which don't even exist. Looks like some brute force for websites...
...
2
votes
0answers
245 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 ...
0
votes
1answer
52 views
How to do XSS escaping on input coming into Restlet web service
I have a GWT web application using Restlet.
It has @Post annotated service methods that take a bean and perform some logic on it.
I want to XML-escape the data in these beans.
For example, say I ...
1
vote
1answer
39 views
Is that possible generate XSS by actionscript's Sound.load() function?
I found some actionscript code like that:
var s:Sound = new Sound();
s.addEventListener(Event.COMPLETE, onSoundLoaded);
var req:URLRequest = new URLRequest(XX_EXTERNAL_URL);
s.load(req);
In ...
3
votes
2answers
167 views
Is a XSS attack possible when the point of injection is the value of the style attribute?
Example code:
<!DOCTYPE html>
<html lang="en">
<head><title>XSS test page</title></head>
<body>
<p>
<?php
$style = ...
-1
votes
2answers
34 views
Load own script on client's site [closed]
Im trying to build some kind of an API in javascript. Basically, I want the client to include a script on his page and that script will load jquery, colorbox and execute a custom function which, for ...
1
vote
1answer
129 views
Backbone.js / Underscore.js : Why isn't my template escaping
Using the latest backbone and underscore libraries (1.0.0/1.4.4) I can't figure out why my template isn't escaping like I expect. Here's a simplified version:
M = Backbone.Model.extend({});
V = ...
0
votes
0answers
16 views
Access server through AJAX from local with IE8
I am talking about the same origin policy, which I want to disable so I can open a local page that has a JS script using the $.ajax() function to get data from a remote server.
On Chrome this works ...
0
votes
0answers
25 views
unable to validate some script tags in node-validator
HI I have a connect server and inside that i am using node-validator module to perform some sanitizations it worked for most of the tags mentioned in the link below
...
0
votes
1answer
250 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
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" ...
0
votes
1answer
55 views
HTA xss weird behaviour
I have chosen HTA to make a small website because it allegedly ignores the Same Origin Policy. To test this I have written a small test site with these 4 iframes:
iframe id="google" ...
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 ...
0
votes
0answers
35 views
JQueryUI Combobox XSS vulnerability…?
While on a routine XSS hunt, I noticed one of our JQueryUI combobox fields was XSS-able with something like:
"><script>alert(1234);</script>
The output from a user-supplied form ...
0
votes
1answer
33 views
How to do security configuration for ibm http server?
We are using IBM HTTP Server Version 7.0
Need help related to Cross Site Scripting Prevention in IBM http server.
Cross Site Scripting Prevention in Sun Java System Web Server 7.0 mentioned in ...
5
votes
1answer
99 views
Vulnerabilities of PHP's (deprecated) mysql module vs. MySQLi & PDOs
I am in charge of maintaining and extending a PHP codebase which began in 2007 and uses the original mysql module. All user input is escaped using casting for values expected to be numerical, ...
1
vote
1answer
136 views
Sanitizing user input HTML with htmlspecialchars, nl2br, str_replace, htmlspecialchars_decode, and stripslashes
I made this function
function echoSanitizer($var)
{
$var = htmlspecialchars($var, ENT_QUOTES);
$var = nl2br($var, false);
$var = str_replace(array("\\r\\n", "\\r", "\\n"), "<br>", $var);
$var = ...
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 ...
3
votes
0answers
600 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 ...
0
votes
2answers
37 views
JavaScriptEncode doesn't look right
I need to encode some javascript on the server side that is getting injected into the html. I'm using Microsoft.Security.Application.Encoder.JavaScriptEncode() but it ends up looking like this from ...
3
votes
1answer
166 views
jQuery safe injection of html
So I am receiving html from a foreign untrusted source via json. I want to display the html in a div container like so:
$('#container').html(dangerousHTMLCode);
How can I prevent most importantly ...
0
votes
1answer
86 views
Sample web application with XSS vulnerabilities
I want to do 2 things:
Demonstrate xss vulnerabilities to my colleagues and show how to fix
them
Check some tools if they can detect vulnerarbilities
For this I need a sample web application ...
0
votes
1answer
80 views
Read AICC Server response in cross domain implementation
I am currently trying to develop a web activity that a client would like to track via their Learning Management System. Their LMS uses the AICC standard (HACP binding), and they keep the actual ...
0
votes
1answer
28 views
Web application crashing due to XSS script in IE but not in google chrome, but both browser's are processing the script?
I'm testing an web application against xss attack. In that there are list of events and each one has comment area, in one of the event, i inserted this script,
<script ...
-2
votes
1answer
57 views
XSS vulnerabililty script tags encoding [closed]
I have a security scan that reports a XSS vulnerabililty when setting an http parameter to the following value. It renders a script tag
...
-5
votes
2answers
97 views
XSS and PHP Attacks [closed]
I have been assigned to test a website that another group has just created. I have discovered
that it is prone to XSS attacks. However, it does not really throw
up an error or any valid ...
3
votes
1answer
157 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:
...
0
votes
0answers
26 views
XHR attack on nodejs server [duplicate]
I have a nodejs server written using express module.The input to the server is a url and output is a json response.I came across some attacks called XHR,XSS and CSRF.Express has a function that ...
2
votes
2answers
132 views
Difference of xss clean and global xss filtering
I am a beginner codeigniter developer and need your help.
I have a form that the is submitted to a function in the controller and I want to apply the form_validation library rules on the post data ...
2
votes
1answer
53 views
why do I need 8 backslashes?
While writing a "simple" cgi shell script proxy server to wrap quoted xml in a jsonp-style callback, I ran into an issue with escaping the backslashes (that was solved through trial and error and ...
1
vote
2answers
30 views
Zend View - Automatically escape assigned variables
The documentation for Zend_View shows an escape($var) method. It also suggests that it should be manually invoked for each variable we want to display: $this->escape($this->var);
Is there a way ...
1
vote
3answers
56 views
Understand cross domain stuff and AJAX
I am a bit confused about 2 things related to cross domain stuff.
Say I have 2 domains; mydomain.com and otherdomain.com
Now on mydomain.com, what all are the allowed things that can be accessed ...
1
vote
1answer
127 views
How to encode the kendo editor field?
I am using the kendo editor. If I write any html data like : <img src=x onerror=alert(0) > as an input. The script is getting executed. Means the kendo editor is not secure. How I can encode the ...
0
votes
2answers
121 views
Preventing xhr attack in my nodejs server [closed]
I am developing a nodejs server which will be interacting with a client mobile application.I came across some attacks on the server called as XSS and XHR.I came across a module called node-validator ...
8
votes
4answers
291 views
How I protect against XSS attacks in attributes such as src?
So I've been building a C# html sanitizer using html agility with a white list. It works fine, except for cases like these:
<img src="javascript:alert('BadStuff');" />
<img ...
0
votes
3answers
30 views
Ways to allow 3rd party content in our site
Let's say I want to display content from some other domain on my site.
So I use an iframe on my page and say
<iframe src="http://www.google.com" />
Now I guess because of things like Same ...
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??
2
votes
1answer
241 views
How to fix endemic XSS vulnerabilities in a Java webapp
I am working on a Java web application that is many years old.
Most of the <bean:write>s in the JSPs have filter="false" even when it isn't needed, probably because of developers blindly ...
0
votes
0answers
30 views
Running a web application with a domain & IP address without XSS issues
We have a web based product that uses iframes. The product can run from any port no and from a sub-domain name also. Therefore the addressing is configurable; maintained in a configuration file and ...
-2
votes
1answer
46 views
XSS - No escaping, but not rendering [closed]
I have a site where a page http://www.example.com/errorpage.html?errmsg="Some error string"
This error string is then rendered into the webpage in a <p class="error">Some error string</p> ...




