Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ffxiv-datamining-github-api
Advanced tools
An XIVAPI-like API for "using the CSVs" off of GitHub.
npm i -S ffxiv-datamining-github-api
import { FFXIVSheetResolver } from "./ffxiv-datamining-github-api";
const sr = new FFXIVSheetResolver();
sr.getSheet("BNpcParts").then(console.log);
// The optional second parameter is the recursion depth;
// increasing this increases execution time drastically.
// For the TerritoryType sheet, a recursion depth of 1
// resulted in an execution time of roughly 1.5 minutes,
// while a recursion depth of 0 resulted in an execution
// time of roughly 0.9 seconds.
sr.getSheet("Item", 0).then(console.log);
// The second parameter here is the row number to pull;
// recursion depth isn't an issue on single-row fetches.
// The optional third parameter corresponds to the
// recursion depth.
sr.getSheetItem("TerritoryType", 202).then(console.log);
sr.getSheetItem("TerritoryType", 203).then(console.log);
sr.searchSheet("Weather", {
searchTerm: "heat waves",
}).then(console.log);
sr.searchSheet("BGMFade", {
columns: ["ID", "BGMFadeType.ID"],
}).then(console.log);
sr.searchSheet("BGMFade", {
filters: ["BGMFadeType.ID>=2"],
}).then(console.log);
sr.search({
searchTerm: "eulmore",
indexes: ["PlaceName"],
recurseDepth: 0,
}).then(console.log);
FAQs
An XIVAPI-like API for "using the CSVs" off of GitHub.
The npm package ffxiv-datamining-github-api receives a total of 0 weekly downloads. As such, ffxiv-datamining-github-api popularity was classified as not popular.
We found that ffxiv-datamining-github-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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.