我有一个CGI脚本(已编译的C程序),它输出其命令行参数(argv [0],argv [1]等)。
如果我尝试http://ajf.me/c/?abc,我会将“abc”作为第二个参数。
但是,如果我尝试http://ajf.me/c/?a=bc,我没有得到任何第二个参数。
为什么使用=
会阻止参数传递给程序?
如果重要的是C代码:
#include <stdio.h>
int main (int argc, char *argv[]) {
int i;
printf("Content-Type: text/html;charset=utf-8\n\n");
printf("<!DOCTYPE html>\n");
printf("<html>\n");
printf("<head>\n");
printf("<title>ajf.me powered by ANSI C!</title>\n");
printf("</head>\n");
printf("<body>\n");
printf("<h2>Supplied Arguments</h2>\n");
printf("argc: %d\n", argc);
printf("<ol>\n");
for (i = 0; i < argc; ++i) {
printf("<li>%s</li>\n", argv[i]);
}
printf("</ol>\n");
printf("<em>Yes, this is vulnerable to null-byte injection. For instance, <a href=\"?Injected%%00Null\" style=\"font-family: monospace; color: green;\">?Injected\\0Null</a>.</em>\n");
printf("</body>\n");
printf("</html>\n");
}
答案 0 :(得分:6)
在其命令行上将参数传递给CGI程序必须是Web服务器的异常。通常,?
之后的部分在名为QUERY_STRING
的环境变量中可用。
您可能值得查看CGI specification。