是否有任何人知道如何利用终点站将这些信息输入中?
- The location of the end of the code (text) segment of the process (hexadecimal).
- The address of a function inside the code segment (hexadecimal). This is just the address of one of your functions.
- The address of a string literal (hexadecimal).
- The location of the end of the initialized data segment of the process (hexadecimal).
- The address of a variable in the initialized data area (hexadecimal).
- The location of the end of the uninitialized data segment (BSS) of the process (hexadecimal).
- The address of a variable in the uninitialized data area (hexadecimal).
- The location of the end of the heap of the process, also known as the program break (hexadecimal).
- The address of a local variable on the stack (hexadecimal).
- The base address of the command line arguments “argv” (hexadecimal).
- The base address of the environment variables “envp” (hexadecimal).
- The address of the zero terminating the last environment variable string (hexadecimal).