0
votes
1answer
57 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
1answer
79 views

XSS between HTTP and HTTPS versions of the same domain

What I'm trying to accomplish is an inline login using ajax that does the following: Login link is displayed on an unsecured HTTP page, lets say "http://www.somedomain.com/somepage/" No login info ...
1
vote
1answer
103 views

jQuery don't parse escaped HTML in .html() method

Take for example this HTML: <td onclick="$(this).html('Wanted HTML: <br>; Unwanted HTML: &lt;script&gt;alert(&#39;xss&#39;)&lt;/script&gt;')"> Click to ...
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', ...
-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 ...
3
votes
1answer
161 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 ...
1
vote
0answers
88 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 ...
14
votes
1answer
368 views

Is jQuery's $ safe from XSS?

In jQuery: $('<script>alert("foo");</script>') // nothing shows up // wrap it in a <p> $('<script>alert("foo");</script>').wrap('<p>') // oh no, an alert just ...
3
votes
3answers
257 views

Prevent XSS attack

I am working on a ASP.Net C# + jQuery ajax website project. I am trying to prevent xss attacks and I know below is not the full approach, but this is at the least what I should do - to use ...
0
votes
1answer
80 views

XSS-issue accessing REST API on other port than web server

I need some help. I have web server on domain.se:80 and a REST API on domain.se:8080. My web site is loaded from domain.se:80 and it's a single-page app so just one load is enough and subsequent calls ...
0
votes
1answer
419 views

Cookies not sent in ajax request headers when doing XSS with CORS (Access-Control-Allow-Origin) response header set

I can't seem to get cookies set on my browser in javascript to be sent as part of a jQuery ajax request to a sub-domain web application. I have two web applications, one on a root domain and one on a ...
-2
votes
2answers
46 views

Site that replaces all words on external page [closed]

I want to make something like this: http://www.degraeve.com/translator.php where you can input an address and then show the page with all the words replaced with something of my choosing. First I ...
2
votes
1answer
107 views

How to remove all javascript from an html string (with javascript or jquery)?

I want to display html provided by a user in a page. My page is almost entirely dynamic (JS code), and I was wondering if there's an easy way to sanitize it? Like, maybe I could remove all the ...
7
votes
1answer
118 views

Some clarifications regarding XSS [closed]

I happen to read about XSS and how to avoid it. From what I have read, I came to know that we need input filtering, proper handling of application code and output encoding to make the web application ...
0
votes
2answers
52 views

.text() jquery inline while forming the div

$('#box').text("hello"); will display as text.How do i use it when im forming a div in a loop? for(i=0;i,3;i++) { description+ = "<div id="box">+text[i]+</div>"; } how can i ...
1
vote
1answer
193 views

Running injected JS functions from a Chrome extension AJAX loaded page

I am trying to build a Chrome extension that uses injected JS to insert HTML from my server into a Facebook page from my server. Then, I want to be able to call a Javascript function from within the ...
1
vote
1answer
57 views

Show script depending on innerwidth - without “potentially dangerous request.form”

What I want: I have a situation where I want to show affiliate ads on my website. These are basically javascripts, with content within them. As my site has a responsive design, I want to load ...
0
votes
1answer
131 views

How to fix XSS vulnerability in this code?

This is my search function $('#productSearch').live('focus',function(){ $(this).stop().animate({'width':'200px'}, 600); var searchterm = encodeURIComponent($('#productSearch').val()); if ...
2
votes
4answers
572 views

Setting iframe `src` in Javasscript throws 'Permission Denied' error in Internet Explorer

I have a 4 iframes on a page, and when each is loaded I have their src set to "" (empty). Clicking on different links in the page set's the src's to different URL's using jQuery. This works fine in ...
0
votes
2answers
92 views

XSS - Send data to the source server of a script?

I am writing a JavaScript application where I plan on host the code on a CDN. Now I plan to include this code to my clients' sites. However, I have a problem, I want to use AJAX to communicate ...
0
votes
1answer
154 views

Can't post HTML code to XSS attack server side

I have an ASP.NET MVC 4 project in which I use an HTML input element in a View. The value of this element is sent to the server via a JQuery post call. I'm not using any Razor syntax, and I haven't ...
0
votes
3answers
158 views

Why do I still receive 405 errors even though both URLs are from XXXX.com?

I have a site where I'm developing my REST endpoints on: https://prefixone.somesite.com And I have another site where I'm developing my UI Framework: https://prefixtwo.somesite.com I can ...
1
vote
3answers
128 views

jQuery Prepend Security

Here is a rookie question, if I have a textarea that doesn't submit anywhere... <form onsubmit="return false;"> <textarea name="new_title_text" ...
0
votes
4answers
169 views

jQuery ajax submitting a form and sending data to alternative domain

I am currently looking into a couple of possibilities for a microsite that I am building. The microsite sits on a different domain to the main site, and we want to use some of the forms from the main ...
0
votes
1answer
839 views

Potential jQuery XSS

I maintain a PHP application. A user has recently reported the following code is vulnerable to XSS. from_name = jQuery("#from_name").val(); from_email = jQuery("#from_email").val(); subject = ...
0
votes
2answers
294 views

XSS when displaying json to users

I am getting some data in JSON format via jQuery and then I need to display it to users, however it is vulnerable to XSS attack. What are my options here, should I strip chars before I put the data in ...
0
votes
1answer
242 views

Best way to sanitize callback for jsonp? [closed]

What's the best way to sanitize the callback for jsonp? I currently have something like: function api_output($data) { if (isset($_GET['callback'])) { $cb = ...
0
votes
2answers
183 views

How can I prevent XSS for an keyup() jQuery event?

I am making a form with an keyup() event: every character the user types is immediately displayed into another div on the same page. It's vulnerable to XSS. How can I secure it using jQuery? Note: ...
0
votes
2answers
115 views

PHP script not getting executed

I have used the cURL solution to solve XSS but there is an issue with it. My proxy.php file contents are:- <?php $url = "http://www.yahoo.com"; $ch = curl_init(); $timeout = 5; ...
0
votes
1answer
134 views

JSONP version of JQuery.load()

I am writing a web page widget for my company. This widget must inject an HTML snippet from any domain (our website, possibly a customer CNAME) into the customer's website, which may be on any domain ...
2
votes
2answers
661 views

preventing xss in jquery, php, mysql in some examples - please advice

For a while I am more and more confused because of possible XSS attack vulnerabilities on my new page. I've been reading a lot, here on SO and other googled sites. I'd like to secure my page as best ...
-1
votes
1answer
72 views

Why Google provides JSON, but i can't use them

Google provides json format of api for java and others developers, not for jQuery user's? I can't create a cross domain queries for Google's json from my javascript (Same Origin Policy)? And if I ...
14
votes
6answers
1k views

Is jQuery .text() method XSS safe?

I have unescaped data from users. So is it safe to use like this: var data = '<test>a&f"#</test>'; // example data from ajax response if (typeof(data) === 'string') ...
0
votes
1answer
121 views

jQuery.post() with URL set as a Java weblet

I have a java app on my server and I can access it with my browser by going to server.com:8080/app. I've been trying to get my application to access this weblet but because of XSS jQuery.post() gives ...
0
votes
1answer
443 views

iframe created with jquery prepends absolute URL with current domain

I am creating an iframe using jQuery to a "cross-site" URL. This works properly in Firefox but IE is prepending the parent pages domain to the iframes src URL. An example would be if I am creating ...
1
vote
3answers
171 views

Transfer possibly unsafe user input from hidden input field to DOM

The following is a simplified example of a page a user has created at a site (they created it by filling out a form and then they get a URL for the page; the below is the HTML for the page they ...
1
vote
0answers
233 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 ...
0
votes
0answers
234 views

ASP.net Generic Handler, JSONP and Invalid Label Error

I am trying to get some data from a generic asp.net handler on am externally hosted site (though this is our company's web site and server). I have to display the data returned from this handler. ...
2
votes
1answer
1k views

xss javascript protection

So i am using the jQuery UI library to open new dialog windows, when the new dialog windows are opened I am passing some parameters like this <a ...
0
votes
2answers
161 views

php, ajax authentication on external domain

Suppose I have domain-a.com (A) and domain-b.com (B) I'd like to be able to share php sessions between the two domains unifying logins in a way that once the user is logged to A is automatically ...
4
votes
1answer
108 views

One jQuery Instance, Two Domains

I have two pages: a.example.com and b.example.com a.example.com includes jQuery a.example.com contains an iframe pointing to b.example.com both pages have document.domain set to the same parent ...
0
votes
1answer
317 views

Send custom message from iframe guest to iframe host where host HTML from portlet

I'm trying to send a custom message from an iframe guest to an iframe host using jQuery (We are developing both guest and host). The guest and host are on the same domain but on different ports. Also, ...
3
votes
1answer
401 views

Protecting from XSS in escape_javascript() output in Rails

In an application I am working on, a client-side view is generated based on some records in the database. I am first generating JSON of the records, saving it in a variable in my page, then using JS ...
1
vote
1answer
1k views

How to make cross-site POST request with easyXDM?

What I'm trying to do is to implement some simple cross-site client calls to RESTful service. Right now I'm trying to use easyXDM for this purpose. It seems to be working, but when I'm using it ...
1
vote
4answers
3k views

html() vs innerHTML jquery/javascript & XSS attacks

I'm testing xss attacks on my own code. The example beneath is a simple box where an user can type whatever he wants. After pressing "test!" button, JS will show the input string into two divs.This ...
0
votes
1answer
254 views

What are the cross-site-scripting restrictions for local (file:///) pages?

I have an HTML/Javascript application that uses jQuery to communicate with a web server (that I don't control). I run it from a local file (file:///app.html) and this works fine on Safari. However, it ...
1
vote
1answer
127 views

ScriptResource.axd attack is it possible?

This is code from site source genereted by firefox <script ...
4
votes
2answers
548 views

div contenteditable, XSS

I currently have a simple <div contenteditable="true"> working, but, here's my problem. Currently, the user can create a persistent XSS by inserting a <script> into the div, which I ...
0
votes
3answers
74 views

Cross Domain Scripting: How can I retrieve news articles residing on our another server?

I have been struggling with finding reliable answer to this question but no luck yet, so finally I am posting question here with a hope to find good possible answers from geeks out there. Case Study: ...
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 ...

1 2