ctf-party 4.0.0 → 5.0.0
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/LICENSE.txt +1 -1
- data/bin/ctf-party +2 -2
- data/lib/ctf_party/version.rb +1 -1
- metadata +21 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9413ed422b3e1da59bf459e2156421fae2025ec2ee516693ae64ccc0900f959
|
|
4
|
+
data.tar.gz: d02a82b63761515a32ac2bc8f026752bee898f2e3b0e270247cf46cd310c8b3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed6080f4edaf43af64aa5460cffa7992cec4e1e17b9bbc86b9c394fdacc6c6cd67fbcd4479c946e4211e68ffd863ee8cdd2c4e04073b0e07ed1365ffaa9031f8
|
|
7
|
+
data.tar.gz: 00f281a6dd25cb97807bc091838d516da2bafd2f190aac318a8e7fdf7a4f5a2fdda38b429eac086ad141aab442cf16bcb53724a961a7297119e40a5d5082b5a1
|
data/LICENSE.txt
CHANGED
data/bin/ctf-party
CHANGED
|
@@ -90,7 +90,7 @@ cmd_whitelist = {
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
doc = <<~DOCOPT
|
|
93
|
-
ctf-party v#{
|
|
93
|
+
ctf-party v#{CTFParty::VERSION} by noraj
|
|
94
94
|
|
|
95
95
|
Usage:
|
|
96
96
|
ctf-party <string> <cmd>... [--row --file] [--debug]
|
|
@@ -120,7 +120,7 @@ doc = <<~DOCOPT
|
|
|
120
120
|
DOCOPT
|
|
121
121
|
|
|
122
122
|
begin
|
|
123
|
-
args = Docopt.docopt(doc, version:
|
|
123
|
+
args = Docopt.docopt(doc, version: CTFParty::VERSION)
|
|
124
124
|
# use case 1, using the tool
|
|
125
125
|
puts args if args['--debug']
|
|
126
126
|
if args['<string>']
|
data/lib/ctf_party/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ctf-party
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 5.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexandre ZANNI
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: base64
|
|
@@ -23,6 +23,20 @@ dependencies:
|
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
25
|
version: 0.2.0
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: cgi
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0.4'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0.4'
|
|
26
40
|
- !ruby/object:Gem::Dependency
|
|
27
41
|
name: docopt
|
|
28
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -43,20 +57,14 @@ dependencies:
|
|
|
43
57
|
requirements:
|
|
44
58
|
- - "~>"
|
|
45
59
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '1.
|
|
47
|
-
- - ">="
|
|
48
|
-
- !ruby/object:Gem::Version
|
|
49
|
-
version: 1.0.2
|
|
60
|
+
version: '1.1'
|
|
50
61
|
type: :runtime
|
|
51
62
|
prerelease: false
|
|
52
63
|
version_requirements: !ruby/object:Gem::Requirement
|
|
53
64
|
requirements:
|
|
54
65
|
- - "~>"
|
|
55
66
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: '1.
|
|
57
|
-
- - ">="
|
|
58
|
-
- !ruby/object:Gem::Version
|
|
59
|
-
version: 1.0.2
|
|
67
|
+
version: '1.1'
|
|
60
68
|
description: A CLI tool & library to enhance and speed up script/exploit writing for
|
|
61
69
|
CTF players (or security researchers, bug bounty hunters, pentesters but mostly
|
|
62
70
|
focused on CTF) by patching the String class to add a short syntax of usual code
|
|
@@ -108,17 +116,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
108
116
|
requirements:
|
|
109
117
|
- - ">="
|
|
110
118
|
- !ruby/object:Gem::Version
|
|
111
|
-
version: 3.
|
|
119
|
+
version: 3.2.0
|
|
112
120
|
- - "<"
|
|
113
121
|
- !ruby/object:Gem::Version
|
|
114
|
-
version: '
|
|
122
|
+
version: '5.0'
|
|
115
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
124
|
requirements:
|
|
117
125
|
- - ">="
|
|
118
126
|
- !ruby/object:Gem::Version
|
|
119
127
|
version: '0'
|
|
120
128
|
requirements: []
|
|
121
|
-
rubygems_version:
|
|
129
|
+
rubygems_version: 4.0.3
|
|
122
130
|
specification_version: 4
|
|
123
131
|
summary: A CLI tool & library to enhance and speed up script/exploit writing with
|
|
124
132
|
string conversion/manipulation
|