cobreak 0.0.3
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 +7 -0
- data/Gemfile +15 -0
- data/LICENSE +700 -0
- data/README.md +74 -0
- data/bin/cobreak +11 -0
- data/cobreak.gemspec +12 -0
- data/dicc.txt +1 -0
- data/diccionario.txt +275 -0
- data/hola.txt +1397760 -0
- data/lib/cobreak.rb +3 -0
- data/lib/cobreak/Cesar.rb +35 -0
- data/lib/cobreak/cifrado.rb +32 -0
- data/lib/cobreak/cobreak.rb +193 -0
- data/lib/cobreak/decifrado.rb +32 -0
- data/lib/cobreak/decrypt.rb +110 -0
- data/lib/cobreak/details.rb +19 -0
- data/lib/cobreak/encrypt.rb +55 -0
- data/lib/cobreak/force.rb +227 -0
- data/lib/cobreak/force_brute.rb +81 -0
- data/lib/cobreak/function_db.rb +27 -0
- data/lib/cobreak/function_hash.rb +29 -0
- data/lib/cobreak/hash/hash.db +29 -0
- data/lib/cobreak/info_author.rb +22 -0
- data/lib/cobreak/list_all.rb +19 -0
- data/lib/cobreak/optionpr.rb +59 -0
- data/lib/cobreak/run.rb +9 -0
- data/lib/cobreak/show/md4.db +6 -0
- data/lib/cobreak/show/md5.db +14 -0
- data/lib/cobreak/show/ripemd160.db +1 -0
- data/lib/cobreak/show/sha1.db +3 -0
- data/lib/cobreak/show/sha224.db +1 -0
- data/lib/cobreak/show/sha256.db +1 -0
- data/lib/cobreak/show/sha384.db +1 -0
- data/lib/cobreak/show/sha512.db +1 -0
- data/lib/cobreak/version.rb +5 -0
- data/prueba.txt +2 -0
- metadata +78 -0
data/lib/cobreak/run.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
nose
|
@@ -0,0 +1 @@
|
|
1
|
+
nose
|
@@ -0,0 +1 @@
|
|
1
|
+
nose
|
@@ -0,0 +1 @@
|
|
1
|
+
nose
|
@@ -0,0 +1 @@
|
|
1
|
+
nose
|
data/prueba.txt
ADDED
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cobreak
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- BreakerBox
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-05-29 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: The CoBreak script is an cipher and cryptography tool
|
14
|
+
email: breakerhtb@gmail.com
|
15
|
+
executables:
|
16
|
+
- cobreak
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- Gemfile
|
21
|
+
- LICENSE
|
22
|
+
- README.md
|
23
|
+
- bin/cobreak
|
24
|
+
- cobreak.gemspec
|
25
|
+
- dicc.txt
|
26
|
+
- diccionario.txt
|
27
|
+
- hola.txt
|
28
|
+
- lib/cobreak.rb
|
29
|
+
- lib/cobreak/Cesar.rb
|
30
|
+
- lib/cobreak/cifrado.rb
|
31
|
+
- lib/cobreak/cobreak.rb
|
32
|
+
- lib/cobreak/decifrado.rb
|
33
|
+
- lib/cobreak/decrypt.rb
|
34
|
+
- lib/cobreak/details.rb
|
35
|
+
- lib/cobreak/encrypt.rb
|
36
|
+
- lib/cobreak/force.rb
|
37
|
+
- lib/cobreak/force_brute.rb
|
38
|
+
- lib/cobreak/function_db.rb
|
39
|
+
- lib/cobreak/function_hash.rb
|
40
|
+
- lib/cobreak/hash/hash.db
|
41
|
+
- lib/cobreak/info_author.rb
|
42
|
+
- lib/cobreak/list_all.rb
|
43
|
+
- lib/cobreak/optionpr.rb
|
44
|
+
- lib/cobreak/run.rb
|
45
|
+
- lib/cobreak/show/md4.db
|
46
|
+
- lib/cobreak/show/md5.db
|
47
|
+
- lib/cobreak/show/ripemd160.db
|
48
|
+
- lib/cobreak/show/sha1.db
|
49
|
+
- lib/cobreak/show/sha224.db
|
50
|
+
- lib/cobreak/show/sha256.db
|
51
|
+
- lib/cobreak/show/sha384.db
|
52
|
+
- lib/cobreak/show/sha512.db
|
53
|
+
- lib/cobreak/version.rb
|
54
|
+
- prueba.txt
|
55
|
+
homepage: https://github.com/BreakerBox/CoBreak.git
|
56
|
+
licenses:
|
57
|
+
- MIT
|
58
|
+
metadata: {}
|
59
|
+
post_install_message:
|
60
|
+
rdoc_options: []
|
61
|
+
require_paths:
|
62
|
+
- lib
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
73
|
+
requirements: []
|
74
|
+
rubygems_version: 3.2.15
|
75
|
+
signing_key:
|
76
|
+
specification_version: 4
|
77
|
+
summary: My very first
|
78
|
+
test_files: []
|