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 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题