Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

adbkit-apkreader

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adbkit-apkreader - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

6

CHANGELOG.md
# Changelog
## 3.0.1 (2018-04-20)
### Fixes
* Fixed parsing of long strings. Thanks @mingyuan-xia!
## 3.0.0 (2017-09-21)

@@ -4,0 +10,0 @@

4

lib/apkreader/parser/binaryxml.js

@@ -116,3 +116,3 @@ 'use strict'

if (len & 0x80) {
len = (len & 0x7f) << 7
len = (len & 0x7f) << 8
len += this.readU8()

@@ -126,3 +126,3 @@ }

if (len & 0x8000) {
len = (len & 0x7fff) << 15
len = (len & 0x7fff) << 16
len += this.readU16()

@@ -129,0 +129,0 @@ }

{
"name": "adbkit-apkreader",
"version": "3.0.0",
"version": "3.0.1",
"description": "Extracts information from APK files.",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc