Posts: 46
Threads: 1
Joined: Apr 2018
04-06-2018, 08:42 AM
(This post was last modified: 04-09-2018, 08:19 AM by CUwindows00.)
Hello everyone
Ask a question of hashcat rules
Why do not many combination rules have such a rule?
Swap location attack rule
For example:
cat 1.txt
abc
cat 2.txt
123
cat 3.txt
!@#$
I think this rule is advanced and effective.
Hashcat does not have such a rule
The 3 combination attack rule generation should be the result of the following dictionary
abc123!@#$
abc!@#$123
123abc!@#$
123!@#$abc
!@#$123abc
!@#$abc123
Posts: 2,301
Threads: 11
Joined: Jul 2010
put all words in one dict and use
combinator3 from hashcat-utils
Posts: 46
Threads: 1
Joined: Apr 2018
(04-06-2018, 09:30 AM)undeath Wrote: put all words in one dict and use combinator3 from hashcat-utils
thanks
This will result in a few times the size of the dictionary
It's not that I want to customize efficient attacks
Posts: 46
Threads: 1
Joined: Apr 2018
04-06-2018, 10:16 AM
(This post was last modified: 04-06-2018, 10:20 AM by CUwindows00.)
cat 1.txt
abc
cat 2.txt
123
cat 3.txt
!@#$
Generation of dictionary attacks
abc123!@#
abc!@#$123
123abc!@#$
123!@#$abc
!@#$123abc
!@#$abc123
If this rule is added, it does not produce more than one line
That will optimize dictionary volume and make attack more directive.
It saves a lot of time
Posts: 46
Threads: 1
Joined: Apr 2018
04-09-2018, 08:03 AM
(This post was last modified: 04-09-2018, 08:13 AM by CUwindows00.)
(04-06-2018, 09:30 AM)undeath Wrote: put all words in one dict and use combinator3 from hashcat-utils
Hi...
if Put in a dictionary, the volume will be 10 times larger, which is not a good rule.
Good rules should be pertinent
For example, there are multiple combinations below. It is efficient to transform files to different locations attack
Code:
./combinator.bin file1 file2 file3
Code:
combinator
file1 file2 file3
file1 file3 file2
file2 file3 file1
file2 file1 file3
file3 file1 file2
file3 file2 file1
If can change their position to attack
I want to add an automatic transformation location rule
Are there any rules of this kind?
If not, how should I write it out?
Posts: 46
Threads: 1
Joined: Apr 2018