Advertisement
efxtv

Setup Termux Metasploit (Hacking Machine)

Sep 17th, 2022 (edited)
272
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | Cybersecurity | 0 0
  1. #SETUP TERMUX WITH ALL THE REQUIRED REPOSITORIES (ETHICAL HACKING)
  2.  
  3. #Setup Termux
  4. ---------------------------
  5. OUR BLOG: HTTPS://uk2blogger.blogspot.com
  6. ---------------------------
  7.  
  8. Install it from F-droid
  9. https://f-droid.org/repo/com.termux_118.apk
  10.  
  11. Termux api
  12. https://f-droid.org/repo/com.termux.api_51.apk
  13.  
  14. termux-setup-storage
  15. pkg update;pkg upgrade
  16. pkg update -y && pkg upgrade -y
  17. pkg install termux-tools
  18. termux-change-repo
  19. apt update;apt upgrade
  20. pkg list
  21. termux-api-start
  22. apt install git
  23. apt install wget
  24. apt install curl
  25. apt install php
  26. apt install python
  27. apt install nmap
  28. apt install ncat
  29. apt install openssh
  30. pkg install termux-api
  31. python3 -m pip install termux-api
  32.  
  33. #termux repository location
  34. nano $PREFIX/etc/apt/sources.list
  35.  
  36. #bin directory
  37. cd $PREFIX/bin
  38. cd ../usr/bin
  39.  
  40. #home
  41. cd $HOME
  42. cd
  43.  
  44. $USER
  45. cd ../usr
  46.  
  47. #Install tput
  48. png install ncurses-utils
  49.  
  50. #install apksigner
  51. pkg install apksigner
  52.  
  53. #install JarSigner
  54. pkg install jarsigner
  55.  
  56.  
  57. #Java17
  58. apt install openjdk-17
  59.  
  60. #install Apktool
  61. source <(curl -fsSL https://raw.githubusercontent.com/efxtv/npm/main/apktool/apktool-termux.sh)
  62.  
  63. #Install Zipalign
  64. pkg install zipalign
  65.  
  66. #Metasploit
  67. source <(curl -fsSL https://raw.githubusercontent.com/efxtv/Metasploit-in-termux/main/metasploit-6-termux.sh)
  68.  
  69. #Mversion (metasploit updater in ral time)
  70. curl -L -o $PWD/mversion https://raw.githubusercontent.com/efxtv/Metasploit-in-termux/main/Scripts/mversion -s;chmod +x mversion;mv mversion ../usr/bin/;mversion -help
  71.  
  72.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement