php7中可以代码执行的函数为()
A: assert
B: create_function
C: eval
D: preg_replace
A: assert
B: create_function
C: eval
D: preg_replace
举一反三
- 下列哪些函数为PHPwebshell可用命令执行函数?() A: eval B: assert C: exec D: passthru
- 以下php代码可导致远程代码执行的有() A: preg_replace("/test/i",$_GET["h"],"justtest") B: preg_replace("/test/ie",$_GET["h"],"justtest") C: preg_replace("/test/ie",’test("\1")’,$_GET["h"]) D: preg_replace("/test/ie",’test(\1)’,$_GET["h"])
- 下列PHP函数中,哪个函数常被用来执行一句话木马? A: echo B: pack C: die D: assert
- 以下哪一个不能作为php的一句话木马使用? A: <?php eval($_POST[‘a’]);?> B: <?php assert($_POST[‘a’]);?> C: <%eval request("chopper")%>
- 在PHP中创建函数的正确方法是()。 A: call function myFunction() B: new_function myFunction() C: function myFunction() D: create myFunction()