
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).
node-social-api
Advanced tools
Social api client for node that support promises and callback. Include:
npm install --save node-social-api
import { Instagram, Twitter, Facebook, Tumblr } from 'node-social-api';
// Instagram
const instagram = new Instagram({
clientId: 'your-client-id',
accessToken: 'user-access-token',
});
// Some get query with promise
instagram.get('users/self').then((data) => {
console.log(data);
});
// Some get query with callback
instagram.get('users/self', (err, data) => {
console.log(data);
});
// Create a new stream and only receive new messages
const stream = instagram.stream('tags/:tag-name/media/recent');
stream.on('message', (message) => {
console.log(message);
});
// Twitter
const twitter = new Twitter({
consumerKey: 'your-consumer-key',
consumerSecret: 'your-consumer-secret',
accessToken: 'your-access-token',
accessTokenSecret: 'your-access-token-secret',
});
// Some get query
twitter.get('media/recent').then((data) => {
console.log(data);
});
// Facebook
const facebook = new Facebook({
appId: 'your-app-id',
appSecret: 'your-app-secret',
});
// Some get query
facebook.get(':some-id').then((data) => {
console.log(data);
});
// Tumblr
const tumblr = new Tumblr({
consumerKey: 'your-consumer-key',
});
// Some get query
tumblr.get('blog/scipsy.tumblr.com/info').then((data) => {
console.log(data);
});
// Github
const github = new Github({
accessToken: 'your-access-token',
});
// Some get query
github.get(':some-github-route').then((data) => {
console.log(data);
});
FAQs
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.