
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).
ovh-api-services
Advanced tools
Contains all AngularJS $resource for the OVHcloud API.
$ yarn add ovh-api-services
import angular from 'angular';
import ovhApiServices from 'ovh-api-services';
angular.module('myApp', [ovhApiServices]);
All services must return an AngularJS $resource and can be called by using:
Service | Engine | Library |
---|---|---|
v6 | APIv6 | n/a |
Iceberg | Iceberg | @ovh-ux/ng-ovh-api-wrappers |
Aapi | 2API | n/a |
How to get user informations?
OvhApiMe
.v6()
.get()
.$promise
.then((nichandle) => {
console.log(nichandle);
/*
{
"firstname": "John",
"name": "Doe",
…
}
*/
});
How to get a SSH Key detail?
OvhApiMe
.SshKey()
.v6()
.get({
keyName: 'YOUR_KEY_NAME',
})
.$promise
.then((sshKey) => {
console.log(sshKey);
/*
{
"keyName": "test",
"key": "ssh-rsa …",
"default": false
}
*/
});
The files structure is defined as:
$ tree src/api/
.
└── me
├── sshKey
│ ├── me-sshKey.service.js
│ └── me-sshKey.v6.service.js
├── me.service.js
└── me.v6.service.js
The directories structure must follow the structure of the API.
$ yarn test
Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.
BSD-3-Clause © OVH SAS
FAQs
Contains all AngularJS $resource for OVHcloud API.
The npm package ovh-api-services receives a total of 3,419 weekly downloads. As such, ovh-api-services popularity was classified as popular.
We found that ovh-api-services demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers 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.