
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
.. image:: https://img.shields.io/github/actions/workflow/status/overcat/requests-sse/test-deploy.yml?branch=main :alt: GitHub Workflow Status :target: https://github.com/overcat/requests-sse/actions .. image:: https://img.shields.io/pypi/v/requests-sse.svg :alt: PyPI :target: https://pypi.python.org/pypi/requests-sse .. image:: https://img.shields.io/badge/python-%3E%3D3.8-blue :alt: Python - Version :target: https://pypi.python.org/pypi/stellar-sdk
A Server-Sent Events python client based on requests, provides a simple interface to process Server-Sent Events <https://www.w3.org/TR/eventsource>
_.
.. code-block:: bash
pip install requests-sse
.. code-block:: python
import requests
from requests_sse import EventSource, InvalidStatusCodeError, InvalidContentTypeError
with EventSource("https://stream.wikimedia.org/v2/stream/recentchange", timeout=30) as event_source:
try:
for event in event_source:
print(event)
except InvalidStatusCodeError:
pass
except InvalidContentTypeError:
pass
except requests.RequestException:
pass
This project was inspired by aiohttp-sse-client <https://github.com/rtfol/aiohttp-sse-client>
, aiosseclient <https://github.com/ebraminio/aiosseclient>
,
sseclient <https://github.com/btubbs/sseclient>
, and sseclient-py <https://github.com/mpetazzoni/sseclient>
.
FAQs
server-sent events python client library based on requests
We found that requests-sse 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
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.