AWD常用指令

Posted by Mr.Be1ieVe on Monday, January 13, 2020

备份web目录

tar -zcvf web.tar.gz /var/www/html/

查看已建立网络连接和对应进程

netstat -antulp | grep EST

用户管理

w 查看当前用户

pkill -kill -t <Username>

查看指定端口被哪个进程占用

lsof -i:端口号 或者 netstat -tunlp|grep 端口号
#备份mysql数据库
mysqldump -u 用户名 -p 密码 数据库名 > back.sql    
mysqldump --all-databases > bak.sql      
#还原mysql数据库
mysql -u 用户名 -p 密码 数据库名 < bak.sql  
find / *.php -perm       
awk -F:  /etc/passwd    
crontab -l   
#检测所有的tcp连接数量及状态
netstat -ant|awk  |grep |sed -e  -e |sort|uniq -c|sort -rn
#查看页面访问排名前十的IP
cat /var/log/apache2/access.log | cut -f1 -d   | sort | uniq -c | sort -k  -r | head -  
#查看页面访问排名前十的URL
cat /var/log/apache2/access.log | cut -f4 -d   | sort | uniq -c | sort -k  -r | head -
#封杀某个IP或者ip段,如:.  
iptables -I INPUT -s . -j DROP
iptables -I INPUT -s ./ -j DROP
#禁止从某个主机ssh远程访问登陆到本机,如123..  
iptable -t filter -A INPUT -s . -p tcp --dport  -j DROP  

封杀ip一旦发现直接取消比赛资格的,转发流量也是

「真诚赞赏,手留余香」

Mr.Be1ieVe's Treasure

真诚赞赏,手留余香

使用微信扫描二维码完成支付