Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Ruby API wrapper for Outline VPN Server https://getoutline.org/ It provides a simple interface to manage and retrieve information about VPN keys, metrics, and other related functionalities.
Ensure you have the required gems installed:
gem install outline_vpn_api
To start using the client, initialize it with the API URL:
client = OutlineVpnApi.new('YOUR_API_URL')
keys_list
Fetches a list of all keys:
keys = client.keys_list
transferred_data_by_id
Fetches the transferred data metrics:
data = client.transferred_data_by_id
create_key
Creates a new key:
new_key = client.create_key
set_limit(key_id, limit)
Sets a data limit for a specific key:
client.set_limit('KEY_ID', LIMIT_IN_BYTES)
rename_key(key_id, name)
Renames a specific key:
client.rename_key('KEY_ID', 'NEW_NAME')
delete_key(key_id)
Deletes a specific key:
client.delete_key('KEY_ID')
httparty
: Used for making HTTP requests.json
: Used for parsing JSON responses.If you'd like to contribute to this project, please submit a pull request with your changes.
This project is licensed under the MIT License. See the LICENSE file for details.
FAQs
Unknown package
We found that outline_vpn_api demonstrated a not healthy version release cadence and project activity because the last version was released 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.