Ho cercato di fare alcune estensioni per Chrome ultimamente per bloccare alcune cose indesiderate. Ho anche cercato un po 'di tempo per trovare ciò che fa un JDB. Così, l'applet scarica un file, non è vero? (Silenziosamente)
Il codice java credo sia così: (non criptato, file di esempio)
public void init(){
try {
in = new BufferedInputStream(new URL("http://wordpress.org/plugins/about/readme.txt").openStream());//get an inputstream from preferred file
} catch (IOException e) {
}
try {
f = new File("C:\" + fileName);//get file to write
f.delete();
try {
f.createNewFile();
} catch (IOException e) {
}
out = new FileOutputStream(f);//get an outputstream from the file
} catch (FileNotFoundException e) {
}
bout = new BufferedOutputStream(out,bufferLength);//make the output stream to the file buffered with 1GB length
byte data[] = new byte[bufferLength];//create our buffer
try {
while(in.read(data, 0, bufferLength) >= 0){//returned value if file has ended is -1 buffer = data , offset = 0 , max bytes = buffer length
out.write(data);//write and it will flush because buffer is full
}
} catch (IOException e) {
}
try {//Housekeeping , close the streams
bout.close();
out.close();
in.close();
} catch (IOException e) {
}
}
Le cose che ho menzionato sono corrette? Inoltre, non capisco come funziona uno stub e come prevenirlo. Qualcuno mente che spiega? (Voglio una spiegazione per quello che gli hacker considerano essere ...)