To brute force a MD5 hash with hashcat (not using any dictionary files), first create a file containing the hash (or in the case of multiple hashes, one per line):
echo "<hash here>" > hashes
Launch hashcat:
hashcat -a 3 -m 0 hashes
The arguments are:
-a 3: Attack mode - brute force-m 0: MD5 hash type