Verizon Fios G3100 and E3200 Research
#29
Great investigation.
You can also add "T-Mobile Broadbandxx" to your list: PSK pattern = ?d?d?d?d?d?dxx

Or to cover both, T-Mobile Broadbandxx and T-Mobile Hotspot_xxxx_2.4GHz, from an entire hash file:

Code:
#!/bin/bash
$ hcxhashtool -i hashlist.22000 --essid-part='T-Mobile Broadband' -o test.22000
$ hcxhashtool -i hashlist.22000 --essid-part='T-Mobile Hotspot_' -o test.22000

if [ -s "test.22000" ]
then
    hcxhashtool -i test.22000 -E essid.list
    while read LINE
    do
        echo "$LINE";
        hcxhashtool -i test.22000 --essid="$LINE" -o testline.22000
        hcxpsktool -c testline.22000 --noessidcombination | hashcat -m 22000 --stdin-timeout-abort=600 -o founds.list testline.22000
        rm testline.22000
    done < essid.list
    rm essid.list
    rm test.22000
fi
Reply


Messages In This Thread
RE: Verizon Fios G3100 and E3200 Research - by ZerBea - 07-13-2025, 11:57 AM