dsc71976 2018-07-24 17:06
浏览 134
已采纳

XML外部实体(XXE)攻击失败

Please give me a hint why my code is NOT vulnerable to XXE.

code:

$text = $_POST['textarea'];
$doc= new DOMDocument();
$doc->loadXML($text);
echo $doc->textContent;

testcase 1:

<justsomexmltag>Hello world</justsomexmltag>

result 1:

Hello world

So far so good. However, when I'm trying to inject XML code to retrieve a local file's content:

<?xml version="1.0"?>
    <!DOCTYPE log [
        <!ENTITY ent SYSTEM "test.txt">
    ]>
<log><text>&ent;</text></log>

then nothing is printed. "test.txt" is on the same level in the file structure as the php file where I carry out the attack. I have tried

<!ENTITY ent SYSTEM file:///"test.txt">

as well as

<!ENTITY ent SYSTEM file:///full path to the file>

but to no avail.

test.txt:

This is just a test.

Have tried:

<test>This is just a test.</test>

no results.

Any hints?

reflecting @Paul Crovella, here's an edit:

CP-ing your code resulted in:

DOMDocument::loadXML(): I/O warning : failed to load external entity file:// full path to file name

DOMDocument::loadXML(): Failure to process entity ent in Entity

DOMDocument::loadXML(): Entity 'ent' not defined in Entity

  • 写回答

1条回答 默认 最新

  • dphe5602 2018-07-24 17:48
    关注

    By default libxml will not load external entities precisely to avoid this issue. To convince it to do so you'd need to set either substituteEntities or validateOnParse to true prior to loading. E.g.:

    $xml = <<<'XML'
    <?xml version="1.0"?>
    <!DOCTYPE log [
        <!ENTITY ent SYSTEM "test.txt">
    ]>
    <log><text>&ent;</text></log>
    XML;
    
    $dom = new DOMDocument();
    $dom->substituteEntities = true;
    $dom->loadXML($xml);
    
    echo $dom->textContent;
    

    Outputs:

    This is just a test.
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器