2012-01-23 81 views
1

我發現了以下bash的CGI工作示例。如果我改變前兩行帶CGI的shell腳本可以與bash一起使用,但不能與sh

#!/bin/sh 
echo "Content-type: text/html\n\n" 

以下腳本停止工作,當我瀏覽這個腳本在瀏覽器中的「富」,「酒吧」和「foobar的」底部宣佈的腳本消失。

任何想法我怎麼能使用sh來做同樣的例子。其實我需要通過嵌入式設備運行這樣一個例子,我沒有bash,但sh。

#!/bin/bash 
echo -e "Content-type: text/html\n\n" 
echo " 
<html> 
<body> 
<form action="http://${HTTP_HOST}:${SERVER_PORT}${SCRIPT_NAME}?foo=1234" method="POST"> 
<input type="text" name="bar"> 
<textarea name="foobar"></textarea> 
<input type="submit"> 
</form>" 


# (internal) routine to store POST data 
cgi_get_POST_vars() 
{ 
    # check content type 
    # FIXME: not sure if we could handle uploads with this.. 
    [ "${CONTENT_TYPE}" != "application/x-www-form-urlencoded" ] && \ 
    echo "Warning: you should probably use MIME type "\ 
     "application/x-www-form-urlencoded!" 1>&2 
    # save POST variables (only first time this is called) 
    [ -z "$QUERY_STRING_POST" \ 
     -a "$REQUEST_METHOD" = "POST" -a ! -z "$CONTENT_LENGTH" ] && \ 
    read -n $CONTENT_LENGTH QUERY_STRING_POST 
    return 
} 

