Skip to content

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

Notifications You must be signed in to change notification settings

nowsecure/ipa-extract-exec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SYNOPSIS

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

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

About

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

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published