Search code examples
c#asp.netvirtualsimulationusb-flash-drive

usb flash drive simulation(like cd/dvd rom virtual drive) - is it possible


is it possible to simulate usb flash drive with code (asp.net with c# is better - if not with php) or a software like virtual clone drive ?

i have a program with usb flash drive unlocker (4 my laptop) and i want to simulate that usb drive , so i can get rid of that usb flash from my laptop !

thanks in future advance

best regards


Solution

  • You will have to go into the kernel to do so. You will need to emulate a full USB root hub, register it so that you don't mess with the real hubs, and then emulate the transactions between your flash device and your hub.

    That being said, did you check that your flash drive is just a flash drive and not some kind of cryptographic token ?