服務器管理Linux經典命令

1.站點根目錄下查找是否被放置webshell***根據語句判斷是否是PHP***腳本# find /storage/www/ -name 「*.php」 | xargs grep -in –color 「eval(」# grep -i –include=’*.php’ -r system\s*\( /storage/www/2.統計訪問日誌中來自同ip出現的次數分析盜鏈、***、機器人# cat access.log |awk ‘{print $1}’| sort | uniq -c |sort -rn3.分析出現次數最多的ip對網站的具體數據訪問狀況# grep -e IP access.log > filename# cat filename |awk ‘{print $8}’|sort|uniq -c|sort -rn4.訪問次數最多的文件或頁面,取前20# cat access.log|awk ‘{print $11}’|sort|uniq -c|sort -nr|head -205.列出傳輸最大的幾個exe文件(分析下載站的時候經常使用)# cat access.log |awk ‘($7~/\.exe/){print $10 」 」 $1 」 」 $4 」 」 $7}’|sort -nr|head -206.列出輸出大於200000byte(約200kb)的exe文件以及對應文件發生次數# cat access.log |awk ‘($10 > 200000 && $7~/\.exe/){print $7}’|sort -n|uniq -c|sort -nr|head -1007.若是日誌最後一列記錄的是頁面文件傳輸時間,則有列出到客戶端最耗時的頁面# cat access.log |awk ‘($7~/\.php/){print $NF 」 」 $1 」 」 $4 」 」 $7}’|sort -nr|head -1008.列出最最耗時的頁面(超過60秒的)的以及對應頁面發生次數# cat access.log |awk ‘($NF > 60 && $7~/\.php/){print $7}’|sort -n|uniq -c|sort -nr|head -1009.列出傳輸時間超過 30 秒的文件# cat access.log |awk ‘($NF > 30){print $7}’|sort -n|uniq -c|sort -nr|head -2010.統計網站流量(G)# cat access.log |awk ‘{sum+=$10} END {print sum/1024/1024/1024}’11.統計404的鏈接# awk ‘($9 ~/404/)’ access.log | awk ‘{print $9,$7}’ | sort12. 統計http status.# cat access.log |awk ‘{counts[$(9)]+=1}; END {for(code in counts) print code, counts[code]}'# cat access.log |awk '{print $9}'|sort|uniq -c|sort -rn13.查找掛馬內容進行批量清除# find /webbase/ -type f -exec grep 'www.800816.com.cn' -l {} \;# sed -i "s/body{.*www.800816.com.cn.*}//g" `grep www.800816.com.cn -rl ./`14.批量轉換GBK爲UTF-8文件編碼# find default -type d -exec mkdir -p utf/{} \;# find default -type f -exec iconv -f GBK -t UTF-8 {} -o utf/{} \;15.find查找文件的時候怎麼避開多個文件目錄# find /usr/sam \(-path /usr/sam/dir1 -o -path /usr/sam/file1 \) -prune -o -name "*.txt" -print16.查看tcp的併發請求數及其TCP鏈接狀態:# netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'# netstat -nat |awk '{print $6}'|sort|uniq -c|sort -rn# netstat -n | awk '/^tcp/ {++state[$NF]}; END {for(key in state) print key,"\t",state[key]}'# netstat -n | awk '/^tcp/ {++arr[$NF]};END {for(k in arr) print k,"\t",arr[k]}'# netstat -n |awk '/^tcp/ {print $NF}'|sort|uniq -c|sort -rn# netstat -ant | awk '{print $NF}' | grep -v '[a-z]' | sort | uniq -c17.查找請求數前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 -n1018.查看有多少個活動的php-cgi進程# netstat -anp | grep php-cgi | grep ^tcp | wc -l19.查找較多time_wait鏈接# netstat -n|grep TIME_WAIT|awk '{print $5}'|sort|uniq -c|sort -rn|head -n2020.找查較多的SYN鏈接# netstat -an | grep SYN | awk '{print $5}' | awk -F: '{print $1}' | sort | uniq -c | sort -nr | more21.根據端口列進程# netstat -ntlp | grep 80 | awk '{print $7}' | cut -d/ -f122.抓包用來防止80端口被人***時能夠分析數據# tcpdump -c 10000 -i eth0 -n dst port 80 > /root/pkts23.用tcpdump嗅探80端口的訪問看看誰最高# tcpdump -i eth0 -tnn dst port 80 -c 1000 | awk -F"." '{print $1"."$2"."$3"."$4}' | sort | uniq -c | sort -nr |head -2024.查看是哪些蜘蛛在抓取內容。# /usr/sbin/tcpdump -i eth0 -l -s 0 -w - dst port 80 | strings | grep -i user-agent | grep -i -E 'bot|crawler|slurp|spider'25.按域統計流量# zcat squid_access.log.tar.gz| awk '{print $10,$7}' |awk 'BEGIN{FS="[ /]"}{trfc[$4]+=$1}END{for(domain in trfc){printf "%s\t%d\n",domain,trfc[domain]}}'26.查看數據庫執行的sql# /usr/sbin/tcpdump -i eth0 -s 0 -l -w - dst port 3306 | strings | egrep -i 'SELECT|UPDATE|DELETE|INSERT|SET|COMMIT|ROLLBACK|CREATE|DROP|ALTER|CALL'27.將匹配Root一行中no替換成yes# sed -i '/Root/s/no/yes/' /etc/ssh/sshd_config28.去掉第一列# awk '{for(i=2;i<=NF;i++) if(i!=NF){printf $i" "}else{print $i} }' list29.按內存從大到小排列# ps -e -o "%C : %p : %z : %a"|sort -k5 -nr30.按cpu利用率從大到小排列# ps -e -o "%C : %p : %z : %a"|sort -nr31.怎樣知道某個進程在哪一個CPU上運行# ps -eo pid,args,psr32.清除僵死進程。# ps -eal | awk '{ if ($2 == "Z") {print $4}}' | kill -933.查看硬件製造商# dmidecode -s system-product-name34.查找佔用磁盤IO最多的進程# wget -c http://linux.web.psi.ch/dist/scientific/5/gfa/all/dstat-0.6.7-1.rf.noarch.rpm# dstat -M topio -d -M topbio35.檢查I/O使用率(%util)是否超過100%# iostat -x 1 236.磁盤空間,檢查是否有分區使用率(Use%)太高(好比超過90%) 如發現某個分區空間接近用盡,能夠進入該分區的掛載點,用如下命令找出佔用空間最多的文件或目錄:# df -h# du -cks * | sort -rn | head -n 1037.CPU負載檢查前三個輸出值是否超過了系統邏輯CPU的4倍。# cat /proc/loadavg38.CPU的數量# cat /proc/cpuinfo |grep -c processor39.檢查網絡流量(rxbyt/s, txbyt/s)是否太高# sar -n DEV40.每隔1秒顯示一下網絡流量# watch -n 1 "/sbin/ifconfig eth0 | grep bytes"41.批量覆蓋目錄下的文件不用肯定是否執行# \cp -rf /svn/wwwroot /wwwroot42.調試命令# strace -p pid43.跟蹤指定進程的PID# gdb -p pid44.查看當前進程打開了多少個文件句柄lsof -n |awk ‘{print $2}’|sort|uniq -c |sort -nr|more
相關文章
相關標籤/搜索