oclHashcat-lite v0.9 - MyBB?
#1
Hey, been a guest lurker for a while.
Does lite v0.9 not support MyBB properly? I noticed it finally had the support added in the release notes. But I can't seem to get it to work.
Here's how I tried to use it:

Code:
oclHashcat-lite64.exe --hash-type 2811 --custom-charset1 ?l?d --pw-min 6 valid_hash:valid_salt ?1?1?1?1?1?1

*Note I have replaced the real hash/salt for privacy/legal or w/e.

This gives me the error:

hash: valid_hash:valid_salt, line length exception: 41
ERROR: invalid hash ' valid_hash:valid_salt'. double check -m parameter

Is there some way the salt is supposed to be inputted or specified? I couldn't find it in the wiki/documents.
It seems like it's reading the whole thing as the hash.


Also, unrelated. Were you (atom or anyone whom it may concern) aware that some parts of the forum are giving 502 Bad Gateway errors when trying to view as Guest (not logged in). Well it was for me.
#2
Hm, I think you are right. While IPB2 and MyBB1.2 share the same algorithm, the salt length differ. On IPB2 its a fixed string of length 5, so oclHashcat-lite wants the salt to be of length 5. I will fix this with v0.10. You can use oclHashcat-plus v0.07 as a workaround.
#3
Oh ok, thanks for the quick response Big Grin.
#4
@atom::
how can i know all the salt length ranges in oclHashcat-plus-0.07 for these algos::
2611 = vBulletin < v3.8.5
2711 = vBulletin > v3.8.5
2811 = IPB 2.0, MyBB1.2
??
#5
--hash-type 2611 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa:aaa
--hash-type 2711 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
--hash-type 2811 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa:aaaaa
#6
@Mem5::
u didnt say anything new.. these "Salt Length" below are not fixed (tries).. i want to know the fixed values
Code:
2611 = vBulletin < v3.8.5
    md5(md5($pass).$salt)
    md5($username.md5($pass).$salt)
    md5(md5($username.$pass).$salt)
    Salt Length: 3 - 4
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa:aaa
    c87aacfceafb791df7a38ae3fd08ca3b:aaa:HashCat

2711 = vBulletin > v3.8.5
    md5(md5($pass).$salt)
    md5($username.md5($pass).$salt)
    md5(md5($username.$pass).$salt)
    Salt Length: 30
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
    f247f6a7212931e35af9c14db8470d74:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa:HashCat

2811 = IPB 2.0, MyBB1.2
    md5(md5($salt).md5($pass))
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa:aaaaa
    Salt Length: 5 - 8
    d2af0364499b0a56d3065210a47b37da:aaaaa:HashCat
#7
There is no such resource available.