
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
firestore-parser
Advanced tools
Parse the Firestore REST API endpoint JSON into a useable JS object
Parse the Firestore REST API JSON into a useable JS object
// Install with NPM
npm install firestore-parser --save
// or Install with Yarn
yarn add firestore-parser
// Node/AMD:
// const FireStoreParser = require('firestore-parser');
// Node with TypeScript:
// import * as FireStoreParser from 'firestore-parser';
import FireStoreParser from 'firestore-parser'
const projectID = 'PROJECT_ID'
const key = 'API_KEY'
const doc = 'DOCUMENT'
const url = `https://firestore.googleapis.com/v1beta1/projects/${projectID}/databases/(default)/documents/${doc}?key=${key}`
fetch(url)
.then(response => response.json())
.then(json => FireStoreParser(json))
.then(json => console.log(json));
The Firestore JSON returned in the REST API, uses value type as keys. This can be difficult to work with since you have to know the data type prior getting the value. The firestore-parser
removes this barrier for you.
{
"player": {
"mapValue": {
"fields": {
"name": {
"stringValue": "steve"
},
"health": {
"integerValue": "100"
},
"alive": {
"booleanValue": true
}
}
}
},
"level": {
"integerValue": "7"
}
}
{
"player": {
"name": "steve",
"health": 100,
"alive": true
},
"level": 7
}
FAQs
Parse the Firestore REST API endpoint JSON into a useable JS object
The npm package firestore-parser receives a total of 1,261 weekly downloads. As such, firestore-parser popularity was classified as popular.
We found that firestore-parser 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 deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.