
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).
Receive the kill signal from the operating system and gracefully wait for the worker thread to end.
Receive the kill signal from the operating system and gracefully wait for the worker thread to end.
Note: The package name is graceful-sigterm
but the module name is sigterm
for short.
pip install graceful-sigterm
example1.py
import time
import signal
import sigterm
def worker():
print("Press Ctrl+C, and wait 5 seconds to stop...")
while not sigterm.is_stopped():
print(".", end="", flush=True)
sigterm.wait_until_stop(timeout=1)
print("")
for i in range(5):
print("x", end="", flush=True)
time.sleep(1)
def main():
sigterm.setup()
sigterm.setup(signal.SIGINT)
sigterm.register_worker(worker)
sigterm.execute()
if __name__ == "__main__":
main()
output
test@test sigterm % python example1.py
Press Ctrl+C, and wait 5 seconds to stop...
....^C
xxxxx%
FAQs
Receive the kill signal from the operating system and gracefully wait for the worker thread to end.
We found that graceful-sigterm 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.