omerwwazap / blog

Explore the world of AI, Cyber Security, hardware like Flipper Zero & Raspberry Pi, OSINT techniques, and my Chinese learning journey. Discover insights on AI trends, Cyber Security awareness, phishing, global scams, and OSINT methods including geolocation.
https://omerwwazap.github.io/blog/
MIT License
1 stars 0 forks source link

Post about bypassing School website restrictions for games sites. #62

Open omerwwazap opened 8 months ago

omerwwazap commented 8 months ago

Uses about:blank

<html>
   <head></head>
   <body>
      <button onclick="openGame()">Open Game</button>
      <script>
         function openGame() {
         var win = window.open()
         var url = "https://example.com"
         var iframe = win.document.createElement('iframe')
         iframe.style.width = "100%";
         iframe.style.height = "100%";
         iframe.style.border = "none";
         iframe.src = url
         win.document.body.appendChild(iframe)
         }
      </script>
   </body>
</html>
omerwwazap commented 8 months ago

Also Check out

omerwwazap commented 8 months ago

Also Check out

* https://sites.google.com/view/theadvancedmethod/html5/shell-shockers
let win = window.open()
win.document.body.style.margin = '0'
win.document.body.style.height = '100vh'
var iframe = win.document.createElement('iframe')
iframe.style.border = 'none'
iframe.style.width = '100%'
iframe.style.height = '100%'
iframe.style.margin = '0'
iframe.src = "https://tam-shellshockers.arfotoarte.com"
win.document.body.appendChild(iframe)
omerwwazap commented 8 months ago

Check Out;