0x00 背景
记录一些常用的入侵排查命令和日常运维思路分享。(排名不分先后,逐步更新ing)
0x01 linux 查询所有用户计划任务
cat /etc/passwd|cut -f 1 -d : |xargs -I {} crontab -l -u {}
0x02 排查linux记录密码后门
strace 监听ssh来源流量记录密码后门(本机输入的密码记录不到),需要提前安装 strace
(strace -f -F -p ps aux|grep "sshd -D"|grep -v grep|awk {'print $2'}
-t -e trace=read,write -s 32 2> /tmp/sshd.log &)
grep -E 'read(6, ".+\0\0\0\.+"' /tmp/sshd.log (正确错误的密码都会记录)
排查的时候可以排查strace进程着手。
0x03 查询windows 安全组成员变化
windows终端事件日志监控指南 - 代码先锋网
通用组、全局组、本地域组的区别
用户已添加到特权组 4728, 4732, 4756 Information windows 安全日志 windows 安全审核
<
版权归原作者 leeezp 所有, 如有侵权,请联系我们删除。