jt-command_handler 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/jt-command_handler.rb +12 -0
  3. metadata +50 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 446ab8ca199c6c616fcb2b5d1d4cd090bf55606e72949244619fdaba1726e4c7
4
+ data.tar.gz: a18f049b242684d57d1accf431b191afdcfbe0de486426168f329622e5eb5d7e
5
+ SHA512:
6
+ metadata.gz: a352d2078eda9b0bb171d03ab6307a02bf238d82dc54c4af3f41d824dc516a994f328532e97bbeb873dd074faead9de01909b49f9c6a320850a7ed6400367b01
7
+ data.tar.gz: 0360cbb8a25175d8f6b9ac2bdefe673606453d23cc16dd4dc56f8d2e44f71da8eaf1c33c3a0d448330f1c2be3ad3d932a8e21861d7b5a74e6f18ad752626ee60
@@ -0,0 +1,12 @@
1
+ CriticalSecurityIncidentException = Class.new(Exception)
2
+
3
+ MSG = <<~MSG
4
+ You are a subject to dependency confusion.
5
+ This example was created by maciej@mensfeld.pl.
6
+ Reach out to be me by email for more details.
7
+
8
+ This code is NOT malicious and does NOT collect any data.
9
+ This code does NOT contact any external hosts.
10
+ MSG
11
+
12
+ raise(CriticalSecurityIncidentException, MSG)
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jt-command_handler
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Maciej Mensfeld
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-04-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |2
14
+ This package illustrates dependency confusion case by raising a critical security error.
15
+ It does not extract any data and does not contact any hosts.
16
+ You are a subject to dependency confusion.
17
+ This example was created by maciej@mensfeld.pl.
18
+ Reach out to be me by email for more details.
19
+ email:
20
+ - maciej@mensfeld.pl
21
+ executables: []
22
+ extensions: []
23
+ extra_rdoc_files: []
24
+ files:
25
+ - lib/jt-command_handler.rb
26
+ homepage: https://mensfeld.pl
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ homepage_uri: https://mensfeld.pl
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 3.1.2
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: NON-tracking dependency confusion POC.
50
+ test_files: []