Skip to content

Latest commit

 

History

History
executable file
·
19 lines (13 loc) · 329 Bytes

README.md

File metadata and controls

executable file
·
19 lines (13 loc) · 329 Bytes

usb-drive-notifier

USB Drive Notifier - A PoC using Java and Powershell WMI Queries

Example usage

Notifier notifier = new Notifier();
notifier.addListener(new USBDriveInfoListener() {

    @Override
	public void onEvent(USBDriveInfo info) {
	    System.out.println(info);
	}
	
});

notifier.startListening();