传言
若所有流浪都是因为我
我如何能
不爱你风霜的面容
如世间的悲哀 你都已
为我尝尽 我如何能
不爱你憔悴的心
继续阅读 »
官方网站 http://www.cirt.net/
安装
sudo apt-get install nikto
简单扫描 目标基本WEB基本配制信息,服务器,PHP解析器等版本信息
nikto –h 192.168.0.1
多端口扫描
nikto –h 192.168.0.1 –p 80,88,443
加代理扫描
nikto –h 192.168.0.1 –p 80 –u
继续阅读 »
1) 通过curl直接访问sina网站
curl http://www.sina.com.cn
2) 你也可以把sina保存期来
curl http://www.sina.com > sina 或 curl -o sina http://www.sina.com.cn
3) 同时可以通过代理来访问网页
curl -x 10.54.38.18:8080 -o sina.html http://www.sina.com.cn
4) 可以把cookies存放到一个文件里
curl -x 10.54.38.18:8080 -o sina.html -D cookie002.txt http://www.sina.com.cn
继续阅读 »