2011-12-19
平常做运维经常对网页内容进行抓包查看,通过包内容提交,可以很容易自动化完成很多操作。对平常用到的几个网页抓包工具如下: 第一个是国产的WSockExpert。以前大家上网漏洞的时候很多时候都用到他。易上网,功能一般。但自身dll文件容易被认为木马删除。适用于特定程序提交的分析。 第二……
Continue reading
2011-12-19
首先装个抓包的工具<br /> ie下装httpwatch ff下装httpfox 本文用的是httpfox<br /> 直接看代码吧 <?php<br /> error_reporting(0); //邮箱用户名(不带@163.com后缀的) $user = ‘****’; //邮箱密码 $pass = ‘****’; //目标邮箱 //$mail_addr = ‘
[email protected] ……
Continue reading
2011-12-16
一个国外站点上看到的,使用postgresql django 搭建博客。看着写的不错,就摘了下来: In part 1, we installed PostgreSQL on the VPS. In this part, it’s time to get the database server up and configured. First, though, now that we have something to lose on the server, backups are now enabled at Slicehost. $5/month is cheap insurance. This also means we can take a snapshot of the slice, which we’ll do at the end of each major checkpoint, so we can roll back to it if something gets screwed up. (As they say in videogaming, “Hope you sav……
Continue reading
2011-12-16
安装django 直接rpm包和yum方式两种方式 rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm yum update yum install mod_python Django 安装数据库支持 sqlite、PostgreSQL 和mysql,分别如下: yum install python-sqlite2 yum install python-psycopg2 yum install python-devel mysql-devel gcc wget python-setuptools 或者源码包安装,这里只介绍mysql一种 wget http://downloads.sourceforge.net/project/mysql-python/mysql-python/1.2.3/MySQL-python-1.2.3.tar.gz tar -zxvf MySQL-python-1.2.3.tar.gz cd MySQL-python-1.2.3/ python setup.py build python setup.py install 配置apache虚拟主机; SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings PythonDebug Off 如果你……
Continue reading
2011-12-16
一、安装mod_python 针对debian和centos版的linux,安装方式分别如下: 1apt-get install libapache2-mod-python和yum install mod_python 二、配置apache 1cp /etc/httpd/conf.d/python.conf /etc/httpd/conf.d/python.conf_orig 2cat /dev/null > /etc/httpd/conf.d/python.conf 3vi /etc/httpd/conf.d/python.conf 编缉内容如下: 1LoadModule python_module modules/mod_python.so 2<Directory /var/www/html/> 3 Options Indexes FollowSymLinks MultiViews 4 AllowOverride None 5 Order allow,deny 6 allow from all 7 AddHandler mod_python .py 8 PythonHandler mod_python.publisher 9 PythonDebug On 10</Directory> 如果对于.psp……
Continue reading
2011-12-16
一、两者的原理 mod_fcgid是一个跟mod_fastcgi二进制兼容的Apache module。 原来的mod_fastcgi因为实现方式的限制,所以可能会创建了很多不必要的进程,而实际上只需要更少的进程就能处理同样的请求。 mod_fastcgi的另外一个问题是每一个CGI的多……
Continue reading
2011-12-16
一、什么是fastcgi fastcgi是一个与web应用程序进行内部连结调用的协议,是HTTP服务器与机器上的程序进行“交谈”的一种工具,其程序须运行在网络服务器上。CGI可以用任何一种语言编写,只要这种语言具有标准输入、输出和环境变量。如php,perl,tcl,python等……
Continue reading
2011-12-15
平台经常翻墙用到的利器Hotspot Shield有时经常会无法使用。所以在此总结下,不能使用的原因。 1、确认是最新版本;(经常会受到封锁,所以也经常会更新。) 2、安装完成后,确认和该程序相关的四个服务都已启动。若未启动可运行services.msc查看四个hotspot的服务是否……
Continue reading
2011-12-08
本文总结下平常经常用到的三个邮件收发协议包文件——sendEmail、jmail、phpmailer 一、sendEmail SendEmail是一个轻量级的、命令行SMTP的电子邮件客户端。如果你有需要从命令行发送电子邮件,该用该包将是非常棒的,其上具有:使用简单,功能丰富。其时其……
Continue reading
2011-12-06
摘要:本文讲述的时进程管理的基本概念和进程管理工具介绍;文中的重点对进程管理工具的分类介绍及应用举例,包括 ps、pgrep、top 、kill、pkill、killall、nice和renice 等工具。 1、程序和进程; 程序是为了完成某种任务而设计的软件,比如OpenOffice是程……
Continue reading