You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
2 years ago
|
---
|
||
|
title: Wordlist Generation
|
||
|
summary: Just for the record. These results may not mean anything...
|
||
|
date: 2021-10-03
|
||
|
categories: [computerstuff]
|
||
|
tags: [linux,pentest]
|
||
|
|
||
|
---
|
||
|
|
||
|
I've done a simple comparison back in April and never pushed this to the website.
|
||
|
Now I think I won't write much about it, but I don't want to loose those results
|
||
|
either.
|
||
|
|
||
|
The two don't work the same, the files were different in terms of sorting.
|
||
|
|
||
|
## John
|
||
|
|
||
|
~~~console
|
||
|
$ john --mask='05253?d?d?d?d?d' --min-length=9 --max-length=10 --stdout > john_file
|
||
|
|
||
|
________________________________________________________
|
||
|
Executed in 261,54 millis fish external
|
||
|
usr time 96,01 millis 11,00 micros 96,00 millis
|
||
|
sys time 38,02 millis 993,00 micros 37,03 millis
|
||
|
~~~
|
||
|
|
||
|
## Maskprocessor
|
||
|
|
||
|
~~~console
|
||
|
$ mp -i 9:10 '05253?d?d?d?d?d' -o mp_file
|
||
|
|
||
|
________________________________________________________
|
||
|
Executed in 6,72 millis fish external
|
||
|
usr time 2,19 millis 314,00 micros 1,88 millis
|
||
|
sys time 2,86 millis 54,00 micros 2,81 millis
|
||
|
~~~
|
||
|
|
||
|
Tests were made with [fish ><(((°>](https://fishshell.com/).
|