
Research
5 Malicious Chrome Extensions Enable Session Hijacking in Enterprise HR and ERP Systems
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.
A talk by @benjamincoe
Birdeater is a command-line tool for backing up a user's public Tweets in JSON format.
First, make sure you have node package manager installed:
curl http://npmjs.org/install.sh | sh
Then run the following commands to install and run Birdeater:
npm install birdeater -g
birdeater --user=shitmydadsays
Be mindful when running it, as Twitter limits the number of requests that a single client can make per hour.
Birdeater does not use Twitter's API. It was built as a demonstration of an approach I like to use for parsing structured information from unstructured HTML. Here's how it works:
An http connection is made to a user's public timeline using the request library:
User.prototype.loadStatuses = function(callback) {
request({
url: 'https://twitter.com/...',
headers: {accept: 'application/json'}
}, function(err, res, body) {
var error = err || res.statusCode != 200;
// handle error, or.
callback( body );
});
};
This returns an HTML representation of the tweets. JQuery is used to extract structured information from this:
jquery(body).find('.tweet').each(function() {
var tweet = jquery(this);
_this.tweets.push({
text: jquery.trim( tweet.find('.js-tweet-text').text() ),
timestamp: parseInt( tweet.find('._timestamp').attr('data-time') ),
mentions: mentions.length > 0 ? tweet.attr('data-mentions').split(' ') : [],
urls: urls
});
});
I find that Node.js, coupled with JQuery, works great for building web crawlers:
This approach has become my hammer when web scraping tasks come up.
FAQs
A command-line tool for backing up a user's public Tweets in JSON format.
We found that birdeater 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
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.