console1984 0.1.31 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/protections.yml +1 -1
- data/lib/console1984/command_validator/.command_parser.rb +1 -1
- data/lib/console1984/commands/decrypt.rb +14 -0
- data/lib/console1984/commands/encrypt.rb +14 -0
- data/lib/console1984/ext/irb/commands.rb +0 -10
- data/lib/console1984/ext/irb/context.rb +10 -2
- data/lib/console1984/shield.rb +8 -3
- data/lib/console1984/supervisor.rb +1 -1
- data/lib/console1984/version.rb +1 -1
- metadata +34 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d50bc76b769c8f7baa56ad2bfa31534153772c7c6736ff97b0a8a6404bc5941
|
4
|
+
data.tar.gz: 627d936d50e183b05d7f1a7afe36671b24da3c207ef7e4db02c42e9e9d92a385
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed1eb3a208c9698258a203a9167981c7eabbb96426a250e5b7844e8d9bc13d39a6b8108f58ed726846287a7090b12cd2d904d9d1d90ed6fb91e431f626f42a7a
|
7
|
+
data.tar.gz: ca74d5179eb4ca78a19ce0caac8f9411fd09c518f4c5b00b0bf9bafcc895616b720641e3f2885c48a47c8b3e1aa0d3322aa85ecfd99ffd0ef97e0a4e19db5522
|
data/config/protections.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Naming class with dot so that it doesn't get loaded eagerly by
|
1
|
+
# Naming class with dot so that it doesn't get loaded eagerly by Zeitwerk. We want to load
|
2
2
|
# only when a console session is started, when +parser+ is loaded.
|
3
3
|
#
|
4
4
|
# See +Console1984::Supervisor#require_dependencies+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require "irb/command"
|
2
|
+
|
3
|
+
module Console1984::Commands
|
4
|
+
class Decrypt < IRB::Command::Base
|
5
|
+
include Console1984::Ext::Irb::Commands
|
6
|
+
|
7
|
+
category "Console1984"
|
8
|
+
description "go back to protected mode, without access to encrypted information"
|
9
|
+
|
10
|
+
def execute(*)
|
11
|
+
decrypt!
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require "irb/command"
|
2
|
+
|
3
|
+
module Console1984::Commands
|
4
|
+
class Encrypt < IRB::Command::Base
|
5
|
+
include Console1984::Ext::Irb::Commands
|
6
|
+
|
7
|
+
category "Console1984"
|
8
|
+
description "go back to protected mode, without access to encrypted information"
|
9
|
+
|
10
|
+
def execute(*)
|
11
|
+
encrypt!
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -1,4 +1,3 @@
|
|
1
|
-
# Add Console 1984 commands to IRB sessions.
|
2
1
|
module Console1984::Ext::Irb::Commands
|
3
2
|
include Console1984::Freezeable
|
4
3
|
|
@@ -13,13 +12,4 @@ module Console1984::Ext::Irb::Commands
|
|
13
12
|
def encrypt!
|
14
13
|
shield.enable_protected_mode
|
15
14
|
end
|
16
|
-
|
17
|
-
# This returns the last error that prevented a command execution in the console
|
18
|
-
# or nil if there isn't any.
|
19
|
-
#
|
20
|
-
# This is meant for internal usage when debugging legit commands that are wrongly
|
21
|
-
# prevented.
|
22
|
-
def _console_last_suspicious_command_error
|
23
|
-
Console1984.command_executor.last_suspicious_command_error
|
24
|
-
end
|
25
15
|
end
|
@@ -12,8 +12,16 @@ module Console1984::Ext::Irb::Context
|
|
12
12
|
end
|
13
13
|
|
14
14
|
#
|
15
|
-
def evaluate(
|
16
|
-
|
15
|
+
def evaluate(line_or_statement, ...)
|
16
|
+
# irb < 1.13 passes String as parameter
|
17
|
+
# irb >= 1.13 passes IRB::Statement instead and method #code contains the actual code
|
18
|
+
code = if defined?(IRB::Statement) && line_or_statement.kind_of?(IRB::Statement)
|
19
|
+
line_or_statement.code
|
20
|
+
else
|
21
|
+
line_or_statement
|
22
|
+
end
|
23
|
+
|
24
|
+
Console1984.command_executor.execute(Array(code)) do
|
17
25
|
super
|
18
26
|
end
|
19
27
|
end
|
data/lib/console1984/shield.rb
CHANGED
@@ -34,7 +34,8 @@ class Console1984::Shield
|
|
34
34
|
|
35
35
|
def extend_irb
|
36
36
|
IRB::Context.prepend(Console1984::Ext::Irb::Context)
|
37
|
-
|
37
|
+
IRB::Command.register :decrypt!, Console1984::Commands::Decrypt
|
38
|
+
IRB::Command.register :encrypt!, Console1984::Commands::Encrypt
|
38
39
|
end
|
39
40
|
|
40
41
|
def extend_core_ruby
|
@@ -47,8 +48,12 @@ class Console1984::Shield
|
|
47
48
|
socket_classes = [TCPSocket, OpenSSL::SSL::SSLSocket]
|
48
49
|
OpenSSL::SSL::SSLSocket.include(SSLSocketRemoteAddress)
|
49
50
|
|
50
|
-
if defined?(Redis::Connection)
|
51
|
-
socket_classes.push(
|
51
|
+
if defined?(Redis::Connection::TCPSocket)
|
52
|
+
socket_classes.push(Redis::Connection::TCPSocket)
|
53
|
+
end
|
54
|
+
|
55
|
+
if defined?(Redis::Connection::SSLSocket)
|
56
|
+
socket_classes.push(Redis::Connection::SSLSocket)
|
52
57
|
end
|
53
58
|
|
54
59
|
socket_classes.compact.each do |socket_klass|
|
data/lib/console1984/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: console1984
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jorge Manrubia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rainbow
|
@@ -45,13 +45,27 @@ dependencies:
|
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '7.0'
|
48
|
-
type: :
|
48
|
+
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '7.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: irb
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.13'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.13'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: benchmark-ips
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -192,6 +206,20 @@ dependencies:
|
|
192
206
|
- - ">="
|
193
207
|
- !ruby/object:Gem::Version
|
194
208
|
version: '0'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: rubyzip
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '0'
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
195
223
|
description:
|
196
224
|
email:
|
197
225
|
- jorge@basecamp.com
|
@@ -219,6 +247,8 @@ files:
|
|
219
247
|
- lib/console1984/command_validator/forbidden_reopening_validation.rb
|
220
248
|
- lib/console1984/command_validator/parsed_command.rb
|
221
249
|
- lib/console1984/command_validator/suspicious_terms_validation.rb
|
250
|
+
- lib/console1984/commands/decrypt.rb
|
251
|
+
- lib/console1984/commands/encrypt.rb
|
222
252
|
- lib/console1984/config.rb
|
223
253
|
- lib/console1984/engine.rb
|
224
254
|
- lib/console1984/errors.rb
|
@@ -268,7 +298,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
268
298
|
- !ruby/object:Gem::Version
|
269
299
|
version: '0'
|
270
300
|
requirements: []
|
271
|
-
rubygems_version: 3.
|
301
|
+
rubygems_version: 3.5.3
|
272
302
|
signing_key:
|
273
303
|
specification_version: 4
|
274
304
|
summary: Your Rails console, 1984 style
|