I wrote a script that works like Black Hat Code Breaker, but not useing a js loading with links, it shows an Iframe, A good iframe code to use would be one generated by CakeSlice and modified a bit.
I used some code threw out the site, so figured i would share it with all of you.
The user goes to the webpage, its blocked by a "Enter your email address here" box, they enter there email address, you make money threw CPA, they can then view the website content.
Some things can be added to make it better, like right click block, scroll block etc.
Example: http://trueblackhat.com/a.htm
click a link to make the iframe go away...
I used some code threw out the site, so figured i would share it with all of you.
The user goes to the webpage, its blocked by a "Enter your email address here" box, they enter there email address, you make money threw CPA, they can then view the website content.
Some things can be added to make it better, like right click block, scroll block etc.
Example: http://trueblackhat.com/a.htm
click a link to make the iframe go away...
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<script type="text/javascript">
var stat;
var delay=0;//delay in milliseconds
function show(){
var oIfr = document.getElementById('ifr');
oIfr.style.display=(oIfr.style.display=='block')?'none':'block';
}
function hide(){
stat = setTimeout('show()',delay)
}
onload=function(){
var dIfr = document.getElementById('ifr').contentWindow.document.documentElement;
dIfr.onmouseover = function(){parent.clearTimeout(parent.stat)}
dIfr.onmouseout = function(){parent.hide()}
}
var k=1;
function frame()
{
if(k>=1)
hide();
k=k+1;
}
</script>
</head>
<body>
<br>
<br>
<br>
<div style="position: absolute; left: 200px; top: 0px; height: 1000px; width: 1000px; padding: 1em;">
<iframe onload="frame() " id="ifr" src="http://google.com" frameborder="0" scrolling="no" width="%50" height="%50"
name="noname"></iframe>
</div>
Content Here
</body>
</html>
Last edited: