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.
digital-ocean-promise
Advanced tools
An API system using promises to interact with Digital Ocean
A promise based approach to Digital Ocean's API
For information on request responses, bodies and so on please refer to the official documentation on Digital Ocean's website Digital Ocean API V2
Initialize
const API = require('digital-ocean-promise')
new API(
'API_PREFIX', // Prefix (https://api.digitalocean.com/v2)
'API_KEY' // API Key
)
Example Usage
API.droplets.read()
.then(data => {
console.log(data)
})
.catch(error => {
console.log(error)
})
Returns account data
API.account.read()
Creates a new droplet with object
API.droplets.create(data)
Returns list of droplets
API.droplets.read()
Returns specific droplet by ID
API.droplets.read(id)
Deletes a droplet by ID
API.droplets.delete(id)
Changes power status
API.droplets.toggle(id, 'power', 'on')
API.droplets.toggle(id, 'power', 'off')
FAQs
An API system using promises to interact with Digital Ocean
We found that digital-ocean-promise 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.