Displaying 20 results from an estimated 5000 matches similar to: "duplicate log entries"
2000 Mar 31
4
anomalous wtmp logging bug
I've noticed rather strange wtmp logging behavior in sshd. Can anyone
confirm or solve the following:
Once a user authenticates themself to sshd, sshd among other things
records the login in the wtmp, which `last` reads. However, sshd logs
hostnames which are longer than 16 characters instead of IPs like normal
programs would. As a result, I have useless entries such as:
tempest
2002 Jul 23
2
Irix UseLogin wtmp/utmp bug
I am using the "UseLogin yes" configuration parameter to call the
/usr/bin/login program on SGI Irix, (we are using Irix version
6.5.13). I do this because the SGI login program is AFS awhere and
checks out a token for you and I do not want to compile the Kerberos
version of sshd, (it is to messy for me to support).
Everything seems to work fine accept the wtmp(x) and utmp(x) files do
2005 Jul 20
1
AIX 5.1 /etc/security/failedlogin entry with OpenSSH 4.1p1
Hello
Ive downloaded OpenSSH 4.1p1 from the portable openssh web pages...
Compiled it up for an AIX 5.1 host (with latest IBM maintenance patches
applied)
using defaults in all cases.
When doing a successful SSH authentication it places an entry into
/etc/security/failedlogin
as well as /var/adm/wtmp
Ive also tried adding "UseLogin yes" to the sshd_config
PAM ISNT configured (infact
2005 May 05
4
[Bug 1030] sshd writes twice to wtmp when "UseLogin" is yes
http://bugzilla.mindrot.org/show_bug.cgi?id=1030
Summary: sshd writes twice to wtmp when "UseLogin" is yes
Product: Portable OpenSSH
Version: 4.0p1
Platform: HPPA
OS/Version: HP-UX
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: openssh-bugs at mindrot.org
2000 Jul 20
0
UseLogin creates duplicate 'last' entries; configure issue
Hello all,
I enabled UseLogin briefly on my homegrown Redhat Linux 6.2 system.
Redhat's 'login' is in /bin/login, not /usr/bin/login. Perhaps this
check should be moved to autoconf rather than #define'd.
I also noticed that it creates "duplicate" 'last' entries:
----
esa pts/1 x.y.z.159 Thu Jul 20 07:56 still logged in
esa pts/1
2001 Apr 04
1
Solaris UseLogin problems
I'm using openssh 2.5.2p2 on Solaris-x86 2.6. I ran into a couple
problems when I set UseLogin to "yes":
The big one seems to have been reported before: login refuses to run
without a utmpx entry. This problem appears to have been caused by
the changes in revision 1.24 of session.c. Before this revision, the
record_login() function was always called, no matter how UseLogin was
2001 Apr 29
2
PATCH: UseLogin fix for 2.9p1 (w/improved last-login time)
Attached is the latest version of my UseLogin patch that makes
"UseLogin true" work on Solaris and UNICOS. As usual, I have provided
configure.in changes that set the appropriate defines for Solaris, but
I have not provided the configure.in changes for UNICOS (since they
would be incomplete, and Wendy is working on this).
This version fixes a problem with the last-login time always
2001 Mar 22
0
Solaris UseLogin problem
I was having problems getting the UseLogin option to work
on Solaris.
I would recieve this error:
No utmpx entry. You must exec "login" from the lowest level "shell".
This led me to believe that Solaris login wants a utmpx entry in
order to function. I put together a patch that calls record_login
on Solaris when using the system login. I also noticed that writing
a wtmpx
2001 May 07
5
SSH and forced wtmp entries ...
Hi all!
wtmp entries are generated when loggin into a system without a command,
e.g. "ssh -l user system". When using an additional command executed by
ssh on the "other side", no wtmp entry will be generated. So the command
"ssh -l user system /bin/csh" will not generate a wtmp entry but the
user is logged in ... I have the problem right know. The users are starting
2005 Nov 05
1
last command shows entries for denied logins
Hello All,
Im using OpenSSH 4.2p1. Suppose I disable non-root logins to my system
through /etc/nologin file, SSH writes an entry for the non-root user in wtmp
file. This is because the writing in wtmp file happens in parent process
where checking of nologin file happens in the child one. I like to know
whether we should put an entry in wtmp file for such denied logins.
Any comments will be
2016 Aug 19
0
[Bug 1030] sshd writes twice to wtmp when "UseLogin" is yes
https://bugzilla.mindrot.org/show_bug.cgi?id=1030
Damien Miller <djm at mindrot.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |djm at mindrot.org
Resolution|---
2000 Jun 09
0
OpenSSH's UseLogin option allows remote access with root privilege. (fwd)
--
| "Bombay is 250ms from New York in the new world order" - Alan Cox
| Damien Miller - http://www.mindrot.org/
| Email: djm at mindrot.org (home) -or- djm at ibs.com.au (work)
---------- Forwarded message ----------
Date: Fri, 9 Jun 2000 17:06:30 +0200
From: Markus Friedl <markus.friedl at informatik.uni-erlangen.de>
To: BUGTRAQ at SECURITYFOCUS.COM, misc at openbsd.org,
2000 Sep 02
0
ANNOUNCE: portable OpenSSH 2.2.0p1
Version 2.2.0p1 of portable OpenSSH has just been uploaded to the
master site and should be making its way to the mirrors in due
course.
http://www.openssh.com/portable.html
This release contains several new features and bugfixes relative to
the previous 2.1.1p4 release. In particular:
- DSA key support in ssh-agent. Please not that this will not
interop with ssh.com's ssh-agent (Markus
2000 Sep 02
0
ANNOUNCE: portable OpenSSH 2.2.0p1
Version 2.2.0p1 of portable OpenSSH has just been uploaded to the
master site and should be making its way to the mirrors in due
course.
http://www.openssh.com/portable.html
This release contains several new features and bugfixes relative to
the previous 2.1.1p4 release. In particular:
- DSA key support in ssh-agent. Please not that this will not
interop with ssh.com's ssh-agent (Markus
2001 Jun 06
0
Remove duplicate "last" log messages with UseLogin
Using UseLogin on a system that has to twiddle utmpx before calling
login currently also twiddles wtmpx, and this causes problems on Solaris
in the "last" log. Changing the source to avoid modifying wtmpx when
also modifying utmpx fixes things up nicely:
Index: loginrec.c
--- loginrec.c 2001/05/08 20:33:06 1.33
+++ loginrec.c 2001/06/06 17:14:25
@@ -456,9 +456,10 @@
# endif
# ifdef
2000 Jun 09
2
OpenSSH's UseLogin option allows remote access with root privilege.
OpenSSH's UseLogin option allows remote access with root privilege.
1. Systems affected:
The default installation of OpenSSH is not vulnerable, since
UseLogin defaults to 'no'. However, if UseLogin is enabled,
all versions of OpenSSH prior to 2.1.1 are affected.
2. Description:
If the UseLogin option is enabled the OpenSSH server (sshd)
2005 Dec 31
0
winecfg hangs forever
I installed wine-0.9 from pkgsrc on NetBSD/i386 3.0. When I run
winecfg, it never finishes, but it outputs:
wine: creating configuration directory '/home/ben/.wine'...
I see a number of wine processes:
sanctum $ ps alwwx | grep wine
1000 316 1 0 2 0 360 1016 poll Ss ? 0:00.03 /usr/pkg/bin/wineserver
1000 322 793 0 10 0 80 1212 wait I+ ttyp4
2006 May 24
1
DUNDi in 1.2.7.1
Hi
few weeks ago I read about redundancy (HA) of asterisk boxes using
DNS, DUNDi, so I decided to give it a try.
OS FreeBSD 6.1-RELEASE, asterisk 1.2.7.1
on one peer I get:
lk110*CLI> dundi show peers
EID Host Model AvgTime Status
00:11:43:3d:69:e6 195.28.109.37 (S) Symmetric Unavail OK (1 ms)
1 dundi peers [1 online, 0 offline, 0
2001 Jan 12
0
login.conf MAIL environment weirdness solved
A while back, I posted to the freebsd-questions list about a problem I was
having getting custom MAIL environment variable settings in
/etc/login.conf to take. Something had happened between FreeBSD 3.3 and
4.2 that caused MAIL to always be set to /var/mail/$USER. It turns out
this was a problem with the sshd configuration.
The problem was apparently related to the fact OpenSSH's sshd is now
1998 May 19
4
smbclient problem
Hi,
yes, it is. Anyway, below are some of the diagnostics I have tried.
Linux box Win95 Box
========= ===========
hostname: saturn tempest
ip: 192.168.0.2 192.168.0.1
Below are the diagnostics that I have tried and I ahve logged them:
1. From