Advertisement
efxtv

Zipalign ERROR: zipalign: symbol lookup error: zipalign: undefined symbol: _ZN11zip_archive6WriterD2

Dec 30th, 2023 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | Cybersecurity | 0 0
  1. Q. What is Zipalign?
  2. Ans. Zipalign is a zip archive alignment tool that helps ensure that all uncompressed files in the archive are aligned relative to the start of the file
  3.  
  4. *************************************************************
  5. Telegram post: https://t.me/efxtv/3136
  6. *************************************************************
  7.  
  8. Q. Error you may face with Zipalign in KALI LINUX?
  9. Ans. Zipalign ERROR: zipalign: symbol lookup error: zipalign: undefined symbol: _ZN11zip_archive6WriterD2Ev
  10.  
  11. Q. How to fix Fix zip align ERROR: zipalign: symbol lookup error: zipalign: undefined symbol: _ZN11zip_archive6WriterD2Ev Error in Kali Linux?
  12. Ans. Follow the steps:
  13.  
  14. 1. Update and upgrade
  15. sudo apt update;sudo apt upgrade
  16.  
  17. 2. Install android-SDK in KALI LINUX
  18. sudo apt install android-sdk aapt aapt2
  19.  
  20. 3. Uninstall zipalign
  21. sudo apt purge zipalign
  22.  
  23. 4. Install Zipalign from Ubuntu rep instead of from Kali rep
  24. cd;wget http://security.ubuntu.com/ubuntu/pool/universe/a/android-platform-build/zipalign_8.1.0+r23-3ubuntu2_amd64.deb
  25. chmod +x *.deb
  26. sudo apt install ./zipalign_8.1.0+r23-3ubuntu2_amd64.deb
  27.  
  28. 4. Zipalign apk
  29. zipalign -v 4 input.apk aligned.apk
  30.  
  31. |||||🔴 WATCH THE FULL VIDEO HERE (https://youtu.be/yq6wXty0tME)|||||
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement