Tagged Questions
The javascript-security tag has no wiki summary.
10
votes
1answer
1k views
Why same origin policy for XMLHttpRequest
Why do browsers apply the same origin policy to XMLHttpRequest? It's really inconvenient for developers, but it appears it does little in actually stopping hackers.
There are workarounds, they can ...
5
votes
2answers
178 views
Why can we link to js files on another domain?
Why is it that when we link to a javascript file on x.com from y.com (for example google analytics or jquery) it doesn't cause any cross domain security issues?
For example:
in y.com/index.html we ...
2
votes
1answer
38 views
securing data used in java script file
I am working on a web mobile application. In my application I get a json string from a server, in my java script using:
var xhr = new XMLHttpRequest(url);
then I convert the json text to json ...
1
vote
5answers
497 views
javascript securty: an AJAX call to record the user's screen resolution, is it possible to prevent fake numbers?
This is a javascript security question: suppose a page finds out the screen resolution of the computer, such as 1024 x 768, and want to use an AJAX call to log this data into the DB.
Is there a way ...
0
votes
2answers
343 views
Showing a secure password dialog on a web page
I've built a Single-Sign-On system for our web network. It works like this:
User clicks a login link on the site he wants to log in to (the "Unsafe Site"). The unsafe site's ID is passed in the URL.
...
-1
votes
2answers
73 views
How to block others access javascript [closed]
Possible Duplicate:
Protecting client side logic & data
Hi ,
How to block other reading my java script through view source,
My thing is, now one can access my java script,
bcoz am ...
-1
votes
3answers
131 views
What Javascript security techniques and issues should be part of a programmer's skill set for solid web development?
What Javascript security techniques, issues, and limitations should be part of a programmer's skill set for solid web development?