You're cracking "password\n", not "password":
Most passwords are stored without trailing linefeeds. It looks like you may have generated the hash yourself on the command line?
Welcome the club. We all did it at some point.
Code:
$ echo -n 'password' | md5sum
5f4dcc3b5aa765d61d8327deb882cf99 -
$ echo 'password' | md5sum
286755fad04869ca523320acce0dc6a4 -
Most passwords are stored without trailing linefeeds. It looks like you may have generated the hash yourself on the command line?
Welcome the club. We all did it at some point.
~