The title pretty much says it all: have you ever written (or tried to write) a computer virus? I know pretty many young programmers try to do something like that in their early days. Did you? If yes, did you succeed? Tell us your tale - What did it do? Did you get punished? What did you learn from this? Etc.
|
22
|
|||||
|
|
|
I got into a lot of trouble in High School for writing a few things, the biggest and most notorious of which resembled the Novelle Netware login prompt our school used. It looked identical and when a user typed in their username and password it would save them to the current users network folder, display a message box with a standard error we saw every now and then (which of course ended with "Please try again. If the problem persists contact a System Administrator.") and then launched the real login, which worked (logging the current user off and the new user on). The program was actually a prank on a friend of ours, but the program spread around and then someone was stupid enough to try to set it up on an administrator, which then prompted a search and ultimately lead to people pointing fingers. Ultimately, I found the exercise itself rather fun since the network was secured very well we couldn't run untrusted code; ultimately we found the loophole was to enable running macros in word and then use VBA to get the job done. I also learned pretty quickly the repercussions of tampering with government property as the charges they brought against us were massive and plentiful (felonies, federal charges, the works). Ultimately there was no malicious intent and no grades were altered or secure systems affected, so the charges were viewed as excessive, but I still had to tour the local jail and put up some community service on top of being suspended for a week. Afterward I became president of computer club and started helping the admins by finding loopholes and reporting them, which turned ultimately allowed me more research opportunities and leeway so long as the results were properly reported. I think of this turn of events as incredibly influential in my learning and would not change any of it even if I could. |
||||
|
|
|
I thought about it when I was in school, but decided if something went wrong (like a bug), it could get out of control, and real damage could be done. Basically, I decided it was not worth the risk. Also, destroying things isn't really as difficult as building them, so I decided to focus only on building value. I'm sure you can learn a lot writing a virus, but you can learn just as much writing something constructive. (no judgement) |
||||||||
|
|
|
Yes, but only for personal interest and to learn how they worked. When viruses first became known in the early/mid 80's I wrote a simple virus on DOS in 286 assembler that copied itself into the header of .exe files so it was executed when the file was run. It then scanned the computer for more uninfected .exe files and repeated the copy. The first version was destructive - overwriting the header so the program no longer worked, the second not as it moved the uninfected code to the file end, replacing it with the infection code and executing it after the virus code. I did this using a book on security that went it a lot of detail on actual code and a simple manual on basic 286 assembler - being well before the Internet. Incidentally I did all this on an Atari ST running a DOS emulator so it was completely isolated from any real environment - an early virtual machine - as I had a healthy paranoia about letting it near anything valuable. I never did anything with it beyond experimenting - no payload or such, but it was definitely a worthwhile exercise as it taught me more about 286 assembler and low-level DOS program organisation - like how a program actually loads itself into memory and starts executing - than I would have ever encountered elsewhere, and of course there was a certain interest in playing with something then quite new and 'hackish'. |
|||
|
|
|
|
Yes, and some damn good ones. However There is a BIG difference between writing a 'virus' and deploying it into the wild. Many viruses are created in labs to better prepare future developments against malicious intent. Many security firms employ just such an approach. I have created several malicious viruses designed to aggressively take networks down and deployed them in controlled environments. We found this an essential exercise to improve both our development efforts and Network security. And yes, if you're curious, we did initially deploy them secretly within the environment in order to test the IT response to such threats. Sometimes, when it really matters you need to test the theories and redundancies with as much realism as possible. |
|||
|
|
I did once wrote a program that (not intentionally) cleared my hard drive. Does that count ;-). |
|||
|
|
No, but I was asked to. My boss gave me requirements for a program that would start when a user inserted a floppy disk with the program on it, search on the user's network for a computer with one of our attached devices, then update the device driver. This was to be done automagically, without the user needing to know what was going on. After I explained to him (and his boss, and his boss) that this was virus-like activity, and that there was an entire industry devoted to preventing it, I was finally able to get the requirements changed to something more reasonable. It would have been interesting to try it, just to see how many nuclear power plants (our target customers for those instruments) had security relaxed enough to make it work. At the time I was guessing around 0. |
||||
|
|
|
In highschool I've done some research on how computer virusses work. I've written one to demonstrate to the rest of the class how easy it was to create a virus. This virus was written in Turbo Pascal, and was only capable of "infecting" other Turbo Pascal source files. This made it more visible. Later when I found out that MSN messenger had an API in 15 minutes I hacked something together (in VB6) that could use MSN to spread. To my surprise this really worked. The user had to click a link, but everyone did. I included a maximum work time (for about 15 minutes) and MSN was not that well known back then, but this was a dangerous experiment. |
|||
|
|
I've never written one, but I've disassembled quite a few to find signatures for a now-defunct anti-virus product. Some of the early "virus toolkits" were very well done, written by people with excellent knowledge of the x86 processors, but without thinking about the consequences. Luckily a number of the "in the wild" viruses had bugs or no payload, and could be removed easily. The company had to perform numerous repair jobs on corrupted drives to get back someone's thesis, accounting data, etc., including training about regular backups :-). A number of people still lost years of work when there was too much data corruption -- heartbreaking stuff. So if you have the knowledge to write one you'd really be better off coming up with the next Google instead... |
|||
|
|
|
|
I've thought about virus writing. My issue would be how to test them. I could set up a network of virtual machines to test it, however it becomes very complicated. The way I see it, a malicious virus has two properties to it:
I think both aspects are simple enough to create. The challenge is to create them together in a way that is testable, yet not malicious to machines other than your virtual test network. I think the biggest implication is what it means for security. I feel like everyone should learn how to write viruses or some sort of malicious code at some point, just to learn the thought process it takes. The better one knows how to do this, the better off you are at protecting against it. This applies for really any kind of development at any level (almost). Both installable apps, and web apps can be open to vulnerabilities, and any layer within a technology stack is open to attack if not properly secured. Knowing how to cause damage is one of the best ways to prevent it. I think it's better than just being told how to prevent it because actively thinking about how to attack a system means you're more likely to remember it. |
|||
|
|
There used to be something called the "Virus Creation Labs". Essentially, it was a code generator. You would select what features you wanted in your virus and it would generate an assembly file that had those features. When I generated the virus, I had no way of knowing if the assembly really did what it claimed, (I didn't know assembly then, this was l2 years ago) but I did have an assembler and linker! So I assembled it and linked it. Then I had an EXE. I ran it. It corrupted my fat. To this day, I have friends that won't let me live that moment down. |
|||
|
|
I wrote four simple viruses back in DOS age. It taught me some assembler, some .exe format details, DOS API, something about resident programs, how to hide my virus in the exe file, etc. One virus was interesting as it xor-ed its body with file where it was hiding, so it looked totally different each time (except small loader ;-)). All-in-all, it was fun and I was very proud of these viruses (I was like 15 after all :-)), although they were quite stupid, and I think NOD was able to detect all of them via its heuristic. |
|||
|
|
|
|
1996, at work, I had created some fancy app using a combination of .bat files, pkzip/unzip utilities and some of my own creations with Turbo Pascal running on a Novell Network. Another guy came and used all my code, made a couple minimal changes (like the directories used or something like that) and put HIS name on the ".bat app" I was so pissed of, I created a new .bat, called it "echo .bat", with a #255 character in the name that .bat file deleted his programs every time it was executed all I had to do was to add some "echo " on one of his .bat files oh, it was so much fun... til they found out |
|||
|
|
TheXenocide, I actually did the exact same Novell trick... programmed a replica login screen screen using dos based Pascal! Going back a bit! Even Had the right time delays between entering a username, password and reporting an error with the password entered to make it look authentic! The program would be executed by the autoexec.bat on start up just before Novell kicked in with the real login screen (black screen with a red bar at the top if I remember right!). It saved all the usernames and passwords to the hard disk... I then logged in as another user and sent a network message to everyone from users account! (nothing malicous off course). The sys admin did come into the computer block one day after I sent several messages to everyone and looked at the empty computer that I was using 5 mins earlier (I moved to opposite side of the room just in time). Good days! My last (and only) computer virus even if it was a bit basic! |
|||
|
|
I think it helps to understand security vulnerabilities by experimenting with code that takes advantage of them. For example, it is trivial to write a program that takes advantage of a buffer overflow to change the return address of a function. However, such exercises can be done without resorting to writing actual viruses. In the end, the goal should be for us software developers to learn from the mistakes of the past and not repeat them. |
|||
|
|
|
|
When I was younger I made a go at writing a hidden txt file that would fill up the C: drive. My first attempt taught me that Windows XP will automatically compress a text file that has repetitive text. Kinda neat. Multi Gig sized file was compressed down to a couple of megs. |
|||
|
|
I regret never having done this. Building a good virus might teach a lot. Back when the virus was still active, I got the source code of the PhatBot worm kit. That was one impressive piece of software. One of the best, cleanest OSS projects I've ever seen, including one of the best documentations. From a technical point of view, this code really was a marvel. Someone else pointed out the considerable logistical challenge of testing a virus. This makes development obviously much harder if you're not one of the two people on earth who are capable of writing correct code every time, without ever testing (the other one is Don Knuth, of course). For someone less interested in the nitty-gritty low-level system exploitation techniques and more in the “biological” component of viruses, there are good alternatives, e.g. CoreWars just to name one of them. |
|||
|
|
|
|
The closest I ever got was to write a program that executed from the bootsector of a BBC Model B Microcomputer that were popular in UK schools at the time. It made the screen go different colors along with the text "You've been noobled" or something really dumb while playing a stupid tune that I can still remember but defies words to describe how lame it was. The program was unable to replicate itself and didn't do anything harmful other than stop me from going outside or learning to talk to girls so I guess it was pretty benign. I learnt a lot about assembly and hacking around with hex editors that I've forgotten now but I'm pretty sure it did teach me something at the time other than what an interesting graphics architecture the BBC had (and a nice keyboard) As it never caused any damage, I never got into trouble for it. In fact for one class we were left with a substitute teacher and the instructions "See Martin for any questions". Looking back I am not sure if this was the teacher making a comment on the level of ineptitude in the subject of his co-workers or a snide remark at how much I liked to talk about the subject during class. I suspect the former as the substitute teacher in question usually taught pottery and appeared to be grateful when I was able to answer my classmates problems while she read a book. |
|||
|
|
|
|
Whilst this isn't strictly a virus I had once written a tool that installed itself on a computer once a certain command was passed (login on Novell NetWare) and replicated a spying tool that teachers used to see what students were up to on their computers. The original system allowed them to view a students' screen and send them messages, usually saying "Stop looking at Games" or "Get back to Work!". Mine was a simple messaging system that displayed a message that looked exactly the same as the real one, expect mine was controlled by the number of the PC, not the users' login credentials. After a quick walk-around to see what number PC they were on (they were printed on the monitors) I sent them a couple of disturbing messages, ranging from:
To this delightful one when the Headmaster was playing on a Computer in the Lab and the Teacher was obviously slacking.
That got me into trouble, even though they never found out that it was me that had written the program. |
|||
|
|
|
|
I though about it several times, I even started to plan something. But I never got around to actually try it. I think you can learn some cool stuff programming viruses. |
|||
|
|
|
|
I made a Registry Writing app, which changed IE6 setting to always open getfirefox.com ,.. and disabling the homepage settings and regedit not sure if you can consider that a virus, used it on 2 friends more as a prank, so they finally moved away from ie. |
|||
|
|
No. I've never written. I think that we must support the development of computer viruses for research and educational purposes with deployment limited to a controlled environment if it's really necessary to achieve advances in the security technology. |
|||
|
|
I have not personally written a virus... To those of you who do it for learning experience, good for you. To those of you who do it to be malicious, what a huge waste of programming talent. I spent enough time cleaning up virus up my neighbors and parents, brothers, etc., that it bothers me to no end to see how good programmers waste their talents away writting virus, spyware, etc. |
|||
|
|
|
|
After learning HTML and some simple scripting, I moved on to mIRC scripting where I made a script that connected many bots (on the same IP) to the server to flood users. I think I called it PapaFlo0d (named after the PapaSmurf DoS script). It was fairly successful at disconnecting users and I learned a lot about socket programming, loops, etc. The script was even copied/borrowed by some people who extended it. That made me feel kind of good that I was able to accomplish something that other people wanted to use, even if it was malicious. |
|||
|
|
|
|
I tried writing a very simple Outlook virus a number of years ago. It was done with a VBS attachment to an email, and it scanned the user's Contacts and automatically sent a copy of itself including the VBS attachment to those users if you ran the VBS. It didn't do anything malicious, just copy itself (notwithstanding the potential for network clogging with potentially exponentially-increasing numbers of emails). Just a proof of concept. I was quite careful though and had it so that only I ever got emailed, not arbitrary users. It worked for me, and definitely would have worked in the wild, and that was neat enough. It never got sent to anyone else so I didn't get caught/punished or anything like that. I wouldn't have a clue of how to write a real virus that modified .exe files. |
|||
|
|
|
|
Nothing serious - just SysCall redirection without modifying the SysCall table. |
|||
|
|
|
|
Closest I've pulled was an application that spawned a few dozens instances of various pre-installed windows games (winmine, solitare, etc) to cover up the fact it was generating 10,000 empty text files on the desktop. I stuck the code inside of a class project that my professor decided to demo to the class. It got a good laugh (he laughed hardest at it). |
|||
|
|
|
|
I did create one, and the only one so far, virus on my beloved Apple ][e clone for fun around 20 years ago using the LISA assembler :P It spreads itself by writing to the boot sector of Apple DOS 3.3 floppy disk and triggers the speaker by hooking into a zero page vector (forgot which), and its only effect is to trigger the speaker for some sound when some Applesoft BASIC programs are running. |
|||
|
|
|
|
About ten years, ago, in my junior year of high school, some of my peers and I used Visual Basic to write a series of applications. These ranged from harmless gags to seriously impacting the productivity of the labs. I think the most notable instance was a rather flashy program which looked nasty but did nothing of consequence which nearly gave some old chap a heart attack in the senior citizens "Intro to Computing" course. It didn't take very long for my prof to figure out who was behind them, but he was more disappointed than upset. I never received any disciplinary action as a result of it. |
|||
|
|
|
|
Back in my days at school I wrote a program which copied itself around the network, and then during my classes scheduled would randomly play funny wave files or open and close CD-rom drives at random. But then I grew up. |
|||
|
|
|
|
I've coded simple thing: The replacement for winword.exe which launched word and even after quitting the microsoft word, the application set the timer to be randomly chosen - 2 - 4 hours, and turned off computer. It was supposed to be revenge but I've never used it :) |
|||
|
|
