Last active
August 29, 2015 14:18
-
-
Save KalenWessel/52239509259c66f8ce24 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
# Get a list of groups a user is a member of on one line, space-seperated | |
# Single-quote group names with spaces, otherwise print the rest | |
SPACE_CHAR='-' | |
TMP=`mktemp` | |
ldapsearch -H ldap://domain.local -b OU=Everything,DC=domain,DC=local -LLL -x -z0 -D 'CN=gitolite,OU=Engineering,OU=Everything,DC=domain,DC=local' -y /var/lib/git/gitolite_ad_passwd "(sAMAccountName=$1)" userAccountControl memberOf > "$TMP" | |
# Is the account still valid? non-zero = no, zero = yes | |
awk '{if(!and($2,0x02)){print $0}}' "$TMP" \ | |
| grep -qse 'userA' - || { | |
shred -u "$TMP" | |
false | |
} | |
awk '/^ /{x=$0;gsub(" ","",x);print x};!/^ /{if(length($0)==78){printf$0}else{print}}' "$TMP" | \ | |
grep -e 'memberOf: ' | \ | |
sed 's/.*CN=\([^,]*\),.*/\1/g' | \ | |
tr ' \n' "$SPACE_CHAR " || { | |
shred -u "$TMP" | |
false | |
} | |
# Bit 1 (decimal value 2) of userAccountControl : 1 = account disabled, 0 = account enabled |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment