Prank Virus

Bruceification73

Distinguished
Oct 5, 2009
416
0
18,810
Hello, everyone! I would greatly appreciate it if you would download my safe and harmless fake virus prank and test it out. It can be found here:

http://hotfile.com/dl/40653131/dfbeb8d/fakevirusprank2.zip.html

The zip file is less than 1 KB, so it will download immediately. Extract it, and then open the prank.vbs file. I swear it is completely safe. Just remember to use Task Manager to kill it, as it will not close itself, and you can't just close it with the X button (at least you shouldn't be able to). It is working fine on my computer as a prank, and I would just like to know what you all think, and if you are having any problems. Please post back here with any feedback/questions.


Also, feel free to view the actual script by editing it with notepad, and you can also use it on your friends if you wish.

Thanks, Kris.
 
Opens a notepad and types some stuff, then runs a batchfile that looks like a program executing a lot of code to a dumbass, but harmless to anyone that knows what they're doing. Then it displays an error message saying you have a virus and "All your base are belong to us"

It's one of my first scripts, but I like it. It's completely safe, and really fun to prank newbsters with.
 
WARNING: This is pretty GPU intensive due to insane amount of redraw of the cmd window under Windows "Aero". Pushed my 8400GS to 98% usage (as seen by EVGA Precision).

Code:
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package prankvirus_ee;

import java.util.ArrayList;
import java.util.Random;
import java.util.Scanner;

/**
 *
 * @author Administrator
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        int x = 0;
        int y = 0;
        while (y <= (5000)) {
            System.out.println("");
            System.out.println("Warning! DO NOT CLOSE THIS WINDOW! You WILL loose data if closed!");
            y++;
        }
        do {
            ever();
            x++;
        } while (x < 5);
        System.out.println("Enter Password to decrypt your infomation! \nYou will NOT be able to boot next time with out decrypting!");
        Scanner in = new Scanner(System.in);
        String pass = in.next();
        do {
            System.out.println("Wrong! Re-enter password!");
            pass = in.next();
        } while (!pass.contains("13371337"));
        if (pass.contains("13371337")) {
            System.out.println("Password verified! Infomation decrypted!");
        }
    }

    private static void ever() {
        ArrayList list = new ArrayList();
        int i = 1000;
        Random rand = new Random();
        Random str = new Random();
        for (int j = 0; j < i; j++) {
            int f = rand.nextInt();
            String token = Long.toString(Math.abs(str.nextLong()), 36);
            list.add(f);
            list.add(token);
            System.out.println(list.toString());
        }
    }
}

Here is the EXE: http://www.mediafire.com/file/d1wmzkyvmqd/prank.exe
 

lol. the entire thing gets formatted in that way automatically in NetBeans. Besides, I like it that way 😛.
 
Ha, i would have to throw my support to randomizer and Allman. :) However, regarding the wiki article, just make sure to avoid emacs like the plague 😛

@shadow the fact that this pushes your 8400GS to 98% without even utilizing a gui terrifies me...
 
^ Yeah, I know. I was surprised too. Here's a screen shot:

95% GPU use.
tempbq.png



Btw, what format (indent style) am I using? I think it's KNF or Banner or a K&R variant. Which one is it?
 
I think it is technically KNF, but i have always known it as "That damned annoying style that all my professors and partners seem to love for who knows why" 😛
 
Nope. No offense, but there is absolutely no way that i would run any programs that didn't come from a well known and respectable source (such as official repositories) on any of my computers. I have too much invested in them, and hackers are notoriously tricky people 😉

Besides, you said it was a visual basic script, and all my personal computers are solely running Linux.