TOTP issue
#1
Hi all,
I generate a TOTP PIN thanks to python lib, using 'hashcat' password.

Code:
import pyotp

# base32_encode(hashcat) = NBQXG2DDMF2A====

totp = pyotp.TOTP("NBQXG2DDMF2A====")
print(totp.at(1572603245)+":1572603245")
test.hash contains PIN + timestamp:
Quote:915418:1572603245
I launch:
Quote:hashcat -m 18100 -a 3 -o res.txt test.hash ?l?l?l?l?l?l?l
Status : cracked, result is :
Quote:915418:1572603245:MJQXE3TDNZYA====
But
Quote:base32_decode(MJQXE3TDNZYA====) = barncnp
which is not the password 'hashcat'..

using hashcat-5.1.0+1409

Thanks for your help.
Reply


Messages In This Thread
TOTP issue - by Mem5 - 11-01-2019, 11:54 PM
RE: TOTP issue - by Chick3nman - 11-02-2019, 12:08 AM
RE: TOTP issue - by Mem5 - 11-02-2019, 10:43 AM