RISC-V assembly
Which registers contain arguments to functions? For example, which register holds 13 in mains call to printf?
根据RISC-V函数调用规范,函数的前8个参数使用a0-a7寄存器传递。
当main函数调用printf函数时,a2寄存器保存13
…
漏洞影响版本
MariaDB versions from 5.1.62, 5.2.12, 5.3.6, 5.5.23 are not.MySQL versions from 5.1.63, 5.5.24, 5.6.6 are not.演示
开启靶场
进入漏洞目录
cd /root/vulhub/mysql/CVE-2012-2122开启漏洞靶场
docker-compose up -d攻击
直接 运行 这个命令
for i i…