Link to home
Start Free TrialLog in
Avatar of omer d
omer d

asked on

django - add iframe element containing source url of my web page inside another site

I want to add iframe with source url of my own a web page - inside another site page.

but my page is not being displayed inside the iframe, I'm getting error in the browser console:
Refused to display 'http://my.site.com/page/' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.

I've tried to set django x-frame-options, and this is my view:
from django.views.decorators.clickjacking import xframe_options_exempt

@xframe_options_exempt
def ok_to_load_in_a_frame(request):
    return render_to_response('test.html', {},  context_instance=RequestContext(request))

but it doesn't work for some reason... any idea?

thanks.
Avatar of gheist
gheist
Flag of Belgium image

I doubt you get much help exploiting XSS vulnerability in other site.
Avatar of omer d
omer d

ASKER

It seems that you didn't understand my question...

the way of adding iframe to another site - this is not the problem, and it's not an  attack on the site,
it's a chrome extension button that add something to the current page, temporary...
I'm not doing any harm to the site, it's a feature being executed by the user on the current instance of the page.

Any way, the question is not how to add iframe, but how to disable my web server default security,
and allow my web page to be displayed inside another page...
ASKER CERTIFIED SOLUTION
Avatar of omer d
omer d

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of omer d

ASKER

eventually I solved it..