hi,I need help
#1
hi

I.m beginner in hashcat so I need help for Brute-force

I need Brute-force in this charsets: ?l ?d

maybe password like this : a14dr498 or 1afdf14p or fdf475f2 , when I use this command:hashcat -m 0 -a 3 --pw-min=4 --pw-max=8 /root/hash/hash.txt ?a?a?a?a?a?a?a?

it take along time ,I need command Brute-force in only ?l ?d only ( 0123456789abcdefghijklmnopqrstuvwxyz)

I try all this command but it,s not working
root@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# hashcat -m 0 -a 3 --pw-min=4 --pw-max=4 /root/hash/hash.txt -1 loweralpha_numeric.hcchr
Usage: hashcat [options] hashfile [mask|wordfiles|directories]

Try --help for more help.
root@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# hashcat -m 0 -a 3 --pw-min=8 --pw-max=11 -1 loweralpha_numeric /root/hash/hash.txt
Usage: hashcat [options] hashfile [mask|wordfiles|directories]

Try --help for more help.
root@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# hashcat -m 0 -a 3 -1 loweralpha_numeric --pw-min=8 --pw-max=11 /root/hash/hash.txt
Usage: hashcat [options] hashfile [mask|wordfiles|directories]

Try --help for more help.
root@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# hashcat -m 0 -a 3 -1 ?d?l /root/hash/hash.txt
Usage: hashcat [options] hashfile [mask|wordfiles|directories]

Try --help for more help.
root@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# hashcat -m 0 -a 3 -1 --custom-charset1=?dabcdef /root/hash/hash.txt
Usage: hashcat [options] hashfile [mask|wordfiles|directories]

Try --help for more help.
root@The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali):~# hashcat -m 0 -a 3 --pw-min=10 --pw-max=10 /root/hash/hash.txt -1 ?l?l?l?l?l?l?l?l?l?l -o /root/done.txt
Usage: hashcat [options] hashfile [mask|wordfiles|directories]

please print the command in the Reply

thanks
#2
I got it

hashcat -m 0 -a 3 --pw-min=4 --pw-max=4 /root/hash/hash.txt -1 ?l?d ?1?1?1?1 -o /root/done.txt


thanks
#3
You should follow the canonical way of supplying commands:
hashcat -m 0 -a 3 --pw-min=4 --pw-max=4 -1 ?l?d -o /root/done.txt /root/hash/hash.txt ?1?1?1?1
Not that it matters (it's pretty much idiot proof), but looks tidier.