Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
A REST client for Fortnite which allows requesting game news, streams and service status from Epic Game's game servers.
Install: npm install ftn-client
The main purpose of this library is to provide the basic services of Fortnite, without having Epic account or a dedicated token for your client like fnbr.js
This library is therefore less complete but suddenly lighter to perform basic tasks or complete some tests
Download News Streams (TS)
import { Client } from 'ftn-client';
import fs from 'fs';
const client = new Client({
language: 'en', // default language
region: 'EU' // default region
})
(async () => {
// Start the client
await client.start();
// Get BR News
const BRnews = client.BRNews;
for(const thisNew of BRnews.news) {
if(thisNew.stream !== null) {
// Download MP4 Buffer
// Default client language and 720p resolution
const video = await thisNew.stream.downloadStream();
// Create MP4 file
fs.writeFileSync(thisNew.stream.fileName, video);
}
}
})()
Get token (TS)
import { Client } from 'ftn-client';
const client = new Client();
(async () => {
// Start the client
await client.start();
// Get client Auth an log the EG1 token
const auth = client.auth;
console.log(auth.access_token);
})()
More detailed examples in javascript are presents in the examples folder
Documentation available soon...
FAQs
A REST client for Fortnite which allows requesting game news, streams and service status from Epic Game's game servers.
The npm package ftn-client receives a total of 3 weekly downloads. As such, ftn-client popularity was classified as not popular.
We found that ftn-client 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.