c 语言cgi编程,几种语言的CGI编程

为了了解PHP、JSP、ASP出现之前人们写网站的方法,洒家研究了一波CGI,使用C、Python、batch、shell script语言写了几个简单的网页。

CGI即通用网关接口,指web服务器调用编程语言编写的程序的一个接口。洒家用的是Apache的CGI,QUERY_STRING、REMOTE_ADDR、REQUEST_URI等参数是通过环境变量传递给CGI程序的,请求主体(POST数据)作为CGI程序的标准输入(stdin),而CGI程序的标准输出(stdout)作为HTTP响应的部分(注:标准错误输出stderr会出现在错误日志中)。

系统和软件环境配置

WAMP Apache 2.4.18 64位, Ubuntu Server 16.04 64位。

需要开启Apache的cgi_module。

sudoa2enmod cgisudo service apache2 restart

对于Linux,cgi-bin的目录在 /etc/apache2/conf-enabled/serve-cgi-bin.conf 中规定,使用浏览器访问这个目录的alias:/cgi-bin/。对于Windows 下的WAMP套件,对应目录默认在安装目录内(例如C:/wamp64/cgi-bin/)。

138738991_1_20180717112531816.png

由于洒家对Linux不熟悉,踩到了几个坑

1. 对于Ubuntu中 shell script,开头的#!/bin/sh 和 #!/bin/bash 是不同的。Ubuntu 的 /bin/sh 是 /bin/dash (Debian Almquist shell)的链接。对于 echo -e 'Content-Type: abc\n'的执行结果不同。

2. HTTP响应头和响应主体之间要有一个换行符,否则无法分清响应主体和响应头部。

3. Linux上的程序要加可执行文件权限。否则报500错误 Permission denied: exec of '/usr/lib/cgi-bin/env_var.sh' failed: /usr/lib/cgi-bin/env_var.sh 。

4. shell script 执行字符串要用eval,否则不能把引号中带空格的字符串识别为同一个参数。

参考

用C、Python、Shell Script、batch(批处理)写的几个小程序

编程语言Perl是一个广泛被用来编写CGI程序的语言,但CGI的一个目的是要独立于任何语言的。Web服务器无须在这个问题上对语言有任何了解。事实上,CGI程序可以用任何脚本语言或者是完全独立编程语言实现,只要这个语言可以在这个系统上运行。除Perl外,像Unix shell script, Python, Ruby, PHP, Tcl, C/C++,和Visual Basic都可以用来编写CGI程序。

洒家看到这段话的时候想,哇塞,还可以用C语言写网站!洒家顿时感到了历史的气息。

查看所有的环境变量

在Linux下可以用 env 命令,列出所有的环境变量。注意,HTTP响应头和响应主体之间要有一个换行符,否则无法分清响应主体和响应头部,报错: malformed header from script 'env_var.sh': Bad header: SERVER_SIGNATURE=

Apac 。

使用 shell script脚本:

#!/bin/bashecho -e "Content-Type: text/html\n"

env

响应:

138738991_2_20180717112532238.gifHTTP/1.1 200 OK

Date: Sun, 23 Oct 2016 13:10:01 GMT

Server: Apache/2.4.18 (Ubuntu)X-Author: http://www.cnblogs.com/go2bed/

Vary: Accept-Encoding

Content-Length: 1180

Connection: close

Content-Type: text/html

SERVER_SIGNATURE=

Apache/2.4.18 (Ubuntu) Server at 192.168.245.136 Port 80
HTTP_USER_AGENT=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7

SERVER_PORT=80

HTTP_HOST=192.168.245.136(省略)

138738991_2_20180717112532238.gif

Hello World

Linux/Windows,C语言,请求的时候要请求编译好的二进制程序。

138738991_2_20180717112532238.gif#include

intmain()

{

printf("Content-Type: text/html\n\n");

printf("Hello World!\n");return 0;

}

138738991_2_20180717112532238.gif

效果:

138738991_3_20180717112532519.png

一个 say hello 的动态网页

Linux/Windows,Python ,头部需要加Python可执行文件的位置。对于Windows,则可能是 #!C:/Python27/python.exe 。

138738991_2_20180717112532238.gif#!/usr/local/bin/python

importosimporturllibimportsysimportcgiprint 'Content-Type: text/html\n'postData=sys.stdin.read()if postData != '':

items= postData.split('&')for item initems:

key,value=urllib.splitvalue(item)if key == 'name':print '

Hello, %s

