The max/min lenght of the password is 8 characters lenght and the password for example is: cocoso12
The passwordlist is composed by: $26$ letters $10$ number so the lenght of the list will be $36^8$.
But what is the formula (some example will be awesome) to calculate the position in the list of the word if the list start with 0 so 00000000: cocoso12 ?
Guide:
Convert your interested string in base $36$ and you will get your position.
For example:
$00a02010_{36}$ is at $ 10\cdot 36^5 + 2\cdot 36^3 + 1 \cdot 36 $-th position if you start counting with index $0$.
Reading on numeral system. It is like hexadecimal number system, but rather than $16$, you have $36$ characters.