I am looking to password crack my twitter account using THC Hydra but am running into some sort of syntax error. Here is what I have:
hydra -l email@domain.com -P passphrase.txt -s 80 -f https://twitter.com https-post-form "/session:%5Busername_or_email%5D=email@domain.com&session%5Bpassword%5D=^PASS^:did not match"
The file "passphrase.txt" contains only 1 password which is the correct one. However, I am getting an argument error:
[ERROR] the variables argument needs at least the strings ^USER^ or ^PASS^: (null) Segmentation Fault
How else do I need to pass the variables as an argument into the command? Is the http-post-form variable setting correct for twitter? I am not exactly sure if it is the right string for the USER and PASS variables.
Thank you.