Y T Nuke  
Results 1 to 6 of 6
I wrote a script that works like Black Hat Code Breaker, but not useing a ...
  1. #1
    howdoyou is offline Regular Member
    Join Date
    Nov 2008
    Location
    Kentucky
    Age
    26
    Posts
    284
    Reputation
    8
    Thanks
    3
    Thanked 58 Times in 30 Posts

    Thumbs up Like CodeBreaker, but cooler ;)

    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...


    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 by howdoyou; 11-16-2009 at 09:01 PM.

  2. The Following 2 Users Say Thank You to howdoyou For This Useful Post:

    AmazinAzn (11-16-2009), Gandalf's Mate (11-16-2009)

  3. #2
    kasher9's Avatar
    kasher9 is offline Junior Member
    Join Date
    May 2009
    Posts
    196
    Reputation
    11
    Thanks
    11
    Thanked 41 Times in 24 Posts

    Default Re: Like CodeBreaker, but cooler ;)

    good idea, but this is gonna get you scrubbed like crazy, maybe 1 out of the 1000 you send they'll let you keep?

  4. #3
    oldenstylehats's Avatar
    oldenstylehats is offline trophaeum's bitch
    Join Date
    Apr 2008
    Posts
    1,895
    Reputation
    63
    Thanks
    630
    Thanked 1,177 Times in 437 Posts

    Default Re: Like CodeBreaker, but cooler ;)

    This is a very neat idea, but kasher9 is right. Because the code is made to remove the iframe as soon as the mouse leaves the iframe, there is no chance that they'll fill out any 2nd page offers and you'll get either scrubbed or blocked from the offer very quickly with most affiliate companies.

  5. #4
    howdoyou is offline Regular Member
    Join Date
    Nov 2008
    Location
    Kentucky
    Age
    26
    Posts
    284
    Reputation
    8
    Thanks
    3
    Thanked 58 Times in 30 Posts

    Default Re: Like CodeBreaker, but cooler ;)

    change
    Code:
    if(k>=1)
    hide();
    k=k+1;
    to:
    Code:
    if(k>=2)
    hide();
    k=k+1;
    for 2 page offers. 3 page offers, change it to 3. etc..etc..

  6. #5
    oldenstylehats's Avatar
    oldenstylehats is offline trophaeum's bitch
    Join Date
    Apr 2008
    Posts
    1,895
    Reputation
    63
    Thanks
    630
    Thanked 1,177 Times in 437 Posts

    Default Re: Like CodeBreaker, but cooler ;)

    Quote Originally Posted by howdoyou View Post
    change
    Code:
    if(k>=1)
    hide();
    k=k+1;
    to:
    Code:
    if(k>=2)
    hide();
    k=k+1;
    for 2 page offers. 3 page offers, change it to 3. etc..etc..
    Correct me if I'm wrong, but it looks like this code assumes that the user's mouse leaves and enters the iframe each time and that the next offer pages will be able to be filled out from within the iframe, which is rarely (if ever) the case.

    Regardless, it is a very neat idea to get around the fact that you can't track browser behavior "through" an iframe that is hosted on a different domain. It may very well have other applications.

  7. #6
    howdoyou is offline Regular Member
    Join Date
    Nov 2008
    Location
    Kentucky
    Age
    26
    Posts
    284
    Reputation
    8
    Thanks
    3
    Thanked 58 Times in 30 Posts

    Default Re: Like CodeBreaker, but cooler ;)

    no, it has nothing to do with the mouse, i just forgot to take those codes out. it hides the iframe after onload() has been accsessed X amount of times.

    so if you click a link, it goes away.

    check the example:
    Example: http://trueblackhat.com/a.htm

    click on Images or something. After the next page loads, the iframe hides.
    if you want it to go away after page 3 for example, you change it as follows in my above post.

    i forgot to take the mouseover crap out, that was for debug testing.


    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;
    }
    
    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>


    <iframe onload="frame()

    ...

    function frame()
    {
    if(k>=1)
    hide();
    k=k+1;
    }

    by changing k>=1 to 2 or 3, thats how many page loads before the frame hides. unlocking the content.
    Last edited by howdoyou; 11-16-2009 at 09:50 PM.

  8. The Following 2 Users Say Thank You to howdoyou For This Useful Post:

    Standard Toaster (11-17-2009), theprofitpro (11-16-2009)

Natural Slow Link Building


SEO Blasts - High quality link building service

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  SEnukeX SEO Software
Proudly Powered by Hostwinds.com Web Hosting Click Here For Exclusive BHW Discounts!

Cheap Web Hosting


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75