假设我在C中运行此代码:
#include <stdio.h> int main() { int (*ret)(); ret = getenv("SOME_ENV_VAR"); ret(); }
ret();功能怎么样?
ret();
我想更普遍的是,当我在C中使用括号时,会发生什么?我们是否开始在某个位置运行内存?C在括号中运行时做了什么,我在哪里可以阅读更多关于这类事情的内容?
c linux assembly shellcode
assembly ×1
c ×1
linux ×1
shellcode ×1