Function Calling Convention and Related Instructions - 0day Vulnerability Exploitation Principle (5)

The technical content of function calling conventions and related instructions is very detailed. It is suitable for students who want to really handle 0day. Priority is full of intensive reading and supplementary assembly language series: registers - assembly review (2)_luozhonghua2000's blog - CSDN blog

The working principle of the system stack - 0day vulnerability exploitation principle (3)_luozhonghua2000's blog - CSDN blog continues the previous article The working principle of the system stack - 0day vulnerability exploitation principle (3)_luozhonghua2000's blog - CSDN blog is not completed, the content of this article: function Calling Conventions and Related Instructions

intfunc B(int arg Bl, int arg B2){
int var B1, var B2;var Bl=arg Bl+arg B2;var B2=arg Bl-arg B2;return var Bl*var B2;
}

intfunc A(int arg Al, int arg A2)
{
int var A;var A = func

Guess you like

Origin blog.csdn.net/luozhonghua2014/article/details/131001619