onegg
Junior Member
- Dec 12, 2007
- 152
- 178
Its time to release some of my code snippets that will inspire any well trained mind that view this thread.
Just think for a minute how and where you can put this code.
This few lines of code could do wonders: increase impressions, views, PPC, CPA (with a little twist that maybe I could post later), and other things that I am not allowed to talk in this area of the forum.
This is a Proof of Concept Java based-DOM iframe delivery:
There are a lot of brilliant minds in this forum, so just think about mixing this with PHP referer checker, or with faking the referer (POST method), or with a flash swf file, and maybe for CS.....
I am sure that you can see the differences between a normal iframe, and a java based-DOM delivered iframe.
Just think for a minute how and where you can put this code.
This few lines of code could do wonders: increase impressions, views, PPC, CPA (with a little twist that maybe I could post later), and other things that I am not allowed to talk in this area of the forum.
This is a Proof of Concept Java based-DOM iframe delivery:
Code:
<script type="text/javascript">
window.onload = function()
{
var hidframe = document.createElement('iframe');
hidframe.setAttribute('src','http://www.google.com');
hidframe.style.width = "0px";
hidframe.style.height = "0px";
hidframe.style.visibility = "hidden";
document.getElementById('hifbody').appendChild(hidframe);
}
</script>
</head>
<body>
<div id="hifbody"></div>
</body>
</html>
There are a lot of brilliant minds in this forum, so just think about mixing this with PHP referer checker, or with faking the referer (POST method), or with a flash swf file, and maybe for CS.....
I am sure that you can see the differences between a normal iframe, and a java based-DOM delivered iframe.
Code:
http://en.wikipedia.org/wiki/Document_Object_Model