mp64 Print hex as string
#1
Command
mp64 --hex-charset -1 ab3654ee ?1?1?1?1

output:
Tююю
юллл
...

How to print like that 
36eeab54
Reply
#2
don't specify --hex-charset
Reply
#3
(01-07-2022, 10:38 AM)DanielG Wrote: don't specify --hex-charset

Then the output is:
aaaa
aaab
aaa3

But i need to print as hex pairs like that:
abababab
ababab36
ababab54
Reply
#4
(01-07-2022, 11:22 AM)byte7a Wrote:
(01-07-2022, 10:38 AM)DanielG Wrote: don't specify --hex-charset

Then the output is:
aaaa
aaab
aaa3

But i need to print as hex pairs like that:
abababab
ababab36
ababab54

for this more specific purpose you have to generate your own dictionary with hashcat utils like this

file
Code:
ab
36
54
ee

using combinator to generate all possibilitis up to your desired length (given your example the fastest way is this)

combinator file file > 2
combinator 2 2 > 4

after this in file 4 there are all "hex-string-possibilities" with your given input ab, 36, 54, ee, so 4^4, 256 possibilities
Reply