亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

首頁 後端開發(fā) php教程 框架和 CMS 中奇怪的 PHP 程式碼

框架和 CMS 中奇怪的 PHP 程式碼

Nov 14, 2024 pm 08:45 PM

That Strange PHP Code in Frameworks and CMSs

注意:為了閱讀這篇文章,假設您具有一些 PHP 程式設計的基本知識。

本文討論了您可能在您最喜歡的 CMS 或框架頂部看到的 PHP 程式碼片段。您可能已經(jīng)讀過,出於安全原因,您應該始終將它包含在您開發(fā)的每個 PHP 檔案的開頭,儘管沒有非常清楚地解釋原因。我指的是這段程式碼:

<?php

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

這種類型的程式碼在 WordPress 檔案中很常見,儘管它出現(xiàn)在幾乎所有框架和 CMS 中。例如,對於 Joomla CMS,唯一的變化是它使用 JEXEC,而不是 ABSPATH。除此之外,邏輯保持不變。這個 CMS 是從先前的一個名為 Mambo 的系統(tǒng)演變而來的,它也使用了類似的程式碼,但使用 _VALID_MOS 作為常數(shù)。如果我們再往前追溯,我們會發(fā)現(xiàn)第一個使用此類程式碼的 CMS 是 PHP-Nuke(被一些人認為是第一個基於 PHP 的 CMS)。

PHP-Nuke(以及當今大多數(shù) CMS 和框架)的執(zhí)行流程包括順序載入多個檔案以回應使用者或訪客在網(wǎng)站上採取的操作。例如,想像一下那個時代的網(wǎng)站託管在 example.net 並安裝了此 CMS。每次載入主頁時,系統(tǒng)都會依序執(zhí)行一系列檔案(這只是一個範例,不是實際的順序):index.php => load_modules.php =>;模組.php。在這個鏈中,首先載入index.php,然後載入load_modules.php,然後載入modules.php。

這個執(zhí)行鏈並不總是從第一個檔案(index.php)開始。事實上,任何人都可以透過其 URL(例如,http://example.net/load_modules.php 或 http://example.net/modules.php)直接存取其他 PHP 檔案之一來繞過部分流程。 ,正如我們將看到的,這在許多情況下可能存在風險。

這個問題是如何解決的? 引入了安全措施,在每個文件的開頭添加類似的代碼:

<?php

if (!eregi("modules.php", $HTTP_SERVER_VARS['PHP_SELF'])) {
    die ("You can't access this file directly...");
}

本質(zhì)上,這段程式碼放置在名為modules.php的檔案的頂部,檢查是否可以透過URL直接存取modules.php。如果是,則停止執(zhí)行,顯示訊息:「You can't access this file direct...」 如果$HTTP_SERVER_VARS['PHP_SELF'] 不包含modules.php,則表示正常執(zhí)行流程處於活動狀態(tài),允許腳本繼續(xù)。

但是,此程式碼有一些限制。首先,插入程式碼的每個檔案的程式碼都不同,這增加了複雜性。另外,在某些情況下,PHP 並沒有為 $HTTP_SERVER_VARS['PHP_SELF'] 賦值,這限制了其有效性。

So, what did the developers do? They replaced all those code snippets with a simpler and more efficient version:

<?php

if (!defined('MODULE_FILE')) {
    die ("You can't access this file directly...");
}

In this new code, which had become quite popular in the PHP community, the existence of a constant was checked. This constant was defined and assigned a value in the first file of the execution flow (index.php, home.php, or a similar file). Therefore, if this constant didn’t exist in any other file in the sequence, it meant that someone had bypassed index.php and was attempting to access another file directly.

Dangers of Directly Running a PHP File

At this point, you may be thinking that breaking the execution chain must be extremely serious. However, the truth is that, usually, it doesn’t pose a major threat.

The risk might arise when a PHP error exposes the path to our files. This shouldn’t concern us if the server is configured to suppress errors; even if errors weren’t hidden, the exposed information would be minimal, providing only a few clues to a potential attacker.

It could also happen that someone accesses files containing HTML fragments (views), revealing part of their content. In most cases, this should not be a cause for concern either.

Finally, a developer, either by mistake or lack of experience, might place risky code without external dependencies in the middle of an execution flow. This is very uncommon since framework or CMS code generally depends on other classes, functions, or external variables for its execution. So, if an attempt is made to execute a script directly through the URL, errors will arise as these dependencies won’t be found, and the execution won’t proceed.

So, why add the constant code if there is little reason for concern? The answer is this: "This method also prevents accidental variable injection through a register globals attack, preventing the PHP file from assuming it's within the application when it’s actually not."

Register Globals

Since the early days of PHP, all variables sent via URLs (GET) or forms (POST) were automatically converted into global variables. For example, if the file download.php?filepath=/etc/passwd was accessed, in the download.php file (and in those depending on it in the execution flow), you could use echo $filepath; and it would output /etc/passwd.

Inside download.php, there was no way to know if the variable $filepath was created by a prior file in the execution chain or if it was tampered with via the URL or POST. This created significant security vulnerabilities. Let’s look at an example, assuming the download.php file contains the following code:

<?php

if(file_exists($filepath)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename="'.basename($filepath).'"');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($filepath));
    flush(); // Flush system output buffer
    readfile($filepath);
    exit;
}

The developer likely intended to use a Front Controller pattern for their code, meaning all web requests would go through a single entry file (index.php, home.php, etc.). This file would handle session initialization, load common variables, and finally redirect the request to a specific script (in this case, download.php) to perform the file download.

However, an attacker could bypass the intended execution sequence simply by calling download.php?filepath=/etc/passwd, as mentioned before. PHP would automatically create the global variable $filepath with the value /etc/passwd, allowing the attacker to download that file from the system. Serious problem.

This is only the tip of the iceberg since even more dangerous attacks could be executed with minimal effort. For example, in code like the following, which the programmer might have left as an unfinished script:

<?php

require_once($base_path."/My.class.php");

An attacker could execute any code by using a Remote File Inclusion (RFI) attack. If the attacker created a file My.class.php on their own site https://mysite.net containing any code they wanted to execute, they could call the vulnerable script by passing in their domain: useless_code.php?base_path=https://mysite.net, and the attack would be complete.

Another example: in a script named remove_file.inc.php with the following code:

<?php

if(file_exists($filename)) {
    if( unlink($filename) ) {
        echo "File deleted";
    }
}

an attacker could call this file directly with a URL like remove_file.inc.php?filename=/etc/hosts, attempting to delete the /etc/hosts file from the system (if the system allows it, or other files they have permission to delete).

In a CMS like WordPress, which also uses global variables internally, these types of attacks were devastating. However, thanks to the constant technique, these and other PHP scripts were protected. Let’s look at the last example:

<?php

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

if(file_exists($filename)) {
    if( unlink($filename) ) {
        echo "File deleted";
    }
}

Now, if someone attempted to access remove_file.inc.php?filename=/etc/hosts, the constant would block the access. It is essential that this is a constant because, logically, if it were a variable, an attacker could inject it.

By now, you may wonder why PHP kept this functionality if it was so dangerous. Also, if you know other scripting languages (JSP, Ruby, etc.), you’ll see they have nothing similar (which is why they also don’t use the constant technique). Recall that PHP was initially created as a C-based templating system, and this behavior made development easier. The good news is that, seeing the issues it caused, PHP maintainers introduced a php.ini directive called register_globals (enabled by default) to allow this functionality to be disabled.

But as problems persisted, they disabled it by default. Even so, many hosts kept enabling it out of fear that their clients’ projects would stop working, as much of the code at the time did not use the recommended HTTP_*_VARS variables to access GET/POST/... values but rather used global variables.

最後,看到情況沒有改善,他們做出了一個重大決定:在 PHP 5.4 中刪除此功能以避免所有這些問題。因此,今天,像我們所看到的腳本(不使用常量)通常不再是風險,除了在某些情況下出現(xiàn)一些無害的警告/通知。

目前使用情況

時至今日,持續(xù)技術仍然很常見。然而,不幸的現(xiàn)實——也是本文的原因——是很少有開發(fā)人員了解其使用背後的真正原因。

與過去的其他最佳實踐一樣(例如將參數(shù)複製到函數(shù)內(nèi)部的局部變量中以避免引用問題或在私有變量中使用下劃線來區(qū)分它們),許多人繼續(xù)應用它只是因為有人曾經(jīng)告訴他們這是一個良好的做法,毫無疑問它今天是否仍然增加價值。事實是,在大多數(shù)情況下,不再需要此技術。

以下是造成這種做法失去相關性的一些原因:

  • 刪除 *register 全域變數(shù):從 PHP 5.4 開始,在 PHP 中刪除了將 GET 和 POST 變數(shù)自動註冊為全域變數(shù)的功能。如果沒有*註冊全域變數(shù),直接執(zhí)行單一腳本是無害的,消除了這種技術的主要原因。

  • 更好的程式碼設計:即使在PHP 5.4 之前的版本中,現(xiàn)代程式碼的結(jié)構(gòu)也更好,通常在類別和函數(shù)中,這使得透過外部變數(shù)進行存取或操作更具挑戰(zhàn)性。即使是傳統(tǒng)上使用全域變數(shù)的 WordPress,也能最大限度地降低這些風險。

  • *front-controllers的使用:如今,大多數(shù)Web 應用程式都採用精心設計的*front-controllers 來確保類別和函數(shù)程式碼僅在執(zhí)行時才執(zhí)行鏈結(jié)從主入口點開始。因此,如果有人嘗試單獨載入文件,除非流程從正確的入口點開始,否則邏輯不會觸發(fā)。

  • 類別自動載入:隨著類別自動載入在現(xiàn)代開發(fā)中的廣泛使用,include 或 require 的使用顯著減少。這可以降低經(jīng)驗豐富的開發(fā)人員與這些方法(例如遠端文件包含本地文件包含)相關的風險。

  • 公用程式碼和私人程式碼的分離:在許多現(xiàn)代 CMS 和框架中,公用程式碼(如 資產(chǎn))與私有程式碼(邏輯)分開。這項措施特別有價值,因為它可以確保,如果 PHP 在伺服器上出現(xiàn)故障,PHP 程式碼(無論是否使用常量技術)不會暴露。儘管這種分離並不是專門為了緩解註冊全域變數(shù)而實現(xiàn)的,但它有助於防止其他安全問題。

  • 友善 URL 的廣泛使用:如今,將伺服器配置為使用友善 URL 是常見做法,以確保應用程式邏輯的單一入口點。這使得任何人幾乎不可能單獨載入 PHP 檔案。

  • 生產(chǎn)中的錯誤抑制:大多數(shù)現(xiàn)代CMS 和框架預設禁用錯誤輸出,因此攻擊者無法找到有關應用程式內(nèi)部工作原理的線索,這可能會促進其他類型的攻擊。

儘管在大多數(shù)情況下不再需要此技術,但這並不意味著它永遠沒有用處。作為專業(yè)開發(fā)人員,必須分析每種情況並確定持續(xù)的技術是否與您工作的特定環(huán)境相關。這種批判性思考應該始終被應用,即使是所謂的最佳實踐。

沒有把握?這裡有一些提示

如果您仍然不確定何時應用持續(xù)技術,這些建議可能會指導您:

  • 如果您認為您的程式碼可能在早於 5.4 的 PHP 版本上運行,請務必使用它。
  • 如果檔案僅包含類別定義,請不要使用它。
  • 如果檔案僅包含函數(shù),請不要使用它。
  • 如果檔案僅包含 HTML/CSS,請勿使用它,除非 HTML 洩漏敏感資訊。
  • 如果檔案僅包含常數(shù),請不要使用它

對於其他一切,如果您有疑問,請應用它。在大多數(shù)情況下,它不會有害,並且可以在意外情況下保護您,尤其是在您剛開始時。隨著時間和經(jīng)驗的積累,您將能夠評估何時更有效地應用此技術和其他技術。

That Strange PHP Code in Frameworks and CMSs

繼續(xù)學習...

  • register_globals - MediaWiki
  • PHP:使用暫存器全域變數(shù) - 手冊
  • 遠端檔案包含漏洞 [LWN.net]
  • Bugtraq:Mambo Site Server 版本 3.0.X 中存在嚴重安全漏洞

以上是框架和 CMS 中奇怪的 PHP 程式碼的詳細內(nèi)容。更多資訊請關注PHP中文網(wǎng)其他相關文章!

本網(wǎng)站聲明
本文內(nèi)容由網(wǎng)友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發(fā)現(xiàn)涉嫌抄襲或侵權的內(nèi)容,請聯(lián)絡admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅(qū)動的應用程序,用於創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺化網(wǎng)頁開發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

熱門話題

Laravel 教程
1597
29
PHP教程
1488
72
PHP變量範圍解釋了 PHP變量範圍解釋了 Jul 17, 2025 am 04:16 AM

PHP變量作用域常見問題及解決方法包括:1.函數(shù)內(nèi)部無法訪問全局變量,需使用global關鍵字或參數(shù)傳入;2.靜態(tài)變量用static聲明,只初始化一次並在多次調(diào)用間保持值;3.超全局變量如$_GET、$_POST可在任何作用域直接使用,但需注意安全過濾;4.匿名函數(shù)需通過use關鍵字引入父作用域變量,修改外部變量則需傳遞引用。掌握這些規(guī)則有助於避免錯誤並提升代碼穩(wěn)定性。

如何在PHP中牢固地處理文件上傳? 如何在PHP中牢固地處理文件上傳? Jul 08, 2025 am 02:37 AM

要安全處理PHP文件上傳需驗證來源與類型、控製文件名與路徑、設置服務器限制並二次處理媒體文件。 1.驗證上傳來源通過token防止CSRF並通過finfo_file檢測真實MIME類型使用白名單控制;2.重命名文件為隨機字符串並根據(jù)檢測類型決定擴展名存儲至非Web目錄;3.PHP配置限制上傳大小及臨時目錄Nginx/Apache禁止訪問上傳目錄;4.GD庫重新保存圖片清除潛在惡意數(shù)據(jù)。

在PHP中評論代碼 在PHP中評論代碼 Jul 18, 2025 am 04:57 AM

PHP註釋代碼常用方法有三種:1.單行註釋用//或#屏蔽一行代碼,推薦使用//;2.多行註釋用/.../包裹代碼塊,不可嵌套但可跨行;3.組合技巧註釋如用/if(){}/控制邏輯塊,或配合編輯器快捷鍵提升效率,使用時需注意閉合符號和避免嵌套。

發(fā)電機如何在PHP中工作? 發(fā)電機如何在PHP中工作? Jul 11, 2025 am 03:12 AM

AgeneratorinPHPisamemory-efficientwaytoiterateoverlargedatasetsbyyieldingvaluesoneatatimeinsteadofreturningthemallatonce.1.Generatorsusetheyieldkeywordtoproducevaluesondemand,reducingmemoryusage.2.Theyareusefulforhandlingbigloops,readinglargefiles,or

撰寫PHP評論的提示 撰寫PHP評論的提示 Jul 18, 2025 am 04:51 AM

寫好PHP註釋的關鍵在於明確目的與規(guī)範,註釋應解釋“為什麼”而非“做了什麼”,避免冗餘或過於簡單。 1.使用統(tǒng)一格式,如docblock(/*/)用於類、方法說明,提升可讀性與工具兼容性;2.強調(diào)邏輯背後的原因,如說明為何需手動輸出JS跳轉(zhuǎn);3.在復雜代碼前添加總覽性說明,分步驟描述流程,幫助理解整體思路;4.合理使用TODO和FIXME標記待辦事項與問題,便於後續(xù)追蹤與協(xié)作。好的註釋能降低溝通成本,提升代碼維護效率。

如何通過php中的索引訪問字符串中的字符 如何通過php中的索引訪問字符串中的字符 Jul 12, 2025 am 03:15 AM

在PHP中獲取字符串特定索引字符可用方括號或花括號,但推薦方括號;索引從0開始,超出範圍訪問返回空值,不可賦值;處理多字節(jié)字符需用mb_substr。例如:$str="hello";echo$str[0];輸出h;而中文等字符需用mb_substr($str,1,1)獲取正確結(jié)果;實際應用中循環(huán)訪問前應檢查字符串長度,動態(tài)字符串需驗證有效性,多語言項目建議統(tǒng)一使用多字節(jié)安全函數(shù)。

快速PHP安裝教程 快速PHP安裝教程 Jul 18, 2025 am 04:52 AM

ToinstallPHPquickly,useXAMPPonWindowsorHomebrewonmacOS.1.OnWindows,downloadandinstallXAMPP,selectcomponents,startApache,andplacefilesinhtdocs.2.Alternatively,manuallyinstallPHPfromphp.netandsetupaserverlikeApache.3.OnmacOS,installHomebrew,thenrun'bre

學習PHP:初學者指南 學習PHP:初學者指南 Jul 18, 2025 am 04:54 AM

易於效率,啟動啟動tingupalocalserverenverenvirestoolslikexamppandacodeeditorlikevscode.1)installxamppforapache,mysql,andphp.2)uscodeeditorforsyntaxssupport.3)

See all articles