字典中的Wordlist生成器

时间:2017-07-31 20:52:01

标签: linux unix sed grep

我见过很棒的wordlist生成器,比如crunch,但是所有这些都是从头开始的,任何想法如何生成使用基本字典文件的单词列表,然后通过添加数字,大写字母等来推断这些单词?< / p>

我记得John开膛手能够做到这一点,但只有在破解时,它才能生成wordfiles。

示例:

[root@www ~]# cat testprocessed.txt 
John0001
John0002
John3553
juliA
Julia9857

输出:

//Tell WordPress to only load the basics
define('SHORTINIT',1);

//get path of wp-load.php and load it
require_once $_SERVER['DOCUMENT_ROOT'] . '/wp-load.php';

// register global database
global $wpdb;

// return data selected from DB to user

尽可能多的排列..

谢谢:)

1 个答案:

答案 0 :(得分:1)

John 1.8.0在我的系统上工作正常:

$ cat test.txt
John
Julia

$ john --wordlist=test.txt --rules --stdout > testprocessed.txt
Press 'q' or Ctrl-C to abort, almost any other key for status
102p 0:00:00:00 100% 3400p/s Juliing

$ head testprocessed.txt
John
Julia
john
julia
johns
julias
john1
julia1
John1
Julia1

我建议你去研究为什么它不适合你。

相关问题