Phantom404

all-in-one

Feb 5th, 2020
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1.  
  2. <html>
  3. <head>
  4. <title>Internal Scan By Ph4nT@M-R4Y</title>
  5. </head>
  6. <body>
  7. <h1>Test a page for clickjacking/framing vulnerability</h1>
  8. <iframe src="localhost:8080" id="iframe" width="800px" height="600px"></iframe>
  9. <iframe src="127.0.0.1:8080" id="iframe" width="800px" height="600px"></iframe>
  10. <iframe src="127.0.0.1" id="iframe" width="800px" height="600px"></iframe>
  11. <iframe src="localhost" id="iframe" width="800px" height="600px"></iframe>
  12. <iframe src="http://192.168.0.1/" id="iframe" width="800px" height="600px"></iframe>
  13. <iframe src="http://192.168.1.1/" id="iframe" width="800px" height="600px"></iframe>
  14. <iframe src="http://192.168.0.1/login.htm" id="iframe" width="800px" height="600px"></iframe>
  15. <iframe src="http://fbb0e38b.ngrok.io" id="iframe" width="800px" height="600px"></iframe>
  16.  
  17. <script type="text/javascript">
  18. document.getElementById("demo").innerHTML='<h2>This Is InnerHTML Way</h2>'
  19.  
  20. console.log('This Is Me Ph4nTOM')
  21.  
  22. document.write("<h1>Hello test</h1>");
  23.  
  24.  
  25. </script>
  26.  
  27. <a href="#" onmouseover="alert('OnMouseOver Alert');">CLICK1</a>
  28. <a href="#" onmousedown="alert('OnMouseDown Alert');">CLICK2</a>
  29. <a href="#" onmouseenter="alert('OnMouseEnter Alert');">CLICK3</a>
  30. <a href="#" onmouseleave="alert('OnMouseLeave Alert');">CLICK4</a>
  31. <a href="#" onmousemove="alert('OnMouseMove Alert');">CLICK5</a>
  32. <a href="#" onmouseout="alert('OnMouseOut Alert');">CLICK6</a>
  33. <a href="#" onmouseup="alert('OnMouseUp Alert');">CLICK7</a>
  34. <a href="#" onmousewheel="alert('OnMouseWheel Alert');">CLICK8</a><br>
  35. <br>
  36. OnKeyUp<input type="text" onkeyup="alert(this.value)";/><br><br>
  37. OnKeyDown<input type="text" onkeydown="alert(this.value)";/><br><br>
  38. OnKeyPress<input type="text" onkeypress="alert(this.value)";/><br><br>
  39. OnInput<input type="text" oninput="alert(this.value)";/><br><br>
  40. <a href="#" onclick="alert(document.location)";>OnClick</a>
  41. </body>
  42. </html>
Add Comment
Please, Sign In to add comment