1

I could not find a pdbedit or smbldap-userlist option to list just the active samba users.

Solution on Question [1] lists all users and machines and smbldap-userlist -ua lists all users, even if they are inactive. I mean Inactive, not a logged off user but a user that is not active on the domain anymore.

I tried awk and grep to parse the output but I could not match a pattern on [status SMB] column.

Does somebody has a command-line or shell solution? (although, a Python solution will be very welcome)

[1] List Samba users?

Josir
  • 111
  • 1
  • 1
  • 3
  • What do you mean with a user that is not active on the domain? Do you mean that you would like to hide accounts that are disabled? – jelmer May 06 '17 at 03:31

2 Answers2

4

The "smbstatus" tool should show the currently active users on a server. There might be some false positives as workstations often keep connections open after a user has logged off.

jelmer
  • 325
  • 2
  • 6
  • Thanks for the reply. But I didn't explain the problem well. I want the users that CAN login, not the users logged on a certain time. I rephrased the question. – Josir Nov 09 '11 at 19:16
0

you may use the following simple bash script. It rules out machine accounts and disabled accounts (account flags W and D)

#!/bin/bash    
cd ~
lista=`pdbedit -L | sort | uniq | cut -f1 --delimiter=':'`

for i in $lista
do
        ret=`pdbedit -L -v $i | grep "Account Flags" | cut -f2 --delimiter='[' | cut -f1 --delimiter=' '`
        ismachine_account=`echo $ret | grep W | wc -l`
        isdeleted_account=`echo $ret | grep D | wc -l`
        if [ $ismachine_account -eq 0 -a $isdeleted_account -eq 0 ]; then
                echo $i
        fi
done    
exit
suspectus
  • 4,735
  • 14
  • 25
  • 34