
Product
Rubygems Ecosystem Support Now Generally Available
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
keeper-pam-webrtc-rs
Advanced tools
A high-performance WebRTC implementation for Python, written in Rust for maximum efficiency and reliability.
keeper-pam-webrtc-rs
provides Python bindings to a Rust-based WebRTC implementation, allowing for:
This package is designed to be used with Keeper Gateway and Keeper Commander. It serves as a lightweight, focused replacement for aiortc, tailored specifically for Keeper Security's internal products and use cases.
Note: This package is intended for internal Keeper Security products and is not being actively advertised for general use.
pip install keeper-pam-webrtc-rs
import keeper_pam_webrtc_rs
# Initialize WebRTC peer connection
config = {"iceServers": [{"urls": ["stun:stun.l.google.com:19302"]}]}
pc = keeper_pam_webrtc_rs.PyRTCPeerConnection(
config,
on_ice_candidate=lambda c: print(f"ICE candidate: {c}"),
on_data_channel=lambda dc: print(f"Data channel: {dc.label()}"),
trickle_ice=True,
turn_only=False
)
# Create offer
offer = pc.create_offer()
# Create data channel
dc = pc.create_data_channel("example-channel")
# Send data
dc.send(b'Hello WebRTC!')
# Set message handler
def on_message(data):
print(f"Received: {data}")
dc.on_message = on_message
# Close when done
pc.close()
FAQs
Unknown package
We found that keeper-pam-webrtc-rs 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.
Product
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.