当我对我的代理使用外部bash脚本时,我得到所有环境变量
#!/bin/bash
CAPTURE_FILE=/var/log/capture_data
env >> ${CAPTURE_FILE}
# we use exit code 1 to ensure this does not effect the actual browsing
exit 1
#
客户端访问网页时输出此脚本:
HTTP_PORT=80
HTTP_HOST=ads.cnn.com
SERVER[adserver]=ad3ad3:9678:1
CLIENT[referer]=http://edition.cnn.com/
HTTP_PROTO=http
CLIENT[host]=ads.cnn.com
SERVER[vary]=Cookie
SERVER[connection]=Keep-Alive
CLIENTID=2
USERNAME=anonymous@192.168.221.1
SERVER[keep-alive]=timeout=5, max=15
SERVER[date]=Thu, 02 Feb 2012 12:09:46 GMT
SERVER[content-type]=text/html
CLIENT[user-agent]=Safari
PWD=/
VERSION=SR.4.2.2.MR.20110523
现在,我使用 os.environ 进行python(感谢此前的帖子之一)并且它只能从终端工作,而不是当代理将所有请求传递给它时
#!/usr/bin/env python
import os
import sys
def capture():
log = os.environ
data = open("/tmp/capture.log", "a")
for key in log.keys():
data.write((key))
data.write(" : ")
for n in log[key]:
data.write('%s' % ((n)))
data.write("\n")
data.close()
sys.exit(1)
def main():
capture()
if __name__ == "__main__":
main()
我可以从标准的sys.stdin.readlines()中读取数据,但是当代理将请求重定向到脚本时,我可以从环境变量中获得更精确的结果......
任何想法为什么python脚本不显示任何数据?
从/ var / log / messages
中记录Feb 3 22:29:02 safesquid capture.py: abrt: detected unhandled Python exception in /opt/safesquid/safesquid/scripts/capture.py
Feb 3 22:30:00 safesquid capture.py: abrt: detected unhandled Python exception in /opt/safesquid/safesquid/scripts/capture.py
Feb 3 22:30:00 safesquid capture.py: abrt: detected unhandled Python exception in /opt/safesquid/safesquid/scripts/capture.py
Feb 3 22:30:01 safesquid capture.py: abrt: detected unhandled Python exception in /opt/safesquid/safesquid/scripts/capture.py
解决:
我将这个相同的脚本移植到centos 6.2并且它起作用....似乎它在fedora上有问题。
答案 0 :(得分:1)
如果您使用与unix env
命令相同的输出,是否可以直接调用它?
log = subprocess.check_output("env")