LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1019|回复: 2

messages如下是不是被猜測sshd密碼攻擊了。

[复制链接]
发表于 2005-4-25 09:31:44 | 显示全部楼层 |阅读模式
cat /var/log/message

Apr 24 04:05:00 redhat CROND[7607]: (root) CMD (   /usr/share/sshd-monitor/sshd-restarter)
Apr 24 04:05:00 redhat sshd[7612]: Did not receive identification string from ::ffff:127.0.0.1
Apr 24 04:10:00 redhat CROND[7614]: (root) CMD (   /usr/share/sshd-monitor/sshd-restarter)
Apr 24 04:10:00 redhat sshd[7619]: Did not receive identification string from ::ffff:127.0.0.1
Apr 24 04:15:00 redhat CROND[7621]: (root) CMD (   /usr/share/sshd-monitor/sshd-restarter)

...
過五分鍾就一將,全部都是這樣。。。
[root@redhat log]# cat /usr/share/sshd-monitor/sshd-restarter
#!/bin/sh
#---------------------------------------------------------------
# Project         : Linux-Mandrake
# Module          : sshd-monitor
# File            : sshd-restarter
# Version         : $Id: sshd-restarter,v 1.2 2002/02/15 04:31:47 flepied Exp $
# Author          : Frederic Lepied
# Created On      : Tue Jul  3 14:21:12 2001
#---------------------------------------------------------------

if [ -f /var/lock/subsys/sshd ]; then
    /usr/share/sshd-monitor/expect-sshd > /dev/null 2>&1
fi

# sshd-restarter ends here


[root@redhat log]# cat /usr/share/sshd-monitor/expect-sshd
#!/usr/bin/expect
#---------------------------------------------------------------
# Project         : Linux-Mandrake
# Module          : sshd-monitor
# File            : expect-sshd
# Version         : $Id: expect-sshd,v 1.1.1.1 2001/07/03 14:19:36 flepied Exp $
# Author          : Frederic Lepied
# Created On      : Tue Jul  3 14:20:15 2001
#---------------------------------------------------------------

# Open SSH connection
spawn telnet localhost 22

# Did we succeed?
expect {
    -re ".SSH.*" { send "SSH-1.99-1\r"; exit 0}
timeout
}

overlay /bin/sh -c "/etc/rc.d/init.d/sshd stop; test -r /var/run/sshd.pid && kill -9 `cat /var/run/sshd.pid`; rm -f /var/lock/subsys/sshd /var/run/sshd.pid; /etc/rc.d/init.d/sshd start"



顺便請問一下/var/log/messages.1.gz是如何查看的。。。
发表于 2005-4-25 14:22:17 | 显示全部楼层
你使用的是什么系统,版本号是多少?
回复 支持 反对

使用道具 举报

发表于 2005-4-25 15:32:44 | 显示全部楼层
应该不是被外部攻击。
只是回环信息无法获得而已。
检查一下你的IO回环是不是被改动了
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表