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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9476219e1055065a8a0862f233c947157dc53d50
4
- data.tar.gz: 4c1c13302540965646f0a754860673dcb5889b2c
3
+ metadata.gz: d4908fe40c669e09e448b3c42279459536f28f08
4
+ data.tar.gz: 6c6fe97748cda61b41b879fc6591334b20edb977
5
5
  SHA512:
6
- metadata.gz: 81542c0f8620a5dc637e14b3fa262e4c32a5b09f0bee729dc864baec25dd68b637517a1b6d683b86676236d3713332e8e4ac1c5e03fe6b1d9a5bdefd7eef1d03
7
- data.tar.gz: 440f3198452cc6818b160bc1039af350a87dc196cc50bfed5588613d6eb099a9112c35b0989f674035a12c96be475342bb92cac347c82be246897fbc4a019c7c
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' #all dict names:see https://github.com/luaxlou/week_password/tree/master/dicts
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 passwrod by dicts
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
@@ -1,3 +1,3 @@
1
1
  module PasswordCrack
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: password_crack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - luax