[b]Pak Ustadz[/b] assalamulaikum.. script bagian A [spoiler]
JS Injection
CSS Injection (baik itu separate CSS ataupun randomize CSS)
Force Log In
YM Status
Loading Page
Block Viewer Script
Welcome and Goodbye Alert[/spoiler]
[spoiler]//js injection
var myjs = document.createElement("script");
myjs.type = "text/javascript";
myjs.src = "URL JS KAMU";
document.getElementsByTagName("head")[0].appendChild(myjs);
//css injection
var css;
try {
css = document.createElement("link");
}catch(e) {
css = document.createElement("<link>");
}
css.setAttribute("type","text/css");
css.setAttribute("rel","stylesheet");
css.setAttribute("href","URL CSS KAMU");
css.setAttribute("media","screen, print");
document.getElementsByTagName("head")[0].appendChild(css);
//force log in
if(pageViewerID==""){
alert("YOUR TEXT HERE");
top.location.href="http://www.friendster.com/login.php?next=/user.php?uid=uID FS MU";
}[/spoiler]
Last edited by teguh0203 (2008-08-05 10:30:55)