Brute force by group of symbols
#1
How to do brute force if i know than password consist of strings(not only char)?

For example:
strings: 'vv', 'VV', '&'.

Iterations:
&vvVV
vv&VV
vvVV&
VVvv&

The main idea in the economy of time bruteforce.
I do not find anything in documentation: https://hashcat.net/wiki/doku.php?id=mask_attack
Reply
#2
(05-17-2023, 02:46 PM)vlad Wrote: How to do brute force if i know than password consist of strings(not only char)?

For example:
strings: 'vv', 'VV', '&'.

Iterations:
&vvVV
vv&VV
vvVV&
VVvv&

The main idea in the economy of time bruteforce.
I do not find anything in documentation: https://hashcat.net/wiki/doku.php?id=mask_attack

take a look at princeprocessor, does exactly what you want to achieve

https://github.com/hashcat/princeprocessor
Reply