
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
node-aab-parser
Advanced tools
A parser for aab manifests, inspired by node-apk-parser
You must have java JDK 8+ on your machine NodeJS 12.18.0 (lower might versions work but unsupported)
npm install node-aab-parser
or
yarn add node-aab-parser
import { readManifest } from "node-aab-parser"; // or the require equivalent
await readManifest(filePath); // async / await
readManifest(filePath)
.then(response => /* do something */);
.catch(err => /* handle err */ ) // promise based
async aabParser(filePath): Response
| Parameter | Description | Required | Type |
|---|---|---|---|
| filePath | Absolute path of the file you want to parse | true | string |
Response object:
| Attribute | Description | Type |
|---|---|---|
| compiledSdkVersion | sdk version this was compiled to (api level on android studio ) | number |
| compiledSdkVersionCodename | commonly known android version | number |
| minSdkVersion | minimum android version that runs the app | number |
| targetSdkVersion | target android version for the app | number |
| versionCode | version number | number |
| versionName | version name | string |
| packageName | package name of your app | string |
| permissions | permissions your app has | string[] |
It's still very barebones so any contribution is more than welcome.
Check the guidelines and the TODO
FAQs
A parser to get manifests of .aab files
The npm package node-aab-parser receives a total of 189 weekly downloads. As such, node-aab-parser popularity was classified as not popular.
We found that node-aab-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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.