php—Null字元問題

來源:互聯網
上載者:User
由於 PHP 的檔案系統操作是基於 C 語言的函數的,所以它可能會以您意想不到的方式處理 Null 字元。 Null字元在 C 語言中用於標識字串結束,一個完整的字串是從其開頭到遇見 Null 字元為止。 以下代碼示範了類似的攻擊:

Example #1 會被 Null 字元問題攻擊的代碼

<?php    $file = $_GET['file']; // "../../etc/passwd\0"    if (file_exists('/home/wwwrun/'.$file.'.php')) {        // 檔案/home/wwwrun/../../etc/passwd存在的話那麼file_exists方法會返回true        include '/home/wwwrun/'.$file.'.php';        // the file /etc/passwd will be included    }?>

因此,任何用於操作檔案系統的字串(特別是程式外部輸入的字串)都必須經過適當的檢查。以下是上述例子的改進版本:

Example #2 驗證輸入的正確做法

<?php    $file = $_GET['file'];    // 對字串進行白名單檢查    switch ($file) {        case 'main':        case 'foo':        case 'bar':            include '/home/wwwrun/include/'.$file.'.php';            break;        default:            include '/home/wwwrun/include/main.php';    }?>
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.