web网站可用性检测
一、使用curl命令,命令行模拟登陆zabbix
1、获取资源
1)url
ajax:异步传输 前端技术
登陆 --》 页面没有跳转。注册账号提示账号已存在
zabbix:
登陆 --》页面跳转
url:http://10.0.0.71/zabbix/index.php
2)提交的数据
name=Admin&password=123&enter=Sign+in
2、获取cookie
[root@web01 /opt]# curl -X GET -c cookie -b cookie http://10.0.0.71/zabbix/index.php
[root@web01 /opt]# ll
total 4
-rw-r--r-- 1 root root 214 Apr 4 17:41 cookie
3、请求
[root@web01 /opt]# curl -X POST -L -c cookie -b cookie -d "name=Admin&password=zabbix&enter=Sign+in" http://10.0.0.71/zabbix/index.php
[root@web01 /opt]# curl -X GET -L -c cookie -b cookie "http://10.0.0.71/zabbix/hosts.php?ddreset=1"
二、zabbix web检测