References to variables and calls to functions in a program

Publisher:TurquoiseLatest update time:2015-01-27 Source: laogu Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

References to variables and calls to functions in a program

cseg segment
 assume cs:cseg,ds:cseg
 org 100
start:
 mov bx,word ptr aaa
virus_start:
 call get_start
 mov ah,4ch
 int 21h
get_start:
 mov ax,offset virus_start
 ret

aaa db ''abcd'',0
cseg ends
end start

After the above program is disassembled.
-u
13E7:0064 8B1E7300 MOV BX,[0073]
13E7:0068 E80400 CALL 006F
13E7:006B B44C MOV AH,4C
13E7:006D CD21 INT 21
13E7:006F B86800 MOV AX,0068
13E7:0072 C3 RET
13E7:0073 61 DB 61
13E7:0074 62 DB 62
13E7:0075 63 DB 63
13E7:0076 64 DB 64

It can be seen that when the program references the variable aaa, it references it through an absolute address.
13E7:0064 8B1E7300 MOV BX,[0073]
8b1e is the operation code, and 7300 is the operand. It can be seen that the operand is an absolute address.

When calling a function
13E7:0068 E80400 CALL 006F,
you may think that call 006f is calling a function through an absolute address.
However, this is after disassembly and has been processed.
What we want to see is the opcode and operand. In this instruction,
the opcode is e8 and the operand is 0400 (that is, 4), which shows that it is the
instruction offset relative to 13E7:006B B44C MOV AH,4C (the next statement of call 006f).


This knowledge is the most basic knowledge to write COM and other viruses

 

Appendix: Function calls are divided into near, short, and far.

Short is the worst, the called function and the calling point can only have an offset of 128 bytes.

Near can reach 64k (functions in this section can be called), which is enough for COM.

Far can call functions in any segment.

Reference address:References to variables and calls to functions in a program

Previous article:How to optimize C language code
Next article:Description of the USB (D12) data communication process between PC and MCU

Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号