
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
rainbowsix-siege-api
Advanced tools
Tool to read the r6stats API. For Rainbow Six Siege stats and player. Data extracted from r6stats.com
Uses Node.js, Express and user Id from r6stats.com
const RainbowSixApi = require('rainbowsix-siege-api');
const express = require('express');
const app = express();
const port = 5000;
const statsRouter = require('./routes/stats');
const R6 = new RainbowSixApi();
// userID: https://r6stats.com/stats/${userId}
// Seasons Stats: https://r6stats.com/stats/${userId}/seasonal
// Weapons Stats: https://r6stats.com/stats/${userId}/weapons
app.get('/api/stats/:userId', (req, res) => {
const userId = req.params.userId;
try{
R6.stats(userId).then(response => {
res.send(response);
}).catch(error => {
console.error(error)
});
}catch(error){
console.error(error);
};
});
app.use('/api/stats', statsRouter)
app.listen(port, (err) => {
if (err) {
throw new Error('Erreur')
}
console.log(`Server is listening on port ${port}`);
});
npm i rainbowsix-siege-api --save
Using https://r6stats.com/ for the API and stats
FAQs
Tool to read r6stats API. Data extracted from r6stats.com
We found that rainbowsix-siege-api 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.