pikachu靶场-RCE-exec eval – 作者:知非知非知非

1627259168_60fe0120edcce0bb67c1b.png!small

1627259173_60fe0125a66c3fc2c9dea.png!small

1627259179_60fe012b28421b26d0038.png!small

看看提示:

1627259186_60fe01321afa9471ee30d.png!small

小课堂时间:

PHP eval() 函数:这个函数的作用是把字符串当成 PHP 代码来计算:

这个附一个菜鸟教程的例子:

<?php

$string = “beautiful”;

$time = “winter”;

$str = ‘This is a $string $time morning!’;

echo $str. PHP_EOL;

eval(“\$str = \”$str\”;”);

echo $str;

?>

This is a $string $time morning!

This is a beautiful winter morning!

这里,我们直接输入php探针!!!

phpinfo();

输出:

1627259194_60fe013aa57eb12c0dce2.png!small

接着,我们看一下源代码!!!提交的名称未过滤,直接执行,导致代码执行漏洞!!!

1627259200_60fe01408e3e220a9fb54.png!small

1627259211_60fe014b0aae0ff3c1090.png!small

来源:freebuf.com 2021-07-26 08:27:43 by: 知非知非知非

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享
评论 抢沙发

请登录后发表评论