This commit is contained in:
sirjonasxx 2020-06-14 11:23:08 +00:00
parent 04d921d52b
commit e89e34c877

View File

@ -60,6 +60,7 @@ public class Rc4Obtainer {
new Thread(() -> {
long startTime = System.currentTimeMillis();
if (DEBUG) System.out.println("[+] send encrypted");
boolean worked = false;
@ -101,6 +102,11 @@ public class Rc4Obtainer {
}
long endTime = System.currentTimeMillis();
if (DEBUG) {
System.out.println("Cracked RC4 in " + (endTime - startTime) + "ms");
}
packetHandlers.forEach(PacketHandler::unblock);
}).start();
}