# (internal) routine to decode urlencoded strings 
cgi_decodevar() 
{ 
    [ $# -ne 1 ] && return 
    local v t h 
    # replace all + with whitespace and append %% 
    t="${1//+/ }%%" 
    while [ ${#t} -gt 0 -a "${t}" != "%" ]; do 
    v="${v}${t%%\%*}" # digest up to the first % 
    t="${t#*%}"  # remove digested part 
    # decode if there is anything to decode and if not at end of string 
    if [ ${#t} -gt 0 -a "${t}" != "%" ]; then 
     h=${t:0:2} # save first two chars 
     t="${t:2}" # remove these 
     v="${v}"`echo -e \\\\x${h}` # convert hex to special char 
    fi 
    done 
    # return decoded string 
    echo "${v}" 
    return 
} 

# routine to get variables from http requests 
# usage: cgi_getvars method varname1 [.. varnameN] 
# method is either GET or POST or BOTH 
# the magic varible name ALL gets everything 
cgi_getvars() 
{ 
    [ $# -lt 2 ] && return 
    local q p k v s 
    # get query 
    case $1 in 
    GET) 
     [ ! -z "${QUERY_STRING}" ] && q="${QUERY_STRING}&" 
     ;; 
    POST) 
     cgi_get_POST_vars 
     [ ! -z "${QUERY_STRING_POST}" ] && q="${QUERY_STRING_POST}&" 
     ;; 
    BOTH) 
     [ ! -z "${QUERY_STRING}" ] && q="${QUERY_STRING}&" 
     cgi_get_POST_vars 
     [ ! -z "${QUERY_STRING_POST}" ] && q="${q}${QUERY_STRING_POST}&" 
     ;; 
    esac 
    shift 
    s=" $* " 
    # parse the query data 
    while [ ! -z "$q" ]; do 
    p="${q%%&*}" # get first part of query string 
    k="${p%%=*}" # get the key (variable name) from it 
    v="${p#*=}" # get the value from it 
    q="${q#$p&*}" # strip first part from query string 
    # decode and evaluate var if requested 
    [ "$1" = "ALL" -o "${s/ $k /}" != "$s" ] && \ 
     eval "$k=\"`cgi_decodevar \"$v\"`\"" 
    done 
    return 
} 



# register all GET and POST variables 
cgi_getvars BOTH ALL 

echo "<pre>foo=$foo</pre>" 
echo "<pre>bar=$bar</pre>" 
echo "<pre>foobar=$foobar</pre>" 

echo "</body> 
</html>" 

更新1: sh -x script返回如下:

+ echo Content-type: text/html\n\n 
Content-type: text/html 


+ echo 
<html> 
<body> 
<form action=http://:?foo=1234 method=POST> 
<input type=text name=bar> 
<textarea name=foobar></textarea> 
<input type=submit> 
</form> 

<html> 
<body> 
<form action=http://:?foo=1234 method=POST> 
<input type=text name=bar> 
<textarea name=foobar></textarea> 
<input type=submit> 
</form> 
+ cgi_getvars BOTH ALL 
+ [ 2 -lt 2 ] 
+ local q p k v s 
+ [ ! -z ] 
+ cgi_get_POST_vars 
+ [ != application/x-www-form-urlencoded ] 
+ echo Warning: you should probably use MIME type application/x-www-form-urlencoded! 
Warning: you should probably use MIME type application/x-www-form-urlencoded! 
+ [ -z -a = POST -a ! -z ] 
+ return 
+ [ ! -z ] 
+ shift 
+ s= ALL 
+ [ ! -z ] 
+ return 
+ echo <pre>foo=</pre> 
<pre>foo=</pre> 
+ echo <pre>bar=</pre> 
<pre>bar=</pre> 
+ echo <pre>foobar=</pre> 
<pre>foobar=</pre> 
+ echo </body> 
</html> 
</body> 
</html> 
+0

'/ bin/sh'仍然是某種shell,你需要在做任何改變之前確定它。 「sh --version」說什麼? –

+1

@baltusaj您是否嘗試在調試模式下運行腳本?你可以通過運行'sh -x scriptname.sh'來完成。將'sha-bang'行更改爲'Bourne Shell'並在調試模式下運行。它可能會拋出一些有用的信息。 –

+0

/bin/sh --version,sh --verion返回'sh:非法操作 - '錯誤。如果在sh shell中運行它,會發生相同的錯誤。我通過在默認bash shell中運行/ bin/sh來執行sh shell。 – baltoro

回答

2

Bash有很多比POSIX規範的擴展和腳本使用其中的一些。你的/bin/sh顯然不是bash(可能是灰,破折號,mksh或其他),也沒有這些擴展名。您必須仔細閱讀腳本,並根據您的sh或POSIX specification的文檔檢查每個構造。

Quckly尋找:

  • function cgi_get_POST_vars():function關鍵字不應該存在與左大括號應該在同一行。
  • read -n $CONTENT_LENGTH QUERY_STRING_POST:讀(shell內置)在POSIX中沒有-n選項。
  • t="${1//+/ }%%"h=${t:0:2}:Bourne不支持這兩種修飾符。

但可能還有一些。

編輯:

  • echo是殼之間的不兼容大多數命令。該標準只是說與\的行爲是實施定義的。您必須改用printf
1

function關鍵字函數聲明不與伯恩腳本兼容。爲sh正確的語法是

cgi_get_POST_vars() { 
    ... 
} 
+0

謝謝你指出。但是這個喧鬧解決了主要問題。瀏覽器仍然沒有顯示'foo','bar'和'foobar'的值。 – baltoro

+0

@baltusaj:是的,腳本中還有一些非POSIX功能。 –

0

對於這樣的腳本也要非常小心。這個參數解析器容易受到shell注入攻擊。例如,如果通過一個變量:

cgi-bin/myscript.cgi&foo=bar`ls`bar 

我相信在參數解碼過程中會執行「ls」命令。你可以設想比「ls」更多的破壞性命令。還要考慮如果參數&PATH=""由惡意用戶傳遞會發生什麼情況。這些東西很難做到,如果你正在處理嵌入式設備,如果Web服務器以root權限運行,我一點都不會感到驚訝。

相關問題