marshalsea 0.1.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.
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: marshalsea
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Carter Perez
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: marshalsea parses Ruby Marshal streams without deserializing them, discovers
13
+ gadget sinks by runtime reflection, and ships the defenses that stop them. Built
14
+ as a teaching artifact for the deserialization vulnerability class.
15
+ email:
16
+ - carterperez@angelamos.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE
22
+ - README.md
23
+ - lib/marshalsea.rb
24
+ - lib/marshalsea/chains.rb
25
+ - lib/marshalsea/chains/base.rb
26
+ - lib/marshalsea/chains/erb_def_method.rb
27
+ - lib/marshalsea/chains/erb_def_module.rb
28
+ - lib/marshalsea/chains/psych_init_with.rb
29
+ - lib/marshalsea/marshal/boundary_detector.rb
30
+ - lib/marshalsea/marshal/constants.rb
31
+ - lib/marshalsea/marshal/errors.rb
32
+ - lib/marshalsea/marshal/float_body.rb
33
+ - lib/marshalsea/marshal/limits.rb
34
+ - lib/marshalsea/marshal/load_guard.rb
35
+ - lib/marshalsea/marshal/node.rb
36
+ - lib/marshalsea/marshal/parser.rb
37
+ - lib/marshalsea/psych/inspector.rb
38
+ - lib/marshalsea/scanner.rb
39
+ - lib/marshalsea/version.rb
40
+ homepage: https://github.com/CarterPerez-dev/Cybersecurity-Projects
41
+ licenses:
42
+ - AGPL-3.0-or-later
43
+ metadata:
44
+ source_code_uri: https://github.com/CarterPerez-dev/Cybersecurity-Projects/tree/main/PROJECTS/beginner/deserialization-gadget-lab
45
+ bug_tracker_uri: https://github.com/CarterPerez-dev/Cybersecurity-Projects/issues
46
+ documentation_uri: https://github.com/CarterPerez-dev/Cybersecurity-Projects/tree/main/PROJECTS/beginner/deserialization-gadget-lab/learn
47
+ rubygems_mfa_required: 'true'
48
+ rdoc_options: []
49
+ require_paths:
50
+ - lib
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '3.4'
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ requirements: []
62
+ rubygems_version: 4.0.16
63
+ specification_version: 4
64
+ summary: 'Ruby object-deserialization security lab: inspect, understand, and defend
65
+ against gadget chains'
66
+ test_files: []