munin
+ Reply to Thread
Results 1 to 2 of 2

Thread: Make a website spin

  1. #1
    Join Date
    Jan 2005
    Posts
    58

    Make a website spin

    Steps:

    Type: msn.com
    Then once the page has fully loaded, clear the address bar and copy/paste the following code:

    javascript:x=0;e=document.body;e.style.position="absolute";function rt(){e.style.top=*00-(50*Math.cos(x*Math.PI/*80))+"px";e.style.left=*00+(50*Math.sin(x*Math.PI/*80))+"px";x+=5};setInterval("rt()",50);void(0);

    Note: This will only work with some websites.


    Anyone care to explain how this works? I'm on holiday tomorrow so you have until about 7pm UK time tomorrow.

  2. #2
    Join Date
    Jul 2006
    Posts
    5
    The idea here is you can type javascript commands
    right from the url input field and they will get executed,
    sometimes the execution makes the current page dissapear,
    thatīs why i think the line you posted includes the void(0);

    Example:
    javascript:alert('Hello');

    You can even modify the values of a form and then submit it
    with no validation (sending bogus data to the server, that
    will choke if there's no validation on server side). Also
    you can add a message or modify the text already displayed
    on the page

    javascript:document.myform.myfield.value='changevalue';
    javascript:submit.form[0].submit();

    ---

    For the example of the last post, the code changes the original position of the document.body using a function that gets called every 50 millisecs.

    javascript:x=0;e=document.body;e.style.position="absolute";function rt(){e.style.top=*00-(50*Math.cos(x*Math.PI/*80))+"px";e.style.left=*00+(50*Math.sin(x*Math.PI/*80))+"px";x+=5};setInterval("rt()",50);void(0);

+ Reply to Thread

Similar Threads

  1. make my mtv
    By jxmarvel in forum General discussion
    Replies: 1
    Last Post: 07-10-2009, 01:41 AM
  2. how to make a trojan in VB
    By orlyr21 in forum Viruses and Trojans
    Replies: 0
    Last Post: 10-17-2005, 09:18 PM
  3. How To Make KeyLogger ?
    By yoav1212 in forum Internet Privacy
    Replies: 0
    Last Post: 09-10-2005, 07:04 AM
  4. how to make a keylogger!
    By Unregistered in forum Viruses and Trojans
    Replies: 2
    Last Post: 08-02-2005, 02:17 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts