
Research
Malicious npm Package Brand-Squats TanStack to Exfiltrate Environment Variables
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.
@oauth-everything/passport-picarto
Advanced tools
A Passport strategy for authenticating with Picarto using OAuth 2.0 and the Picarto API.
This module lets you authenticate using Picarto in your Node.js applications. By plugging into Passport, Picarto authentication can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.
$ npm install @oauth-everything/passport-picarto
The Picarto authentication strategy authenticates users using a Picarto
account and OAuth 2.0 tokens. The app ID and secret obtained when creating an
application are supplied as options when creating the strategy. The strategy
also requires a verify callback, which receives the access token and optional
refresh token, as well as profile which contains the authenticated user's
Picarto profile. The verify callback must call cb providing a user to
complete authentication.
passport.use(new Strategy(
{
clientID: PICARTO_APP_ID,
clientSecret: PICARTO_APP_SECRET,
callbackURL: "http://localhost:3000/auth/picarto/callback"
},
(accessToken: string, refreshToken: string, profile: Profile, cb: VerifyCallback<User>) => {
User.findOrCreate({ picartoId: profile.id }, (err: Error, user: User) => {
return cb(err, user);
});
}
));
Use passport.authenticate(), specifying the 'picarto' strategy, to
authenticate requests.
For example, as route middleware in an Express application:
app.get('/auth/picarto',
passport.authenticate('picarto'));
app.get('/auth/picarto/callback',
passport.authenticate('picarto', { failureRedirect: '/login' }),
function(req, res) {
// Successful authentication, redirect home.
res.redirect('/');
});
FAQs
Picarto OAuth 2.0 strategy for Passport.js
The npm package @oauth-everything/passport-picarto receives a total of 2 weekly downloads. As such, @oauth-everything/passport-picarto popularity was classified as not popular.
We found that @oauth-everything/passport-picarto 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
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.

Research
Compromised SAP CAP npm packages download and execute unverified binaries, creating urgent supply chain risk for affected developers and CI/CD environments.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.