
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).
A CLI-based video/audio calling app for the terminal using WebRTC and Firebase.
Install TermCall (after building the package):
pip install termcall
Install system dependencies (if needed):
brew install libjpeg
sudo apt-get install libopencv-dev
After installation, run:
termcall
m
to mute audio, v
to mute video, q
to quit callFirebase Database Rules:
{
"rules": {
"users": {
"$email": {
// Anyone can read user profiles
".read": true,
// Only allow writes if the provided token matches the stored token
".write": "(!data.exists() && newData.child('token').val() != null) || (data.child('token').val() === newData.child('token').val())"
}
},
"call_requests": {
"$request_id": {
// Anyone can read call requests
".read": true,
// Only allow the caller or callee (with correct token) to write/update/delete
".write": "(!data.exists() && newData.child('caller_email').val() != null && newData.child('callee_email').val() != null && newData.child('token').val() != null) || (data.child('token').val() === newData.child('token').val())"
}
},
"signaling": {
"$call_id": {
"$peer_email": {
// Anyone can read signaling data
".read": true,
// Only allow the peer (with correct token) to write/update/delete
".write": "(!data.exists() && newData.child('token').val() != null) || (data.child('token').val() === newData.child('token').val())"
}
}
}
}
}
Add authentication (e.g., anonymous or email/password) to restrict users to their own data
Update database rules to enforce per-user access
Modularize codebase for maintainability
Improve packaging and distribution (PyPI, Homebrew, etc.)
Monitor and mitigate abuse/spam
Migrate to Firebase Authentication (Long-Term):
auth.uid
in database rules to enforce per-user access and secure all sensitive operations.termcall
CLI MIT License
FAQs
A CLI-based video/audio calling app using WebRTC and Firebase
We found that termcall 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.