I created an iframe and I uploaded a site to it (I do not have access to this site - it was not written by me)
<script type="text/javascript"> var el = document.createElement("iframe"); el.setAttribute('id', 'ifrm'); document.body.appendChild(el); el.setAttribute('src', 'http://AWEBSITE.com/'); alert(document.getElement("iframe").cookie); </script>
Is there any way I can use javascript to read my iframe cookies?
source share