$ ll /etc/cron.d
^1000
`...`
`-rw-r--r-- 1 root root 122 Sep 1 06:30 cronjob_bandit23`
`...`
$ cat /etc/cron.d/cronjob_bandit23
^1000
`@reboot bandit23 /usr/bin/cronjob_bandit23.sh &> /dev/null`
`* * * * * bandit23 /usr/bin/cronjob_bandit23.sh &> /dev/null`
$ cat /usr/bin/cronjob_bandit23.sh
^1000
`#!/bin/bash`
`myname=$(whoami)`
`mytarget=$(echo I am user $myname | md5sum | cut -d ' ' -f 1)`
`echo "Copying passwordfile /etc/bandit_pass/$myname to /tmp/$mytarget"`
`cat /etc/bandit_pass/$myname > /tmp/$mytarget`
$ echo I am user bandit23 | md5sum
^1000
`8ca319486bfbbc3663ea0fbe81326349 -`
$ cat /tmp/8ca319486bfbbc3663ea0fbe81326349
^1000
`QYw0Y2aiA672PsMmh9puTQuhoz8SyR2G`
$