在學習C 以前 學過一段時間的PHP, 哪個時候需要用PHP 來運行root命令,一直未果,直到有一天搜索到了super這個插件.
隨著學習C的日子多了.發現可以用C語言來包裹 要運行的外部命令. 實驗了一下.成功了.
不需要任何外部工具就可以實現用PHP 執行root命令.
平台:Linux. 實驗命令iptables 當前的目錄是/var/www/html/http
寫程序的時候 用root用戶
大家都知道iptables 非root用戶不能運行.
首先寫個C程序
命名為:ipt.c
[CODE]
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
int main()
{
uid_t uid ,euid;
uid = getuid() ;
euid = geteuid();
printf("my uid :%u
",getuid()); //這裡顯示的是當前的uid 可以注釋掉.
printf("my euid :%u
",geteuid()); //這裡顯示的是當前的euid
if(setreuid(euid, uid)) //交換這兩個id
perror("setreuid");
printf("after setreuid uid :%u
",getuid());
printf("afer sertreuid euid :%u
",geteuid());
system("/sbin/iptables -L"); //執行iptables -L命令
return 0;
}
[/CODE]
編譯該文件 gcc -o ipt -Wall ipt.c
在該路徑下生成ipt 這個可執行文件.
如果現在用PHP網頁調用 該ipt的話,即使setreuid了 也是不行的.
接下來要做的是chmod u+s ./ipt
ls 一下
-rwsr-xr-x 1 root root 5382 Jul 2 21:45 ipt
s位已經設置上了.
再寫一個php頁面調用它.
[CODE]
<?php
echo <pre>;
$last_line = system(/var/www/html/http/ipt, $retval);
echo
</pre>
<hr />Last line of the output: . $last_line .
<hr />Return value: . $retval;
?>
[/CODE]
在浏覽器中浏覽.
[color=Red]Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy DROP)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
Chain OUTPUT (policy ACCEPT)
target prot opt source destination [/color]
[color=Blue]my uid :48
my euid :0
after setreuid uid :0
afer sertreuid euid :48[/color]
--------------------------------------------------------------------------------
Last line of the output: afer sertreuid euid :48
--------------------------------------------------------------------------------
Return value: 0
該命令執行成功..
眾所周知: apache的uid 為48. 調用setreuid後 將有效用戶id 和實際用戶id互換了.(必須在chmod u+s生效的情況下) 使apache當前的 uid為0 這樣就能執行root命令了。