General Links
About Our Groups
Competitions
- DSU Competitions
- DCDC (Mock CCDC)
- External Competitions
- More coming soon
This is an old revision of the document!
This is a sample checklist for CCDC-style competitions.
Change all shell user passwords:
read; for u in $(cat /etc/passwd | grep -E "/bin/.*sh" | cut -d":" -f1); do echo "$u:$REPLY" | chpasswd ; done
Change all shell users' Samba passwords:
read; for u in $(cat /etc/passwd | grep -E "/bin/.*sh" | cut -d":" -f1); do echo -e "$REPLY\n$REPLY" | smbpasswd -sU $u ; done