Hackers can use Cortana to open websites on Windows 10 even if your PC is locked

In the above video, you’ll notice the researcher issues the voice command and then unlocks the PC with their password. The vulnerability doesn’t allow a bad actor to unlock your computer, but with physical access to your system they could direct it to just about any website they wanted.
 
  1. class ThreadDemo extends Thread {  
  2.      
  3.    private String threadName;  
  4.      
  5.    ThreadDemo( String name) {  
  6.       threadName = name;  
  7.       System.out.println("Creating " +  threadName );  
  8.    }  
  9.      
  10.    public void run() {  
  11.       System.out.println("Running " +  threadName );  
  12.       try {  
  13.          for(int i = 4; i > 0; i--) {  
  14.             System.out.println("Thread: " + threadName + ", " + i);  
  15.             // Let the thread sleep for a while.  
  16.             Thread.sleep(50);  
  17.          }  
  18.       }catch (InterruptedException e) {  
  19.          System.out.println("Thread " +  threadName + " interrupted.");  
  20.       }  
  21.       System.out.println("Thread " +  threadName + " exiting.");  
  22.    }  
  23. }  
  24. public class TestThread {  
  25.    public static void main(String args[]) {  
  26.       ThreadDemo T1 = new ThreadDemo( "Thread-1");  
  27.       T1.start();  
  28.        
  29.       ThreadDemo T2 = new ThreadDemo( "Thread-2");  
  30.       T2.start();  
  31.    }    
  32. }  
 
 

Up Next