' %(cgi.escape(urllib.unquote_plus(value)),)print ''''''

print os.environ['QUERY_STRING']

138738991_2_20180717112532238.gif

效果如下图。此程序读取POST数据(stdin),Tom未在URL中出现。

138738991_4_20180717112532738.png

另一个say hello 的动态网页

Windows/Linux,C语言。此处没有做URL decode。

138738991_2_20180717112532238.gif#include #include#include

intmain()

{inti;char *query;

query= getenv("QUERY_STRING");

printf("Content-type:text/html\n\n");if(getenv("QUERY_STRING") != NULL && strlen(getenv("QUERY_STRING")) > 5)

{

printf("

Hello %s


\n", query + 5);

}

printf("

");return 0;

}

138738991_2_20180717112532238.gif

138738991_5_2018071711253382.png

执行任意命令的Webshell,及其过程与经验

Linux,shell script

138738991_2_20180717112532238.gif#!/bin/bashecho -e 'Content-Type: text/html\n'

echo '

I am using cgi (shell script)

'

echo '

'

echo ''

echo ''

echo '

'

echo -e '\n

\n'#echo${QUERY_STRING}

cmd=${QUERY_STRING#'cmd='}

#echo${cmd}

cmd=${cmd:-'ping -c 2 baidu.com'}

cmd=$(echo ${cmd}| python -c 'import sys;import urllib;sys.stdout.write(urllib.unquote_plus(sys.stdin.read()))')echo${cmd}echo '


'eval ${cmd}2>&1#ping -c 2baidu.comecho -e '\n\n'

138738991_2_20180717112532238.gif

效果:

138738991_6_20180717112533175.png

由于洒家对shell这门精妙的语言不甚了解,以为在shell script中执行一个命令(字符串)直接写上即可,一开始上文加粗的字体写的命令是 ${cmd} 2>&1 。这一个脚本在命令执行的时候有一些奇怪的地方。例如执行  python -c 'import this'时,会报错:

File "", line 1

'import

^

SyntaxError: EOL while scanning string literal

138738991_7_20180717112533457.png

这个错误输出和下面的情况的输出相同:

138738991_2_20180717112532238.gifuser@localhost:/usr/lib/cgi-bin$ cmd=python\ -c\ \'import\ this\'

user@localhost:/usr/lib/cgi-bin$ echo $cmd

python -c 'import this'

user@localhost:/usr/lib/cgi-bin$ $cmd

File "", line 1

'import

^

SyntaxError: EOL while scanning string literal

user@localhost:/usr/lib/cgi-bin$ eval $cmdThe Zen of Python, by Tim Peters

Beautiful is better than ugly.Explicit is better than implicit.

138738991_2_20180717112532238.gif

经过一番研究之后洒家恍然大悟,这个报错表示,Python收到的参数(sys.argv[2])为  'import ,单引号的作用不是命令行中参数的边界,而是直接作为参数的一部分传进了Python。也就是说,直接执行  ${cmd} 相当于Python中的

subprocess.call(["python","-c","'import","this'"])

一个字符串变量直接执行会有问题,正确的做法要用eval命令“扫描两次”,才能正确解析。使用 eval ${cmd} 使shell重新扫描命令,把 import 和 this看做同一个参数,相当于 subprocess.call(["python","-c","import this"]) 。

总而言之,这次的错误类似于这种情况:

138738991_2_20180717112532238.gifuser@localhost:/usr/lib/cgi-bin$ pipe="|"user@localhost:/usr/lib/cgi-bin$ ls $pipe grep sh

ls: cannot access '|': No such fileor directoryls: cannot access 'grep': No such fileor directoryls: cannot access 'sh': No such fileor directory

user@localhost:/usr/lib/cgi-bin$ eval ls $pipe grep shenv_var.shtest.sh

138738991_2_20180717112532238.gif

使用Windows batch script(批处理)写的一个功能有限的webshell

批处理,这个的坑也有点多,而且洒家也不太熟悉,只能写这么多了。

138738991_2_20180717112532238.gif@echo off

echo Content-Type: text/html; charset=GBKecho.

echo ^

batch webshell^

echo ^

echo ^

echo ^

echo ^

echo ^

 
 

set ccmmdd=%QUERY_STRING:~4%set ccmmdd=%ccmmdd:+=%set ccmmdd=%ccmmdd:^%20=%echo ^%ccmmdd%echo ^

echo ^

138738991_2_20180717112532238.gif

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值