
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
A simple and reliable NordVPN client for macOS with support for both legacy OpenVPN and njord APIs.
# Install system requirements
brew install openvpn
# Install package
pip install nyord-vpn
# Optional: Install njord support
pip install nyord-vpn[njord]
Set your NordVPN credentials:
export NORD_USER="your-username"
export NORD_PASSWORD="your-password"
# Connect to VPN (defaults to US)
nyord-vpn connect
# Connect to specific country
nyord-vpn connect --country netherlands
# Use njord API
nyord-vpn --api njord connect
# Enable debug logging
nyord-vpn --verbose connect
# Check status
nyord-vpn status
# List available countries
nyord-vpn list-countries
# Disconnect
nyord-vpn disconnect
from nyord_vpn.core.factory import create_client
# Create client (legacy or njord)
client = create_client("legacy")
# Connect to VPN
client.connect("netherlands")
# Check status
status = client.status()
print(f"Connected to {status['server']} ({status['ip']})")
# Disconnect
client.disconnect()
# Install dependencies
pip install -r requirements.txt
# Install optional njord support
pip install njord
# Run with debug logging
NORD_USER="username" NORD_PASSWORD="password" nyord-vpn --verbose connect
The client uses simple retry logic for API calls and provides clear error messages. Common errors:
VPNCredentialsError
: Missing or invalid credentialsVPNConnectionError
: Failed to connect/disconnectVPNConfigError
: Configuration issues (e.g., missing OpenVPN)VPNServerError
: Failed to get server informationMIT
FAQs
NordVPN client with API fallback support
We found that nyord-vpn 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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.