password_crack 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -3
- data/lib/password_crack/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4908fe40c669e09e448b3c42279459536f28f08
|
|
4
|
+
data.tar.gz: 6c6fe97748cda61b41b879fc6591334b20edb977
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ad154b9c7017a78e35d2d7521bcec365eb1daa44eb2b456ab51332832d3557142312acfe3566befd91ff3b6fc9c2f2df8ab5ee1c7434d4bfda3842628900c4d
|
|
7
|
+
data.tar.gz: b6465a6cc91e92ae5cea74e81509f85a85c0c38302312e2f0103ef48cb425fba74228f296a4b6f3c99ce0bc42c31f2cfce29164adbd234d5395c59635a2797c7
|
data/README.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
crack password by dicts,
|
|
4
4
|
suppert single thread md5 crack now
|
|
5
5
|
|
|
6
|
+
all the dicts has created .This program will auto download the password dict which you specified.
|
|
7
|
+
|
|
8
|
+
example dict_name:week_password_sample
|
|
9
|
+
You could see all the dicts on: https://github.com/luaxlou/week_password/tree/master/dicts
|
|
10
|
+
|
|
6
11
|
## Installation
|
|
7
12
|
|
|
8
13
|
Add this line to your application's Gemfile:
|
|
@@ -25,7 +30,8 @@ Or install it yourself as:
|
|
|
25
30
|
```ruby
|
|
26
31
|
md5Password = 'e10adc3949ba59abbe56e057f20f883e'
|
|
27
32
|
cracker = PasswordCrack::Md5Cracker.new
|
|
28
|
-
dict_name = 'week_password_sample'
|
|
33
|
+
dict_name = 'week_password_sample'
|
|
34
|
+
#all dict names:see https://github.com/luaxlou/week_password/tree/master/dicts
|
|
29
35
|
result = cracker.crack md5Password,dict_name
|
|
30
36
|
expect(result).to eq('123456')
|
|
31
37
|
|
|
@@ -39,7 +45,7 @@ Or install it yourself as:
|
|
|
39
45
|
|
|
40
46
|
```bash
|
|
41
47
|
$ password_crack
|
|
42
|
-
creack
|
|
48
|
+
creack password by dicts
|
|
43
49
|
|
|
44
50
|
Usage:
|
|
45
51
|
password_crack <crypted_password> [options]
|
|
@@ -50,7 +56,8 @@ where [options] are:
|
|
|
50
56
|
-c, --crypt=<s> crypt type (default: md5)
|
|
51
57
|
-h, --help Show this message
|
|
52
58
|
|
|
53
|
-
|
|
59
|
+
$ password_crack e10adc3949ba59abbe56e057f20f883e
|
|
60
|
+
"crack success! result is:123456"
|
|
54
61
|
```
|
|
55
62
|
|
|
56
63
|
## Contributing
|