An open API service indexing awesome lists of open source software.

https://github.com/nowsecure/ipa-extract-exec

Extract the executable from an IPA file along with helpful meta data.
https://github.com/nowsecure/ipa-extract-exec

ipa nodejs

Last synced: 3 months ago
JSON representation

Extract the executable from an IPA file along with helpful meta data.

Awesome Lists containing this project

README

          

# SYNOPSIS

Extract the executable from an IPA file along with helpful meta data.

```js
var fs = require('fs');
var extract = require('ipa-extract-exec');
var encryptedSync = require('macho-is-encrypted').path

var fd = fs.openSync(__dirname + '/Foo.ipa', 'r');

extract(fd, function (err, tmpPath, name, plist, origFile) {
if (err) throw err;
const encrypted = encryptedSync(tmpPath)
console.log(`${name} (${plist.CFBundleIdentifier}) is ${encrypted}`)
});
```

# LICENSE

MIT