All Projects → nowsecure → ipa-extract-info

nowsecure / ipa-extract-info

Licence: other
Extract the Info.plist from an IPA

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to ipa-extract-info

Command Mobile Penetration Testing Cheatsheet
Mobile penetration testing android & iOS command cheatsheet
Stars: ✭ 221 (+550%)
Mutual labels:  ipa
iPatch
Patch iPA Files With Dynamic Libraries
Stars: ✭ 29 (-14.71%)
Mutual labels:  ipa
iOS Tools
Put some tools which can useing in iOS development.
Stars: ✭ 29 (-14.71%)
Mutual labels:  ipa
Ipadownload
Search and download decrypted IPA file from 3rd-party App Store.
Stars: ✭ 247 (+626.47%)
Mutual labels:  ipa
IPAPatch
Patch iOS Apps, The Easy Way, Without Jailbreak.
Stars: ✭ 301 (+785.29%)
Mutual labels:  ipa
BaiDuYunCrack
iOS百度云盘 破解速度限制、去广告、去更新 无需越狱~
Stars: ✭ 82 (+141.18%)
Mutual labels:  ipa
Iinjection
Stars: ✭ 197 (+479.41%)
Mutual labels:  ipa
ipatool
Command-line tool that allows searching and downloading app packages (known as ipa files) from the iOS App Store
Stars: ✭ 2,438 (+7070.59%)
Mutual labels:  ipa
appdecrypt
appdecrypt is a tool to make decrypt application encrypted binaries on macOS when SIP-enabled
Stars: ✭ 447 (+1214.71%)
Mutual labels:  ipa
react-native-decompiler
Decompile React Native Android/IOS Bundle.
Stars: ✭ 78 (+129.41%)
Mutual labels:  ipa
SignTools-CI
Sign iOS apps on demand using CI. Part of: https://github.com/SignTools/SignTools
Stars: ✭ 145 (+326.47%)
Mutual labels:  ipa
altstore
AltStore source with more stuff
Stars: ✭ 44 (+29.41%)
Mutual labels:  ipa
leximaven
A command line tool for searching word-related APIs.
Stars: ✭ 20 (-41.18%)
Mutual labels:  ipa
Igoat Swift
OWASP iGoat (Swift) - A Damn Vulnerable Swift Application for iOS
Stars: ✭ 242 (+611.76%)
Mutual labels:  ipa
SResigner
A macos application for ipa resign,dylib inject/delete and metadata modify.
Stars: ✭ 52 (+52.94%)
Mutual labels:  ipa
Ios Signer Service
✒ A self-hosted, cross-platform service to sign and install iOS apps, all without a computer
Stars: ✭ 200 (+488.24%)
Mutual labels:  ipa
IPALoaderX
IPA plugin loader for BepInEx
Stars: ✭ 29 (-14.71%)
Mutual labels:  ipa
DeepPhonemizer
Grapheme to phoneme conversion with deep learning.
Stars: ✭ 152 (+347.06%)
Mutual labels:  ipa
iOSThin
iOS瘦身方案
Stars: ✭ 25 (-26.47%)
Mutual labels:  ipa
xsampa
X-SAMPA to IPA converter
Stars: ✭ 20 (-41.18%)
Mutual labels:  ipa

ipa-extract-info

Extract the Info.plist from an IPA, in node.js and the browser!

Node

var fs = require('fs');
var extract = require('ipa-extract-info');

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

extract(fd, function(err, info, raw){
  if (err) throw err;
  console.log(info); // the parsed plist
  console.log(raw);  // the unparsed plist
});

Browser

var extract = require('ipa-extract-info');
var input = document.querySelector('input');

input.addEventListener('change', function(){
  extract(input.files[0], function(err, info, raw){
    if (err) throw err;
    console.log('info', info); // the parsed plist
    console.log('raw', raw);   // the unparsed plist
  });
});

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].