The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
57 views

Python Flask cross site HTTP POST - doesn't work for specific allowed origins

I'm trying to get Flask to handle cross-site scripting properly. I've taken the crossdomain decorator snippet from here: http://flask.pocoo.org/snippets/56/ In the code below, I've put the decorator ...
1
vote
1answer
52 views

Cross-frame cross-site scripting - creating a webpage reloader/watchdog

Setup: There are remote measurement stations, there is centralized collection/processing/presentation server (with a webserver) and there are observation stations which are to display the collected ...
0
votes
0answers
35 views

Access nodejs with web javascript but hitting XSS?

I have a nodejs app that runs a web server and works as a web API. Simple GETs to interact with it. My goal is to be as accessible as possible by any language or programmatic scenario. My biggest ...
1
vote
0answers
38 views

Cross site AJAX error

The ajax is not executed when deployed on Nokia Series 40/ cloud preview ( PS - Nokia used a proxy server to run web apps on phones). The ajax calls work in desktop browser and on local preview (Nokia ...
0
votes
0answers
29 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 ...
1
vote
1answer
119 views

Security Scan shows vulnerability in JS Script file

I recently ran a Security Scan on my site, and one of the JS files being used, was flagged as having DOM Cross Site Scripting Issue, and I'm not sure how I can fix it. File: jquery.address1.4.js ...
1
vote
0answers
227 views

Internet Explorer has modified this page to help prevent cross-site scripting

I see this in a few topics but nothing matching my situation. I have code to render buttons for Twitter, Like, Google+ and Pinterest. In Internet Explorer - and ONLY IE - the Tweet button generates ...
0
votes
0answers
35 views

Cookies are not sent over Https URL from Http webpage

I am working on a project that sends Login credentials from an Http page to HTTPS url with Ajax XMLHTTPRequest. Login is successful as expected. But now I am trying to logout with same technique,by ...
1
vote
1answer
119 views

Protect from cross-site scripting attacks?

We recently set up a website (http://www.doverjewelry.com/) with hikashop, the domain has godaddy website protection so it scans the website and warns against vulnerabilities. The scan is currently ...
1
vote
1answer
189 views

Cross site Ajax.Request with cookies and Prototype.js

I need to tell Prototypes Ajax.Request to set xhr.transport.withCredentials to true (to enable cookies in my cross site requests headers, but i failed by trying ...
1
vote
1answer
480 views

Calling server side function with parameter from Javascript in ASP.NET

I have an ASP.NET application in VB.NET. I have a Javascript function in mypage.aspx and another one in my callback.aspx page. I need this scripts to render and submit an IFrame on mypage.aspx. When ...
2
votes
1answer
100 views

GWT / SmartGWT / cross site relative paths issue

I am struggling with following issue described in short: Loading module cross site results in no skin due to wrong image paths etc. What am I trying: I am trying to provide an HTML code snippet which ...
1
vote
2answers
240 views

“Inject” JavaScript in existing application to manipulate the UI (qwebirc)

I need to inject some JavaScript into an existing application. The application is normally embedded with an iframe like this: <html> <body> <iframe ...
1
vote
1answer
154 views

Cross site Ajax JSON call

I have big troubles dealing with a website I want to make a searchfunction for. It is a ranking in an online game, but the searchoptions are not enough for my alliance. Thus I want to make an ajax ...
0
votes
2answers
319 views

Safari will not load css file from external server

One of the sites I am developing is loading an external stylesheet: @import url(http://www.othersite.com/stylesheet.css); This works in every single browser properly, except for Safari. Safari does ...
0
votes
0answers
87 views

C# and WebBrowser Controls

So I'm trying to load http://server7.firmchannel.com/mediatile/multizonetest.html in a webbrowser control in C# (Visual C# 2010 Express). Unfortunately, while pages like Google.com and slashdot.org ...
2
votes
2answers
93 views

Coldfusion Cross site authentication

Ok, so on the coldfusion site I'm working on I just installed a third party (open source) CF forum known as "Galleon". I asked a similar question a bit ago but now we have progressed a bit. The ...
0
votes
1answer
417 views

bad URI or cross-site access not allowed

In my codeigniter site i used edwardian script font. But when i used this i got this error in bug and site design breaked : downloadable font: download failed (font-family: "Edwardian Script" ...
0
votes
1answer
74 views

Cross Site Request

I am trying this tutorial ,it is working fine if server specify the call back object, like if server prints like this, ...
0
votes
0answers
53 views

Dynamically fetch JSON feeds from other web domains

I am trying to implement this in this StockWatcher tutorial I changed my code slightly change to this private static final String JSON_URL = "http://localhost/stockPrices.php?q="; AND private ...
1
vote
3answers
1k views

XSS Cross Site Scripting - Jsp <Input> tag

The following piece of code in my JSP caused a cross site scripting vulnerability on the input tag. <form name="acctFrm" method="post" ...
-1
votes
1answer
59 views

Common Exploits in XSS?

What are the most common exploits in XSS (in Java) and can you show and example of each please? Thank you
0
votes
0answers
91 views

Access Cross Site Data By Jquery Ajax Through JSONP

jQuery's JSONP support Beginning with version 1.2, jQuery has had native support for JSONP calls. You can load JSON data located on another domain if you specify a JSONP callback, which can be done ...
0
votes
1answer
151 views

Cross site scripting manipulation globally

In our application we have a class called GlobalPage.cs this page inherits from Page we have Page load overrides and other there. It was called to our attention we need to add some security to our ...
1
vote
2answers
449 views

Making Cross Site Asynchronous HTTP Post from GWT Client

I m working in a GWT based Project and i'm used to making RPC requests alone. I tried creating a new project and making Cross Site request with GWT client using RequestBuilder, but i couldn't get it ...
0
votes
1answer
133 views

Scrptservice Webservice in MS VS 2005 and HTTP POST/CORS/Firefox

I am trying to develop a Ajax Webservice using VS2005 and IIS6. Its purpose is to query a database and return records as text/csv (not my choice!) based on a filtered MS Access Table. The Service must ...
1
vote
3answers
571 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
426 views

jQuery Cross-site Call To ASMX service Return value null

I am trying to call a asmx service from an HTML page through JavaScript and jQuery. Here is my code for the service HelloWorldTest.asmx: [WebService(Namespace = "http://tempuri.org/")] ...
0
votes
3answers
143 views

Can JavaScript be used to push a file to another machine or web service

I'm relatively new to this We have a requirement to save a file with out the use of the dialog box. I was wondering if I can use AJAX or some other JavaScript to "Push" the file from the client PC ...
1
vote
2answers
59 views

Is it possible to run Facebook application on mulitple domains?

I've one Facebook application, that I want to use on domainA.com and domainB.com. The only problem is, that if I've set application domain in the facebook settings to domainA.com, it doesn't work on ...
0
votes
2answers
282 views

Ajax get call - Cross site, any solution?

Is there any way, where I can make a cross site get call to another server, so I can grab some content? If no, anyone know a better solution, so I can get all html imported to another site?
-1
votes
3answers
520 views

Load HTML content through jQuery

I'm looking for a way to load a page (page A) (which I also create - so not an external page on the web) into an existing page (page B) dynamically. The goal is to influence the behavior of page A in ...
2
votes
2answers
431 views

Java-ajax cross site empty response string

I am doing a cross-site ajax to java data transaction(Not sure if I named that correctly, so please forgive me about that). Part of code in Java file: BufferedReader input = new ...
1
vote
1answer
216 views

Tracking displays of iframe component in Google Analytics

Site A gives their affiliates an interactive component (traffic map based on Google Maps), which they in turn put on their sites (Site B) in an iframe. The component is dynamic, doesn't change the URL ...
2
votes
1answer
723 views

Getting Cross-site XML response with jquery

I'm trying to get some xml information from a service that is not mine. Basically, the user will authenticate on the other service and my script should go get the information using it authentication ...
1
vote
6answers
261 views

How to get data from cross-site? I'm using $.post

I'm testing a javascript code which is on localhost. This file requires data from a remote server in JSON format. When I directly hit the JSON url, I get the data, but in javascript, I'm getting empty ...
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 ...
3
votes
2answers
767 views

How to test browser for permission before “Unsafe JavaScript attempt to access frame with URL” (Chrome local frame)?

The HTML parent window and iFrame content know about each other and communicate freely when they live on the same web server. When they are saved to DVD, Chrome throws an "Unsafe JavaScript attempt to ...
0
votes
1answer
369 views

Pci-compliance Cross-site Scripting - contact form

Long time viewer, first time posting. I'm new to php and hope someone could be of assistance. I have a pci-compliance issue using a contact form from this website, Tutorial Stag Contact Form Php Ajax ...
0
votes
1answer
910 views

XMLHttpRequest cannot load

I am trying to access resourced from multiple servers using AJAX, and I am running into this problem: XMLHttpRequest cannot load http://first.mydomain.com. Origin http://second.mydomain.com is not ...
4
votes
1answer
596 views

Single-sign-on in Extjs 4

How can we implement Single-sign-on in Extjs4 where there are two different domains domain1.com domain2.com.
0
votes
2answers
32 views

How to open a page and activate specific JS?

I have a jplayer on a website, which embeds several playlists. To activate these playlists, I use this function : jQuery("#playlist_french_baroque").click(function() { ... }); This works very well. ...
2
votes
1answer
171 views

Share Authentication between different Apps in CakePHP?

I'm still sort of new to CakePHP, and I've presently created and deployed one (rather complex) application using it. It has full user and group support and I took the time to get the access tables ...
1
vote
2answers
2k views

Can I enable cross site scripting in IE for any/all websites by simply disabling XSS filter- or is something more required?

I want to enable cross site scripting for some sites. Specifically, I want to submit a web form to a 3rd party site, I have set the target iframe for the web form's response to a child iframe, now I ...
7
votes
1answer
1k views

Why is cross-domain JSONP safe, but cross-domainJSON not?

I'm having trouble connecting some dots having recently learned of JSONP. Here's my understanding: Cross-domain XmlHttpRequests for any content (including JSON) is banned, due to the same origin ...
0
votes
1answer
97 views

Using <object> cross-site

How can I use an <object> tag to load content from another site? Like <object type="text/html" data="google.com"></object>
0
votes
1answer
55 views

What are the sites that do not support iframing?

I'm dynamically generating iframes for a number of random websites, and I'd love to know which sites do not support iframing so I can fall back to a thumbnail image. I already know sites like ...
1
vote
0answers
204 views

XSS Attack Prevention

I have a web application written in PHP. The templating engine is SMARTY. My question is very simple, yet the answer should not be that easy, because I searched the hell out of it to no avail. When ...
2
votes
2answers
2k views

jQuery autocomplete - xml cross site request

The XML feed for my autocomplete is on another server. Is there a client side (javascript) method of getting this XML document? I know I can create a proxy with php, jsp, etc.. but I need to do it ...
0
votes
0answers
208 views

When does iOS ignore cross-site XHLHttpRequest restrictions?

In a UIWebView and in Mobile Safari on the Simulator from a file:// I seem to be able to make an AJAX request to any page I want (which is great!). However, this doesn't seem to be the case from other ...

1 2