Check when the password has been changed lastly


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Check when the password has been changed lastly
# 1  
Old 08-30-2015
Check when the password has been changed lastly

Hi,
I wanted to check when the password of a current user(logged in) has been changed recently.
I tried with the commands like
Code:
passwd -s name
logins -x -l username everthing

but it shows
Code:
not a super user

Which commands will help me.. Kindly help.. Thanks in advance.

Last edited by rbatte1; 09-07-2015 at 09:20 AM.. Reason: Added CODE tags
# 2  
Old 08-30-2015
The date an account's password has changed is stored in /etc/shadow which is readable only by root.
See shadow for more details.
This User Gave Thanks to derekludwig For This Post:
# 3  
Old 08-30-2015
Am not a root user . Any other way i can know those information.?
# 4  
Old 08-30-2015
Two problems:

first, how systems store this information (when the password has been changed recently) is diffferent from one system to the next. derekludwig has told you how some Linux variants do it, but in other UNIXes (or UNIX-like) systems this is done differently. In AIX, for instance, it is done in the /etc/security-directory in several files. To really help you here you wll have to post more details about your system.

second: as a non-root user you simply cannot get this information. It is none of your business (from a systems POV). Everything else would be a severe security-breach.

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Root password changed but old one still works

Hello i am running AIX 6.1. i recently changed the root password using passwd and pwdadm. while the new password works fine, i am still able to login using the old password. is there anyway this can disabled\fixed thanks (5 Replies)
Discussion started by: dnlsingh
5 Replies

2. UNIX for Dummies Questions & Answers

Is there a way to check when the permissions for the file got changed in AIX

Is there a way to check when the permissions for the file got changed in AIX IS there some file which logs all these details? Best regards, Vishal (4 Replies)
Discussion started by: Vishal_dba
4 Replies

3. Shell Programming and Scripting

Script to echo "File permissions or ownership changed from required " when accidentally changed.

Hi All, I have to work in the late nights some times for server maintenance and in a hurry to complete I am accidentally changing ownership or permission of directories :( which have similar names ( /var in root and var of some other directory ).:confused: Can some one suggest me with the... (1 Reply)
Discussion started by: shiek.kaleem
1 Replies

4. Red Hat

Password not changed!

Hi I am using Fedora 14. I forgot root password of Fedora 14 so I used online help from Fedora website which says by doing rheb silent 1 and then using proper kernel and then using psswd for changing the password I changed it. But after normal booting GUI I am not able to log-on. Can anybody plz... (5 Replies)
Discussion started by: nixhead
5 Replies

5. UNIX for Dummies Questions & Answers

Password last changed

Hi, I am doing an audit and thought I knew what I was doing, but reading through the posts I came into doubt. On Sun Solaris, I want to know when users last changed their passwords. I have the etc/shadow files and there is a nice field showing this. Except that it is disturbing me somewhat that... (5 Replies)
Discussion started by: Norgaard
5 Replies

6. Shell Programming and Scripting

Users who have never changed their password from /etc/shadow.

Hello, I have to do a script which returns users who have never changed their password from /etc/shadow. Here is what have I done and I'm not sure if it's ok. I tried to return just users who doesn;t have password set or are locked. Can be there other kind of user who never changed the... (3 Replies)
Discussion started by: catalint
3 Replies

7. UNIX for Dummies Questions & Answers

Check password strength

For moderator: I made a new thread in a proper part of the forum now https://www.unix.com/homework-coursework-questions/137119-user-processes.html But now i wan't to make something which isn't related to a homework, so i hope you won't close this one. Thanks to those two answers, you helped me!... (9 Replies)
Discussion started by: petel1
9 Replies

8. HP-UX

How I know "last password changed".

Hi all, My HP-UX server 11.11 trusted system. How I know when password was last changed. Thanks , arm_naja (4 Replies)
Discussion started by: arm_naja
4 Replies

9. UNIX for Dummies Questions & Answers

Have users changed their password

How can I know users have changed their passwords ? I don't need their password (!) I have to know if they have changed their pass word and when ? Thank you in advance for any SIMPLE answer. (6 Replies)
Discussion started by: annemar
6 Replies

10. UNIX for Dummies Questions & Answers

password check

Hi While using Pipe concept ,if a user enters a "login name" and "paswword" ,then how does a child process check for user password is correct or not and give notification to parent process. (1 Reply)
Discussion started by: riya
1 Replies
Login or Register to Ask a Question