自己的小网站跑在云服务器上,偶尔也会去分析下站点的访问日志,看看服务器有没有被黑和禁用一些黑客ip,百度收集了些不错的命令,在这边分享给大家,大家可以去试试
shell命令
说明:log_file为文件路径
查看有多少个IP访问
awk'{print $1}' log_file|sort|uniq|wc -l
查看某一个页面被访问的次数
grep"/index.php" log_file |wc -l
查看每一个IP访问了多少个页面
awk'{++S[$1]} END {for (a in S) print a,S[a]}' log_file > log.txt
配合sort进一步排序
sort -n -t ' ' -k 2 log.txt
将每个IP访问的页面数进行从小到大排序
awk'{++S[$1]} END {for (a in S) print S[a],a}' log_file |sort -n
查看某一个IP访问了哪些页面
说明:111.111.111.111为要查找的ip
grep ^111.111.111.111 log_file|awk'{print $1,$7}'
去掉搜索引擎统计的页面
awk'{print $12,$1}' log_file |grep ^\"Mozilla |awk'{print $2}'|sort|uniq|wc -l
查看2022年4月29日09时这一个小时内有多少IP访问
awk'{print $4,$1}' log_file |grep 29/April/2022:09 |awk'{print $2}'|sort|uniq|wc -l
查看访问前十个ip地址
awk'{print $1}'|sort|uniq -c|sort -nr |head -10 log_file
uniq -c 相当于分组统计并把统计数放在最前面
cat log_file|awk'{print $1}'|sort|uniq -c|sort -nr|head -10
cat log_file|awk '{counts[$(11)]+=1}; END {for(url in counts) print counts[url], url}
访问次数最多的10个文件或页面
cat log_file|awk'{print $11}'|sort|uniq -c|sort -nr |head -10
访问量最大的前20个ip
cat log_file|awk'{print $11}'|sort|uniq -c|sort -nr|head -20
awk'{print $1}' log_file |sort -n -r |uniq -c |sort -n -r |head -20
通过子域名访问次数,依据referer来计算,稍有不准
cat log_file |awk'{print $11}'|sed -e ' s/http:\/\///' -e ' s/\/.*//'|sort|uniq -c |sort -rn |head -20
列出传输大小最大的几个文件
cat log_file |awk'($7~/\.php/){print $10 " " $1 " " $4 " " $7}'|sort -nr|head -100
列出输出大于200000byte(约200kb)的页面以及对应页面发生次数
cat log_file |awk'($10 > 200000 && $7~/\.php/){print $7}'|sort -n|uniq -c|sort -nr|head -100
如果日志最后一列记录的是页面文件传输时间,则有列出到客户端最耗时的页面
cat log_file |awk'($7~/\.php/){print $NF " " $1 " " $4 " " $7}'|sort -nr|head -100
列出最最耗时的页面(超过60秒的)的以及对应页面发生次数
cat log_file |awk'($NF > 60 && $7~/\.php/){print $7}'|sort -n|uniq -c|sort -nr|head -100
列出传输时间超过 30 秒的文件
cat log_file |awk'($NF > 30){print $7}'|sort -n|uniq -c|sort -nr|head -20
列出当前服务器每一进程运行的数量,倒序排列
ps -ef |awk -F ' ''{print $8 " " $9}'|sort|uniq -c |sort -nr |head -20
查看apache当前并发访问数
对比httpd.conf中MaxClients的数字差距多少
netstat -an |grep ESTABLISHED |wc -l
可以使用如下参数查看数据
ps -ef|grep httpd|wc -l
统计httpd进程数,连个请求会启动一个进程,使用于Apache服务器。
这个值Apache可根据负载情况自动调整
netstat -nat|grep -i "80"|wc -l
netstat -an会打印系统当前网络链接状态,而grep -i "80"是用来提取与80端口有关的连接的,wc -l进行连接数统计。
最终返回的数字就是当前所有80端口的请求总数
netstat -na|grep ESTABLISHED|wc -l
输出每个ip的连接数,以及总的各个状态的连接数
netstat -n |awk'/^tcp/ {n=split($(NF-1),array,":");if(n<=2)++S[array[(1)]];else++S[array[(4)]];++s[$NF];++N} END {for(a in S){printf("%-20s %s\n", a, S[a]);++I}printf("%-20s %s\n","TOTAL_IP",I);for(a in s) printf("%-20s %s\n",a, s[a]);printf("%-20s %s\n","TOTAL_LINK",N);}'
分析日志文件下 2022-04-29 访问页面最高 的前20个 URL 并排序
cat log_file |grep'29/April/2022'|awk'{print $11}'|sort|uniq -c|sort -nr|head -20
查询受访问页面的URL地址中 含有 www.baidu.com 网址的 IP 地址
cat log_file |awk'($11~/\www.baidu.com/){print $1}'|sort|uniq -c|sort -nr
获取访问最高的10个IP地址 同时也可以按时间来查询
cat log_file|awk'{print $1}'|sort|uniq -c|sort -nr|head -10
时间段查询日志时间段的情况
cat log_file |egrep'15/April/2022|20/April/2022'|awk'{print $1}'|sort|uniq -c|sort -nr|head -10
分析2022/04/15 到 2022/04/29 访问"/index.php?msendValidCode"的IP倒序排列
cat log_file |egrep'15/April/2022|29/April/2022'|awk'{if($7 == "index.php?msendValidCode") print $1,$7}'|sort|uniq -c|sort -nr
($7~/.php/) $7里面包含.php的就输出,本句的意思是最耗时的一百个PHP页面
cat log_file |awk'($7~/\.php/){print $NF " " $1 " " $4 " " $7}'|sort -nr|head -100
列出最最耗时的页面(超过60秒的)的以及对应页面发生次数
cat log_file |awk'($NF > 60 && $7~/\.php/){print $7}'|sort -n|uniq -c|sort -nr|head -100
统计网站流量(G)
cat log_file |awk'{sum+=$10} END {print sum/1024/1024/1024}'
统计404的连接
awk'($9 ~/404/)' log_file |awk'{print $9,$7}'|sort
统计http status
cat log_file |awk'{counts[$(9)]+=1}; END {for(code in counts) print code, counts[code]}'
cat log_file |awk'{print $9}'|sort|uniq -c|sort -rn
统计每秒并发
watch"awk '{if($9~/200|30|404/)COUNT[$4]++}END{for( a in COUNT) print a,COUNT[a]}' log_file|sort -k 2 -nr|head -n10"
带宽统计
cat log_file |awk'{if($7~/GET/) count++}END{print "client_request="count}'
cat log_file |awk'{BYTE+=$11}END{print "client_kbyte_out="BYTE/1024"KB"}'
找出某天访问次数最多的10个IP
cat log_file |grep"29/April/2022"|awk'{print $3}'|sort|uniq -c|sort -nr|head
当天ip连接数最高的ip都在干些什么
cat log_file |grep"114.112.11.20"|awk'{print $8}'|sort|uniq -c |sort -nr |head -n 10
小时单位里ip连接数最多的10个时段
awk -vFS="[:]"'{gsub("-.*","",$1);num[$2" "$1]++}END{for(i in num)print i,num[i]}' log_file |sort -n -k 3 -r |head -10
找出访问次数最多的几个分钟
awk'{print $1}' log_file |grep"29/April/2022"|cut -c 14-18|sort|uniq -c|sort -nr|head
查找请求数前20个IP(常用于查找攻来源)
netstat -anlp|grep 80|grep tcp|awk'{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -nr|head -n20
netstat -ant |awk'/:80/{split($5,ip,":");++A[ip[1]]}END{for(i in A) print A[i],i}'|sort -rn|head -n20
用tcpdump嗅探80端口的访问看看谁最高
tcpdump -i eth0 -tnn dst port 80 -c 1000 |awk -F"."'{print $1"."$2"."$3"."$4}'|sort|uniq -c |sort -nr |head -20
查找较多time_wait连接
netstat -n|grep TIME_WAIT|awk'{print $5}'|sort|uniq -c|sort -rn|head -n20
找查较多的SYN连接
netstat -an |grep SYN |awk'{print $5}'|awk -F: '{print $1}'|sort|uniq -c |sort -nr |more
根据端口列进程
netstat -ntlp |grep 80 |awk'{print $7}'|cut -d/ -f1
查看了连接数和当前的连接数
netstat -ant |grep$ip:80 |wc -l
netstat -ant |grep$ip:80 |grep EST |wc -l
查看IP访问次数
netstat -nat|grep":80"|awk'{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -n
Linux命令分析当前的链接状况
netstat -n |awk'/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'
# 通过watch可以一直监控
watch"netstat -n | awk '/^tcp/ {++S[\$NF]} END {for(a in S) print a, S[a]}'"
说明:
LAST_ACK #关闭一个TCP连接需要从两个方向上分别进行关闭,双方都是通过发送FIN来表示单方向数据的关闭,当通信双方发送了最后一个FIN的时候,发送方此时处于LAST_ACK状态,当发送方收到对方的确认(Fin的Ack确认)后才真正关闭整个TCP连接;
SYN_RECV # 表示正在等待处理的请求数;
ESTABLISHED # 表示正常数据传输状态;
FIN_WAIT1 # 表示server端主动要求关闭tcp连接;
FIN_WAIT2 # 表示客户端中断连接;
TIME_WAIT # 表示处理完毕,等待超时结束的请求数;