
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).
A repo with examples can be viewed here.
Bird is just a wrapper around request. And request offers a stream interface and the standard Node callback interface. So Bird does this just as well.
Imagine an express route that returns a users home timeline as json. You can simply pipe the call to the response.
// assuming you have the users oauth credentials
Bird.timelines.home({ oauth: oauth }).pipe(res)
Uploading media is a 2-part process.
var options = {
oauth: {
consumer_key: 'XXXXXXXXXXXXXXXXXX',
consumer_secret: 'XXXXXXXXXXXXXXX',
token: 'XXXXXXXXXXXXXXXXXX',
token_secret: 'XXXXXXXXXXXXXXXXX'
},
media: 'path/to/filename'
}
Bird.media.upload(options, function(err, httpResponse, body) {
if (err) throw err;
var options = {
oauth: {
consumer_key: 'XXXXXXXXXXXXXXXXXX',
consumer_secret: 'XXXXXXXXXXXXXXX',
token: 'XXXXXXXXXXXXXXXXXX',
token_secret: 'XXXXXXXXXXXXXXXXX'
},
status: 'hello world',
media_ids: JSON.parse(body).media_id_string
}
Bird.tweets.tweet(options, function(err, r, body){
if (err) throw err;
console.log('successfully tweeted media');
});
});
❯ node
> require('./index')
{ auth:
{ requestToken: ...,
accessToken: ... },
timelines:
{ home: ...,
mentions: ...,
user: ...,
retweetsOfMe: ... },
tweets:
{ retweets: ...,
show: ...,
oembed: ...,
retweeters: ...,
update: ...,
tweet: ...,
destroy: ...,
retweet: ...,
updateWithMedia: ... },
search: { tweets: ... },
messages:
{ index: ...,
sent: ...,
show: ...,
destroy: ...,
new: ... },
friends: { index: ..., list: ... },
friendships:
{ noRetweets: ...,
show: ...,
lookup: ...,
incoming: ...,
outgoing: ...,
create: ...,
destroy: ...,
update: ... },
followers: { index: ..., list: ... },
account:
{ settings: ...,
verify: ...,
banner: ...,
updateSettings: ...,
updateDeliveryDevice: ...,
updateProfile: ...,
updateProfileBackgroundImage: ...,
updateProfileColors: ...,
updateProfileImage: ...,
removeProfileBanner: ...,
updateProfileBanner: ... },
blocks:
{ list: ...,
index: ...,
create: ...,
destroy: ... },
users:
{ lookup: ...,
show: ...,
search: ...,
contributees: ...,
contributors: ...,
suggestionsWithSlug: ...,
suggestionsWithSlugMembers: ... },
favorites:
{ list: ...,
create: ...,
destroy: ... },
lists:
{ list: ...,
statuses: ...,
memberships: ...,
subscribers: ...,
showSubscribers: ...,
removeMember: ...,
createMember: ...,
removeSubscriber: ...,
createSubscriber: ... },
geo:
{ place: ...,
geocode: ...,
search: ...,
similarPlaces: ...,
createPlace: ... },
trends:
{ place: ...,
available: ...,
closest: ... },
spam: { report: ... },
help:
{ configuration: ...,
languages: ...,
privacy: ...,
tos: ... },
application: { rateLimits: ... } }
Aaron Ackerman |
FAQs
Simple Twitter API Wrapper
The npm package bird receives a total of 5 weekly downloads. As such, bird popularity was classified as not popular.
We found that bird 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
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.