
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
oblv-client
Advanced tools
Python bindings for oblv client proxy.
pip install oblv_client
import oblv_client as oc
import uuid
oc.set_log_level("info")
enc_url = "http://<some-enclave-url>
enc_port = 8000
# For Pkiauth
enclave = oc.Enclave(
enc_url,
enc_port,
True,
str(uuid.uuid4()),
pcr0="",
pcr1="",
pcr2="",
private_key="test_private.der",
public_key="test_public.der",
auth_type="pkiauth",
)
enc_public_key = enclave.attest()
# for OAuth
enclave = oc.Enclave(
enc_url,
enc_port,
True,
str(uuid.uuid4()),
pcr0="",
pcr1="",
pcr2="",
auth_type="oauth",
client_id="<client-id>",
client_secret="<client-secret>",
oauth_audience=oauth_audience,
oauth_url=oauth_url
)
# To attest
access_token = enclave.attest()
# Make HTTP Request
data = e.get(
f"http://{enc_url}:{enc_port}/get_report",
headers={"Header1": "HeaderValue"},
body=bytes("some body contents", "utf-8"),
params={"param1": "val1"},
)
status = data.status
headers = data.headers
body = data.body
print(status)
print(headers)
print(body)
data = e.post(
f"http://{enc_url}:{enc_port}/get_report",
headers={"Header1": "HeaderValue"},
params={"param1": "val1"},
json={"key": "val"}
)
status = data.status
headers = data.headers
body = data.body
print(status)
print(headers)
print(body)
FAQs
python bindings for using enclaves with oblivious tooling
We found that oblv-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.