Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
36 views

How to protect widgets from forged requests

Lets say you have a JavaScript widget which needs to fire off a request to your web application if and only if the user wants to click on it. You don't want this request to be vulnerable to CSRF so ...
0
votes
0answers
38 views

Why can I change a link's href onClick? Security issue?

I tried the following code in Chrome, and was very surprised to see it works: <a href="http://yahoo.com" onclick="href='http://google.com'">yahoo?</a> The status bar showed "yahoo.com", ...
0
votes
1answer
89 views

Javascript to prevent clickjacking

I have this Javascript snippet in my application to prevent clickjacking: <script language="javascript" type="text/javascript"> var style = document.createElement('style'); style.type ...