Analysing a large size of PCAP is pain in the ass. So, why not we just split it into a multiple files. We can do that with editcap. In this example, we are splitting by packet per file.   $ editcap -c 100000 in.pcapng out.pcapng        
   Installing IPA without using any fancy tools, in this case we just using scp  and uicache  command!   To do it;   1. Extract IPA file with 7zip or using whatever archiver tool  2. CD into extracted folder  3. scp .app into your jailbroken device;  scp -r iOS_App_File.app [email protected]:~  4. ssh into jailbroken device, and move .app file folder into /Applications folder;  ssh [email protected]  su  mv  iOS_App_File.app/ /Applications  5. Next we set our file to executable permission;  cd /Applications  chmod +x iOS_App_File.app  6. Final step, exit current ssh interpreter session, and run uicache  command